2f1302fa3d8c37a59105025a7812270ca6dda3d3
[citadel.git] / citadel / control.c
1 /*
2  * control.c
3  *
4  * This module handles states which are global to the entire server.
5  *
6  * $Id$
7  *
8  */
9
10 #include "sysdep.h"
11 #include <stdlib.h>
12 #include <unistd.h>
13 #include <stdio.h>
14 #include <fcntl.h>
15 #include <signal.h>
16 #include <time.h>
17 #include <ctype.h>
18 #include <string.h>
19 #include <errno.h>
20 #include <limits.h>
21 #include <syslog.h>
22 #include "citadel.h"
23 #include "server.h"
24 #include "control.h"
25 #include "sysdep_decls.h"
26 #include "support.h"
27 #include "config.h"
28 #include "msgbase.h"
29 #include "tools.h"
30 #include "room_ops.h"
31
32 struct CitControl CitControl;
33 struct config config;
34 FILE *control_fp = NULL;
35
36 /*
37  * get_control  -  read the control record into memory.
38  */
39 void get_control(void) {
40
41         /* Zero it out.  If the control record on disk is missing or short,
42          * the system functions with all control record fields initialized
43          * to zero.
44          */
45         memset(&CitControl, 0, sizeof(struct CitControl));
46         if (control_fp == NULL)
47                 control_fp = fopen("citadel.control", "rb+");
48         if (control_fp == NULL) {
49                 control_fp = fopen("citadel.control", "wb+");
50                 if (control_fp != NULL) {
51                         memset(&CitControl, 0, sizeof(struct CitControl));
52                         fwrite(&CitControl, sizeof(struct CitControl),
53                                 1, control_fp);
54                         rewind(control_fp);
55                 }
56         }
57         if (control_fp == NULL) {
58                 lprintf(1, "ERROR opening citadel.control: %s\n",
59                         strerror(errno));
60                 return;
61         }
62
63         rewind(control_fp);
64         fread(&CitControl, sizeof(struct CitControl), 1, control_fp);
65         }
66
67 /*
68  * put_control  -  write the control record to disk.
69  */
70 void put_control(void) {
71
72         if (control_fp != NULL) {
73                 rewind(control_fp);
74                 fwrite(&CitControl, sizeof(struct CitControl), 1, control_fp);
75                 fflush(control_fp);
76                 }
77         }
78
79
80 /*
81  * get_new_message_number()  -  Obtain a new, unique ID to be used for a message.
82  */
83 long get_new_message_number(void) {
84         begin_critical_section(S_CONTROL);
85         get_control();
86         ++CitControl.MMhighest;
87         put_control();
88         end_critical_section(S_CONTROL);
89         return(CitControl.MMhighest);
90         }
91
92
93 /*
94  * get_new_user_number()  -  Obtain a new, unique ID to be used for a user.
95  */
96 long get_new_user_number(void) {
97         begin_critical_section(S_CONTROL);
98         get_control();
99         ++CitControl.MMnextuser;
100         put_control();
101         end_critical_section(S_CONTROL);
102         return(CitControl.MMnextuser);
103         }
104
105
106
107 /*
108  * get_new_room_number()  -  Obtain a new, unique ID to be used for a room.
109  */
110 long get_new_room_number(void) {
111         begin_critical_section(S_CONTROL);
112         get_control();
113         ++CitControl.MMnextroom;
114         put_control();
115         end_critical_section(S_CONTROL);
116         return(CitControl.MMnextroom);
117         }
118
119
120
121 /* 
122  * Get or set global configuration options
123  */
124 void cmd_conf(char *argbuf) {
125         char cmd[256];
126         char buf[256];
127         int a;
128
129         if (!(CC->logged_in)) {
130                 cprintf("%d Not logged in.\n",ERROR+NOT_LOGGED_IN);
131                 return;
132                 }
133
134         if (CC->usersupp.axlevel < 6) {
135                 cprintf("%d Higher access required.\n",
136                         ERROR+HIGHER_ACCESS_REQUIRED);
137                 return;
138                 }
139
140         extract(cmd, argbuf, 0);
141         if (!strcasecmp(cmd, "GET")) {
142                 cprintf("%d Configuration...\n", LISTING_FOLLOWS);
143                 cprintf("%s\n", config.c_nodename);
144                 cprintf("%s\n", config.c_fqdn);
145                 cprintf("%s\n", config.c_humannode);
146                 cprintf("%s\n", config.c_phonenum);
147                 cprintf("%d\n", config.c_creataide);
148                 cprintf("%d\n", config.c_sleeping);
149                 cprintf("%d\n", config.c_initax);
150                 cprintf("%d\n", config.c_regiscall);
151                 cprintf("%d\n", config.c_twitdetect);
152                 cprintf("%s\n", config.c_twitroom);
153                 cprintf("%s\n", config.c_moreprompt);
154                 cprintf("%d\n", config.c_restrict);
155                 cprintf("%s\n", config.c_bbs_city);
156                 cprintf("%s\n", config.c_sysadm);
157                 cprintf("%d\n", config.c_maxsessions);
158                 cprintf("%s\n", config.c_net_password);
159                 cprintf("%d\n", config.c_userpurge);
160                 cprintf("%d\n", config.c_roompurge);
161                 cprintf("%s\n", config.c_logpages);
162                 cprintf("%d\n", config.c_createax);
163                 cprintf("%d\n", config.c_maxmsglen);
164                 cprintf("%d\n", config.c_worker_threads);
165                 cprintf("000\n");
166                 }
167
168         else if (!strcasecmp(cmd, "SET")) {
169                 cprintf("%d Send configuration...\n", SEND_LISTING);
170                 a = 0;
171                 while (client_gets(buf), strcmp(buf, "000")) {
172                     switch(a) {
173                         case 0: safestrncpy(config.c_nodename, buf,
174                                         sizeof config.c_nodename);
175                                 break;
176                         case 1: safestrncpy(config.c_fqdn, buf,
177                                         sizeof config.c_fqdn);
178                                 break;
179                         case 2: safestrncpy(config.c_humannode, buf,
180                                         sizeof config.c_humannode);
181                                 break;
182                         case 3: safestrncpy(config.c_phonenum, buf,
183                                         sizeof config.c_phonenum);
184                                 break;
185                         case 4: config.c_creataide = atoi(buf);
186                                 break;
187                         case 5: config.c_sleeping = atoi(buf);
188                                 break;
189                         case 6: config.c_initax = atoi(buf);
190                                 if (config.c_initax < 1) config.c_initax = 1;
191                                 if (config.c_initax > 6) config.c_initax = 6;
192                                 break;
193                         case 7: config.c_regiscall = atoi(buf);
194                                 if (config.c_regiscall != 0)
195                                         config.c_regiscall = 1;
196                                 break;
197                         case 8: config.c_twitdetect = atoi(buf);
198                                 if (config.c_twitdetect != 0)
199                                         config.c_twitdetect = 1;
200                                 break;
201                         case 9: safestrncpy(config.c_twitroom, buf,
202                                         sizeof config.c_twitroom);
203                                 break;
204                         case 10: safestrncpy(config.c_moreprompt, buf,
205                                         sizeof config.c_moreprompt);
206                                 break;
207                         case 11: config.c_restrict = atoi(buf);
208                                 if (config.c_restrict != 0)
209                                         config.c_restrict = 1;
210                                 break;
211                         case 12: safestrncpy(config.c_bbs_city, buf,
212                                         sizeof config.c_bbs_city);
213                                 break;
214                         case 13: safestrncpy(config.c_sysadm, buf,
215                                         sizeof config.c_sysadm);
216                                 break;
217                         case 14: config.c_maxsessions = atoi(buf);
218                                 if (config.c_maxsessions < 1)
219                                         config.c_maxsessions = 1;
220                                 break;
221                         case 15: safestrncpy(config.c_net_password, buf,
222                                         sizeof config.c_net_password);
223                                 break;
224                         case 16: config.c_userpurge = atoi(buf);
225                                 break;
226                         case 17: config.c_roompurge = atoi(buf);
227                                 break;
228                         case 18: safestrncpy(config.c_logpages, buf,
229                                         sizeof config.c_logpages);
230                                 break;
231                         case 19: config.c_createax = atoi(buf);
232                                 if (config.c_createax < 1)
233                                         config.c_createax = 1;
234                                 if (config.c_createax > 6)
235                                         config.c_createax = 6;
236                                 break;
237                         case 20: if (atoi(buf) >= 8192)
238                                         config.c_maxmsglen = atoi(buf);
239                                 break;
240                         case 21: if (atoi(buf) >= 2)
241                                         config.c_worker_threads = atoi(buf);
242                         }
243                     ++a;
244                     }
245                 put_config();
246                 snprintf(buf,sizeof buf,
247                          "Global system configuration edited by %s\n",
248                          CC->curr_user);
249                 aide_message(buf);
250
251                 if (strlen(config.c_logpages) > 0)
252                         create_room(config.c_logpages, 4, "", 0);
253                 }
254
255         else {
256                 cprintf("%d The only valid options are GET and SET.\n",
257                         ERROR+ILLEGAL_VALUE);
258                 }
259         }