Grabbed another chunk of code out of user_ops.c, purge_user()
[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
156 /*
157  * Check to see if a user is currently logged in.
158  * Basically same as CtdlIsUserLoggedIn() but uses the user number instead.
159  * Take care with what you do as a result of this test.
160  * The user may not have been logged in when this function was called BUT
161  * because of threading the user might be logged in before you test the result.
162  */
163 int CtdlIsUserLoggedInByNum (int usernum)
164 {
165         CitContext *cptr;
166         int ret = 0;
167
168         begin_critical_section(S_SESSION_TABLE);
169         for (cptr = ContextList; cptr != NULL; cptr = cptr->next) {
170                 if (cptr->user.usernum == usernum) {
171                         ret = 1;
172                 }
173         }
174         end_critical_section(S_SESSION_TABLE);
175         return ret;
176 }
177
178
179
180 /*
181  * Return a pointer to the CitContext structure bound to the thread which
182  * called this function.  If there's no such binding (for example, if it's
183  * called by the housekeeper thread) then a generic 'master' CC is returned.
184  *
185  * This function is used *VERY* frequently and must be kept small.
186  */
187 CitContext *MyContext(void) {
188
189         register CitContext *c;
190
191         return ((c = (CitContext *) citthread_getspecific(MyConKey),
192                 c == NULL) ? &masterCC : c
193         );
194 }
195
196
197
198
199 /*
200  * Terminate a session.
201  */
202 void RemoveContext (CitContext *con)
203 {
204         if (con==NULL) {
205                 CtdlLogPrintf(CTDL_ERR,
206                         "WARNING: RemoveContext() called with NULL!\n");
207                 return;
208         }
209         CtdlLogPrintf(CTDL_DEBUG, "RemoveContext() session %d\n", con->cs_pid);
210
211         /* Run any cleanup routines registered by loadable modules.
212          * Note: We have to "become_session()" because the cleanup functions
213          *       might make references to "CC" assuming it's the right one.
214          */
215         become_session(con);
216         logout();
217         PerformSessionHooks(EVT_STOP);
218         become_session(NULL);
219
220         CtdlLogPrintf(CTDL_NOTICE, "[%3d] Session ended.\n", con->cs_pid);
221
222         /* If the client is still connected, blow 'em away. */
223         CtdlLogPrintf(CTDL_DEBUG, "Closing socket %d\n", con->client_socket);
224         close(con->client_socket);
225
226         /* If using AUTHMODE_LDAP, free the DN */
227         if (con->ldap_dn) {
228                 free(con->ldap_dn);
229                 con->ldap_dn = NULL;
230         }
231
232         CtdlLogPrintf(CTDL_DEBUG, "Done with RemoveContext()\n");
233 }
234
235
236
237
238 /*
239  * Initialize a new context and place it in the list.  The session number
240  * used to be the PID (which is why it's called cs_pid), but that was when we
241  * had one process per session.  Now we just assign them sequentially, starting
242  * at 1 (don't change it to 0 because masterCC uses 0).
243  */
244 CitContext *CreateNewContext(void) {
245         CitContext *me;
246         static int next_pid = 0;
247
248         me = (CitContext *) malloc(sizeof(CitContext));
249         if (me == NULL) {
250                 CtdlLogPrintf(CTDL_ALERT, "citserver: can't allocate memory!!\n");
251                 return NULL;
252         }
253         memset(me, 0, sizeof(CitContext));
254         
255         /* Give the contaxt a name. Hopefully makes it easier to track */
256         strcpy (me->user.fullname, "SYS_notauth");
257         
258         /* The new context will be created already in the CON_EXECUTING state
259          * in order to prevent another thread from grabbing it while it's
260          * being set up.
261          */
262         me->state = CON_EXECUTING;
263         /*
264          * Generate a unique session number and insert this context into
265          * the list.
266          */
267         begin_critical_section(S_SESSION_TABLE);
268         me->cs_pid = ++next_pid;
269         me->prev = NULL;
270         me->next = ContextList;
271         ContextList = me;
272         if (me->next != NULL) {
273                 me->next->prev = me;
274         }
275         ++num_sessions;
276         end_critical_section(S_SESSION_TABLE);
277         return (me);
278 }
279
280
281 CitContext *CtdlGetContextArray(int *count)
282 {
283         int nContexts, i;
284         CitContext *nptr, *cptr;
285         
286         nContexts = num_sessions;
287         nptr = malloc(sizeof(CitContext) * nContexts);
288         if (!nptr)
289                 return NULL;
290         begin_critical_section(S_SESSION_TABLE);
291         for (cptr = ContextList, i=0; cptr != NULL && i < nContexts; cptr = cptr->next, i++)
292                 memcpy(&nptr[i], cptr, sizeof (CitContext));
293         end_critical_section (S_SESSION_TABLE);
294         
295         *count = i;
296         return nptr;
297 }
298
299
300
301 /**
302  * This function fills in a context and its user field correctly
303  * Then creates/loads that user
304  */
305 void CtdlFillSystemContext(CitContext *context, char *name)
306 {
307         char sysname[USERNAME_SIZE];
308
309         memset(context, 0, sizeof(CitContext));
310         context->internal_pgm = 1;
311         context->cs_pid = 0;
312         strcpy (sysname, "SYS_");
313         strcat (sysname, name);
314         /* internal_create_user has the side effect of loading the user regardless of wether they
315          * already existed or needed to be created
316          */
317         internal_create_user (sysname, &(context->user), -1) ;
318         
319         /* Check to see if the system user needs upgrading */
320         if (context->user.usernum == 0)
321         {       /* old system user with number 0, upgrade it */
322                 context->user.usernum = get_new_user_number();
323                 CtdlLogPrintf(CTDL_DEBUG, "Upgrading system user \"%s\" from user number 0 to user number %d\n", context->user.fullname, context->user.usernum);
324                 /* add user to the database */
325                 CtdlPutUser(&(context->user));
326                 cdb_store(CDB_USERSBYNUMBER, &(context->user.usernum), sizeof(long), context->user.fullname, strlen(context->user.fullname)+1);
327         }
328 }
329
330 /*
331  * Cleanup any contexts that are left lying around
332  */
333 void context_cleanup(void)
334 {
335         CitContext *ptr = NULL;
336         CitContext *rem = NULL;
337
338         /*
339          * Clean up the contexts.
340          * There are no threads so no critical_section stuff is needed.
341          */
342         ptr = ContextList;
343         
344         /* We need to update the ContextList because some modules may want to itterate it
345          * Question is should we NULL it before iterating here or should we just keep updating it
346          * as we remove items?
347          *
348          * Answer is to NULL it first to prevent modules from doing any actions on the list at all
349          */
350         ContextList=NULL;
351         while (ptr != NULL){
352                 /* Remove the session from the active list */
353                 rem = ptr->next;
354                 --num_sessions;
355                 
356                 CtdlLogPrintf(CTDL_DEBUG, "Purging session %d\n", ptr->cs_pid);
357                 RemoveContext(ptr);
358                 free (ptr);
359                 ptr = rem;
360         }
361 }
362
363
364
365 /*
366  * Terminate another session.
367  * (This could justifiably be moved out of sysdep.c because it
368  * no longer does anything that is system-dependent.)
369  */
370 void kill_session(int session_to_kill) {
371         CitContext *ptr;
372
373         begin_critical_section(S_SESSION_TABLE);
374         for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
375                 if (ptr->cs_pid == session_to_kill) {
376                         ptr->kill_me = 1;
377                 }
378         }
379         end_critical_section(S_SESSION_TABLE);
380 }
381
382 /*
383  * Purge all sessions which have the 'kill_me' flag set.
384  * This function has code to prevent it from running more than once every
385  * few seconds, because running it after every single unbind would waste a lot
386  * of CPU time and keep the context list locked too much.  To force it to run
387  * anyway, set "force" to nonzero.
388  */
389 void dead_session_purge(int force) {
390         CitContext *ptr, *ptr2;         /* general-purpose utility pointer */
391         CitContext *rem = NULL; /* list of sessions to be destroyed */
392         
393         if (force == 0) {
394                 if ( (time(NULL) - last_purge) < 5 ) {
395                         return; /* Too soon, go away */
396                 }
397         }
398         time(&last_purge);
399
400         if (try_critical_section(S_SESSION_TABLE))
401                 return;
402                 
403         ptr = ContextList;
404         while (ptr) {
405                 ptr2 = ptr;
406                 ptr = ptr->next;
407                 
408                 if ( (ptr2->state == CON_IDLE) && (ptr2->kill_me) ) {
409                         /* Remove the session from the active list */
410                         if (ptr2->prev) {
411                                 ptr2->prev->next = ptr2->next;
412                         }
413                         else {
414                                 ContextList = ptr2->next;
415                         }
416                         if (ptr2->next) {
417                                 ptr2->next->prev = ptr2->prev;
418                         }
419
420                         --num_sessions;
421                         /* And put it on our to-be-destroyed list */
422                         ptr2->next = rem;
423                         rem = ptr2;
424                 }
425         }
426         end_critical_section(S_SESSION_TABLE);
427
428         /* Now that we no longer have the session list locked, we can take
429          * our time and destroy any sessions on the to-be-killed list, which
430          * is allocated privately on this thread's stack.
431          */
432         while (rem != NULL) {
433                 CtdlLogPrintf(CTDL_DEBUG, "Purging session %d\n", rem->cs_pid);
434                 RemoveContext(rem);
435                 ptr = rem;
436                 rem = rem->next;
437                 free(ptr);
438         }
439 }
440
441
442
443
444
445 /*
446  * masterCC is the context we use when not attached to a session.  This
447  * function initializes it.
448  */
449 void InitializeMasterCC(void) {
450         memset(&masterCC, 0, sizeof( CitContext));
451         masterCC.internal_pgm = 1;
452         masterCC.cs_pid = 0;
453 }
454
455
456
457
458 /*
459  * Bind a thread to a context.  (It's inline merely to speed things up.)
460  */
461 INLINE void become_session(CitContext *which_con) {
462         citthread_setspecific(MyConKey, (void *)which_con );
463 }
464
465
466