* Use syslog-compatible logging levels in lprintf(); the loglevel chosen
[citadel.git] / citadel / housekeeping.c
1 /*
2  * $Id$
3  *
4  * This file contains miscellaneous housekeeping tasks.
5  *
6  */
7
8 #ifdef DLL_EXPORT
9 #define IN_LIBCIT
10 #endif
11
12 #include "sysdep.h"
13 #include <stdlib.h>
14 #include <unistd.h>
15 #include <stdio.h>
16 #include <fcntl.h>
17
18 #if TIME_WITH_SYS_TIME
19 # include <sys/time.h>
20 # include <time.h>
21 #else
22 # if HAVE_SYS_TIME_H
23 #  include <sys/time.h>
24 # else
25 #  include <time.h>
26 # endif
27 #endif
28
29 #include <ctype.h>
30 #include <string.h>
31 #include <errno.h>
32 #include <limits.h>
33 #include <sys/types.h>
34 #ifdef HAVE_SYS_SELECT_H
35 #include <sys/select.h>
36 #endif
37 #include "tools.h"
38 #include "citadel.h"
39 #include "server.h"
40 #include "serv_extensions.h"
41 #include "citserver.h"
42 #include "config.h"
43 #include "housekeeping.h"
44 #include "sysdep_decls.h"
45 #include "room_ops.h"
46 #include "database.h"
47
48
49
50
51 /*
52  * Terminate idle sessions.  This function pounds through the session table
53  * comparing the current time to each session's time-of-last-command.  If an
54  * idle session is found it is terminated, then the search restarts at the
55  * beginning because the pointer to our place in the list becomes invalid.
56  */
57 void terminate_idle_sessions(void) {
58         struct CitContext *ccptr;
59         time_t now;
60         int session_to_kill;
61         int killed = 0;
62
63         now = time(NULL);
64         session_to_kill = 0;
65         begin_critical_section(S_SESSION_TABLE);
66         for (ccptr = ContextList; ccptr != NULL; ccptr = ccptr->next) {
67                 if (  (ccptr!=CC)
68                 && (config.c_sleeping > 0)
69                 && (now - (ccptr->lastcmd) > config.c_sleeping) ) {
70                         ccptr->kill_me = 1;
71                         ++killed;
72                 }
73         }
74         end_critical_section(S_SESSION_TABLE);
75         if (killed > 0)
76                 lprintf(CTDL_INFO, "Terminated %d idle sessions\n", killed);
77 }
78
79
80
81 void check_sched_shutdown(void) {
82         if ((ScheduledShutdown == 1) && (ContextList == NULL)) {
83                 lprintf(CTDL_NOTICE, "Scheduled shutdown initiating.\n");
84                 time_to_die = 1;
85         }
86 }
87
88
89
90 /*
91  * Check (and fix) floor reference counts.  This doesn't need to be done
92  * very often, since the counts should remain correct during normal operation.
93  * NOTE: this function pair should ONLY be called during startup.  It is NOT
94  * thread safe.
95  */
96 void check_ref_counts_backend(struct ctdlroom *qrbuf, void *data) {
97         struct floor flbuf;
98
99         getfloor(&flbuf, qrbuf->QRfloor);
100         ++flbuf.f_ref_count;
101         flbuf.f_flags = flbuf.f_flags | QR_INUSE;
102         putfloor(&flbuf, qrbuf->QRfloor);
103 }
104
105 void check_ref_counts(void) {
106         struct floor flbuf;
107         int a;
108
109         lprintf(CTDL_DEBUG, "Checking floor reference counts\n");
110         for (a=0; a<MAXFLOORS; ++a) {
111                 getfloor(&flbuf, a);
112                 flbuf.f_ref_count = 0;
113                 flbuf.f_flags = flbuf.f_flags & ~QR_INUSE;
114                 putfloor(&flbuf, a);
115         }
116
117         cdb_begin_transaction();
118         ForEachRoom(check_ref_counts_backend, NULL);
119         cdb_end_transaction();
120 }       
121
122 /*
123  * This is the housekeeping loop.  Worker threads come through here after
124  * processing client requests but before jumping back into the pool.  We
125  * only allow housekeeping to execute once per minute, and we only allow one
126  * instance to run at a time.
127  */
128 void do_housekeeping(void) {
129         static int housekeeping_in_progress = 0;
130         static time_t last_timer = 0L;
131         int do_housekeeping_now = 0;
132         time_t now;
133
134         /*
135          * We do it this way instead of wrapping the whole loop in an
136          * S_HOUSEKEEPING critical section because it eliminates the need to
137          * potentially have multiple concurrent mutexes in progress.
138          */
139         begin_critical_section(S_HOUSEKEEPING);
140         now = time(NULL);
141         if ( (now - last_timer) > (time_t)60 ) {
142                 if (housekeeping_in_progress == 0) {
143                         do_housekeeping_now = 1;
144                         housekeeping_in_progress = 1;
145                         last_timer = time(NULL);
146                 }
147         }
148         end_critical_section(S_HOUSEKEEPING);
149
150         if (do_housekeeping_now == 0) {
151                 return;
152         }
153
154         /*
155          * Ok, at this point we've made the decision to run the housekeeping
156          * loop.  Everything below this point is real work.
157          */
158
159         cdb_check_handles();                    /* suggested by Justin Case */
160         PerformSessionHooks(EVT_TIMER);         /* Run any timer hooks */
161
162         /*
163          * All done.
164          */
165         housekeeping_in_progress = 0;
166 }