cleanup includes
[citadel.git] / citadel / control.c
1 /*
2  * This module handles states which are global to the entire server.
3  *
4  * Copyright (c) 1987-2012 by the citadel.org team
5  *
6  *  This program is open source software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License version 3.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  */
14
15 #include <stdio.h>
16 #include <sys/file.h>
17 #include <libcitadel.h>
18
19 #include "ctdl_module.h"
20 #include "config.h"
21 #include "citserver.h"
22 #include "user_ops.h"
23
24 struct CitControl CitControl;
25 extern struct config config;
26 FILE *control_fp = NULL;
27 long control_highest_user = 0;
28
29
30 /*
31  * lock_control  -  acquire a lock on the control record file.
32  *                  This keeps multiple citservers from running concurrently.
33  */
34 void lock_control(void)
35 {
36 #if defined(LOCK_EX) && defined(LOCK_NB)
37         if (flock(fileno(control_fp), (LOCK_EX | LOCK_NB))) {
38                 syslog(LOG_EMERG, "citserver: unable to lock %s.\n", file_citadel_control);
39                 syslog(LOG_EMERG, "Is another citserver already running?\n");
40                 exit(CTDLEXIT_CONTROL);
41         }
42 #endif
43 }
44
45 /*
46  * callback to get highest room number when rebuilding control file
47  */
48 void control_find_highest(struct ctdlroom *qrbuf, void *data)
49 {
50         struct ctdlroom room;
51         struct cdbdata *cdbfr;
52         long *msglist;
53         int num_msgs=0;
54         int c;
55         int room_fixed = 0;
56         int message_fixed = 0;
57         
58         if (qrbuf->QRnumber > CitControl.MMnextroom)
59         {
60                 CitControl.MMnextroom = qrbuf->QRnumber;
61                 room_fixed = 1;
62         }
63                 
64         CtdlGetRoom (&room, qrbuf->QRname);
65         
66         /* Load the message list */
67         cdbfr = cdb_fetch(CDB_MSGLISTS, &room.QRnumber, sizeof(long));
68         if (cdbfr != NULL) {
69                 msglist = (long *) cdbfr->ptr;
70                 num_msgs = cdbfr->len / sizeof(long);
71         } else {
72                 return; /* No messages at all?  No further action. */
73         }
74
75         if (num_msgs>0)
76         {
77                 for (c=0; c<num_msgs; c++)
78                 {
79                         if (msglist[c] > CitControl.MMhighest)
80                         {
81                                 CitControl.MMhighest = msglist[c];
82                                 message_fixed = 1;
83                         }
84                 }
85         }
86         cdb_free(cdbfr);
87         if (room_fixed)
88                 syslog(LOG_INFO, "Control record checking....Fixed room counter\n");
89         if (message_fixed)
90                 syslog(LOG_INFO, "Control record checking....Fixed message count\n");
91         return;
92 }
93
94
95 /*
96  * Callback to get highest user number.
97  */
98  
99 void control_find_user (struct ctdluser *EachUser, void *out_data)
100 {
101         int user_fixed = 0;
102         
103         if (EachUser->usernum > CitControl.MMnextuser)
104         {
105                 CitControl.MMnextuser = EachUser->usernum;
106                 user_fixed = 1;
107         }
108         if(user_fixed)
109                 syslog(LOG_INFO, "Control record checking....Fixed user count\n");
110 }
111
112
113 /*
114  * get_control  -  read the control record into memory.
115  */
116 void get_control(void)
117 {
118         static int already_have_control = 0;
119         int rv = 0;
120
121         /*
122          * If we already have the control record in memory, there's no point
123          * in reading it from disk again.
124          */
125         if (already_have_control) return;
126
127         /* Zero it out.  If the control record on disk is missing or short,
128          * the system functions with all control record fields initialized
129          * to zero.
130          */
131         memset(&CitControl, 0, sizeof(struct CitControl));
132         if (control_fp == NULL) {
133                 control_fp = fopen(file_citadel_control, "rb+");
134                 if (control_fp != NULL) {
135                         lock_control();
136                         rv = fchown(fileno(control_fp), config.c_ctdluid, -1);
137                         if (rv == -1)
138                                 syslog(LOG_EMERG, "Failed to adjust ownership of: %s [%s]\n", 
139                                        file_citadel_control, strerror(errno));
140                         rv = fchmod(fileno(control_fp), S_IRUSR|S_IWUSR);
141                         if (rv == -1)
142                                 syslog(LOG_EMERG, "Failed to adjust accessrights of: %s [%s]\n", 
143                                        file_citadel_control, strerror(errno));
144                 }
145         }
146         if (control_fp == NULL) {
147                 control_fp = fopen(file_citadel_control, "wb+");
148                 if (control_fp != NULL) {
149                         lock_control();
150                         memset(&CitControl, 0, sizeof(struct CitControl));
151
152                         rv = fchown(fileno(control_fp), config.c_ctdluid, -1);
153                         if (rv == -1)
154                                 syslog(LOG_EMERG, "Failed to adjust ownership of: %s [%s]\n", 
155                                        file_citadel_control, strerror(errno));
156
157                         rv = fchmod(fileno(control_fp), S_IRUSR|S_IWUSR);
158                         if (rv == -1)
159                                 syslog(LOG_EMERG, "Failed to adjust accessrights of: %s [%s]\n", 
160                                        file_citadel_control, strerror(errno));
161                         rv = fwrite(&CitControl, sizeof(struct CitControl), 1, control_fp);
162                         if (rv == -1)
163                                 syslog(LOG_EMERG, "Failed to write: %s [%s]\n", 
164                                        file_citadel_control, strerror(errno));
165                         rewind(control_fp);
166                 }
167         }
168         if (control_fp == NULL) {
169                 syslog(LOG_ALERT, "ERROR opening %s: %s\n", file_citadel_control, strerror(errno));
170                 return;
171         }
172
173         rewind(control_fp);
174         rv = fread(&CitControl, sizeof(struct CitControl), 1, control_fp);
175         if (rv == -1)
176                 syslog(LOG_EMERG, "Failed to read Controlfile: %s [%s]\n", 
177                        file_citadel_control, strerror(errno));
178         already_have_control = 1;
179         rv = chown(file_citadel_control, config.c_ctdluid, (-1));
180         if (rv == -1)
181                 syslog(LOG_EMERG, "Failed to adjust ownership of: %s [%s]\n", 
182                        file_citadel_control, strerror(errno));  
183 }
184
185 /*
186  * put_control  -  write the control record to disk.
187  */
188 void put_control(void)
189 {
190         int rv = 0;
191
192         if (control_fp != NULL) {
193                 rewind(control_fp);
194                 rv = fwrite(&CitControl, sizeof(struct CitControl), 1, control_fp);
195                 if (rv == -1)
196                         syslog(LOG_EMERG, "Failed to write: %s [%s]\n", 
197                                file_citadel_control, strerror(errno));
198                 fflush(control_fp);
199         }
200 }
201
202
203 /*
204  * check_control   -  check the control record has sensible values for message, user and room numbers
205  */
206 void check_control(void)
207 {
208         syslog(LOG_INFO, "Checking/re-building control record\n");
209         get_control();
210         // Find highest room number and message number.
211         CtdlForEachRoom(control_find_highest, NULL);
212         ForEachUser(control_find_user, NULL);
213         put_control();
214 }
215
216
217 /*
218  * release_control - close our fd on exit
219  */
220 void release_control(void)
221 {
222         if (control_fp != NULL) {
223                 fclose(control_fp);
224         }
225         control_fp = NULL;
226 }
227
228 /*
229  * get_new_message_number()  -  Obtain a new, unique ID to be used for a message.
230  */
231 long get_new_message_number(void)
232 {
233         long retval = 0L;
234         begin_critical_section(S_CONTROL);
235         get_control();
236         retval = ++CitControl.MMhighest;
237         put_control();
238         end_critical_section(S_CONTROL);
239         return(retval);
240 }
241
242
243 /*
244  * CtdlGetCurrentMessageNumber()  -  Obtain the current highest message number in the system
245  * This provides a quick way to initialise a variable that might be used to indicate
246  * messages that should not be processed. EG. a new Sieve script will use this
247  * to record determine that messages older than this should not be processed.
248  */
249 long CtdlGetCurrentMessageNumber(void)
250 {
251         long retval = 0L;
252         begin_critical_section(S_CONTROL);
253         get_control();
254         retval = CitControl.MMhighest;
255         end_critical_section(S_CONTROL);
256         return(retval);
257 }
258
259
260 /*
261  * get_new_user_number()  -  Obtain a new, unique ID to be used for a user.
262  */
263 long get_new_user_number(void)
264 {
265         long retval = 0L;
266         begin_critical_section(S_CONTROL);
267         get_control();
268         retval = ++CitControl.MMnextuser;
269         put_control();
270         end_critical_section(S_CONTROL);
271         return(retval);
272 }
273
274
275
276 /*
277  * get_new_room_number()  -  Obtain a new, unique ID to be used for a room.
278  */
279 long get_new_room_number(void)
280 {
281         long retval = 0L;
282         begin_critical_section(S_CONTROL);
283         get_control();
284         retval = ++CitControl.MMnextroom;
285         put_control();
286         end_critical_section(S_CONTROL);
287         return(retval);
288 }
289
290
291
292 /* 
293  * Get or set global configuration options
294  *
295  * IF YOU ADD OR CHANGE FIELDS HERE, YOU *MUST* DOCUMENT YOUR CHANGES AT:
296  * http://www.citadel.org/doku.php?id=documentation:applicationprotocol
297  *
298  */
299 void cmd_conf(char *argbuf)
300 {
301         char cmd[16];
302         char buf[256];
303         int a;
304         char *confptr;
305         char confname[128];
306
307         if (CtdlAccessCheck(ac_aide)) return;
308
309         extract_token(cmd, argbuf, 0, '|', sizeof cmd);
310         if (!strcasecmp(cmd, "GET")) {
311                 cprintf("%d Configuration...\n", LISTING_FOLLOWS);
312                 cprintf("%s\n", config.c_nodename);
313                 cprintf("%s\n", config.c_fqdn);
314                 cprintf("%s\n", config.c_humannode);
315                 cprintf("%s\n", config.c_phonenum);
316                 cprintf("%d\n", config.c_creataide);
317                 cprintf("%d\n", config.c_sleeping);
318                 cprintf("%d\n", config.c_initax);
319                 cprintf("%d\n", config.c_regiscall);
320                 cprintf("%d\n", config.c_twitdetect);
321                 cprintf("%s\n", config.c_twitroom);
322                 cprintf("%s\n", config.c_moreprompt);
323                 cprintf("%d\n", config.c_restrict);
324                 cprintf("%s\n", config.c_site_location);
325                 cprintf("%s\n", config.c_sysadm);
326                 cprintf("%d\n", config.c_maxsessions);
327                 cprintf("xxx\n"); /* placeholder -- field no longer in use */
328                 cprintf("%d\n", config.c_userpurge);
329                 cprintf("%d\n", config.c_roompurge);
330                 cprintf("%s\n", config.c_logpages);
331                 cprintf("%d\n", config.c_createax);
332                 cprintf("%ld\n", config.c_maxmsglen);
333                 cprintf("%d\n", config.c_min_workers);
334                 cprintf("%d\n", config.c_max_workers);
335                 cprintf("%d\n", config.c_pop3_port);
336                 cprintf("%d\n", config.c_smtp_port);
337                 cprintf("%d\n", config.c_rfc822_strict_from);
338                 cprintf("%d\n", config.c_aide_zap);
339                 cprintf("%d\n", config.c_imap_port);
340                 cprintf("%ld\n", config.c_net_freq);
341                 cprintf("%d\n", config.c_disable_newu);
342                 cprintf("1\n"); /* niu */
343                 cprintf("%d\n", config.c_purge_hour);
344 #ifdef HAVE_LDAP
345                 cprintf("%s\n", config.c_ldap_host);
346                 cprintf("%d\n", config.c_ldap_port);
347                 cprintf("%s\n", config.c_ldap_base_dn);
348                 cprintf("%s\n", config.c_ldap_bind_dn);
349                 cprintf("%s\n", config.c_ldap_bind_pw);
350 #else
351                 cprintf("\n");
352                 cprintf("0\n");
353                 cprintf("\n");
354                 cprintf("\n");
355                 cprintf("\n");
356 #endif
357                 cprintf("%s\n", config.c_ip_addr);
358                 cprintf("%d\n", config.c_msa_port);
359                 cprintf("%d\n", config.c_imaps_port);
360                 cprintf("%d\n", config.c_pop3s_port);
361                 cprintf("%d\n", config.c_smtps_port);
362                 cprintf("%d\n", config.c_enable_fulltext);
363                 cprintf("%d\n", config.c_auto_cull);
364                 cprintf("1\n");
365                 cprintf("%d\n", config.c_allow_spoofing);
366                 cprintf("%d\n", config.c_journal_email);
367                 cprintf("%d\n", config.c_journal_pubmsgs);
368                 cprintf("%s\n", config.c_journal_dest);
369                 cprintf("%s\n", config.c_default_cal_zone);
370                 cprintf("%d\n", config.c_pftcpdict_port);
371                 cprintf("%d\n", config.c_managesieve_port);
372                 cprintf("%d\n", config.c_auth_mode);
373                 cprintf("%s\n", config.c_funambol_host);
374                 cprintf("%d\n", config.c_funambol_port);
375                 cprintf("%s\n", config.c_funambol_source);
376                 cprintf("%s\n", config.c_funambol_auth);
377                 cprintf("%d\n", config.c_rbl_at_greeting);
378                 cprintf("%s\n", config.c_master_user);
379                 cprintf("%s\n", config.c_master_pass);
380                 cprintf("%s\n", config.c_pager_program);
381                 cprintf("%d\n", config.c_imap_keep_from);
382                 cprintf("%d\n", config.c_xmpp_c2s_port);
383                 cprintf("%d\n", config.c_xmpp_s2s_port);
384                 cprintf("%ld\n", config.c_pop3_fetch);
385                 cprintf("%ld\n", config.c_pop3_fastest);
386                 cprintf("%d\n", config.c_spam_flag_only);
387                 cprintf("%d\n", config.c_guest_logins);
388                 cprintf("%d\n", config.c_port_number);
389                 cprintf("%d\n", config.c_ctdluid);
390                 cprintf("000\n");
391         }
392
393         else if (!strcasecmp(cmd, "SET")) {
394                 unbuffer_output();
395                 cprintf("%d Send configuration...\n", SEND_LISTING);
396                 a = 0;
397                 while (client_getln(buf, sizeof buf) >= 0 && strcmp(buf, "000")) {
398                         switch (a) {
399                         case 0:
400                                 safestrncpy(config.c_nodename, buf,
401                                             sizeof config.c_nodename);
402                                 break;
403                         case 1:
404                                 safestrncpy(config.c_fqdn, buf,
405                                             sizeof config.c_fqdn);
406                                 break;
407                         case 2:
408                                 safestrncpy(config.c_humannode, buf,
409                                             sizeof config.c_humannode);
410                                 break;
411                         case 3:
412                                 safestrncpy(config.c_phonenum, buf,
413                                             sizeof config.c_phonenum);
414                                 break;
415                         case 4:
416                                 config.c_creataide = atoi(buf);
417                                 break;
418                         case 5:
419                                 config.c_sleeping = atoi(buf);
420                                 break;
421                         case 6:
422                                 config.c_initax = atoi(buf);
423                                 if (config.c_initax < 1)
424                                         config.c_initax = 1;
425                                 if (config.c_initax > 6)
426                                         config.c_initax = 6;
427                                 break;
428                         case 7:
429                                 config.c_regiscall = atoi(buf);
430                                 if (config.c_regiscall != 0)
431                                         config.c_regiscall = 1;
432                                 break;
433                         case 8:
434                                 config.c_twitdetect = atoi(buf);
435                                 if (config.c_twitdetect != 0)
436                                         config.c_twitdetect = 1;
437                                 break;
438                         case 9:
439                                 safestrncpy(config.c_twitroom, buf,
440                                             sizeof config.c_twitroom);
441                                 break;
442                         case 10:
443                                 safestrncpy(config.c_moreprompt, buf,
444                                             sizeof config.c_moreprompt);
445                                 break;
446                         case 11:
447                                 config.c_restrict = atoi(buf);
448                                 if (config.c_restrict != 0)
449                                         config.c_restrict = 1;
450                                 break;
451                         case 12:
452                                 safestrncpy(config.c_site_location, buf,
453                                             sizeof config.c_site_location);
454                                 break;
455                         case 13:
456                                 safestrncpy(config.c_sysadm, buf,
457                                             sizeof config.c_sysadm);
458                                 break;
459                         case 14:
460                                 config.c_maxsessions = atoi(buf);
461                                 if (config.c_maxsessions < 0)
462                                         config.c_maxsessions = 0;
463                                 break;
464                         case 15:
465                                 /* placeholder -- field no longer in use */
466                                 break;
467                         case 16:
468                                 config.c_userpurge = atoi(buf);
469                                 break;
470                         case 17:
471                                 config.c_roompurge = atoi(buf);
472                                 break;
473                         case 18:
474                                 safestrncpy(config.c_logpages, buf,
475                                             sizeof config.c_logpages);
476                                 break;
477                         case 19:
478                                 config.c_createax = atoi(buf);
479                                 if (config.c_createax < 1)
480                                         config.c_createax = 1;
481                                 if (config.c_createax > 6)
482                                         config.c_createax = 6;
483                                 break;
484                         case 20:
485                                 if (atoi(buf) >= 8192)
486                                         config.c_maxmsglen = atoi(buf);
487                                 break;
488                         case 21:
489                                 if (atoi(buf) >= 2)
490                                         config.c_min_workers = atoi(buf);
491                         case 22:
492                                 if (atoi(buf) >= config.c_min_workers)
493                                         config.c_max_workers = atoi(buf);
494                         case 23:
495                                 config.c_pop3_port = atoi(buf);
496                                 break;
497                         case 24:
498                                 config.c_smtp_port = atoi(buf);
499                                 break;
500                         case 25:
501                                 config.c_rfc822_strict_from = atoi(buf);
502                                 break;
503                         case 26:
504                                 config.c_aide_zap = atoi(buf);
505                                 if (config.c_aide_zap != 0)
506                                         config.c_aide_zap = 1;
507                                 break;
508                         case 27:
509                                 config.c_imap_port = atoi(buf);
510                                 break;
511                         case 28:
512                                 config.c_net_freq = atol(buf);
513                                 break;
514                         case 29:
515                                 config.c_disable_newu = atoi(buf);
516                                 if (config.c_disable_newu != 0)
517                                         config.c_disable_newu = 1;
518                                 break;
519                         case 30:
520                                 /* niu */
521                                 break;
522                         case 31:
523                                 if ((config.c_purge_hour >= 0)
524                                    && (config.c_purge_hour <= 23)) {
525                                         config.c_purge_hour = atoi(buf);
526                                 }
527                                 break;
528 #ifdef HAVE_LDAP
529                         case 32:
530                                 safestrncpy(config.c_ldap_host, buf,
531                                             sizeof config.c_ldap_host);
532                                 break;
533                         case 33:
534                                 config.c_ldap_port = atoi(buf);
535                                 break;
536                         case 34:
537                                 safestrncpy(config.c_ldap_base_dn, buf,
538                                             sizeof config.c_ldap_base_dn);
539                                 break;
540                         case 35:
541                                 safestrncpy(config.c_ldap_bind_dn, buf,
542                                             sizeof config.c_ldap_bind_dn);
543                                 break;
544                         case 36:
545                                 safestrncpy(config.c_ldap_bind_pw, buf,
546                                             sizeof config.c_ldap_bind_pw);
547                                 break;
548 #endif
549                         case 37:
550                                 safestrncpy(config.c_ip_addr, buf,
551                                                 sizeof config.c_ip_addr);
552                         case 38:
553                                 config.c_msa_port = atoi(buf);
554                                 break;
555                         case 39:
556                                 config.c_imaps_port = atoi(buf);
557                                 break;
558                         case 40:
559                                 config.c_pop3s_port = atoi(buf);
560                                 break;
561                         case 41:
562                                 config.c_smtps_port = atoi(buf);
563                                 break;
564                         case 42:
565                                 config.c_enable_fulltext = atoi(buf);
566                                 break;
567                         case 43:
568                                 config.c_auto_cull = atoi(buf);
569                                 break;
570                         case 44:
571                                 /* niu */
572                                 break;
573                         case 45:
574                                 config.c_allow_spoofing = atoi(buf);
575                                 break;
576                         case 46:
577                                 config.c_journal_email = atoi(buf);
578                                 break;
579                         case 47:
580                                 config.c_journal_pubmsgs = atoi(buf);
581                                 break;
582                         case 48:
583                                 safestrncpy(config.c_journal_dest, buf,
584                                                 sizeof config.c_journal_dest);
585                         case 49:
586                                 safestrncpy(config.c_default_cal_zone, buf,
587                                                 sizeof config.c_default_cal_zone);
588                                 break;
589                         case 50:
590                                 config.c_pftcpdict_port = atoi(buf);
591                                 break;
592                         case 51:
593                                 config.c_managesieve_port = atoi(buf);
594                                 break;
595                         case 52:
596                                 config.c_auth_mode = atoi(buf);
597                         case 53:
598                                 safestrncpy(config.c_funambol_host, buf,
599                                         sizeof config.c_funambol_host);
600                                 break;
601                         case 54:
602                                 config.c_funambol_port = atoi(buf);
603                                 break;
604                         case 55:
605                                 safestrncpy(config.c_funambol_source,
606                                         buf, 
607                                         sizeof config.c_funambol_source);
608                                 break;
609                         case 56:
610                                 safestrncpy(config.c_funambol_auth,
611                                         buf,
612                                         sizeof config.c_funambol_auth);
613                                 break;
614                         case 57:
615                                 config.c_rbl_at_greeting = atoi(buf);
616                                 break;
617                         case 58:
618                                 safestrncpy(config.c_master_user, buf, sizeof config.c_master_user);
619                                 break;
620                         case 59:
621                                 safestrncpy(config.c_master_pass, buf, sizeof config.c_master_pass);
622                                 break;
623                         case 60:
624                                 safestrncpy(config.c_pager_program,
625                                         buf,
626                                         sizeof config.c_pager_program);
627                                 break;
628                         case 61:
629                                 config.c_imap_keep_from = atoi(buf);
630                                 break;
631                         case 62:
632                                 config.c_xmpp_c2s_port = atoi(buf);
633                                 break;
634                         case 63:
635                                 config.c_xmpp_s2s_port = atoi(buf);
636                                 break;
637                         case 64:
638                                 config.c_pop3_fetch = atol(buf);
639                                 break;
640                         case 65:
641                                 config.c_pop3_fastest = atol(buf);
642                                 break;
643                         case 66:
644                                 config.c_spam_flag_only = atoi(buf);
645                                 break;
646                         case 67:
647                                 config.c_guest_logins = atoi(buf);
648                                 break;
649                         case 68:
650                                 config.c_port_number = atoi(buf);
651                                 break;
652                         case 69:
653                                 config.c_ctdluid = atoi(buf);
654                                 break;
655                         }
656                         ++a;
657                 }
658                 put_config();
659                 snprintf(buf, sizeof buf,
660                         "The global system configuration has been edited by %s.\n",
661                          (CC->logged_in ? CC->curr_user : "an administrator")
662                 );
663                 CtdlAideMessage(buf,"Citadel Configuration Manager Message");
664
665                 if (!IsEmptyStr(config.c_logpages))
666                         CtdlCreateRoom(config.c_logpages, 3, "", 0, 1, 1, VIEW_BBS);
667
668                 /* If full text indexing has been disabled, invalidate the
669                  * index so it doesn't try to use it later.
670                  */
671                 if (config.c_enable_fulltext == 0) {
672                         CitControl.fulltext_wordbreaker = 0;
673                         put_control();
674                 }
675         }
676
677         else if (!strcasecmp(cmd, "GETSYS")) {
678                 extract_token(confname, argbuf, 1, '|', sizeof confname);
679                 confptr = CtdlGetSysConfig(confname);
680                 if (confptr != NULL) {
681                         long len; 
682
683                         len = strlen(confptr);
684                         cprintf("%d %s\n", LISTING_FOLLOWS, confname);
685                         client_write(confptr, len);
686                         if ((len > 0) && (confptr[len - 1] != 10))
687                                 client_write("\n", 1);
688                         cprintf("000\n");
689                         free(confptr);
690                 } else {
691                         cprintf("%d No such configuration.\n",
692                                 ERROR + ILLEGAL_VALUE);
693                 }
694         }
695
696         else if (!strcasecmp(cmd, "PUTSYS")) {
697                 extract_token(confname, argbuf, 1, '|', sizeof confname);
698                 unbuffer_output();
699                 cprintf("%d %s\n", SEND_LISTING, confname);
700                 confptr = CtdlReadMessageBody(HKEY("000"), config.c_maxmsglen, NULL, 0, 0);
701                 CtdlPutSysConfig(confname, confptr);
702                 free(confptr);
703         }
704
705         else {
706                 cprintf("%d Illegal option(s) specified.\n",
707                         ERROR + ILLEGAL_VALUE);
708         }
709 }
710
711 typedef struct __ConfType {
712         ConstStr Name;
713         long Type;
714 }ConfType;
715
716 ConfType CfgNames[] = {
717         { {HKEY("localhost") },    0},
718         { {HKEY("directory") },    0},
719         { {HKEY("smarthost") },    2},
720         { {HKEY("fallbackhost") }, 2},
721         { {HKEY("rbl") },          3},
722         { {HKEY("spamassassin") }, 3},
723         { {HKEY("masqdomain") },   1},
724         { {HKEY("clamav") },       3},
725         { {HKEY("notify") },       3},
726         { {NULL, 0}, 0}
727 };
728
729 HashList *CfgNameHash = NULL;
730 void cmd_gvdn(char *argbuf)
731 {
732         const ConfType *pCfg;
733         char *confptr;
734         long min = atol(argbuf);
735         const char *Pos = NULL;
736         const char *PPos = NULL;
737         const char *HKey;
738         long HKLen;
739         StrBuf *Line;
740         StrBuf *Config;
741         StrBuf *Cfg;
742         StrBuf *CfgToken;
743         HashList *List;
744         HashPos *It;
745         void *vptr;
746         
747         List = NewHash(1, NULL);
748         Cfg = NewStrBufPlain(config.c_fqdn, -1);
749         Put(List, SKEY(Cfg), Cfg, HFreeStrBuf);
750         Cfg = NULL;
751
752         confptr = CtdlGetSysConfig(INTERNETCFG);
753         Config = NewStrBufPlain(confptr, -1);
754         free(confptr);
755
756         Line = NewStrBufPlain(NULL, StrLength(Config));
757         CfgToken = NewStrBufPlain(NULL, StrLength(Config));
758         while (StrBufSipLine(Line, Config, &Pos))
759         {
760                 if (Cfg == NULL)
761                         Cfg = NewStrBufPlain(NULL, StrLength(Line));
762                 PPos = NULL;
763                 StrBufExtract_NextToken(Cfg, Line, &PPos, '|');
764                 StrBufExtract_NextToken(CfgToken, Line, &PPos, '|');
765                 if (GetHash(CfgNameHash, SKEY(CfgToken), &vptr) &&
766                     (vptr != NULL))
767                 {
768                         pCfg = (ConfType *) vptr;
769                         if (pCfg->Type <= min)
770                         {
771                                 Put(List, SKEY(Cfg), Cfg, HFreeStrBuf);
772                                 Cfg = NULL;
773                         }
774                 }
775         }
776
777         cprintf("%d Valid Domains\n", LISTING_FOLLOWS);
778         It = GetNewHashPos(List, 1);
779         while (GetNextHashPos(List, It, &HKLen, &HKey, &vptr))
780         {
781                 cputbuf(vptr);
782                 cprintf("\n");
783         }
784         cprintf("000\n");
785
786         DeleteHashPos(&It);
787         DeleteHash(&List);
788         FreeStrBuf(&Cfg);
789         FreeStrBuf(&Line);
790         FreeStrBuf(&CfgToken);
791         FreeStrBuf(&Config);
792 }
793
794 /*****************************************************************************/
795 /*                      MODULE INITIALIZATION STUFF                          */
796 /*****************************************************************************/
797
798 void control_cleanup(void)
799 {
800         DeleteHash(&CfgNameHash);
801 }
802 CTDL_MODULE_INIT(control)
803 {
804         if (!threading) {
805                 int i;
806
807                 CfgNameHash = NewHash(1, NULL);
808                 for (i = 0; CfgNames[i].Name.Key != NULL; i++)
809                         Put(CfgNameHash, CKEY(CfgNames[i].Name), &CfgNames[i], reference_free_handler);
810
811                 CtdlRegisterProtoHook(cmd_gvdn, "GVDN", "get valid domain names");
812                 CtdlRegisterProtoHook(cmd_conf, "CONF", "get/set system configuration");
813                 CtdlRegisterCleanupHook(control_cleanup);
814
815         }
816         /* return our id for the Log */
817         return "control";
818 }