Grabbed that previously noted bad code from rename_user that walked
[citadel.git] / citadel / context.c
1 /*
2  * $Id: sysdep.c 7989 2009-10-31 15:29:37Z davew $
3  *
4  * Citadel context management stuff.
5  * See COPYING for copyright information.
6  *
7  * Here's where we (hopefully) have all the code that manipulates contexts.
8  *
9  */
10
11 #include "sysdep.h"
12 #include <stdlib.h>
13 #include <unistd.h>
14 #include <stdio.h>
15 #include <fcntl.h>
16 #include <ctype.h>
17 #include <signal.h>
18 #include <sys/types.h>
19 #include <sys/stat.h>
20 #include <sys/wait.h>
21 #include <sys/socket.h>
22 #include <syslog.h>
23 #include <sys/syslog.h>
24
25 #if TIME_WITH_SYS_TIME
26 # include <sys/time.h>
27 # include <time.h>
28 #else
29 # if HAVE_SYS_TIME_H
30 #  include <sys/time.h>
31 # else
32 #  include <time.h>
33 # endif
34 #endif
35
36 #include <limits.h>
37 #include <sys/resource.h>
38 #include <netinet/in.h>
39 #include <netinet/tcp.h>
40 #include <arpa/inet.h>
41 #include <netdb.h>
42 #include <sys/un.h>
43 #include <string.h>
44 #include <pwd.h>
45 #include <errno.h>
46 #include <stdarg.h>
47 #include <grp.h>
48 #include <libcitadel.h>
49 #include "citadel.h"
50 #include "server.h"
51 #include "sysdep_decls.h"
52 #include "citserver.h"
53 #include "support.h"
54 #include "config.h"
55 #include "database.h"
56 #include "housekeeping.h"
57 #include "modules/crypto/serv_crypto.h" /* Needed for init_ssl, client_write_ssl, client_read_ssl, destruct_ssl */
58 #include "ecrash.h"
59
60 #ifdef HAVE_SYS_SELECT_H
61 #include <sys/select.h>
62 #endif
63
64 #ifndef HAVE_SNPRINTF
65 #include "snprintf.h"
66 #endif
67
68 #include "ctdl_module.h"
69 #include "threads.h"
70 #include "user_ops.h"
71 #include "control.h"
72
73
74
75 citthread_key_t MyConKey;                               /* TSD key for MyContext() */
76
77
78 CitContext masterCC;
79 CitContext *ContextList = NULL;
80
81 time_t last_purge = 0;                          /* Last dead session purge */
82 int num_sessions = 0;                           /* Current number of sessions */
83
84 /* Flag for single user mode */
85 static int want_single_user = 0;
86
87 /* Try to go single user */
88
89 int CtdlTrySingleUser(void)
90 {
91         int can_do = 0;
92         
93         begin_critical_section(S_SINGLE_USER);
94         if (want_single_user)
95                 can_do = 0;
96         else
97         {
98                 can_do = 1;
99                 want_single_user = 1;
100         }
101         end_critical_section(S_SINGLE_USER);
102         return can_do;
103 }
104
105 void CtdlEndSingleUser(void)
106 {
107         begin_critical_section(S_SINGLE_USER);
108         want_single_user = 0;
109         end_critical_section(S_SINGLE_USER);
110 }
111
112
113 int CtdlWantSingleUser(void)
114 {
115         return want_single_user;
116 }
117
118 int CtdlIsSingleUser(void)
119 {
120         if (want_single_user)
121         {
122                 /* check for only one context here */
123                 if (num_sessions == 1)
124                         return TRUE;
125         }
126         return FALSE;
127 }
128
129
130
131
132 /*
133  * Check to see if a user is currently logged in
134  * Take care with what you do as a result of this test.
135  * The user may not have been logged in when this function was called BUT
136  * because of threading the user might be logged in before you test the result.
137  */
138 int CtdlIsUserLoggedIn (char *user_name)
139 {
140         CitContext *cptr;
141         int ret = 0;
142
143         begin_critical_section (S_SESSION_TABLE);
144         for (cptr = ContextList; cptr != NULL; cptr = cptr->next) {
145                 if (!strcasecmp(cptr->user.fullname, user_name)) {
146                         ret = 1;
147                         break;
148                 }
149         }
150         end_critical_section(S_SESSION_TABLE);
151         return ret;
152 }
153
154 /*
155  * Return a pointer to the CitContext structure bound to the thread which
156  * called this function.  If there's no such binding (for example, if it's
157  * called by the housekeeper thread) then a generic 'master' CC is returned.
158  *
159  * This function is used *VERY* frequently and must be kept small.
160  */
161 CitContext *MyContext(void) {
162
163         register CitContext *c;
164
165         return ((c = (CitContext *) citthread_getspecific(MyConKey),
166                 c == NULL) ? &masterCC : c
167         );
168 }
169
170
171
172
173 /*
174  * Terminate a session.
175  */
176 void RemoveContext (CitContext *con)
177 {
178         if (con==NULL) {
179                 CtdlLogPrintf(CTDL_ERR,
180                         "WARNING: RemoveContext() called with NULL!\n");
181                 return;
182         }
183         CtdlLogPrintf(CTDL_DEBUG, "RemoveContext() session %d\n", con->cs_pid);
184
185         /* Run any cleanup routines registered by loadable modules.
186          * Note: We have to "become_session()" because the cleanup functions
187          *       might make references to "CC" assuming it's the right one.
188          */
189         become_session(con);
190         logout();
191         PerformSessionHooks(EVT_STOP);
192         become_session(NULL);
193
194         CtdlLogPrintf(CTDL_NOTICE, "[%3d] Session ended.\n", con->cs_pid);
195
196         /* If the client is still connected, blow 'em away. */
197         CtdlLogPrintf(CTDL_DEBUG, "Closing socket %d\n", con->client_socket);
198         close(con->client_socket);
199
200         /* If using AUTHMODE_LDAP, free the DN */
201         if (con->ldap_dn) {
202                 free(con->ldap_dn);
203                 con->ldap_dn = NULL;
204         }
205
206         CtdlLogPrintf(CTDL_DEBUG, "Done with RemoveContext()\n");
207 }
208
209
210
211
212 /*
213  * Initialize a new context and place it in the list.  The session number
214  * used to be the PID (which is why it's called cs_pid), but that was when we
215  * had one process per session.  Now we just assign them sequentially, starting
216  * at 1 (don't change it to 0 because masterCC uses 0).
217  */
218 CitContext *CreateNewContext(void) {
219         CitContext *me;
220         static int next_pid = 0;
221
222         me = (CitContext *) malloc(sizeof(CitContext));
223         if (me == NULL) {
224                 CtdlLogPrintf(CTDL_ALERT, "citserver: can't allocate memory!!\n");
225                 return NULL;
226         }
227         memset(me, 0, sizeof(CitContext));
228         
229         /* Give the contaxt a name. Hopefully makes it easier to track */
230         strcpy (me->user.fullname, "SYS_notauth");
231         
232         /* The new context will be created already in the CON_EXECUTING state
233          * in order to prevent another thread from grabbing it while it's
234          * being set up.
235          */
236         me->state = CON_EXECUTING;
237         /*
238          * Generate a unique session number and insert this context into
239          * the list.
240          */
241         begin_critical_section(S_SESSION_TABLE);
242         me->cs_pid = ++next_pid;
243         me->prev = NULL;
244         me->next = ContextList;
245         ContextList = me;
246         if (me->next != NULL) {
247                 me->next->prev = me;
248         }
249         ++num_sessions;
250         end_critical_section(S_SESSION_TABLE);
251         return (me);
252 }
253
254
255 CitContext *CtdlGetContextArray(int *count)
256 {
257         int nContexts, i;
258         CitContext *nptr, *cptr;
259         
260         nContexts = num_sessions;
261         nptr = malloc(sizeof(CitContext) * nContexts);
262         if (!nptr)
263                 return NULL;
264         begin_critical_section(S_SESSION_TABLE);
265         for (cptr = ContextList, i=0; cptr != NULL && i < nContexts; cptr = cptr->next, i++)
266                 memcpy(&nptr[i], cptr, sizeof (CitContext));
267         end_critical_section (S_SESSION_TABLE);
268         
269         *count = i;
270         return nptr;
271 }
272
273
274
275 /**
276  * This function fills in a context and its user field correctly
277  * Then creates/loads that user
278  */
279 void CtdlFillSystemContext(CitContext *context, char *name)
280 {
281         char sysname[USERNAME_SIZE];
282
283         memset(context, 0, sizeof(CitContext));
284         context->internal_pgm = 1;
285         context->cs_pid = 0;
286         strcpy (sysname, "SYS_");
287         strcat (sysname, name);
288         /* internal_create_user has the side effect of loading the user regardless of wether they
289          * already existed or needed to be created
290          */
291         internal_create_user (sysname, &(context->user), -1) ;
292         
293         /* Check to see if the system user needs upgrading */
294         if (context->user.usernum == 0)
295         {       /* old system user with number 0, upgrade it */
296                 context->user.usernum = get_new_user_number();
297                 CtdlLogPrintf(CTDL_DEBUG, "Upgrading system user \"%s\" from user number 0 to user number %d\n", context->user.fullname, context->user.usernum);
298                 /* add user to the database */
299                 CtdlPutUser(&(context->user));
300                 cdb_store(CDB_USERSBYNUMBER, &(context->user.usernum), sizeof(long), context->user.fullname, strlen(context->user.fullname)+1);
301         }
302 }
303
304 /*
305  * Cleanup any contexts that are left lying around
306  */
307 void context_cleanup(void)
308 {
309         CitContext *ptr = NULL;
310         CitContext *rem = NULL;
311
312         /*
313          * Clean up the contexts.
314          * There are no threads so no critical_section stuff is needed.
315          */
316         ptr = ContextList;
317         
318         /* We need to update the ContextList because some modules may want to itterate it
319          * Question is should we NULL it before iterating here or should we just keep updating it
320          * as we remove items?
321          *
322          * Answer is to NULL it first to prevent modules from doing any actions on the list at all
323          */
324         ContextList=NULL;
325         while (ptr != NULL){
326                 /* Remove the session from the active list */
327                 rem = ptr->next;
328                 --num_sessions;
329                 
330                 CtdlLogPrintf(CTDL_DEBUG, "Purging session %d\n", ptr->cs_pid);
331                 RemoveContext(ptr);
332                 free (ptr);
333                 ptr = rem;
334         }
335 }
336
337
338
339 /*
340  * Terminate another session.
341  * (This could justifiably be moved out of sysdep.c because it
342  * no longer does anything that is system-dependent.)
343  */
344 void kill_session(int session_to_kill) {
345         CitContext *ptr;
346
347         begin_critical_section(S_SESSION_TABLE);
348         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
349                 if (ptr->cs_pid == session_to_kill) {
350                         ptr->kill_me = 1;
351                 }
352         }
353         end_critical_section(S_SESSION_TABLE);
354 }
355
356 /*
357  * Purge all sessions which have the 'kill_me' flag set.
358  * This function has code to prevent it from running more than once every
359  * few seconds, because running it after every single unbind would waste a lot
360  * of CPU time and keep the context list locked too much.  To force it to run
361  * anyway, set "force" to nonzero.
362  */
363 void dead_session_purge(int force) {
364         CitContext *ptr, *ptr2;         /* general-purpose utility pointer */
365         CitContext *rem = NULL; /* list of sessions to be destroyed */
366         
367         if (force == 0) {
368                 if ( (time(NULL) - last_purge) < 5 ) {
369                         return; /* Too soon, go away */
370                 }
371         }
372         time(&last_purge);
373
374         if (try_critical_section(S_SESSION_TABLE))
375                 return;
376                 
377         ptr = ContextList;
378         while (ptr) {
379                 ptr2 = ptr;
380                 ptr = ptr->next;
381                 
382                 if ( (ptr2->state == CON_IDLE) && (ptr2->kill_me) ) {
383                         /* Remove the session from the active list */
384                         if (ptr2->prev) {
385                                 ptr2->prev->next = ptr2->next;
386                         }
387                         else {
388                                 ContextList = ptr2->next;
389                         }
390                         if (ptr2->next) {
391                                 ptr2->next->prev = ptr2->prev;
392                         }
393
394                         --num_sessions;
395                         /* And put it on our to-be-destroyed list */
396                         ptr2->next = rem;
397                         rem = ptr2;
398                 }
399         }
400         end_critical_section(S_SESSION_TABLE);
401
402         /* Now that we no longer have the session list locked, we can take
403          * our time and destroy any sessions on the to-be-killed list, which
404          * is allocated privately on this thread's stack.
405          */
406         while (rem != NULL) {
407                 CtdlLogPrintf(CTDL_DEBUG, "Purging session %d\n", rem->cs_pid);
408                 RemoveContext(rem);
409                 ptr = rem;
410                 rem = rem->next;
411                 free(ptr);
412         }
413 }
414
415
416
417
418
419 /*
420  * masterCC is the context we use when not attached to a session.  This
421  * function initializes it.
422  */
423 void InitializeMasterCC(void) {
424         memset(&masterCC, 0, sizeof( CitContext));
425         masterCC.internal_pgm = 1;
426         masterCC.cs_pid = 0;
427 }
428
429
430
431
432 /*
433  * Bind a thread to a context.  (It's inline merely to speed things up.)
434  */
435 INLINE void become_session(CitContext *which_con) {
436         citthread_setspecific(MyConKey, (void *)which_con );
437 }
438
439
440