]> andersk Git - moira.git/blame - server/mr_main.c
second code style cleanup: void/void * usage, proper #includes. try to
[moira.git] / server / mr_main.c
CommitLineData
7ac48069 1/* $Id$
0fa91a0a 2 *
7ac48069 3 * Moira server process.
0fa91a0a 4 *
7ac48069 5 * Copyright (C) 1987-1998 by the Massachusetts Institute of Technology
6 * For copying and distribution information, please see the file
7 * <mit-copyright.h>.
5eaef520 8 *
0fa91a0a 9 */
10
c801de4c 11#include <mit-copyright.h>
7ac48069 12#include "mr_server.h"
13
14#include <sys/socket.h>
15#include <sys/stat.h>
589993be 16#include <sys/types.h>
7ac48069 17#include <sys/utsname.h>
554776b1 18#include <sys/wait.h>
7ac48069 19
20#include <netinet/in.h>
03c05291 21#include <arpa/inet.h>
70d54e43 22
7ac48069 23#include <ctype.h>
24#include <errno.h>
25#include <signal.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29#include <unistd.h>
30
31RCSID("$Header$");
32
33extern char *krb_get_lrealm(char *, int);
34
0ec57336 35extern CONNECTION newconn, listencon;
0fa91a0a 36
0ec57336 37extern int nclients;
38extern client **clients, *cur_client;
0fa91a0a 39
0ec57336 40extern OPERATION listenop;
41extern LIST_OF_OPERATIONS op_list;
0fa91a0a 42
0ec57336 43extern struct sockaddr_in client_addr;
44extern int client_addrlen;
45extern TUPLE client_tuple;
0fa91a0a 46
0ec57336 47extern char *whoami;
48extern char buf1[BUFSIZ];
49extern char *takedown;
2f4ff9cd 50extern FILE *journal;
70d54e43 51
0eb9f52f 52extern time_t now;
53
7ac48069 54char *host;
3d0d0f07 55
7ac48069 56void reapchild(int x);
57void godormant(int x);
58void gowakeup(int x);
03c05291 59int do_listen(char *port);
60void do_reset_listen(void);
61void clist_append(client *cp);
62void oplist_append(LIST_OF_OPERATIONS *oplp, OPERATION op);
63void oplist_delete(LIST_OF_OPERATIONS oplp, OPERATION op);
64void mr_setup_signals(void);
65int new_connection(void);
e448f08d 66
0ec57336 67/*
59ec8dae 68 * Main Moira server loop.
0ec57336 69 *
70 * Initialize the world, then start accepting connections and
71 * making progress on current connections.
72 */
0fa91a0a 73
5eaef520 74int main(int argc, char **argv)
0fa91a0a 75{
5eaef520 76 int status, i;
77 time_t tardy;
78 char *port, *p;
79 extern char *database;
80 struct stat stbuf;
7ac48069 81 struct utsname uts;
5eaef520 82
83 whoami = argv[0];
84 /*
85 * Error handler init.
86 */
87 initialize_sms_error_table();
88 initialize_krb_error_table();
89 initialize_gdss_error_table();
90 set_com_err_hook(mr_com_err);
91 setvbuf(stderr, NULL, _IOLBF, BUFSIZ);
92
93 port = strchr(MOIRA_SERVER, ':') + 1;
94
95 for (i = 1; i < argc; i++)
96 {
97 if (!strcmp(argv[i], "-db") && i + 1 < argc)
98 {
99 database = argv[i + 1];
100 i++;
5dbd09a0 101 }
5eaef520 102 else if (!strcmp(argv[i], "-p") && i + 1 < argc)
103 {
104 port = argv[i + 1];
105 i++;
f6cc38de 106 }
5eaef520 107 else
108 {
109 com_err(whoami, 0, "Usage: moirad [-db database][-p port]");
3d0d0f07 110 exit(1);
111 }
5eaef520 112 }
113
114 /*
115 * GDB initialization.
116 */
117 if (gdb_init() != 0)
118 {
119 com_err(whoami, 0, "GDB initialization failed.");
120 exit(1);
121 }
122 gdb_debug(0); /* this can be patched, if necessary, to enable */
123 /* GDB level debugging .. */
124 krb_realm = malloc(REALM_SZ);
125 krb_get_lrealm(krb_realm, 1);
126
127 /*
128 * Database initialization. Only init if database should be open.
129 */
130
131 if (stat(MOIRA_MOTD_FILE, &stbuf) != 0)
132 {
133 if ((status = mr_open_database()))
134 {
135 com_err(whoami, status, " when trying to open database.");
136 exit(1);
2f4ff9cd 137 }
5eaef520 138 sanity_check_database();
139 }
140 else
141 {
142 dormant = ASLEEP;
143 com_err(whoami, 0, "sleeping, not opening database");
144 }
2f4ff9cd 145
5eaef520 146 sanity_check_queries();
147
148 /*
149 * Get moira server hostname for authentication
150 */
7ac48069 151 if (uname(&uts) < 0)
5eaef520 152 {
153 com_err(whoami, errno, "Unable to get local hostname");
154 exit(1);
155 }
7ac48069 156 host = canonicalize_hostname(strdup(uts.nodename));
5eaef520 157 for (p = host; *p && *p != '.'; p++)
158 {
159 if (isupper(*p))
160 *p = tolower(*p);
161 }
162 *p = '\0';
163
164 /*
165 * Set up client array handler.
166 */
167 nclients = 0;
168 clients = malloc(0);
169
170 mr_setup_signals();
171
172 journal = fopen(JOURNAL, "a");
173 if (!journal)
174 {
175 com_err(whoami, errno, " while opening journal file");
176 exit(1);
177 }
178
179 /*
180 * Establish template connection.
181 */
182 if ((status = do_listen(port)))
183 {
184 com_err(whoami, status, " while trying to create listening connection");
185 exit(1);
186 }
187
188 op_list = create_list_of_operations(1, listenop);
189
190 com_err(whoami, 0, "started (pid %d)", getpid());
7ac48069 191 com_err(whoami, 0, rcsid);
5eaef520 192 if (dormant != ASLEEP)
193 send_zgram("MOIRA", "server started");
194 else
195 send_zgram("MOIRA", "server started, but database closed");
196
197 /*
198 * Run until shut down.
199 */
200 while (!takedown)
201 {
44d12d58 202 int i;
5eaef520 203 /*
204 * Block until something happens.
205 */
206 if (dormant == SLEEPY)
207 {
208 mr_close_database();
209 com_err(whoami, 0, "database closed");
210 mr_setup_signals();
211 send_zgram("MOIRA", "database closed");
212 dormant = ASLEEP;
213 }
214 else if (dormant == GROGGY)
215 {
216 mr_open_database();
217 com_err(whoami, 0, "database open");
218 mr_setup_signals();
219 send_zgram("MOIRA", "database open again");
220 dormant = AWAKE;
0ec57336 221 }
589993be 222
5eaef520 223 errno = 0;
224 status = op_select_any(op_list, 0, NULL, NULL, NULL, NULL);
225 if (status == -1)
226 {
227 if (errno != EINTR)
228 com_err(whoami, errno, " error from op_select");
229 if (!inc_running || now - inc_started > INC_TIMEOUT)
230 next_incremental();
231 continue;
232 }
233 else if (status != -2)
234 {
235 com_err(whoami, 0, " wrong return from op_select_any");
236 continue;
237 }
238 if (takedown)
239 break;
240 time(&now);
241 if (!inc_running || now - inc_started > INC_TIMEOUT)
242 next_incremental();
243
244 /*
245 * Handle any new connections; this comes first so
246 * errno isn't tromped on.
247 */
248 if (OP_DONE(listenop))
249 {
250 if (OP_STATUS(listenop) == OP_CANCELLED)
251 {
252 if (errno == EWOULDBLOCK)
253 do_reset_listen();
254 else
255 {
256 static int count = 0;
257 com_err(whoami, errno, " error (%d) on listen", count);
258 if (count++ > 10)
259 exit(1);
0fa91a0a 260 }
5eaef520 261 }
262 else if ((status = new_connection()))
263 {
264 com_err(whoami, errno, " Error on listening operation.");
265 /*
266 * Sleep here to prevent hosing?
267 */
268 }
269 /* if the new connection is our only connection,
270 * and the server is supposed to be down, then go
271 * down now.
272 */
273 if ((dormant == AWAKE) && (nclients == 1) &&
274 (stat(MOIRA_MOTD_FILE, &stbuf) == 0))
275 {
276 com_err(whoami, 0, "motd file exists, slumbertime");
277 dormant = SLEEPY;
278 }
279 /* on new connection, if we are no longer supposed
280 * to be down, then wake up.
281 */
282 if ((dormant == ASLEEP) && (stat(MOIRA_MOTD_FILE, &stbuf) == -1) &&
283 (errno == ENOENT))
284 {
285 com_err(whoami, 0, "motd file no longer exists, waking up");
286 dormant = GROGGY;
287 }
0fa91a0a 288 }
5eaef520 289 /*
290 * Handle any existing connections.
291 */
292 tardy = now - 30 * 60;
293
294 for (i = 0; i < nclients; i++)
295 {
296 cur_client = clients[i];
297 if (OP_DONE(clients[i]->pending_op))
298 {
299 cur_client->last_time_used = now;
300 do_client(cur_client);
301 }
302 else if (clients[i]->last_time_used < tardy)
303 {
304 com_err(whoami, 0, "Shutting down connection due to inactivity");
305 shutdown(cur_client->con->in.fd, 2);
306 }
307 cur_client = NULL;
308 if (takedown)
309 break;
310 }
311 }
312 com_err(whoami, 0, "%s", takedown);
313 if (dormant != ASLEEP)
314 mr_close_database();
315 send_zgram("MOIRA", takedown);
316 return 0;
70d54e43 317}
318
0ec57336 319/*
320 * Set up the template connection and queue the first accept.
321 */
322
5eaef520 323int do_listen(char *port)
70d54e43 324{
5eaef520 325 listencon = create_listening_connection(port);
0ec57336 326
5eaef520 327 if (!listencon)
328 return errno;
0ec57336 329
5eaef520 330 listenop = create_operation();
331 client_addrlen = sizeof(client_addr);
0ec57336 332
5eaef520 333 start_accepting_client(listencon, listenop, &newconn, (char *)&client_addr,
334 &client_addrlen, &client_tuple);
335 return 0;
0fa91a0a 336}
337
b4182127 338
03c05291 339void do_reset_listen(void)
b4182127 340{
5eaef520 341 client_addrlen = sizeof(client_addr);
342 start_accepting_client(listencon, listenop, &newconn, (char *)&client_addr,
343 &client_addrlen, &client_tuple);
b4182127 344}
345
0ec57336 346/*
347 * This routine is called when a new connection comes in.
348 *
349 * It sets up a new client and adds it to the list of currently active clients.
350 */
03c05291 351int new_connection(void)
0fa91a0a 352{
44d12d58 353 client *cp;
5eaef520 354 static counter = 0;
355
356 /*
357 * Make sure there's been no error
358 */
359 if (OP_STATUS(listenop) != OP_COMPLETE)
360 return errno;
361
362 if (!newconn)
363 return MR_NOT_CONNECTED;
364
365 /*
366 * Set up the new connection and reply to the client
367 */
368 cp = malloc(sizeof(client));
369 memset(cp, 0, sizeof(*cp));
370 cp->action = CL_ACCEPT;
371 cp->con = newconn;
372 cp->id = counter++;
373 cp->args = NULL;
7ac48069 374 cp->clname[0] = '\0';
5eaef520 375 cp->reply.mr_argv = NULL;
376 cp->first = NULL;
377 cp->last = NULL;
378 cp->last_time_used = now;
379 newconn = NULL;
380
381 cp->pending_op = create_operation();
382 reset_operation(cp->pending_op);
383 oplist_append(&op_list, cp->pending_op);
384 cur_client = cp;
385
386 /*
387 * Add a new client to the array..
388 */
389 clist_append(cp);
390
391 /*
392 * Let him know we heard him.
393 */
394 start_replying_to_client(cp->pending_op, cp->con, GDB_ACCEPTED, "", "");
395
396 cp->haddr = client_addr;
397
398 /*
399 * Log new connection.
400 */
401 com_err(whoami, 0, "New connection from %s port %d (now %d client%s)",
402 inet_ntoa(cp->haddr.sin_addr), (int)ntohs(cp->haddr.sin_port),
403 nclients, nclients != 1 ? "s" : "");
404
405 /*
406 * Get ready to accept the next connection.
407 */
408 reset_operation(listenop);
409 client_addrlen = sizeof(client_addr);
410
411 start_accepting_client(listencon, listenop, &newconn, (char *)&client_addr,
412 &client_addrlen, &client_tuple);
413 return 0;
0fa91a0a 414}
415
0fa91a0a 416/*
417 * Add a new client to the known clients.
418 */
5eaef520 419void clist_append(client *cp)
420{
421 client **clients_n;
422
423 nclients++;
424 clients_n = malloc(nclients * sizeof(client *));
425 memcpy(clients_n, clients, (nclients - 1) * sizeof(cp));
426 clients_n[nclients - 1] = cp;
427 free(clients);
428 clients = clients_n;
429 clients_n = NULL;
0fa91a0a 430}
431
5eaef520 432
433void clist_delete(client *cp)
70d54e43 434{
5eaef520 435 client **clients_n, **scpp, **dcpp; /* source and dest client ptr ptr */
436
437 int found_it = 0;
438
439 clients_n = malloc((nclients - 1) * sizeof(client *));
440 for (scpp = clients, dcpp = clients_n; scpp < clients + nclients; )
441 {
442 if (*scpp != cp)
443 *dcpp++ = *scpp++;
444 else
445 {
446 scpp++;
447 if (found_it)
448 abort();
449 found_it = 1;
70d54e43 450 }
5eaef520 451 }
452 --nclients;
453 free(clients);
454 clients = clients_n;
455 clients_n = NULL;
456 oplist_delete(op_list, cp->pending_op);
457 reset_operation(cp->pending_op);
458 delete_operation(cp->pending_op);
459 sever_connection(cp->con);
460 free(cp);
70d54e43 461}
0ec57336 462
0fa91a0a 463/*
0ec57336 464 * Add a new operation to a list of operations.
465 *
466 * This should be rewritten to use realloc instead, since in most
467 * cases it won't have to copy the array.
0fa91a0a 468 */
469
5eaef520 470void oplist_append(LIST_OF_OPERATIONS *oplp, OPERATION op)
0fa91a0a 471{
5eaef520 472 int count = (*oplp)->count + 1;
473 LIST_OF_OPERATIONS newlist = (LIST_OF_OPERATIONS)
474 db_alloc(size_of_list_of_operations(count));
475 memcpy(newlist, *oplp, size_of_list_of_operations((*oplp)->count));
476 newlist->count++;
477 newlist->op[count - 1] = op;
478 db_free(*oplp, size_of_list_of_operations(count - 1));
479 *oplp = newlist;
0fa91a0a 480}
481
5eaef520 482void oplist_delete(LIST_OF_OPERATIONS oplp, OPERATION op)
c27b3454 483{
44d12d58 484 OPERATION *s;
485 int c;
5eaef520 486
487 for (s = oplp->op, c = oplp->count; c; --c, ++s)
488 {
489 if (*s == op)
490 {
491 while (c > 0)
492 {
493 *s = *(s + 1);
494 ++s;
495 --c;
496 }
497 oplp->count--;
498 return;
c27b3454 499 }
5eaef520 500 }
501 abort();
c27b3454 502}
554776b1 503
504
5eaef520 505void reapchild(int x)
554776b1 506{
5eaef520 507 int status, pid;
508
509 while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
510 {
511 if (pid == inc_pid)
512 inc_running = 0;
513 if (!takedown && (WTERMSIG(status) != 0 || WEXITSTATUS(status) != 0))
514 com_err(whoami, 0, "%d: child exits with signal %d status %d",
515 pid, WTERMSIG(status), WEXITSTATUS(status));
554776b1 516 }
517}
589993be 518
519
5eaef520 520void godormant(int x)
589993be 521{
5eaef520 522 switch (dormant)
523 {
589993be 524 case AWAKE:
525 case GROGGY:
5eaef520 526 com_err(whoami, 0, "requested to go dormant");
527 break;
589993be 528 case ASLEEP:
5eaef520 529 com_err(whoami, 0, "already asleep");
530 break;
589993be 531 case SLEEPY:
5eaef520 532 break;
589993be 533 }
5eaef520 534 dormant = SLEEPY;
589993be 535}
536
537
5eaef520 538void gowakeup(int x)
589993be 539{
5eaef520 540 switch (dormant)
541 {
589993be 542 case ASLEEP:
543 case SLEEPY:
5eaef520 544 com_err(whoami, 0, "Good morning");
545 break;
589993be 546 case AWAKE:
5eaef520 547 com_err(whoami, 0, "already awake");
548 break;
589993be 549 case GROGGY:
5eaef520 550 break;
589993be 551 }
5eaef520 552 dormant = GROGGY;
589993be 553}
083a6e94 554
5eaef520 555
03c05291 556void mr_setup_signals(void)
083a6e94 557{
5eaef520 558 struct sigaction action;
559
560 action.sa_flags = 0;
561 sigemptyset(&action.sa_mask);
03c05291 562
5eaef520 563 /* There should probably be a few more of these. */
03c05291 564
5eaef520 565 action.sa_handler = sigshut;
566 if ((sigaction(SIGTERM, &action, NULL) < 0) ||
567 (sigaction(SIGINT, &action, NULL) < 0) ||
568 (sigaction(SIGHUP, &action, NULL) < 0))
569 {
03c05291 570 com_err(whoami, errno, "Unable to establish signal handlers.");
571 exit(1);
083a6e94 572 }
e448f08d 573
5eaef520 574 action.sa_handler = godormant;
575 if (sigaction(SIGUSR1, &action, NULL) < 0)
576 {
03c05291 577 com_err(whoami, errno, "Unable to establish signal handlers.");
578 exit(1);
579 }
e448f08d 580
5eaef520 581 action.sa_handler = gowakeup;
582 if (sigaction(SIGUSR2, &action, NULL) < 0)
583 {
03c05291 584 com_err(whoami, errno, "Unable to establish signal handlers.");
585 exit(1);
586 }
e448f08d 587
5eaef520 588 action.sa_handler = reapchild;
589 sigaddset(&action.sa_mask, SIGCHLD);
590 if (sigaction(SIGCHLD, &action, NULL) < 0)
591 {
03c05291 592 com_err(whoami, errno, "Unable to establish signal handlers.");
593 exit(1);
594 }
595}
This page took 0.191298 seconds and 5 git commands to generate.