]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/auth.c
ce1556b6930ee26b9569ad746dc726c3a722a821
[netatalk.git] / etc / afpd / auth.c
1 /*
2  * Copyright (c) 1990,1993 Regents of The University of Michigan.
3  * All Rights Reserved.  See COPYRIGHT.
4  */
5
6 #ifdef HAVE_CONFIG_H
7 #include "config.h"
8 #endif /* HAVE_CONFIG_H */
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <errno.h>
13 #include <unistd.h>
14 #include <sys/types.h>
15 #include <sys/param.h>
16 #include <sys/stat.h>
17 #include <arpa/inet.h>
18
19 #include <atalk/afp.h>
20 #include <atalk/compat.h>
21 #include <atalk/util.h>
22 #include <limits.h>
23 #include <string.h>
24 #include <ctype.h>
25 #include <time.h>
26 #include <pwd.h>
27 #include <grp.h>
28
29 #ifdef TRU64
30 #include <netdb.h>
31 #include <arpa/inet.h>
32 #include <sia.h>
33 #include <siad.h>
34
35 extern void afp_get_cmdline( int *ac, char ***av );
36 #endif /* TRU64 */
37
38 #include <atalk/logger.h>
39 #include <atalk/server_ipc.h>
40 #include <atalk/uuid.h>
41 #include <atalk/globals.h>
42
43 #include "auth.h"
44 #include "uam_auth.h"
45 #include "switch.h"
46 #include "status.h"
47 #include "fork.h"
48 #include "extattrs.h"
49 #ifdef HAVE_ACLS
50 #include "acls.h"
51 #endif
52
53 static int afp_version_index;
54 static struct uam_mod uam_modules = {NULL, NULL, &uam_modules, &uam_modules};
55 static struct uam_obj uam_login = {"", "", 0, {{NULL, NULL, NULL, NULL }}, &uam_login,
56                                    &uam_login};
57 static struct uam_obj uam_changepw = {"", "", 0, {{NULL, NULL, NULL, NULL}}, &uam_changepw,
58                                       &uam_changepw};
59
60 static struct uam_obj *afp_uam = NULL;
61
62
63 void status_versions( char *data, const DSI *dsi)
64 {
65     char                *start = data;
66     uint16_t           status;
67     int         len, num, i, count = 0;
68
69     memcpy(&status, start + AFPSTATUS_VERSOFF, sizeof(status));
70     num = sizeof( afp_versions ) / sizeof( afp_versions[ 0 ] );
71
72     for ( i = 0; i < num; i++ ) {
73         if ( !dsi && (afp_versions[ i ].av_number >= 22)) continue;
74         count++;
75     }
76     data += ntohs( status );
77     *data++ = count;
78
79     for ( i = 0; i < num; i++ ) {
80         if ( !dsi && (afp_versions[ i ].av_number >= 22)) continue;
81         len = strlen( afp_versions[ i ].av_name );
82         *data++ = len;
83         memcpy( data, afp_versions[ i ].av_name , len );
84         data += len;
85     }
86     status = htons( data - start );
87     memcpy(start + AFPSTATUS_UAMSOFF, &status, sizeof(status));
88 }
89
90 void status_uams(char *data, const char *authlist)
91 {
92     char                *start = data;
93     uint16_t           status;
94     struct uam_obj      *uams;
95     int         len, num = 0;
96
97     memcpy(&status, start + AFPSTATUS_UAMSOFF, sizeof(status));
98     uams = &uam_login;
99     while ((uams = uams->uam_prev) != &uam_login) {
100         if (strstr(authlist, uams->uam_path))
101             num++;
102     }
103
104     data += ntohs( status );
105     *data++ = num;
106     while ((uams = uams->uam_prev) != &uam_login) {
107         if (strstr(authlist, uams->uam_path)) {
108             LOG(log_info, logtype_afpd, "uam: \"%s\" available", uams->uam_name);
109             len = strlen( uams->uam_name);
110             *data++ = len;
111             memcpy( data, uams->uam_name, len );
112             data += len;
113         }
114     }
115
116     /* icon offset */
117     status = htons(data - start);
118     memcpy(start + AFPSTATUS_ICONOFF, &status, sizeof(status));
119 }
120
121 /* handle errors by closing the connection. this is only needed
122  * by the afp_* functions. */
123 static int send_reply(const AFPObj *obj, const int err)
124 {
125     if ((err == AFP_OK) || (err == AFPERR_AUTHCONT))
126         return err;
127
128     obj->reply(obj->dsi, err);
129     obj->exit(0);
130
131     return AFP_OK;
132 }
133
134 static int afp_errpwdexpired(AFPObj *obj _U_, char *ibuf _U_, size_t ibuflen _U_, 
135                              char *rbuf _U_, size_t *rbuflen)
136 {
137     *rbuflen = 0;
138     return AFPERR_PWDEXPR;
139 }
140
141 static int afp_null_nolog(AFPObj *obj _U_, char *ibuf _U_, size_t ibuflen _U_, 
142                           char *rbuf _U_, size_t *rbuflen)
143 {
144     *rbuflen = 0;
145     return( AFPERR_NOOP );
146 }
147
148 static int set_auth_switch(const AFPObj *obj, int expired)
149 {
150     int i;
151
152     if (expired) {
153         /*
154          * BF: expired password handling
155          * to allow the user to change his/her password we have to allow login
156          * but every following call except for FPChangePassword will be thrown
157          * away with an AFPERR_PWDEXPR error. (thanks to Leland Wallace from Apple
158          * for clarifying this)
159          */
160
161         for (i=0; i<=0xff; i++) {
162             uam_afpserver_action(i, UAM_AFPSERVER_PREAUTH, afp_errpwdexpired, NULL);
163         }
164         uam_afpserver_action(AFP_LOGOUT, UAM_AFPSERVER_PREAUTH, afp_logout, NULL);
165         uam_afpserver_action(AFP_CHANGEPW, UAM_AFPSERVER_PREAUTH, afp_changepw, NULL);
166     }
167     else {
168         afp_switch = postauth_switch;
169         switch (obj->afp_version) {
170
171         case 33:
172         case 32:
173 #ifdef HAVE_ACLS
174             uam_afpserver_action(AFP_GETACL, UAM_AFPSERVER_POSTAUTH, afp_getacl, NULL);
175             uam_afpserver_action(AFP_SETACL, UAM_AFPSERVER_POSTAUTH, afp_setacl, NULL);
176             uam_afpserver_action(AFP_ACCESS, UAM_AFPSERVER_POSTAUTH, afp_access, NULL);
177 #endif /* HAVE_ACLS */
178             uam_afpserver_action(AFP_GETEXTATTR, UAM_AFPSERVER_POSTAUTH, afp_getextattr, NULL);
179             uam_afpserver_action(AFP_SETEXTATTR, UAM_AFPSERVER_POSTAUTH, afp_setextattr, NULL);
180             uam_afpserver_action(AFP_REMOVEATTR, UAM_AFPSERVER_POSTAUTH, afp_remextattr, NULL);
181             uam_afpserver_action(AFP_LISTEXTATTR, UAM_AFPSERVER_POSTAUTH, afp_listextattr, NULL);
182
183         case 31:
184             uam_afpserver_action(AFP_SYNCDIR, UAM_AFPSERVER_POSTAUTH, afp_syncdir, NULL);
185             uam_afpserver_action(AFP_SYNCFORK, UAM_AFPSERVER_POSTAUTH, afp_syncfork, NULL);
186             uam_afpserver_action(AFP_SPOTLIGHT_PRIVATE, UAM_AFPSERVER_POSTAUTH, afp_null_nolog, NULL);
187             uam_afpserver_action(AFP_ENUMERATE_EXT2, UAM_AFPSERVER_POSTAUTH, afp_enumerate_ext2, NULL);
188
189         case 30:
190             uam_afpserver_action(AFP_ENUMERATE_EXT, UAM_AFPSERVER_POSTAUTH, afp_enumerate_ext, NULL);
191             uam_afpserver_action(AFP_BYTELOCK_EXT,  UAM_AFPSERVER_POSTAUTH, afp_bytelock_ext, NULL);
192             /* catsearch_ext uses the same packet as catsearch FIXME double check this, it wasn't true for enue
193                enumerate_ext */
194             uam_afpserver_action(AFP_CATSEARCH_EXT, UAM_AFPSERVER_POSTAUTH, afp_catsearch_ext, NULL);
195             uam_afpserver_action(AFP_GETSESSTOKEN,  UAM_AFPSERVER_POSTAUTH, afp_getsession, NULL);
196             uam_afpserver_action(AFP_READ_EXT,      UAM_AFPSERVER_POSTAUTH, afp_read_ext, NULL);
197             uam_afpserver_action(AFP_WRITE_EXT,     UAM_AFPSERVER_POSTAUTH, afp_write_ext, NULL);
198             uam_afpserver_action(AFP_DISCTOLDSESS,  UAM_AFPSERVER_POSTAUTH, afp_disconnect, NULL);
199
200         case 22:
201             /*
202              * If first connection to a server is done in classic AFP2.2 version is used
203              * but OSX uses AFP3.x FPzzz command !
204              */
205             uam_afpserver_action(AFP_ZZZ,  UAM_AFPSERVER_POSTAUTH, afp_zzz, NULL);
206             break;
207         }
208     }
209
210     return AFP_OK;
211 }
212
213 #define GROUPSTR_BUFSIZE 1024
214 static const char *print_groups(int ngroups, gid_t *groups)
215 {
216     static char groupsstr[GROUPSTR_BUFSIZE];
217     int i;
218     char *s = groupsstr;
219
220     if (ngroups == 0)
221         return "-";
222
223     for (i = 0; (i < ngroups) && (s < &groupsstr[GROUPSTR_BUFSIZE]); i++) {
224         s += snprintf(s, &groupsstr[GROUPSTR_BUFSIZE] - s, " %u", groups[i]);
225     }
226
227     return groupsstr;
228 }
229
230 static int login(AFPObj *obj, struct passwd *pwd, void (*logout)(void), int expired)
231 {
232 #ifdef ADMIN_GRP
233     int admin = 0;
234 #endif /* ADMIN_GRP */
235
236     if ( pwd->pw_uid == 0 ) {   /* don't allow root login */
237         LOG(log_error, logtype_afpd, "login: root login denied!" );
238         return AFPERR_NOTAUTH;
239     }
240
241     LOG(log_note, logtype_afpd, "%s Login by %s",
242         afp_versions[afp_version_index].av_name, pwd->pw_name);
243
244     if (initgroups( pwd->pw_name, pwd->pw_gid ) < 0) {
245 #ifdef RUN_AS_USER
246         LOG(log_info, logtype_afpd, "running with uid %d", geteuid());
247 #else /* RUN_AS_USER */
248         LOG(log_error, logtype_afpd, "login: %s", strerror(errno));
249         return AFPERR_BADUAM;
250 #endif /* RUN_AS_USER */
251
252     }
253
254     /* Basically if the user is in the admin group, we stay root */
255
256     if ((obj->ngroups = getgroups( 0, NULL )) < 0 ) {
257         LOG(log_error, logtype_afpd, "login: %s getgroups: %s", pwd->pw_name, strerror(errno) );
258         return AFPERR_BADUAM;
259     }
260
261     if ( NULL == (obj->groups = calloc(obj->ngroups, sizeof(gid_t))) ) {
262         LOG(log_error, logtype_afpd, "login: %s calloc: %d", obj->ngroups);
263         return AFPERR_BADUAM;
264     }
265
266     if (( obj->ngroups = getgroups(obj->ngroups, obj->groups )) < 0 ) {
267         LOG(log_error, logtype_afpd, "login: %s getgroups: %s", pwd->pw_name, strerror(errno) );
268         return AFPERR_BADUAM;
269     }
270
271 #ifdef ADMIN_GRP
272     LOG(log_debug, logtype_afpd, "obj->options.admingid == %d", obj->options.admingid);
273
274     if (obj->options.admingid != 0) {
275         int i;
276         for (i = 0; i < obj->ngroups; i++) {
277             if (obj->groups[i] == obj->options.admingid) admin = 1;
278         }
279     }
280     if (admin) {
281         ad_setfuid(0);
282         LOG(log_info, logtype_afpd, "admin login -- %s", pwd->pw_name );
283     }
284     if (!admin)
285 #endif /* ADMIN_GRP */
286 #ifdef TRU64
287     {
288         struct DSI *dsi = obj->handle;
289         struct hostent *hp;
290         char *clientname;
291         int argc;
292         char **argv;
293         char hostname[256];
294
295         afp_get_cmdline( &argc, &argv );
296
297         hp = gethostbyaddr( (char *) &dsi->client.sin_addr,
298                             sizeof( struct in_addr ),
299                             dsi->client.sin_family );
300
301         if( hp )
302             clientname = hp->h_name;
303         else
304             clientname = inet_ntoa( dsi->client.sin_addr );
305
306         sprintf( hostname, "%s@%s", pwd->pw_name, clientname );
307
308         if( sia_become_user( NULL, argc, argv, hostname, pwd->pw_name,
309                              NULL, FALSE, NULL, NULL,
310                              SIA_BEU_REALLOGIN ) != SIASUCCESS )
311             return AFPERR_BADUAM;
312
313         LOG(log_info, logtype_afpd, "session from %s (%s)", hostname,
314             inet_ntoa( dsi->client.sin_addr ) );
315
316         if (setegid( pwd->pw_gid ) < 0 || seteuid( pwd->pw_uid ) < 0) {
317             LOG(log_error, logtype_afpd, "login: %s %s", pwd->pw_name, strerror(errno) );
318             return AFPERR_BADUAM;
319         }
320     }
321 #else /* TRU64 */
322     if (setegid( pwd->pw_gid ) < 0 || seteuid( pwd->pw_uid ) < 0) {
323         LOG(log_error, logtype_afpd, "login: %s %s", pwd->pw_name, strerror(errno) );
324         return AFPERR_BADUAM;
325     }
326 #endif /* TRU64 */
327
328     LOG(log_debug, logtype_afpd, "login: supplementary groups: %s", print_groups(obj->ngroups, obj->groups));
329
330     /* There's probably a better way to do this, but for now, we just play root */
331 #ifdef ADMIN_GRP
332     if (admin)
333         obj->uid = 0;
334     else
335 #endif /* ADMIN_GRP */
336         obj->uid = geteuid();
337
338     set_auth_switch(obj, expired);
339     /* save our euid, we need it for preexec_close */
340     obj->uid = geteuid();
341     obj->logout = logout;
342
343     /* pam_umask or similar might have changed our umask */
344     (void)umask(obj->options.umask);
345
346     /* Some PAM module might have reset our signal handlers and timer, so we need to reestablish them */
347     afp_over_dsi_sighandlers(obj);
348
349     return( AFP_OK );
350 }
351
352 /* ---------------------- */
353 int afp_zzz(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf, size_t *rbuflen)
354 {
355     uint32_t data;
356     DSI *dsi = (DSI *)AFPobj->dsi;
357
358     *rbuflen = 0;
359     ibuf += 2;
360     ibuflen -= 2;
361
362     if (ibuflen < 4)
363         return AFPERR_MISC;
364     memcpy(&data, ibuf, 4); /* flag */
365     data = ntohl(data);
366
367     /*
368      * Possible sleeping states:
369      * 1) normal sleep: DSI_SLEEPING (up to 10.3)
370      * 2) extended sleep: DSI_SLEEPING | DSI_EXTSLEEP (starting with 10.4)
371      */
372
373     if (data & AFPZZZ_EXT_WAKEUP) {
374         /* wakeup request from exetended sleep */
375         if (dsi->flags & DSI_EXTSLEEP) {
376             LOG(log_note, logtype_afpd, "afp_zzz: waking up from extended sleep");
377             dsi->flags &= ~(DSI_SLEEPING | DSI_EXTSLEEP);
378         }
379     } else {
380         /* sleep request */
381         dsi->flags |= DSI_SLEEPING;
382         if (data & AFPZZZ_EXT_SLEEP) {
383             LOG(log_note, logtype_afpd, "afp_zzz: entering extended sleep");
384             dsi->flags |= DSI_EXTSLEEP;
385         } else {
386             LOG(log_note, logtype_afpd, "afp_zzz: entering normal sleep");
387         }
388     }
389
390     /*
391      * According to AFP 3.3 spec we should not return anything,
392      * but eg 10.5.8 server still returns the numbers of hours
393      * the server is keeping the sessino (ie max sleeptime).
394      */
395     data = obj->options.sleep / 120; /* hours */
396     if (!data) {
397         data = 1;
398     }
399     *rbuflen = sizeof(data);
400     data = htonl(data);
401     memcpy(rbuf, &data, sizeof(data));
402     rbuf += sizeof(data);
403
404     return AFP_OK;
405 }
406
407 /* ---------------------- */
408 static int create_session_token(AFPObj *obj)
409 {
410     pid_t pid;
411
412     /* use 8 bytes for token as OSX, don't know if it helps */
413     if ( sizeof(pid_t) > SESSIONTOKEN_LEN) {
414         LOG(log_error, logtype_afpd, "sizeof(pid_t) > %u", SESSIONTOKEN_LEN );
415         return AFPERR_MISC;
416     }
417
418     if ( NULL == (obj->sinfo.sessiontoken = malloc(SESSIONTOKEN_LEN)) )
419         return AFPERR_MISC;
420
421     memset(obj->sinfo.sessiontoken, 0, SESSIONTOKEN_LEN);
422     obj->sinfo.sessiontoken_len = SESSIONTOKEN_LEN;
423     pid = getpid();
424     memcpy(obj->sinfo.sessiontoken, &pid, sizeof(pid_t));
425
426     return 0;
427 }
428
429 static int create_session_key(AFPObj *obj)
430 {
431     /* create session key */
432     if (obj->sinfo.sessionkey == NULL) {
433         if (NULL == (obj->sinfo.sessionkey = malloc(SESSIONKEY_LEN)) )
434             return AFPERR_MISC;
435         uam_random_string(obj, obj->sinfo.sessionkey, SESSIONKEY_LEN);
436         obj->sinfo.sessionkey_len = SESSIONKEY_LEN;
437     }
438     return AFP_OK;
439 }
440
441
442 /* ---------------------- */
443 int afp_getsession(
444     AFPObj *obj,
445     char   *ibuf, size_t ibuflen, 
446     char   *rbuf, size_t *rbuflen)
447 {
448     uint16_t           type;
449     uint32_t           idlen = 0;
450     uint32_t       boottime;
451     uint32_t           tklen, tp;
452     char                *token;
453     char                *p;
454
455     *rbuflen = 0;
456     tklen = 0;
457
458     if (ibuflen < 2 + sizeof(type)) {
459         return AFPERR_PARAM;
460     }
461
462     ibuf += 2;
463     ibuflen -= 2;
464
465     memcpy(&type, ibuf, sizeof(type));
466     type = ntohs(type);
467     ibuf += sizeof(type);
468     ibuflen -= sizeof(type);
469
470     if ( obj->sinfo.sessiontoken == NULL ) {
471         if ( create_session_token( obj ) )
472             return AFPERR_MISC;
473     }
474
475     /*
476      *
477      */
478     switch (type) {
479     case 0: /* old version ?*/
480         tklen = obj->sinfo.sessiontoken_len;
481         token = obj->sinfo.sessiontoken;
482         break;
483     case 1: /* disconnect */
484     case 2: /* reconnect update id */
485         if (ibuflen >= sizeof(idlen)) {
486             memcpy(&idlen, ibuf, sizeof(idlen));
487             idlen = ntohl(idlen);
488             ibuf += sizeof(idlen);
489             ibuflen -= sizeof(idlen);
490             if (ibuflen < idlen) {
491                 return AFPERR_PARAM;
492             }
493             /* memcpy (id, ibuf, idlen) */
494             tklen = obj->sinfo.sessiontoken_len;
495             token = obj->sinfo.sessiontoken;
496         }
497         break;
498     case 3:
499     case 4:
500         if (ibuflen >= 8 ) {
501             p = ibuf;
502             memcpy( &idlen, ibuf, sizeof(idlen));
503             idlen = ntohl(idlen);
504             ibuf += sizeof(idlen);
505             ibuflen -= sizeof(idlen);
506             ibuf += sizeof(boottime);
507             ibuflen -= sizeof(boottime);
508             if (ibuflen < idlen || idlen > (90-10)) {
509                 return AFPERR_PARAM;
510             }
511             if (!obj->sinfo.clientid) {
512                 obj->sinfo.clientid = malloc(idlen + 8);
513                 memcpy(obj->sinfo.clientid, p, idlen + 8);
514                 obj->sinfo.clientid_len = idlen + 8;
515             }
516             if (ipc_child_write(obj->ipc_fd, IPC_GETSESSION, idlen+8, p) != 0)
517                 return AFPERR_MISC;
518             tklen = obj->sinfo.sessiontoken_len;
519             token = obj->sinfo.sessiontoken;
520         }
521         break;
522     case 8: /* Panther Kerberos Token */
523         tklen = obj->sinfo.cryptedkey_len;
524         token = obj->sinfo.cryptedkey;
525         break;
526     default:
527         return AFPERR_NOOP;
528         break;
529
530     }
531
532     if (tklen == 0)
533         return AFPERR_MISC;
534
535     tp = htonl(tklen);
536     memcpy(rbuf, &tp, sizeof(tklen));
537     rbuf += sizeof(tklen);
538     *rbuflen += sizeof(tklen);
539
540     memcpy(rbuf, token, tklen);
541     *rbuflen += tklen;
542
543     return AFP_OK;
544 }
545
546 /* ---------------------- */
547 int afp_disconnect(AFPObj *obj, char *ibuf, size_t ibuflen _U_, char *rbuf _U_, size_t *rbuflen)
548 {
549     DSI                 *dsi = (DSI *)obj->dsi;
550     uint16_t           type;
551     uint32_t           tklen;
552     pid_t               token;
553     int                 i;
554
555     *rbuflen = 0;
556     ibuf += 2;
557
558 #if 0
559     /* check for guest user */
560     if ( 0 == (strcasecmp(obj->username, obj->options.guest)) ) {
561         return AFPERR_MISC;
562     }
563 #endif
564
565     memcpy(&type, ibuf, sizeof(type));
566     type = ntohs(type);
567     ibuf += sizeof(type);
568
569     memcpy(&tklen, ibuf, sizeof(tklen));
570     tklen = ntohl(tklen);
571     ibuf += sizeof(tklen);
572
573     if ( sizeof(pid_t) > SESSIONTOKEN_LEN) {
574         LOG(log_error, logtype_afpd, "sizeof(pid_t) > %u", SESSIONTOKEN_LEN );
575         return AFPERR_MISC;
576     }
577     if (tklen != SESSIONTOKEN_LEN) {
578         return AFPERR_MISC;
579     }
580     tklen = sizeof(pid_t);
581     memcpy(&token, ibuf, tklen);
582
583     /* our stuff is pid + zero pad */
584     ibuf += tklen;
585     for (i = tklen; i < SESSIONTOKEN_LEN; i++, ibuf++) {
586         if (*ibuf != 0) {
587             return AFPERR_MISC;
588         }
589     }
590
591     LOG(log_note, logtype_afpd, "afp_disconnect: trying primary reconnect");
592     dsi->flags |= DSI_RECONINPROG;
593
594     /* Deactivate tickle timer */
595     const struct itimerval none = {{0, 0}, {0, 0}};
596     setitimer(ITIMER_REAL, &none, NULL);
597
598     /* check for old session, possibly transfering session from here to there */
599     if (ipc_child_write(obj->ipc_fd, IPC_DISCOLDSESSION, tklen, &token) != 0)
600         goto exit;
601     /* write uint16_t DSI request ID */
602     if (writet(obj->ipc_fd, &dsi->header.dsi_requestID, 2, 0, 2) != 2) {
603         LOG(log_error, logtype_afpd, "afp_disconnect: couldn't send DSI request ID");
604         goto exit;
605     }
606     /* now send our connected AFP client socket */
607     if (send_fd(obj->ipc_fd, dsi->socket) != 0)
608         goto exit;
609     /* Now see what happens: either afpd master sends us SIGTERM because our session */
610     /* has been transfered to a old disconnected session, or we continue    */
611     sleep(5);
612
613     if (!(dsi->flags & DSI_RECONINPROG)) { /* deleted in SIGTERM handler */
614         /* Reconnect succeeded, we exit now after sleeping some more */
615         sleep(2); /* sleep some more to give the recon. session time */
616         LOG(log_note, logtype_afpd, "afp_disconnect: primary reconnect succeeded");
617         exit(0);
618     }
619
620 exit:
621     /* Reinstall tickle timer */
622     setitimer(ITIMER_REAL, &dsi->timer, NULL);
623
624     LOG(log_error, logtype_afpd, "afp_disconnect: primary reconnect failed");
625     return AFPERR_MISC;
626 }
627
628 /* ---------------------- */
629 static int get_version(AFPObj *obj, char *ibuf, size_t ibuflen, size_t len)
630 {
631     int num,i;
632
633     if (!len || len > ibuflen)
634         return AFPERR_BADVERS;
635
636     num = sizeof( afp_versions ) / sizeof( afp_versions[ 0 ]);
637     for ( i = 0; i < num; i++ ) {
638         if ( strncmp( ibuf, afp_versions[ i ].av_name , len ) == 0 ) {
639             obj->afp_version = afp_versions[ i ].av_number;
640             afp_version_index = i;
641             break;
642         }
643     }
644     if ( i == num )                 /* An inappropo version */
645         return AFPERR_BADVERS ;
646
647     /* FIXME Hack */
648     if (obj->afp_version >= 30 && sizeof(off_t) != 8) {
649         LOG(log_error, logtype_afpd, "get_version: no LARGE_FILE support recompile!" );
650         return AFPERR_BADVERS ;
651     }
652
653     return 0;
654 }
655
656 /* ---------------------- */
657 int afp_login(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf, size_t *rbuflen)
658 {
659     struct passwd *pwd = NULL;
660     size_t len;
661     int     i;
662
663     *rbuflen = 0;
664
665     if ( nologin & 1)
666         return send_reply(obj, AFPERR_SHUTDOWN );
667
668     if (ibuflen < 2)
669         return send_reply(obj, AFPERR_BADVERS );
670
671     ibuf++;
672     len = (unsigned char) *ibuf++;
673     ibuflen -= 2;
674
675     i = get_version(obj, ibuf, ibuflen, len);
676     if (i)
677         return send_reply(obj, i );
678
679     if (ibuflen <= len)
680         return send_reply(obj, AFPERR_BADUAM);
681
682     ibuf += len;
683     ibuflen -= len;
684
685     len = (unsigned char) *ibuf++;
686     ibuflen--;
687
688     if (!len || len > ibuflen)
689         return send_reply(obj, AFPERR_BADUAM);
690
691     if (NULL == (afp_uam = auth_uamfind(UAM_SERVER_LOGIN, ibuf, len)) )
692         return send_reply(obj, AFPERR_BADUAM);
693     ibuf += len;
694     ibuflen -= len;
695
696     if (AFP_OK != (i = create_session_key(obj)) )
697         return send_reply(obj, i);
698
699     i = afp_uam->u.uam_login.login(obj, &pwd, ibuf, ibuflen, rbuf, rbuflen);
700
701     if (!pwd || ( i != AFP_OK && i != AFPERR_PWDEXPR))
702         return send_reply(obj, i);
703
704     return send_reply(obj, login(obj, pwd, afp_uam->u.uam_login.logout, ((i==AFPERR_PWDEXPR)?1:0)));
705 }
706
707 /* ---------------------- */
708 int afp_login_ext(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf, size_t *rbuflen)
709 {
710     struct passwd *pwd = NULL;
711     size_t  len;
712     int     i;
713     char        type;
714     uint16_t   len16;
715     char        *username;
716
717     *rbuflen = 0;
718
719     if ( nologin & 1)
720         return send_reply(obj, AFPERR_SHUTDOWN );
721
722     if (ibuflen < 5)
723         return send_reply(obj, AFPERR_BADVERS );
724
725     ibuf++;
726     ibuf++;     /* pad  */
727     ibuf +=2;   /* flag */
728
729     len = (unsigned char) *ibuf;
730     ibuf++;
731     ibuflen -= 5;
732
733     i = get_version(obj, ibuf, ibuflen, len);
734     if (i)
735         return send_reply(obj, i );
736
737     if (ibuflen <= len)
738         return send_reply(obj, AFPERR_BADUAM);
739
740     ibuf    += len;
741     ibuflen -= len;
742
743     len = (unsigned char) *ibuf;
744     ibuf++;
745     ibuflen--;
746
747     if (!len || len > ibuflen)
748         return send_reply(obj, AFPERR_BADUAM);
749
750     if ((afp_uam = auth_uamfind(UAM_SERVER_LOGIN, ibuf, len)) == NULL)
751         return send_reply(obj, AFPERR_BADUAM);
752     ibuf    += len;
753     ibuflen -= len;
754
755     if (!afp_uam->u.uam_login.login_ext) {
756         LOG(log_error, logtype_afpd, "login_ext: uam %s not AFP 3 ready!", afp_uam->uam_name );
757         return send_reply(obj, AFPERR_BADUAM);
758     }
759     /* user name */
760     if (ibuflen <= 1 +sizeof(len16))
761         return send_reply(obj, AFPERR_PARAM);
762     type = *ibuf;
763     username = ibuf;
764     ibuf++;
765     ibuflen--;
766     if (type != 3)
767         return send_reply(obj, AFPERR_PARAM);
768
769     memcpy(&len16, ibuf, sizeof(len16));
770     ibuf += sizeof(len16);
771     ibuflen -= sizeof(len16);
772     len = ntohs(len16);
773     if (len > ibuflen)
774         return send_reply(obj, AFPERR_PARAM);
775     ibuf += len;
776     ibuflen -= len;
777
778     /* directory service name */
779     if (!ibuflen)
780         return send_reply(obj, AFPERR_PARAM);
781     type = *ibuf;
782     ibuf++;
783     ibuflen--;
784
785     switch(type) {
786     case 1:
787     case 2:
788         if (!ibuflen)
789             return send_reply(obj, AFPERR_PARAM);
790         len = (unsigned char) *ibuf;
791         ibuf++;
792         ibuflen--;
793         break;
794     case 3:
795         /* With "No User Authen" it is equal */
796         if (ibuflen < sizeof(len16))
797             return send_reply(obj, AFPERR_PARAM);
798         memcpy(&len16, ibuf, sizeof(len16));
799         ibuf += sizeof(len16);
800         ibuflen -= sizeof(len16);
801         len = ntohs(len16);
802         break;
803     default:
804         return send_reply(obj, AFPERR_PARAM);
805     }
806 #if 0
807     if (len != 0) {
808         LOG(log_error, logtype_afpd, "login_ext: directory service path not null!" );
809         return send_reply(obj, AFPERR_PARAM);
810     }
811 #endif
812     ibuf += len;
813     ibuflen -= len;
814
815     /* Pad */
816     if (ibuflen && ((unsigned long) ibuf & 1)) { /* pad character */
817         ibuf++;
818         ibuflen--;
819     }
820
821     if (AFP_OK != (i = create_session_key(obj)) ) {
822         return send_reply(obj, i);
823     }
824
825     /* FIXME user name are in UTF8 */
826     i = afp_uam->u.uam_login.login_ext(obj, username, &pwd, ibuf, ibuflen, rbuf, rbuflen);
827
828     if (!pwd || ( i != AFP_OK && i != AFPERR_PWDEXPR))
829         return send_reply(obj, i);
830
831     return send_reply(obj, login(obj, pwd, afp_uam->u.uam_login.logout, ((i==AFPERR_PWDEXPR)?1:0)));
832 }
833
834 /* ---------------------- */
835 int afp_logincont(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf, size_t *rbuflen)
836 {
837     struct passwd *pwd = NULL;
838     int err;
839
840     if ( afp_uam == NULL || afp_uam->u.uam_login.logincont == NULL || ibuflen < 2 ) {
841         *rbuflen = 0;
842         return send_reply(obj, AFPERR_NOTAUTH );
843     }
844
845     ibuf += 2; ibuflen -= 2;
846     err = afp_uam->u.uam_login.logincont(obj, &pwd, ibuf, ibuflen,
847                                          rbuf, rbuflen);
848     if (!pwd || ( err != AFP_OK && err != AFPERR_PWDEXPR))
849         return send_reply(obj, err);
850
851     return send_reply(obj, login(obj, pwd, afp_uam->u.uam_login.logout, ((err==AFPERR_PWDEXPR)?1:0)));
852 }
853
854
855 int afp_logout(AFPObj *obj, char *ibuf _U_, size_t ibuflen  _U_, char *rbuf  _U_, size_t *rbuflen)
856 {
857     DSI *dsi = (DSI *)(obj->dsi);
858
859     LOG(log_note, logtype_afpd, "AFP logout by %s", obj->username);
860     of_close_all_forks(obj);
861     close_all_vol(obj);
862     dsi->flags = DSI_AFP_LOGGED_OUT;
863     *rbuflen = 0;
864     return AFP_OK;
865 }
866
867
868
869 /* change password  --
870  * NOTE: an FPLogin must already have completed successfully for this
871  *       to work. this also does a little pre-processing before it hands
872  *       it off to the uam.
873  */
874 int afp_changepw(AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf, size_t *rbuflen)
875 {
876     char username[MACFILELEN + 1], *start = ibuf;
877     struct uam_obj *uam;
878     struct passwd *pwd;
879     size_t len;
880     int    ret;
881
882     *rbuflen = 0;
883     ibuf += 2;
884
885     /* check if password change is allowed, OS-X ignores the flag.
886      * we shouldn't trust the client on this anyway.
887      * not sure about the "right" error code, NOOP for now */
888     if (!(obj->options.passwdbits & PASSWD_SET))
889         return AFPERR_NOOP;
890
891     /* make sure we can deal w/ this uam */
892     len = (unsigned char) *ibuf++;
893     if ((uam = auth_uamfind(UAM_SERVER_CHANGEPW, ibuf, len)) == NULL)
894         return AFPERR_BADUAM;
895
896     ibuf += len;
897     if ((len + 1) & 1) /* pad byte */
898         ibuf++;
899
900     if (obj->afp_version < 30) {
901         len = (unsigned char) *ibuf++;
902         if ( len > sizeof(username) - 1) {
903             return AFPERR_PARAM;
904         }
905         memcpy(username, ibuf, len);
906         username[ len ] = '\0';
907         ibuf += len;
908         if ((len + 1) & 1) /* pad byte */
909             ibuf++;
910     } else {
911         /* AFP > 3.0 doesn't pass the username, APF 3.1 specs page 124 */
912         if ( ibuf[0] != '\0' || ibuf[1] != '\0')
913             return AFPERR_PARAM;
914         ibuf += 2;
915         len = MIN(sizeof(username), strlen(obj->username));
916         memcpy(username, obj->username, len);
917         username[ len ] = '\0';
918     }
919
920
921     LOG(log_info, logtype_afpd, "changing password for <%s>", username);
922
923     if (( pwd = uam_getname( obj, username, sizeof(username))) == NULL )
924         return AFPERR_PARAM;
925
926     /* send it off to the uam. we really don't use ibuflen right now. */
927     if (ibuflen < (size_t)(ibuf - start)) 
928         return AFPERR_PARAM;
929     
930     ibuflen -= (ibuf - start);
931     ret = uam->u.uam_changepw(obj, username, pwd, ibuf, ibuflen,
932                               rbuf, rbuflen);
933     LOG(log_info, logtype_afpd, "password change %s.",
934         (ret == AFPERR_AUTHCONT) ? "continued" :
935         (ret ? "failed" : "succeeded"));
936     if ( ret == AFP_OK )
937         set_auth_switch(obj, 0);
938
939     return ret;
940 }
941
942
943 /* FPGetUserInfo */
944 int afp_getuserinfo(AFPObj *obj _U_, char *ibuf, size_t ibuflen _U_, char *rbuf, size_t *rbuflen)
945 {
946     uint8_t  thisuser;
947     uint32_t id;
948     uint16_t bitmap;
949     char *bitmapp;
950
951     LOG(log_debug, logtype_afpd, "begin afp_getuserinfo:");
952
953     *rbuflen = 0;
954     ibuf++;
955     thisuser = *ibuf++;
956     ibuf += sizeof(id); /* userid is not used in AFP 2.0 */
957     memcpy(&bitmap, ibuf, sizeof(bitmap));
958     bitmap = ntohs(bitmap);
959
960     /* deal with error cases. we don't have to worry about
961      * AFPERR_ACCESS or AFPERR_NOITEM as geteuid and getegid always
962      * succeed. */
963     if (!thisuser)
964         return AFPERR_PARAM;
965     if ((bitmap & USERIBIT_ALL) != bitmap)
966         return AFPERR_BITMAP;
967
968     /* remember place where we store the possibly modified bitmap later */
969     memcpy(rbuf, ibuf, sizeof(bitmap));
970     bitmapp = rbuf;
971     rbuf += sizeof(bitmap);
972     *rbuflen = sizeof(bitmap);
973
974     /* copy the user/group info */
975     if (bitmap & USERIBIT_USER) {
976         id = htonl(geteuid());
977         memcpy(rbuf, &id, sizeof(id));
978         rbuf += sizeof(id);
979         *rbuflen += sizeof(id);
980     }
981
982     if (bitmap & USERIBIT_GROUP) {
983         id = htonl(getegid());
984         memcpy(rbuf, &id, sizeof(id));
985         rbuf += sizeof(id);
986         *rbuflen += sizeof(id);
987     }
988
989     if (bitmap & USERIBIT_UUID) {
990         if ( ! (obj->options.flags & OPTION_UUID)) {
991             bitmap &= ~USERIBIT_UUID;
992             bitmap = htons(bitmap);
993             memcpy(bitmapp, &bitmap, sizeof(bitmap));
994         } else {
995             LOG(log_debug, logtype_afpd, "afp_getuserinfo: get UUID for \'%s\'", obj->username);
996             int ret;
997             atalk_uuid_t uuid;
998             ret = getuuidfromname( obj->username, UUID_USER, uuid);
999             if (ret != 0) {
1000                 LOG(log_info, logtype_afpd, "afp_getuserinfo: error getting UUID!");
1001                 return AFPERR_NOITEM;
1002             }
1003             LOG(log_debug, logtype_afpd, "afp_getuserinfo: got UUID: %s", uuid_bin2string(uuid));
1004
1005             memcpy(rbuf, uuid, UUID_BINSIZE);
1006             rbuf += UUID_BINSIZE;
1007             *rbuflen += UUID_BINSIZE;
1008         }
1009     }
1010
1011     LOG(log_debug, logtype_afpd, "END afp_getuserinfo:");
1012     return AFP_OK;
1013 }
1014
1015 #define UAM_LIST(type) (((type) == UAM_SERVER_LOGIN || (type) == UAM_SERVER_LOGIN_EXT) ? &uam_login : \
1016                         (((type) == UAM_SERVER_CHANGEPW) ?              \
1017                          &uam_changepw : NULL))
1018
1019 /* just do a linked list search. this could be sped up with a hashed
1020  * list, but i doubt anyone's going to have enough uams to matter. */
1021 struct uam_obj *auth_uamfind(const int type, const char *name,
1022                              const int len)
1023 {
1024     struct uam_obj *prev, *start;
1025
1026     if (!name || !(start = UAM_LIST(type)))
1027         return NULL;
1028
1029     prev = start;
1030     while ((prev = prev->uam_prev) != start)
1031         if (strndiacasecmp(prev->uam_name, name, len) == 0)
1032             return prev;
1033
1034     return NULL;
1035 }
1036
1037 int auth_register(const int type, struct uam_obj *uam)
1038 {
1039     struct uam_obj *start;
1040
1041     if (!uam || !uam->uam_name || (*uam->uam_name == '\0'))
1042         return -1;
1043
1044     if (!(start = UAM_LIST(type)))
1045         return 1; /* we don't know what to do with it, caller must free it */
1046
1047     uam_attach(start, uam);
1048     return 0;
1049 }
1050
1051 /* load all of the modules */
1052 int auth_load(const char *path, const char *list)
1053 {
1054     char name[MAXPATHLEN + 1], buf[MAXPATHLEN + 1], *p;
1055     struct uam_mod *mod;
1056     struct stat st;
1057     size_t len;
1058
1059     if (!path || !*path || !list || (len = strlen(path)) > sizeof(name) - 2)
1060         return -1;
1061
1062     strlcpy(buf, list, sizeof(buf));
1063     if ((p = strtok(buf, ", ")) == NULL)
1064         return -1;
1065
1066     strcpy(name, path);
1067     if (name[len - 1] != '/') {
1068         strcat(name, "/");
1069         len++;
1070     }
1071
1072     while (p) {
1073         strlcpy(name + len, p, sizeof(name) - len);
1074         LOG(log_debug, logtype_afpd, "uam: loading (%s)", name);
1075         /*
1076           if ((stat(name, &st) == 0) && (mod = uam_load(name, p))) {
1077         */
1078         if (stat(name, &st) == 0) {
1079             if ((mod = uam_load(name, p))) {
1080                 uam_attach(&uam_modules, mod);
1081                 LOG(log_debug, logtype_afpd, "uam: %s loaded", p);
1082             } else {
1083                 LOG(log_error, logtype_afpd, "uam: %s load failure",p);
1084             }
1085         } else {
1086             LOG(log_info, logtype_afpd, "uam: uam not found (status=%d)", stat(name, &st));
1087         }
1088         p = strtok(NULL, ", ");
1089     }
1090
1091     return 0;
1092 }
1093
1094 /* get rid of all of the uams */
1095 void auth_unload(void)
1096 {
1097     struct uam_mod *mod, *prev, *start = &uam_modules;
1098
1099     prev = start->uam_prev;
1100     while ((mod = prev) != start) {
1101         prev = prev->uam_prev;
1102         uam_detach(mod);
1103         uam_unload(mod);
1104     }
1105 }