* Backed out r7276 through r7278. This is too large a change to make during a featur...
[citadel.git] / citadel / control.c
1 /*
2  * $Id$
3  *
4  * This module handles states which are global to the entire server.
5  *
6  */
7
8 #include "sysdep.h"
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <fcntl.h>
13 #include <signal.h>
14
15 #if TIME_WITH_SYS_TIME
16 # include <sys/time.h>
17 # include <time.h>
18 #else
19 # if HAVE_SYS_TIME_H
20 #  include <sys/time.h>
21 # else
22 #  include <time.h>
23 # endif
24 #endif
25
26 #include <ctype.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <limits.h>
30 #include <sys/types.h>
31 #include <sys/file.h>
32 #include <libcitadel.h>
33 #include "citadel.h"
34 #include "server.h"
35 #include "control.h"
36 #include "sysdep_decls.h"
37 #include "support.h"
38 #include "config.h"
39 #include "msgbase.h"
40 #include "citserver.h"
41 #include "room_ops.h"
42 #include "user_ops.h"
43 #include "database.h"
44 #include "threads.h"
45
46 #ifndef HAVE_SNPRINTF
47 #include "snprintf.h"
48 #endif
49
50 struct CitControl CitControl;
51 extern struct config config;
52 FILE *control_fp = NULL;
53 long control_highest_user = 0;
54
55
56 /*
57  * lock_control  -  acquire a lock on the control record file.
58  *                  This keeps multiple citservers from running concurrently.
59  */
60 void lock_control(void)
61 {
62 #ifdef HAVE_FLOCK
63 /*
64  * TODO: solaris manpages describe this function, but the headers
65  * don't show it! 
66  */
67
68         if (flock(fileno(control_fp), (LOCK_EX | LOCK_NB))) {
69                 CtdlLogPrintf(CTDL_EMERG, "citserver: unable to lock %s.\n", file_citadel_control);
70                 CtdlLogPrintf(CTDL_EMERG, "Is another citserver already running?\n");
71                 exit(CTDLEXIT_CONTROL);
72         }
73 #endif
74 }
75
76 /*
77  * callback to get highest room number when rebuilding control file
78  */
79 void control_find_highest(struct ctdlroom *qrbuf, void *data)
80 {
81         struct ctdlroom room;
82         struct cdbdata *cdbfr;
83         long *msglist;
84         int num_msgs=0;
85         int c;
86         int room_fixed = 0;
87         int message_fixed = 0;
88         
89         if (qrbuf->QRnumber > CitControl.MMnextroom)
90         {
91                 CitControl.MMnextroom = qrbuf->QRnumber;
92                 room_fixed = 1;
93         }
94                 
95         getroom (&room, qrbuf->QRname);
96         
97         /* Load the message list */
98         cdbfr = cdb_fetch(CDB_MSGLISTS, &room.QRnumber, sizeof(long));
99         if (cdbfr != NULL) {
100                 msglist = (long *) cdbfr->ptr;
101                 num_msgs = cdbfr->len / sizeof(long);
102         } else {
103                 return; /* No messages at all?  No further action. */
104         }
105
106         if (num_msgs>0)
107         {
108                 for (c=0; c<num_msgs; c++)
109                 {
110                         if (msglist[c] > CitControl.MMhighest)
111                         {
112                                 CitControl.MMhighest = msglist[c];
113                                 message_fixed = 1;
114                         }
115                 }
116         }
117         cdb_free(cdbfr);
118         if (room_fixed)
119                 CtdlLogPrintf(CTDL_INFO, "Control record checking....Fixed room counter\n");
120         if (message_fixed)
121                 CtdlLogPrintf(CTDL_INFO, "Control record checking....Fixed message count\n");
122         return;
123 }
124
125
126 /*
127  * Callback to get highest user number.
128  */
129  
130 void control_find_user (struct ctdluser *EachUser, void *out_data)
131 {
132         int user_fixed = 0;
133         
134         if (EachUser->usernum > CitControl.MMnextuser)
135         {
136                 CitControl.MMnextuser = EachUser->usernum;
137                 user_fixed = 1;
138         }
139         if(user_fixed)
140                 CtdlLogPrintf(CTDL_INFO, "Control record checking....Fixed user count\n");
141 }
142
143
144 /*
145  * get_control  -  read the control record into memory.
146  */
147 void get_control(void)
148 {
149         static int already_have_control = 0;
150
151         /*
152          * If we already have the control record in memory, there's no point
153          * in reading it from disk again.
154          */
155         if (already_have_control) return;
156
157         /* Zero it out.  If the control record on disk is missing or short,
158          * the system functions with all control record fields initialized
159          * to zero.
160          */
161         memset(&CitControl, 0, sizeof(struct CitControl));
162         if (control_fp == NULL) {
163                 control_fp = fopen(file_citadel_control, "rb+");
164                 if (control_fp != NULL) {
165                         lock_control();
166                         fchown(fileno(control_fp), config.c_ctdluid, -1);
167                         fchmod(fileno(control_fp), 
168                                S_IRUSR|S_IWUSR);
169                 }
170         }
171         if (control_fp == NULL) {
172                 control_fp = fopen(file_citadel_control, "wb+");
173                 if (control_fp != NULL) {
174                         lock_control();
175                         fchown(fileno(control_fp), config.c_ctdluid, -1);
176                         fchmod(fileno(control_fp), 
177                                S_IRUSR|S_IWUSR);
178                         memset(&CitControl, 0, sizeof(struct CitControl));
179                         fwrite(&CitControl, sizeof(struct CitControl),
180                                1, control_fp);
181                         rewind(control_fp);
182                 }
183         }
184         if (control_fp == NULL) {
185                 CtdlLogPrintf(CTDL_ALERT, "ERROR opening %s: %s\n",
186                                 file_citadel_control,
187                                 strerror(errno));
188                 return;
189         }
190
191         rewind(control_fp);
192         fread(&CitControl, sizeof(struct CitControl), 1, control_fp);
193         already_have_control = 1;
194         chown(file_citadel_control, config.c_ctdluid, (-1));
195         
196 }
197
198 /*
199  * put_control  -  write the control record to disk.
200  */
201 void put_control(void)
202 {
203
204         if (control_fp != NULL) {
205                 rewind(control_fp);
206                 fwrite(&CitControl, sizeof(struct CitControl), 1,
207                        control_fp);
208                 fflush(control_fp);
209         }
210 }
211
212
213 /*
214  * check_control   -  check the control record has sensible values for message, user and room numbers
215  */
216 void check_control(void)
217 {
218         CtdlLogPrintf(CTDL_INFO, "Checking/re-building control record\n");
219         get_control();
220         // Find highest room number and message number.
221         ForEachRoom(control_find_highest, NULL);
222         ForEachUser(control_find_user, NULL);
223         put_control();
224 }
225
226
227 /**
228  * release_control - close our fd on exit
229  */
230 void release_control(void)
231 {
232         if (control_fp != NULL)
233                 fclose(control_fp);
234         control_fp = NULL;
235 }
236
237 /*
238  * get_new_message_number()  -  Obtain a new, unique ID to be used for a message.
239  */
240 long get_new_message_number(void)
241 {
242         long retval = 0L;
243         begin_critical_section(S_CONTROL);
244         get_control();
245         retval = ++CitControl.MMhighest;
246         put_control();
247         end_critical_section(S_CONTROL);
248         return(retval);
249 }
250
251
252 /*
253  * CtdlGetCurrentMessageNumber()  -  Obtain the current highest message number in the system
254  * This provides a quick way to initialise a variable that might be used to indicate
255  * messages that should not be processed. EG. a new Sieve script will use this
256  * to record determine that messages older than this should not be processed.
257  */
258 long CtdlGetCurrentMessageNumber(void)
259 {
260         long retval = 0L;
261         begin_critical_section(S_CONTROL);
262         get_control();
263         retval = CitControl.MMhighest;
264         end_critical_section(S_CONTROL);
265         return(retval);
266 }
267
268
269 /*
270  * get_new_user_number()  -  Obtain a new, unique ID to be used for a user.
271  */
272 long get_new_user_number(void)
273 {
274         long retval = 0L;
275         begin_critical_section(S_CONTROL);
276         get_control();
277         retval = ++CitControl.MMnextuser;
278         put_control();
279         end_critical_section(S_CONTROL);
280         return(retval);
281 }
282
283
284
285 /*
286  * get_new_room_number()  -  Obtain a new, unique ID to be used for a room.
287  */
288 long get_new_room_number(void)
289 {
290         long retval = 0L;
291         begin_critical_section(S_CONTROL);
292         get_control();
293         retval = ++CitControl.MMnextroom;
294         put_control();
295         end_critical_section(S_CONTROL);
296         return(retval);
297 }
298
299
300
301 /* 
302  * Get or set global configuration options
303  */
304 void cmd_conf(char *argbuf)
305 {
306         char cmd[16];
307         char buf[256];
308         int a;
309         char *confptr;
310         char confname[128];
311
312         if (CtdlAccessCheck(ac_aide)) return;
313
314         extract_token(cmd, argbuf, 0, '|', sizeof cmd);
315         if (!strcasecmp(cmd, "GET")) {
316                 cprintf("%d Configuration...\n", LISTING_FOLLOWS);
317                 cprintf("%s\n", config.c_nodename);
318                 cprintf("%s\n", config.c_fqdn);
319                 cprintf("%s\n", config.c_humannode);
320                 cprintf("%s\n", config.c_phonenum);
321                 cprintf("%d\n", config.c_creataide);
322                 cprintf("%d\n", config.c_sleeping);
323                 cprintf("%d\n", config.c_initax);
324                 cprintf("%d\n", config.c_regiscall);
325                 cprintf("%d\n", config.c_twitdetect);
326                 cprintf("%s\n", config.c_twitroom);
327                 cprintf("%s\n", config.c_moreprompt);
328                 cprintf("%d\n", config.c_restrict);
329                 cprintf("%s\n", config.c_site_location);
330                 cprintf("%s\n", config.c_sysadm);
331                 cprintf("%d\n", config.c_maxsessions);
332                 cprintf("xxx\n"); /* placeholder -- field no longer in use */
333                 cprintf("%d\n", config.c_userpurge);
334                 cprintf("%d\n", config.c_roompurge);
335                 cprintf("%s\n", config.c_logpages);
336                 cprintf("%d\n", config.c_createax);
337                 cprintf("%ld\n", config.c_maxmsglen);
338                 cprintf("%d\n", config.c_min_workers);
339                 cprintf("%d\n", config.c_max_workers);
340                 cprintf("%d\n", config.c_pop3_port);
341                 cprintf("%d\n", config.c_smtp_port);
342                 cprintf("%d\n", config.c_rfc822_strict_from);
343                 cprintf("%d\n", config.c_aide_zap);
344                 cprintf("%d\n", config.c_imap_port);
345                 cprintf("%ld\n", config.c_net_freq);
346                 cprintf("%d\n", config.c_disable_newu);
347                 cprintf("1\n"); /* niu */
348                 cprintf("%d\n", config.c_purge_hour);
349 #ifdef HAVE_LDAP
350                 cprintf("%s\n", config.c_ldap_host);
351                 cprintf("%d\n", config.c_ldap_port);
352                 cprintf("%s\n", config.c_ldap_base_dn);
353                 cprintf("%s\n", config.c_ldap_bind_dn);
354                 cprintf("%s\n", config.c_ldap_bind_pw);
355 #else
356                 cprintf("\n");
357                 cprintf("0\n");
358                 cprintf("\n");
359                 cprintf("\n");
360                 cprintf("\n");
361 #endif
362                 cprintf("%s\n", config.c_ip_addr);
363                 cprintf("%d\n", config.c_msa_port);
364                 cprintf("%d\n", config.c_imaps_port);
365                 cprintf("%d\n", config.c_pop3s_port);
366                 cprintf("%d\n", config.c_smtps_port);
367                 cprintf("%d\n", config.c_enable_fulltext);
368                 cprintf("%d\n", config.c_auto_cull);
369                 cprintf("%d\n", config.c_instant_expunge);
370                 cprintf("%d\n", config.c_allow_spoofing);
371                 cprintf("%d\n", config.c_journal_email);
372                 cprintf("%d\n", config.c_journal_pubmsgs);
373                 cprintf("%s\n", config.c_journal_dest);
374                 cprintf("%s\n", config.c_default_cal_zone);
375                 cprintf("%d\n", config.c_pftcpdict_port);
376                 cprintf("%d\n", config.c_managesieve_port);
377                 cprintf("%d\n", config.c_auth_mode);
378                 cprintf("%s\n", config.c_funambol_host);
379                 cprintf("%d\n", config.c_funambol_port);
380                 cprintf("%s\n", config.c_funambol_source);
381                 cprintf("%s\n", config.c_funambol_auth);
382                 cprintf("%d\n", config.c_rbl_at_greeting);
383                 cprintf("%s\n", config.c_master_user);
384                 cprintf("%s\n", config.c_master_pass);
385                 cprintf("%s\n", config.c_pager_program);
386                 cprintf("%d\n", config.c_imap_keep_from);
387                 cprintf("%d\n", config.c_xmpp_c2s_port);
388                 cprintf("%d\n", config.c_xmpp_s2s_port);
389                 cprintf("%ld\n", config.c_pop3_fetch);
390                 cprintf("%ld\n", config.c_pop3_fastest);
391                 cprintf("%d\n", config.c_spam_flag_only);
392                 cprintf("000\n");
393         }
394
395         else if (!strcasecmp(cmd, "SET")) {
396                 unbuffer_output();
397                 cprintf("%d Send configuration...\n", SEND_LISTING);
398                 a = 0;
399                 while (client_getln(buf, sizeof buf) >= 0 && strcmp(buf, "000")) {
400                         switch (a) {
401                         case 0:
402                                 safestrncpy(config.c_nodename, buf,
403                                             sizeof config.c_nodename);
404                                 break;
405                         case 1:
406                                 safestrncpy(config.c_fqdn, buf,
407                                             sizeof config.c_fqdn);
408                                 break;
409                         case 2:
410                                 safestrncpy(config.c_humannode, buf,
411                                             sizeof config.c_humannode);
412                                 break;
413                         case 3:
414                                 safestrncpy(config.c_phonenum, buf,
415                                             sizeof config.c_phonenum);
416                                 break;
417                         case 4:
418                                 config.c_creataide = atoi(buf);
419                                 break;
420                         case 5:
421                                 config.c_sleeping = atoi(buf);
422                                 break;
423                         case 6:
424                                 config.c_initax = atoi(buf);
425                                 if (config.c_initax < 1)
426                                         config.c_initax = 1;
427                                 if (config.c_initax > 6)
428                                         config.c_initax = 6;
429                                 break;
430                         case 7:
431                                 config.c_regiscall = atoi(buf);
432                                 if (config.c_regiscall != 0)
433                                         config.c_regiscall = 1;
434                                 break;
435                         case 8:
436                                 config.c_twitdetect = atoi(buf);
437                                 if (config.c_twitdetect != 0)
438                                         config.c_twitdetect = 1;
439                                 break;
440                         case 9:
441                                 safestrncpy(config.c_twitroom, buf,
442                                             sizeof config.c_twitroom);
443                                 break;
444                         case 10:
445                                 safestrncpy(config.c_moreprompt, buf,
446                                             sizeof config.c_moreprompt);
447                                 break;
448                         case 11:
449                                 config.c_restrict = atoi(buf);
450                                 if (config.c_restrict != 0)
451                                         config.c_restrict = 1;
452                                 break;
453                         case 12:
454                                 safestrncpy(config.c_site_location, buf,
455                                             sizeof config.c_site_location);
456                                 break;
457                         case 13:
458                                 safestrncpy(config.c_sysadm, buf,
459                                             sizeof config.c_sysadm);
460                                 break;
461                         case 14:
462                                 config.c_maxsessions = atoi(buf);
463                                 if (config.c_maxsessions < 0)
464                                         config.c_maxsessions = 0;
465                                 break;
466                         case 15:
467                                 /* placeholder -- field no longer in use */
468                                 break;
469                         case 16:
470                                 config.c_userpurge = atoi(buf);
471                                 break;
472                         case 17:
473                                 config.c_roompurge = atoi(buf);
474                                 break;
475                         case 18:
476                                 safestrncpy(config.c_logpages, buf,
477                                             sizeof config.c_logpages);
478                                 break;
479                         case 19:
480                                 config.c_createax = atoi(buf);
481                                 if (config.c_createax < 1)
482                                         config.c_createax = 1;
483                                 if (config.c_createax > 6)
484                                         config.c_createax = 6;
485                                 break;
486                         case 20:
487                                 if (atoi(buf) >= 8192)
488                                         config.c_maxmsglen = atoi(buf);
489                                 break;
490                         case 21:
491                                 if (atoi(buf) >= 2)
492                                         config.c_min_workers = atoi(buf);
493                         case 22:
494                                 if (atoi(buf) >= config.c_min_workers)
495                                         config.c_max_workers = atoi(buf);
496                         case 23:
497                                 config.c_pop3_port = atoi(buf);
498                                 break;
499                         case 24:
500                                 config.c_smtp_port = atoi(buf);
501                                 break;
502                         case 25:
503                                 config.c_rfc822_strict_from = atoi(buf);
504                                 break;
505                         case 26:
506                                 config.c_aide_zap = atoi(buf);
507                                 if (config.c_aide_zap != 0)
508                                         config.c_aide_zap = 1;
509                                 break;
510                         case 27:
511                                 config.c_imap_port = atoi(buf);
512                                 break;
513                         case 28:
514                                 config.c_net_freq = atol(buf);
515                                 break;
516                         case 29:
517                                 config.c_disable_newu = atoi(buf);
518                                 if (config.c_disable_newu != 0)
519                                         config.c_disable_newu = 1;
520                                 break;
521                         case 30:
522                                 /* niu */
523                                 break;
524                         case 31:
525                                 if ((config.c_purge_hour >= 0)
526                                    && (config.c_purge_hour <= 23)) {
527                                         config.c_purge_hour = atoi(buf);
528                                 }
529                                 break;
530 #ifdef HAVE_LDAP
531                         case 32:
532                                 safestrncpy(config.c_ldap_host, buf,
533                                             sizeof config.c_ldap_host);
534                                 break;
535                         case 33:
536                                 config.c_ldap_port = atoi(buf);
537                                 break;
538                         case 34:
539                                 safestrncpy(config.c_ldap_base_dn, buf,
540                                             sizeof config.c_ldap_base_dn);
541                                 break;
542                         case 35:
543                                 safestrncpy(config.c_ldap_bind_dn, buf,
544                                             sizeof config.c_ldap_bind_dn);
545                                 break;
546                         case 36:
547                                 safestrncpy(config.c_ldap_bind_pw, buf,
548                                             sizeof config.c_ldap_bind_pw);
549                                 break;
550 #endif
551                         case 37:
552                                 safestrncpy(config.c_ip_addr, buf,
553                                                 sizeof config.c_ip_addr);
554                         case 38:
555                                 config.c_msa_port = atoi(buf);
556                                 break;
557                         case 39:
558                                 config.c_imaps_port = atoi(buf);
559                                 break;
560                         case 40:
561                                 config.c_pop3s_port = atoi(buf);
562                                 break;
563                         case 41:
564                                 config.c_smtps_port = atoi(buf);
565                                 break;
566                         case 42:
567                                 config.c_enable_fulltext = atoi(buf);
568                                 break;
569                         case 43:
570                                 config.c_auto_cull = atoi(buf);
571                                 break;
572                         case 44:
573                                 config.c_instant_expunge = atoi(buf);
574                                 break;
575                         case 45:
576                                 config.c_allow_spoofing = atoi(buf);
577                                 break;
578                         case 46:
579                                 config.c_journal_email = atoi(buf);
580                                 break;
581                         case 47:
582                                 config.c_journal_pubmsgs = atoi(buf);
583                                 break;
584                         case 48:
585                                 safestrncpy(config.c_journal_dest, buf,
586                                                 sizeof config.c_journal_dest);
587                         case 49:
588                                 safestrncpy(config.c_default_cal_zone, buf,
589                                                 sizeof config.c_default_cal_zone);
590                                 break;
591                         case 50:
592                                 config.c_pftcpdict_port = atoi(buf);
593                                 break;
594                         case 51:
595                                 config.c_managesieve_port = atoi(buf);
596                                 break;
597                         case 52:
598                                 config.c_auth_mode = atoi(buf);
599                         case 53:
600                                 safestrncpy(config.c_funambol_host, buf,
601                                         sizeof config.c_funambol_host);
602                                 break;
603                         case 54:
604                                 config.c_funambol_port = atoi(buf);
605                                 break;
606                         case 55:
607                                 safestrncpy(config.c_funambol_source,
608                                         buf, 
609                                         sizeof config.c_funambol_source);
610                                 break;
611                         case 56:
612                                 safestrncpy(config.c_funambol_auth,
613                                         buf,
614                                         sizeof config.c_funambol_auth);
615                                 break;
616                         case 57:
617                                 config.c_rbl_at_greeting = atoi(buf);
618                                 break;
619                         case 58:
620                                 safestrncpy(config.c_master_user, buf, sizeof config.c_master_user);
621                                 break;
622                         case 59:
623                                 safestrncpy(config.c_master_pass, buf, sizeof config.c_master_pass);
624                                 break;
625                         case 60:
626                                 safestrncpy(config.c_pager_program,
627                                         buf,
628                                         sizeof config.c_pager_program);
629                                 break;
630                         case 61:
631                                 config.c_imap_keep_from = atoi(buf);
632                                 break;
633                         case 62:
634                                 config.c_xmpp_c2s_port = atoi(buf);
635                                 break;
636                         case 63:
637                                 config.c_xmpp_s2s_port = atoi(buf);
638                                 break;
639                         case 64:
640                                 config.c_pop3_fetch = atol(buf);
641                                 break;
642                         case 65:
643                                 config.c_pop3_fastest = atol(buf);
644                                 break;
645                         case 66:
646                                 config.c_spam_flag_only = atoi(buf);
647                                 break;
648                         }
649                         ++a;
650                 }
651                 put_config();
652                 snprintf(buf, sizeof buf,
653                          "The global system configuration has been edited by %s.\n",
654                          CC->curr_user);
655                 aide_message(buf,"Citadel Configuration Manager Message");
656
657                 if (!IsEmptyStr(config.c_logpages))
658                         create_room(config.c_logpages, 3, "", 0, 1, 1, VIEW_BBS);
659
660                 /* If full text indexing has been disabled, invalidate the
661                  * index so it doesn't try to use it later.
662                  */
663                 if (config.c_enable_fulltext == 0) {
664                         CitControl.fulltext_wordbreaker = 0;
665                         put_control();
666                 }
667         }
668
669         else if (!strcasecmp(cmd, "GETSYS")) {
670                 extract_token(confname, argbuf, 1, '|', sizeof confname);
671                 confptr = CtdlGetSysConfig(confname);
672                 if (confptr != NULL) {
673                         cprintf("%d %s\n", LISTING_FOLLOWS, confname);
674                         client_write(confptr, strlen(confptr));
675                         if (confptr[strlen(confptr) - 1] != 10)
676                                 client_write("\n", 1);
677                         cprintf("000\n");
678                         free(confptr);
679                 } else {
680                         cprintf("%d No such configuration.\n",
681                                 ERROR + ILLEGAL_VALUE);
682                 }
683         }
684
685         else if (!strcasecmp(cmd, "PUTSYS")) {
686                 extract_token(confname, argbuf, 1, '|', sizeof confname);
687                 unbuffer_output();
688                 cprintf("%d %s\n", SEND_LISTING, confname);
689                 confptr = CtdlReadMessageBody("000", config.c_maxmsglen, NULL, 0, 0);
690                 CtdlPutSysConfig(confname, confptr);
691                 free(confptr);
692         }
693
694         else {
695                 cprintf("%d Illegal option(s) specified.\n",
696                         ERROR + ILLEGAL_VALUE);
697         }
698 }