]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/afp_dsi.c
a1c7b1d0244446899fbc80c611ba2527711e76f1
[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 #include <setjmp.h>
30
31 #include <atalk/dsi.h>
32 #include <atalk/compat.h>
33 #include <atalk/util.h>
34 #include <atalk/uuid.h>
35
36 #include "globals.h"
37 #include "switch.h"
38 #include "auth.h"
39 #include "fork.h"
40 #include "dircache.h"
41
42 #ifdef FORCE_UIDGID
43 #warning UIDGID
44 #include "uid.h"
45 #endif /* FORCE_UIDGID */
46
47 /* 
48  * We generally pass this from afp_over_dsi to all afp_* funcs, so it should already be
49  * available everywhere. Unfortunately some funcs (eg acltoownermode) need acces to it
50  * but are deeply nested in the function chain with the caller already without acces to it.
51  * Changing this would require adding a reference to the caller which itself might be
52  * called in many places (eg acltoownermode is called from accessmode).
53  * The only sane way out is providing a copy of it here:
54  */
55 AFPObj *AFPobj = NULL;
56
57 typedef struct {
58     uint16_t DSIreqID;
59     uint8_t  AFPcommand;
60     uint32_t result;
61 } rc_elem_t;
62
63 /*
64  * AFP replay cache:
65  * - fix sized array
66  * - indexed just by taking DSIreqID mod REPLAYCACHE_SIZE
67  */
68 static rc_elem_t replaycache[REPLAYCACHE_SIZE];
69
70 static sigjmp_buf recon_jmp;
71 static void afp_dsi_close(AFPObj *obj)
72 {
73     DSI *dsi = obj->handle;
74
75     close(obj->ipc_fd);
76     obj->ipc_fd = -1;
77
78     /* we may have been called from a signal handler caught when afpd was running
79      * as uid 0, that's the wrong user for volume's prexec_close scripts if any,
80      * restore our login user
81      */
82     if (geteuid() != obj->uid) {
83         if (seteuid( obj->uid ) < 0) {
84             LOG(log_error, logtype_afpd, "can't seteuid(%u) back %s: uid: %u, euid: %u", 
85                 obj->uid, strerror(errno), getuid(), geteuid());
86             exit(EXITERR_SYS);
87         }
88     }
89
90     close_all_vol();
91     if (obj->logout)
92         (*obj->logout)();
93
94     LOG(log_note, logtype_afpd, "AFP statistics: %.2f KB read, %.2f KB written",
95         dsi->read_count/1024.0, dsi->write_count/1024.0);
96     log_dircache_stat();
97
98     dsi_close(dsi);
99 }
100
101 /* -------------------------------
102  * SIGTERM
103  * a little bit of code duplication. 
104  */
105 static void afp_dsi_die(int sig)
106 {
107     DSI *dsi = (DSI *)AFPobj->handle;
108
109     if (dsi->flags & DSI_RECONINPROG) {
110         /* Primary reconnect succeeded, got SIGTERM from afpd parent */
111         dsi->flags &= ~DSI_RECONINPROG;
112         return; /* this returns to afp_disconnect */
113     }
114
115     if (dsi->flags & DSI_DISCONNECTED) {
116         LOG(log_note, logtype_afpd, "Disconnected session terminating");
117         exit(0);
118     }
119
120     dsi_attention(AFPobj->handle, AFPATTN_SHUTDOWN);
121     afp_dsi_close(AFPobj);
122    if (sig) /* if no signal, assume dieing because logins are disabled &
123                 don't log it (maintenance mode)*/
124         LOG(log_info, logtype_afpd, "Connection terminated");
125     if (sig == SIGTERM || sig == SIGALRM) {
126         exit( 0 );
127     }
128     else {
129         exit(sig);
130     }
131 }
132
133 /* SIGURG handler (primary reconnect) */
134 static void afp_dsi_transfer_session(int sig _U_)
135 {
136     uint16_t dsiID;
137     int socket;
138     DSI *dsi = (DSI *)AFPobj->handle;
139
140     LOG(log_debug, logtype_afpd, "afp_dsi_transfer_session: got SIGURG, trying to receive session");
141
142     if (readt(AFPobj->ipc_fd, &dsiID, 2, 0, 2) != 2) {
143         LOG(log_error, logtype_afpd, "afp_dsi_transfer_session: couldn't receive DSI id, goodbye");
144         afp_dsi_close(AFPobj);
145         exit(EXITERR_SYS);
146     }
147
148     if ((socket = recv_fd(AFPobj->ipc_fd, 1)) == -1) {
149         LOG(log_error, logtype_afpd, "afp_dsi_transfer_session: couldn't receive session fd, goodbye");
150         afp_dsi_close(AFPobj);
151         exit(EXITERR_SYS);
152     }
153
154     LOG(log_debug, logtype_afpd, "afp_dsi_transfer_session: received socket fd: %i", socket);
155
156     dsi->proto_close(dsi);
157     dsi->socket = socket;
158     dsi->flags = DSI_RECONSOCKET;
159     dsi->datalen = 0;
160     dsi->eof = dsi->start = dsi->buffer;
161     dsi->in_write = 0;
162     dsi->header.dsi_requestID = dsiID;
163     dsi->header.dsi_command = DSIFUNC_CMD;
164
165     /*
166      * The session transfer happens in the middle of FPDisconnect old session, thus we
167      * have to send the reply now.
168      */
169     if (!dsi_cmdreply(dsi, AFP_OK)) {
170         LOG(log_error, logtype_afpd, "dsi_cmdreply: %s", strerror(errno) );
171         afp_dsi_close(AFPobj);
172         exit(EXITERR_CLNT);
173     }
174
175     LOG(log_note, logtype_afpd, "afp_dsi_transfer_session: succesfull primary reconnect");
176     /* 
177      * Now returning from this signal handler return to dsi_receive which should start
178      * reading/continuing from the connected socket that was passed via the parent from
179      * another session. The parent will terminate that session.
180      */
181     siglongjmp(recon_jmp, 1);
182 }
183
184 /* ------------------- */
185 static void afp_dsi_timedown(int sig _U_)
186 {
187     struct sigaction    sv;
188     struct itimerval    it;
189     DSI                 *dsi = (DSI *)AFPobj->handle;
190     dsi->flags |= DSI_DIE;
191     /* shutdown and don't reconnect. server going down in 5 minutes. */
192     setmessage("The server is going down for maintenance.");
193     if (dsi_attention(AFPobj->handle, AFPATTN_SHUTDOWN | AFPATTN_NORECONNECT |
194                   AFPATTN_MESG | AFPATTN_TIME(5)) < 0) {
195         DSI *dsi = (DSI *)AFPobj->handle;
196         dsi->down_request = 1;
197     }                  
198
199     it.it_interval.tv_sec = 0;
200     it.it_interval.tv_usec = 0;
201     it.it_value.tv_sec = 300;
202     it.it_value.tv_usec = 0;
203
204     if ( setitimer( ITIMER_REAL, &it, NULL ) < 0 ) {
205         LOG(log_error, logtype_afpd, "afp_timedown: setitimer: %s", strerror(errno) );
206         afp_dsi_die(EXITERR_SYS);
207     }
208     memset(&sv, 0, sizeof(sv));
209     sv.sa_handler = afp_dsi_die;
210     sigemptyset( &sv.sa_mask );
211     sigaddset(&sv.sa_mask, SIGHUP);
212     sigaddset(&sv.sa_mask, SIGTERM);
213     sv.sa_flags = SA_RESTART;
214     if ( sigaction( SIGALRM, &sv, NULL ) < 0 ) {
215         LOG(log_error, logtype_afpd, "afp_timedown: sigaction: %s", strerror(errno) );
216         afp_dsi_die(EXITERR_SYS);
217     }
218
219     /* ignore myself */
220     sv.sa_handler = SIG_IGN;
221     sigemptyset( &sv.sa_mask );
222     sv.sa_flags = SA_RESTART;
223     if ( sigaction( SIGUSR1, &sv, NULL ) < 0 ) {
224         LOG(log_error, logtype_afpd, "afp_timedown: sigaction SIGHUP: %s", strerror(errno) );
225         afp_dsi_die(EXITERR_SYS);
226     }
227 }
228
229 /* ---------------------------------
230  * SIGHUP reload configuration file
231  */
232 volatile int reload_request = 0;
233
234 static void afp_dsi_reload(int sig _U_)
235 {
236     reload_request = 1;
237 }
238
239 /* ---------------------------------
240  * SIGINT: enable max_debug LOGging
241  */
242 static volatile sig_atomic_t debug_request = 0;
243
244 static void afp_dsi_debug(int sig _U_)
245 {
246     debug_request = 1;
247 }
248
249 /* ---------------------- */
250 static void afp_dsi_getmesg (int sig _U_)
251 {
252     DSI *dsi = (DSI *)AFPobj->handle;
253
254     dsi->msg_request = 1;
255     if (dsi_attention(AFPobj->handle, AFPATTN_MESG | AFPATTN_TIME(5)) < 0)
256         dsi->msg_request = 2;
257 }
258
259 static void alarm_handler(int sig _U_)
260 {
261     int err;
262     DSI *dsi = (DSI *)AFPobj->handle;
263
264     /* we have to restart the timer because some libraries may use alarm() */
265     setitimer(ITIMER_REAL, &dsi->timer, NULL);
266
267     /* we got some traffic from the client since the previous timer tick. */
268     if ((dsi->flags & DSI_DATA)) {
269         dsi->flags &= ~DSI_DATA;
270         return;
271     }
272
273     dsi->tickle++;
274     LOG(log_maxdebug, logtype_afpd, "alarm: tickles: %u, flags: %s|%s|%s|%s|%s|%s|%s|%s|%s",
275         dsi->tickle,
276         (dsi->flags & DSI_DATA) ?         "DSI_DATA" : "-",
277         (dsi->flags & DSI_RUNNING) ?      "DSI_RUNNING" : "-",
278         (dsi->flags & DSI_SLEEPING) ?     "DSI_SLEEPING" : "-",
279         (dsi->flags & DSI_EXTSLEEP) ?     "DSI_EXTSLEEP" : "-",
280         (dsi->flags & DSI_DISCONNECTED) ? "DSI_DISCONNECTED" : "-",
281         (dsi->flags & DSI_DIE) ?          "DSI_DIE" : "-",
282         (dsi->flags & DSI_NOREPLY) ?      "DSI_NOREPLY" : "-",
283         (dsi->flags & DSI_RECONSOCKET) ?  "DSI_RECONSOCKET" : "-",
284         (dsi->flags & DSI_RECONINPROG) ?  "DSI_RECONINPROG" : "-");
285
286     if (dsi->flags & DSI_SLEEPING) {
287         if (dsi->tickle > AFPobj->options.sleep) {
288             LOG(log_note, logtype_afpd, "afp_alarm: sleep time ended");
289             afp_dsi_die(EXITERR_CLNT);
290         }
291         return;
292     } 
293
294     if (dsi->flags & DSI_DISCONNECTED) {
295         if (dsi->tickle > AFPobj->options.disconnected) {
296             LOG(log_error, logtype_afpd, "afp_alarm: reconnect timer expired, goodbye");
297             afp_dsi_die(EXITERR_CLNT);
298         }
299         return;
300     }
301
302     /* if we're in the midst of processing something, don't die. */        
303     if ( !(dsi->flags & DSI_RUNNING) && (dsi->tickle >= AFPobj->options.timeout)) {
304         LOG(log_error, logtype_afpd, "afp_alarm: child timed out, entering disconnected state");
305         (void)dsi_disconnect(dsi);
306         return;
307     }
308
309     if ((err = pollvoltime(AFPobj)) == 0)
310         LOG(log_debug, logtype_afpd, "afp_alarm: sending DSI tickle");
311         err = dsi_tickle(AFPobj->handle);
312     if (err <= 0) {
313         if (geteuid() == 0) {
314             LOG(log_note, logtype_afpd, "afp_alarm: unauthenticated user, connection problem");
315             afp_dsi_die(EXITERR_CLNT);
316         }
317         LOG(log_error, logtype_afpd, "afp_alarm: connection problem, entering disconnected state");
318         (void)dsi_disconnect(dsi);
319     }
320 }
321
322 /* ----------------- 
323    if dsi->in_write is set attention, tickle (and close?) msg
324    aren't sent. We don't care about tickle 
325 */
326 static void pending_request(DSI *dsi)
327 {
328     /* send pending attention */
329
330     /* read msg if any, it could be done in afp_getsrvrmesg */
331     if (dsi->msg_request) {
332         if (dsi->msg_request == 2) {
333             /* didn't send it in signal handler */
334             dsi_attention(AFPobj->handle, AFPATTN_MESG | AFPATTN_TIME(5));
335         }
336         dsi->msg_request = 0;
337         readmessage(AFPobj);
338     }
339     if (dsi->down_request) {
340         dsi->down_request = 0;
341         dsi_attention(AFPobj->handle, AFPATTN_SHUTDOWN | AFPATTN_NORECONNECT |
342                   AFPATTN_MESG | AFPATTN_TIME(5));
343     }
344 }
345
346 /* -------------------------------------------
347  afp over dsi. this never returns. 
348 */
349 void afp_over_dsi(AFPObj *obj)
350 {
351     DSI *dsi = (DSI *) obj->handle;
352     int rc_idx;
353     u_int32_t err, cmd;
354     u_int8_t function;
355     struct sigaction action;
356
357     AFPobj = obj;
358     obj->exit = afp_dsi_die;
359     obj->reply = (int (*)()) dsi_cmdreply;
360     obj->attention = (int (*)(void *, AFPUserBytes)) dsi_attention;
361     dsi->tickle = 0;
362
363     memset(&action, 0, sizeof(action));
364
365     /* install SIGHUP */
366     action.sa_handler = afp_dsi_reload;
367     sigemptyset( &action.sa_mask );
368     sigaddset(&action.sa_mask, SIGALRM);
369     sigaddset(&action.sa_mask, SIGTERM);
370     sigaddset(&action.sa_mask, SIGUSR1);
371     sigaddset(&action.sa_mask, SIGINT);
372     sigaddset(&action.sa_mask, SIGUSR2);
373     action.sa_flags = SA_RESTART;
374     if ( sigaction( SIGHUP, &action, NULL ) < 0 ) {
375         LOG(log_error, logtype_afpd, "afp_over_dsi: sigaction: %s", strerror(errno) );
376         afp_dsi_die(EXITERR_SYS);
377     }
378
379     /* install SIGURG */
380     action.sa_handler = afp_dsi_transfer_session;
381     sigemptyset( &action.sa_mask );
382     sigaddset(&action.sa_mask, SIGALRM);
383     sigaddset(&action.sa_mask, SIGTERM);
384     sigaddset(&action.sa_mask, SIGUSR1);
385     sigaddset(&action.sa_mask, SIGINT);
386     sigaddset(&action.sa_mask, SIGUSR2);
387     action.sa_flags = SA_RESTART;
388     if ( sigaction( SIGURG, &action, NULL ) < 0 ) {
389         LOG(log_error, logtype_afpd, "afp_over_dsi: sigaction: %s", strerror(errno) );
390         afp_dsi_die(EXITERR_SYS);
391     }
392
393     /* install SIGTERM */
394     action.sa_handler = afp_dsi_die;
395     sigemptyset( &action.sa_mask );
396     sigaddset(&action.sa_mask, SIGALRM);
397     sigaddset(&action.sa_mask, SIGHUP);
398     sigaddset(&action.sa_mask, SIGUSR1);
399     sigaddset(&action.sa_mask, SIGINT);
400     sigaddset(&action.sa_mask, SIGUSR2);
401     action.sa_flags = SA_RESTART;
402     if ( sigaction( SIGTERM, &action, NULL ) < 0 ) {
403         LOG(log_error, logtype_afpd, "afp_over_dsi: sigaction: %s", strerror(errno) );
404         afp_dsi_die(EXITERR_SYS);
405     }
406
407     /* Added for server message support */
408     action.sa_handler = afp_dsi_getmesg;
409     sigemptyset( &action.sa_mask );
410     sigaddset(&action.sa_mask, SIGALRM);
411     sigaddset(&action.sa_mask, SIGTERM);
412     sigaddset(&action.sa_mask, SIGUSR1);
413     sigaddset(&action.sa_mask, SIGHUP);
414     sigaddset(&action.sa_mask, SIGINT);
415     action.sa_flags = SA_RESTART;
416     if ( sigaction( SIGUSR2, &action, NULL) < 0 ) {
417         LOG(log_error, logtype_afpd, "afp_over_dsi: sigaction: %s", strerror(errno) );
418         afp_dsi_die(EXITERR_SYS);
419     }
420
421     /*  SIGUSR1 - set down in 5 minutes  */
422     action.sa_handler = afp_dsi_timedown;
423     sigemptyset( &action.sa_mask );
424     sigaddset(&action.sa_mask, SIGALRM);
425     sigaddset(&action.sa_mask, SIGHUP);
426     sigaddset(&action.sa_mask, SIGTERM);
427     sigaddset(&action.sa_mask, SIGINT);
428     sigaddset(&action.sa_mask, SIGUSR2);
429     action.sa_flags = SA_RESTART;
430     if ( sigaction( SIGUSR1, &action, NULL) < 0 ) {
431         LOG(log_error, logtype_afpd, "afp_over_dsi: sigaction: %s", strerror(errno) );
432         afp_dsi_die(EXITERR_SYS);
433     }
434
435     /*  SIGINT - enable max_debug LOGging to /tmp/afpd.PID.XXXXXX */
436     action.sa_handler = afp_dsi_debug;
437     sigfillset( &action.sa_mask );
438     action.sa_flags = SA_RESTART;
439     if ( sigaction( SIGINT, &action, NULL) < 0 ) {
440         LOG(log_error, logtype_afpd, "afp_over_dsi: sigaction: %s", strerror(errno) );
441         afp_dsi_die(EXITERR_SYS);
442     }
443
444 #ifndef DEBUGGING
445     /* tickle handler */
446     action.sa_handler = alarm_handler;
447     sigemptyset(&action.sa_mask);
448     sigaddset(&action.sa_mask, SIGHUP);
449     sigaddset(&action.sa_mask, SIGTERM);
450     sigaddset(&action.sa_mask, SIGUSR1);
451     sigaddset(&action.sa_mask, SIGINT);
452     sigaddset(&action.sa_mask, SIGUSR2);
453     action.sa_flags = SA_RESTART;
454     if ((sigaction(SIGALRM, &action, NULL) < 0) ||
455             (setitimer(ITIMER_REAL, &dsi->timer, NULL) < 0)) {
456         afp_dsi_die(EXITERR_SYS);
457     }
458 #endif /* DEBUGGING */
459
460     if (dircache_init(obj->options.dircachesize) != 0)
461         afp_dsi_die(EXITERR_SYS);
462
463     /* set TCP snd/rcv buf */
464     if (obj->options.tcp_rcvbuf) {
465         if (setsockopt(dsi->socket,
466                        SOL_SOCKET,
467                        SO_RCVBUF,
468                        &obj->options.tcp_rcvbuf,
469                        sizeof(obj->options.tcp_rcvbuf)) != 0) {
470             LOG(log_error, logtype_dsi, "afp_over_dsi: setsockopt(SO_RCVBUF): %s", strerror(errno));
471         }
472     }
473     if (obj->options.tcp_sndbuf) {
474         if (setsockopt(dsi->socket,
475                        SOL_SOCKET,
476                        SO_SNDBUF,
477                        &obj->options.tcp_sndbuf,
478                        sizeof(obj->options.tcp_sndbuf)) != 0) {
479             LOG(log_error, logtype_dsi, "afp_over_dsi: setsockopt(SO_SNDBUF): %s", strerror(errno));
480         }
481     }
482
483     /* get stuck here until the end */
484     while (1) {
485         if (sigsetjmp(recon_jmp, 1) != 0)
486             /* returning from SIGALARM handler for a primary reconnect */
487             continue;
488
489         /* Blocking read on the network socket */
490         cmd = dsi_receive(dsi);
491
492         if (cmd == 0) {
493             /* cmd == 0 is the error condition */
494             if (dsi->flags & DSI_RECONSOCKET) {
495                 /* we just got a reconnect so we immediately try again to receive on the new fd */
496                 dsi->flags &= ~DSI_RECONSOCKET;
497                 continue;
498             }
499             /* Some error on the client connection, enter disconnected state */
500             (void)dsi_disconnect(dsi);
501
502             /* the client sometimes logs out (afp_logout) but doesn't close the DSI session */
503             if (dsi->flags & DSI_AFP_LOGGED_OUT) {
504                 afp_dsi_close(obj);
505                 exit(0);
506             }
507
508             pause(); /* gets interrupted by SIGALARM or SIGURG tickle */
509             continue; /* continue receiving until disconnect timer expires
510                        * or a primary reconnect succeeds  */
511         }
512
513         if (!(dsi->flags & DSI_EXTSLEEP) && (dsi->flags & DSI_SLEEPING)) {
514             LOG(log_debug, logtype_afpd, "afp_over_dsi: got data, ending normal sleep");
515             dsi->flags &= ~DSI_SLEEPING;
516             dsi->tickle = 0;
517         }
518
519         if (reload_request) {
520             reload_request = 0;
521             load_volumes(AFPobj);
522         }
523
524         /* The first SIGINT enables debugging, the next restores the config */
525         if (debug_request) {
526             static int debugging = 0;
527             debug_request = 0;
528
529             dircache_dump();
530             uuidcache_dump();
531
532             if (debugging) {
533                 if (obj->options.logconfig)
534                     setuplog(obj->options.logconfig);
535                 else
536                     setuplog("default log_note");
537                 debugging = 0;
538             } else {
539                 char logstr[50];
540                 debugging = 1;
541                 sprintf(logstr, "default log_maxdebug /tmp/afpd.%u.XXXXXX", getpid());
542                 setuplog(logstr);
543             }
544         }
545
546
547         dsi->flags |= DSI_DATA;
548         dsi->tickle = 0;
549
550         switch(cmd) {
551
552         case DSIFUNC_CLOSE:
553             LOG(log_debug, logtype_afpd, "DSI: close session request");
554             afp_dsi_close(obj);
555             LOG(log_note, logtype_afpd, "done");
556             exit(0);
557
558         case DSIFUNC_TICKLE:
559             dsi->flags &= ~DSI_DATA; /* thats no data in the sense we use it in alarm_handler */
560             LOG(log_debug, logtype_afpd, "DSI: client tickle");
561             /* timer is not every 30 seconds anymore, so we don't get killed on the client side. */
562             if ((dsi->flags & DSI_DIE))
563                 dsi_tickle(dsi);
564             break;
565
566         case DSIFUNC_CMD:
567 #ifdef AFS
568             if ( writtenfork ) {
569                 if ( flushfork( writtenfork ) < 0 ) {
570                     LOG(log_error, logtype_afpd, "main flushfork: %s", strerror(errno) );
571                 }
572                 writtenfork = NULL;
573             }
574 #endif /* AFS */
575
576             function = (u_char) dsi->commands[0];
577
578             /* AFP replay cache */
579             rc_idx = dsi->clientID % REPLAYCACHE_SIZE;
580             LOG(log_debug, logtype_afpd, "DSI request ID: %u", dsi->clientID);
581
582             if (replaycache[rc_idx].DSIreqID == dsi->clientID
583                 && replaycache[rc_idx].AFPcommand == function) {
584                 LOG(log_note, logtype_afpd, "AFP Replay Cache match: id: %u / cmd: %s",
585                     dsi->clientID, AfpNum2name(function));
586                 err = replaycache[rc_idx].result;
587             /* AFP replay cache end */
588             } else {
589                 /* send off an afp command. in a couple cases, we take advantage
590                  * of the fact that we're a stream-based protocol. */
591                 if (afp_switch[function]) {
592                     dsi->datalen = DSI_DATASIZ;
593                     dsi->flags |= DSI_RUNNING;
594
595                     LOG(log_debug, logtype_afpd, "<== Start AFP command: %s", AfpNum2name(function));
596
597                     err = (*afp_switch[function])(obj,
598                                                   (char *)&dsi->commands, dsi->cmdlen,
599                                                   (char *)&dsi->data, &dsi->datalen);
600
601                     LOG(log_debug, logtype_afpd, "==> Finished AFP command: %s -> %s",
602                         AfpNum2name(function), AfpErr2name(err));
603
604                     dir_free_invalid_q();
605
606 #ifdef FORCE_UIDGID
607                     /* bring everything back to old euid, egid */
608                     if (obj->force_uid)
609                         restore_uidgid ( &obj->uidgid );
610 #endif /* FORCE_UIDGID */
611                     dsi->flags &= ~DSI_RUNNING;
612
613                     /* Add result to the AFP replay cache */
614                     replaycache[rc_idx].DSIreqID = dsi->clientID;
615                     replaycache[rc_idx].AFPcommand = function;
616                     replaycache[rc_idx].result = err;
617                 } else {
618                     LOG(log_error, logtype_afpd, "bad function %X", function);
619                     dsi->datalen = 0;
620                     err = AFPERR_NOOP;
621                 }
622             }
623
624             /* single shot toggle that gets set by dsi_readinit. */
625             if (dsi->flags & DSI_NOREPLY) {
626                 dsi->flags &= ~DSI_NOREPLY;
627                 break;
628             }
629
630             if (!dsi_cmdreply(dsi, err)) {
631                 LOG(log_error, logtype_afpd, "dsi_cmdreply(%d): %s", dsi->socket, strerror(errno) );
632                 (void)dsi_disconnect(dsi);
633             }
634             break;
635
636         case DSIFUNC_WRITE: /* FPWrite and FPAddIcon */
637             function = (u_char) dsi->commands[0];
638             if ( afp_switch[ function ] != NULL ) {
639                 dsi->datalen = DSI_DATASIZ;
640                 dsi->flags |= DSI_RUNNING;
641
642                 LOG(log_debug, logtype_afpd, "<== Start AFP command: %s", AfpNum2name(function));
643
644                 err = (*afp_switch[function])(obj,
645                                               (char *)&dsi->commands, dsi->cmdlen,
646                                               (char *)&dsi->data, &dsi->datalen);
647
648                 LOG(log_debug, logtype_afpd, "==> Finished AFP command: %s -> %s",
649                     AfpNum2name(function), AfpErr2name(err));
650
651                 dsi->flags &= ~DSI_RUNNING;
652 #ifdef FORCE_UIDGID
653                 /* bring everything back to old euid, egid */
654                 if (obj->force_uid)
655                     restore_uidgid ( &obj->uidgid );
656 #endif /* FORCE_UIDGID */
657             } else {
658                 LOG(log_error, logtype_afpd, "(write) bad function %x", function);
659                 dsi->datalen = 0;
660                 err = AFPERR_NOOP;
661             }
662
663             if (!dsi_wrtreply(dsi, err)) {
664                 LOG(log_error, logtype_afpd, "dsi_wrtreply: %s", strerror(errno) );
665                 (void)dsi_disconnect(dsi);
666             }
667             break;
668
669         case DSIFUNC_ATTN: /* attention replies */
670             break;
671
672             /* error. this usually implies a mismatch of some kind
673              * between server and client. if things are correct,
674              * we need to flush the rest of the packet if necessary. */
675         default:
676             LOG(log_info, logtype_afpd,"afp_dsi: spurious command %d", cmd);
677             dsi_writeinit(dsi, dsi->data, DSI_DATASIZ);
678             dsi_writeflush(dsi);
679             break;
680         }
681         pending_request(dsi);
682     }
683
684     /* error */
685     afp_dsi_die(EXITERR_CLNT);
686 }