]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/afp_dsi.c
second sigint restores default logging instead of killing afpd
[netatalk.git] / etc / afpd / afp_dsi.c
1 /*
2  * Copyright (c) 1999 Adrian Sun (asun@zoology.washington.edu)
3  * Copyright (c) 1990,1993 Regents of The University of Michigan.
4  * All Rights Reserved.  See COPYRIGHT.
5  *
6  * modified from main.c. this handles afp over tcp.
7  */
8
9 #ifdef HAVE_CONFIG_H
10 #include "config.h"
11 #endif /* HAVE_CONFIG_H */
12
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <signal.h>
16 #include <string.h>
17 #include <errno.h>
18 #ifdef HAVE_UNISTD_H
19 #include <unistd.h>
20 #endif /* HAVE_UNISTD_H */
21 #include <sys/socket.h>
22 #include <sys/time.h>
23 #ifdef HAVE_SYS_STAT_H
24 #include <sys/stat.h>
25 #endif /* HAVE_SYS_STAT_H */
26 #include <netinet/in.h>
27 #include <arpa/inet.h>
28 #include <atalk/logger.h>
29
30 #include <atalk/dsi.h>
31 #include <atalk/compat.h>
32 #include <atalk/util.h>
33
34 #include "globals.h"
35 #include "switch.h"
36 #include "auth.h"
37 #include "fork.h"
38 #include "dircache.h"
39
40 #ifdef FORCE_UIDGID
41 #warning UIDGID
42 #include "uid.h"
43 #endif /* FORCE_UIDGID */
44
45 #define CHILD_DIE         (1 << 0)
46 #define CHILD_RUNNING     (1 << 1)
47 #define CHILD_SLEEPING    (1 << 2)
48 #define CHILD_DATA        (1 << 3)
49
50 /* 
51  * We generally pass this from afp_over_dsi to all afp_* funcs, so it should already be
52  * available everywhere. Unfortunately some funcs (eg acltoownermode) need acces to it
53  * but are deeply nested in the function chain with the caller already without acces to it.
54  * Changing this would require adding a reference to the caller which itself might be
55  * called in many places (eg acltoownermode is called from accessmode).
56  * The only sane way out is providing a copy of it here:
57  */
58 AFPObj *AFPobj = NULL;
59
60 static struct {
61     AFPObj *obj;
62     unsigned char flags;
63     int tickle;
64 } child;
65
66
67 static void afp_dsi_close(AFPObj *obj)
68 {
69     DSI *dsi = obj->handle;
70
71     /* we may have been called from a signal handler caught when afpd was running
72      * as uid 0, that's the wrong user for volume's prexec_close scripts if any,
73      * restore our login user
74      */
75     if (geteuid() != obj->uid) {
76         if (seteuid( obj->uid ) < 0) {
77             LOG(log_error, logtype_afpd, "can't seteuid(%u) back %s: uid: %u, euid: %u", 
78                 obj->uid, strerror(errno), getuid(), geteuid());
79             exit(EXITERR_SYS);
80         }
81     }
82
83     close_all_vol();
84     if (obj->logout)
85         (*obj->logout)();
86
87     LOG(log_info, logtype_afpd, "%.2fKB read, %.2fKB written",
88         dsi->read_count/1024.0, dsi->write_count/1024.0);
89
90     dsi_close(dsi);
91 }
92
93 /* -------------------------------
94  * SIGTERM
95  * a little bit of code duplication. 
96  */
97 static void afp_dsi_die(int sig)
98 {
99 static volatile int in_handler;
100     
101     if (in_handler) {
102         return;
103     }
104     /* it's not atomic but we don't care because it's an exit function
105      * ie if a signal is received here, between the test and the affectation,
106      * it will not return.
107     */
108     in_handler = 1;
109
110     dsi_attention(child.obj->handle, AFPATTN_SHUTDOWN);
111     afp_dsi_close(child.obj);
112     if (sig) /* if no signal, assume dieing because logins are disabled &
113                 don't log it (maintenance mode)*/
114         LOG(log_info, logtype_afpd, "Connection terminated");
115     if (sig == SIGTERM || sig == SIGALRM) {
116         exit( 0 );
117     }
118     else {
119         exit(sig);
120     }
121 }
122
123 /* */
124 static void afp_dsi_sleep(void)
125 {
126     child.flags |= CHILD_SLEEPING;
127     dsi_sleep(child.obj->handle, 1);
128 }
129
130 /* ------------------- */
131 static void afp_dsi_timedown(int sig _U_)
132 {
133     struct sigaction    sv;
134     struct itimerval    it;
135
136     child.flags |= CHILD_DIE;
137     /* shutdown and don't reconnect. server going down in 5 minutes. */
138     setmessage("The server is going down for maintenance.");
139     if (dsi_attention(child.obj->handle, AFPATTN_SHUTDOWN | AFPATTN_NORECONNECT |
140                   AFPATTN_MESG | AFPATTN_TIME(5)) < 0) {
141         DSI *dsi = (DSI *) child.obj->handle;
142         dsi->down_request = 1;
143     }                  
144
145     it.it_interval.tv_sec = 0;
146     it.it_interval.tv_usec = 0;
147     it.it_value.tv_sec = 300;
148     it.it_value.tv_usec = 0;
149
150     if ( setitimer( ITIMER_REAL, &it, NULL ) < 0 ) {
151         LOG(log_error, logtype_afpd, "afp_timedown: setitimer: %s", strerror(errno) );
152         afp_dsi_die(EXITERR_SYS);
153     }
154     memset(&sv, 0, sizeof(sv));
155     sv.sa_handler = afp_dsi_die;
156     sigemptyset( &sv.sa_mask );
157     sigaddset(&sv.sa_mask, SIGHUP);
158     sigaddset(&sv.sa_mask, SIGTERM);
159     sv.sa_flags = SA_RESTART;
160     if ( sigaction( SIGALRM, &sv, NULL ) < 0 ) {
161         LOG(log_error, logtype_afpd, "afp_timedown: sigaction: %s", strerror(errno) );
162         afp_dsi_die(EXITERR_SYS);
163     }
164
165     /* ignore myself */
166     sv.sa_handler = SIG_IGN;
167     sigemptyset( &sv.sa_mask );
168     sv.sa_flags = SA_RESTART;
169     if ( sigaction( SIGUSR1, &sv, NULL ) < 0 ) {
170         LOG(log_error, logtype_afpd, "afp_timedown: sigaction SIGHUP: %s", strerror(errno) );
171         afp_dsi_die(EXITERR_SYS);
172     }
173 }
174
175 /* ---------------------------------
176  * SIGHUP reload configuration file
177  * FIXME here or we wait ?
178 */
179 volatile int reload_request = 0;
180
181 static void afp_dsi_reload(int sig _U_)
182 {
183     reload_request = 1;
184 }
185
186 /* ---------------------------------
187  * SIGINT: enable max_debug LOGging
188  */
189 static volatile sig_atomic_t debug_request = 0;
190
191 static void afp_dsi_debug(int sig _U_)
192 {
193     debug_request = 1;
194 }
195
196 /* ---------------------- */
197 #ifdef SERVERTEXT
198 static void afp_dsi_getmesg (int sig _U_)
199 {
200     DSI *dsi = (DSI *) child.obj->handle;
201
202     dsi->msg_request = 1;
203     if (dsi_attention(child.obj->handle, AFPATTN_MESG | AFPATTN_TIME(5)) < 0)
204         dsi->msg_request = 2;
205 }
206 #endif /* SERVERTEXT */
207
208 static void alarm_handler(int sig _U_)
209 {
210     int err;
211     DSI *dsi = (DSI *) child.obj->handle;
212
213     /* we have to restart the timer because some libraries 
214      * may use alarm() */
215     setitimer(ITIMER_REAL, &dsi->timer, NULL);
216
217     /* we got some traffic from the client since the previous timer 
218      * tick. */
219     if ((child.flags & CHILD_DATA)) {
220         child.flags &= ~CHILD_DATA;
221         return;
222     }
223
224     /* if we're in the midst of processing something,
225        don't die. */
226     if ((child.flags & CHILD_SLEEPING) && child.tickle++ < child.obj->options.sleep) {
227         return;
228     } 
229         
230     if ((child.flags & CHILD_RUNNING) || (child.tickle++ < child.obj->options.timeout)) {
231         if (!(err = pollvoltime(child.obj)))
232             err = dsi_tickle(child.obj->handle);
233         if (err <= 0) 
234             afp_dsi_die(EXITERR_CLNT);
235         
236     } else { /* didn't receive a tickle. close connection */
237         LOG(log_error, logtype_afpd, "afp_alarm: child timed out");
238         afp_dsi_die(EXITERR_CLNT);
239     }
240 }
241
242 /* ----------------- 
243    if dsi->in_write is set attention, tickle (and close?) msg
244    aren't sent. We don't care about tickle 
245 */
246 static void pending_request(DSI *dsi)
247 {
248     /* send pending attention */
249
250     /* read msg if any, it could be done in afp_getsrvrmesg */
251     if (dsi->msg_request) {
252         if (dsi->msg_request == 2) {
253             /* didn't send it in signal handler */
254             dsi_attention(child.obj->handle, AFPATTN_MESG | AFPATTN_TIME(5));
255         }
256         dsi->msg_request = 0;
257         readmessage(child.obj);
258     }
259     if (dsi->down_request) {
260         dsi->down_request = 0;
261         dsi_attention(child.obj->handle, AFPATTN_SHUTDOWN | AFPATTN_NORECONNECT |
262                   AFPATTN_MESG | AFPATTN_TIME(5));
263     }
264 }
265
266 /* -------------------------------------------
267  afp over dsi. this never returns. 
268 */
269 void afp_over_dsi(AFPObj *obj)
270 {
271     DSI *dsi = (DSI *) obj->handle;
272     u_int32_t err, cmd;
273     u_int8_t function;
274     struct sigaction action;
275
276     AFPobj = obj;
277     obj->exit = afp_dsi_die;
278     obj->reply = (int (*)()) dsi_cmdreply;
279     obj->attention = (int (*)(void *, AFPUserBytes)) dsi_attention;
280
281     obj->sleep = afp_dsi_sleep;
282     child.obj = obj;
283     child.tickle = child.flags = 0;
284
285     memset(&action, 0, sizeof(action));
286
287     /* install SIGHUP */
288     action.sa_handler = afp_dsi_reload;
289     sigemptyset( &action.sa_mask );
290     sigaddset(&action.sa_mask, SIGALRM);
291     sigaddset(&action.sa_mask, SIGTERM);
292     sigaddset(&action.sa_mask, SIGUSR1);
293     sigaddset(&action.sa_mask, SIGINT);
294 #ifdef SERVERTEXT
295     sigaddset(&action.sa_mask, SIGUSR2);
296 #endif    
297     action.sa_flags = SA_RESTART;
298     if ( sigaction( SIGHUP, &action, NULL ) < 0 ) {
299         LOG(log_error, logtype_afpd, "afp_over_dsi: sigaction: %s", strerror(errno) );
300         afp_dsi_die(EXITERR_SYS);
301     }
302
303     /* install SIGTERM */
304     action.sa_handler = afp_dsi_die;
305     sigemptyset( &action.sa_mask );
306     sigaddset(&action.sa_mask, SIGALRM);
307     sigaddset(&action.sa_mask, SIGHUP);
308     sigaddset(&action.sa_mask, SIGUSR1);
309     sigaddset(&action.sa_mask, SIGINT);
310 #ifdef SERVERTEXT
311     sigaddset(&action.sa_mask, SIGUSR2);
312 #endif    
313     action.sa_flags = SA_RESTART;
314     if ( sigaction( SIGTERM, &action, NULL ) < 0 ) {
315         LOG(log_error, logtype_afpd, "afp_over_dsi: sigaction: %s", strerror(errno) );
316         afp_dsi_die(EXITERR_SYS);
317     }
318
319 #ifdef SERVERTEXT
320     /* Added for server message support */
321     action.sa_handler = afp_dsi_getmesg;
322     sigemptyset( &action.sa_mask );
323     sigaddset(&action.sa_mask, SIGALRM);
324     sigaddset(&action.sa_mask, SIGTERM);
325     sigaddset(&action.sa_mask, SIGUSR1);
326     sigaddset(&action.sa_mask, SIGHUP);
327     sigaddset(&action.sa_mask, SIGINT);
328     action.sa_flags = SA_RESTART;
329     if ( sigaction( SIGUSR2, &action, NULL) < 0 ) {
330         LOG(log_error, logtype_afpd, "afp_over_dsi: sigaction: %s", strerror(errno) );
331         afp_dsi_die(EXITERR_SYS);
332     }
333 #endif /* SERVERTEXT */
334
335     /*  SIGUSR1 - set down in 5 minutes  */
336     action.sa_handler = afp_dsi_timedown;
337     sigemptyset( &action.sa_mask );
338     sigaddset(&action.sa_mask, SIGALRM);
339     sigaddset(&action.sa_mask, SIGHUP);
340     sigaddset(&action.sa_mask, SIGTERM);
341     sigaddset(&action.sa_mask, SIGINT);
342 #ifdef SERVERTEXT
343     sigaddset(&action.sa_mask, SIGUSR2);
344 #endif    
345     action.sa_flags = SA_RESTART;
346     if ( sigaction( SIGUSR1, &action, NULL) < 0 ) {
347         LOG(log_error, logtype_afpd, "afp_over_dsi: sigaction: %s", strerror(errno) );
348         afp_dsi_die(EXITERR_SYS);
349     }
350
351     /*  SIGINT - enable max_debug LOGging to /tmp/afpd.PID.XXXXXX */
352     action.sa_handler = afp_dsi_debug;
353     sigfillset( &action.sa_mask );
354     action.sa_flags = SA_RESTART;
355     if ( sigaction( SIGINT, &action, NULL) < 0 ) {
356         LOG(log_error, logtype_afpd, "afp_over_dsi: sigaction: %s", strerror(errno) );
357         afp_dsi_die(EXITERR_SYS);
358     }
359
360 #ifndef DEBUGGING
361     /* tickle handler */
362     action.sa_handler = alarm_handler;
363     sigemptyset(&action.sa_mask);
364     sigaddset(&action.sa_mask, SIGHUP);
365     sigaddset(&action.sa_mask, SIGTERM);
366     sigaddset(&action.sa_mask, SIGUSR1);
367     sigaddset(&action.sa_mask, SIGINT);
368 #ifdef SERVERTEXT
369     sigaddset(&action.sa_mask, SIGUSR2);
370 #endif    
371     action.sa_flags = SA_RESTART;
372     if ((sigaction(SIGALRM, &action, NULL) < 0) ||
373             (setitimer(ITIMER_REAL, &dsi->timer, NULL) < 0)) {
374         afp_dsi_die(EXITERR_SYS);
375     }
376 #endif /* DEBUGGING */
377
378     if (dircache_init(obj->options.dircachesize) != 0)
379         afp_dsi_die(EXITERR_SYS);
380
381     /* get stuck here until the end */
382     while ((cmd = dsi_receive(dsi))) {
383         child.tickle = 0;
384         child.flags &= ~CHILD_SLEEPING;
385         dsi_sleep(dsi, 0); /* wake up */
386
387         if (reload_request) {
388             reload_request = 0;
389             load_volumes(child.obj);
390             dircache_dump();
391         }
392
393         /* The first SIGINT enables debugging, the next restores the config */
394         if (debug_request) {
395             static int debugging = 0;
396             debug_request = 0;
397
398             if (debugging) {
399                 if (obj->options.logconfig)
400                     setuplog(obj->options.logconfig);
401                 else
402                     setuplog("default log_note");
403                 debugging = 0;
404             } else {
405                 char logstr[50];
406                 debugging = 1;
407                 sprintf(logstr, "default log_maxdebug /tmp/afpd.%u.XXXXXX", getpid());
408                 setuplog(logstr);
409             }
410         }
411
412         if (cmd == DSIFUNC_TICKLE) {
413             /* timer is not every 30 seconds anymore, so we don't get killed on the client side. */
414             if ((child.flags & CHILD_DIE))
415                 dsi_tickle(dsi);
416             pending_request(dsi);
417             continue;
418         } 
419
420         child.flags |= CHILD_DATA;
421         switch(cmd) {
422         case DSIFUNC_CLOSE:
423             afp_dsi_close(obj);
424             LOG(log_info, logtype_afpd, "done");
425             return;
426             break;
427
428         case DSIFUNC_CMD:
429 #ifdef AFS
430             if ( writtenfork ) {
431                 if ( flushfork( writtenfork ) < 0 ) {
432                     LOG(log_error, logtype_afpd, "main flushfork: %s", strerror(errno) );
433                 }
434                 writtenfork = NULL;
435             }
436 #endif /* AFS */
437
438             function = (u_char) dsi->commands[0];
439
440             /* send off an afp command. in a couple cases, we take advantage
441              * of the fact that we're a stream-based protocol. */
442             if (afp_switch[function]) {
443                 dsi->datalen = DSI_DATASIZ;
444                 child.flags |= CHILD_RUNNING;
445
446                 LOG(log_debug, logtype_afpd, "<== Start AFP command: %s", AfpNum2name(function));
447
448                 err = (*afp_switch[function])(obj,
449                                               (char *)&dsi->commands, dsi->cmdlen,
450                                               (char *)&dsi->data, &dsi->datalen);
451
452                 LOG(log_debug, logtype_afpd, "==> Finished AFP command: %s -> %s",
453                     AfpNum2name(function), AfpErr2name(err));
454 #ifdef FORCE_UIDGID
455                 /* bring everything back to old euid, egid */
456                 if (obj->force_uid)
457                     restore_uidgid ( &obj->uidgid );
458 #endif /* FORCE_UIDGID */
459                 child.flags &= ~CHILD_RUNNING;
460             } else {
461                 LOG(log_error, logtype_afpd, "bad function %X", function);
462                 dsi->datalen = 0;
463                 err = AFPERR_NOOP;
464             }
465
466             /* single shot toggle that gets set by dsi_readinit. */
467             if (dsi->noreply) {
468                 dsi->noreply = 0;
469                 break;
470             }
471
472             if (!dsi_cmdreply(dsi, err)) {
473                 LOG(log_error, logtype_afpd, "dsi_cmdreply(%d): %s", dsi->socket, strerror(errno) );
474                 afp_dsi_die(EXITERR_CLNT);
475             }
476             break;
477
478         case DSIFUNC_WRITE: /* FPWrite and FPAddIcon */
479             function = (u_char) dsi->commands[0];
480             if ( afp_switch[ function ] != NULL ) {
481                 dsi->datalen = DSI_DATASIZ;
482                 child.flags |= CHILD_RUNNING;
483
484                 LOG(log_debug, logtype_afpd, "<== Start AFP command: %s", AfpNum2name(function));
485
486                 err = (*afp_switch[function])(obj,
487                                               (char *)&dsi->commands, dsi->cmdlen,
488                                               (char *)&dsi->data, &dsi->datalen);
489
490                 LOG(log_debug, logtype_afpd, "==> Finished AFP command: %s -> %s",
491                     AfpNum2name(function), AfpErr2name(err));
492
493                 child.flags &= ~CHILD_RUNNING;
494 #ifdef FORCE_UIDGID
495                 /* bring everything back to old euid, egid */
496                 if (obj->force_uid)
497                     restore_uidgid ( &obj->uidgid );
498 #endif /* FORCE_UIDGID */
499             } else {
500                 LOG(log_error, logtype_afpd, "(write) bad function %x", function);
501                 dsi->datalen = 0;
502                 err = AFPERR_NOOP;
503             }
504
505             if (!dsi_wrtreply(dsi, err)) {
506                 LOG(log_error, logtype_afpd, "dsi_wrtreply: %s", strerror(errno) );
507                 afp_dsi_die(EXITERR_CLNT);
508             }
509             break;
510
511         case DSIFUNC_ATTN: /* attention replies */
512             break;
513
514             /* error. this usually implies a mismatch of some kind
515              * between server and client. if things are correct,
516              * we need to flush the rest of the packet if necessary. */
517         default:
518             LOG(log_info, logtype_afpd,"afp_dsi: spurious command %d", cmd);
519             dsi_writeinit(dsi, dsi->data, DSI_DATASIZ);
520             dsi_writeflush(dsi);
521             break;
522         }
523         pending_request(dsi);
524     }
525
526     /* error */
527     afp_dsi_die(EXITERR_CLNT);
528 }