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