]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/uam.c
fix SF bug 1079622, by Ralf Schuchardt
[netatalk.git] / etc / afpd / uam.c
1 /*
2  * $Id: uam.c,v 1.24.6.7.2.1 2004-12-07 18:34:15 bfernhomberg Exp $
3  *
4  * Copyright (c) 1999 Adrian Sun (asun@zoology.washington.edu)
5  * All Rights Reserved.  See COPYRIGHT.
6  */
7
8 #ifdef HAVE_CONFIG_H
9 #include "config.h"
10 #endif /* HAVE_CONFIG_H */
11
12 #include <stdio.h>
13 #include <stdlib.h>
14
15 /* STDC check */
16 #if STDC_HEADERS
17 #include <string.h>
18 #else /* STDC_HEADERS */
19 #ifndef HAVE_STRCHR
20 #define strchr index
21 #define strrchr index
22 #endif /* HAVE_STRCHR */
23 char *strchr (), *strrchr ();
24 #ifndef HAVE_MEMCPY
25 #define memcpy(d,s,n) bcopy ((s), (d), (n))
26 #define memmove(d,s,n) bcopy ((s), (d), (n))
27 #endif /* ! HAVE_MEMCPY */
28 #endif /* STDC_HEADERS */
29
30 #ifdef HAVE_UNISTD_H
31 #include <unistd.h>
32 #endif /* HAVE_UNISTD_H */
33 #ifdef HAVE_FCNTL_H
34 #include <fcntl.h>
35 #endif /* HAVE_FCNTL_H */
36 #include <ctype.h>
37 #include <atalk/logger.h>
38 #include <sys/param.h>
39 #include <sys/socket.h>
40 #include <sys/time.h>
41 #ifdef HAVE_DLFCN_H
42 #include <dlfcn.h>
43 #endif /* HAVE_DLFCN_H */
44
45 #include <netinet/in.h>
46 #include <arpa/inet.h>
47
48 #include <netatalk/endian.h>
49 #include <atalk/asp.h>
50 #include <atalk/dsi.h>
51 #include <atalk/afp.h>
52 #include <atalk/util.h>
53
54 #include "globals.h"
55 #include "afp_config.h"
56 #include "auth.h"
57 #include "uam_auth.h"
58
59 #ifdef AFP3x
60 #define utf8_encoding() (afp_version >= 30)
61 #else
62 #define utf8_encoding() (0)
63 #endif
64
65 #ifdef TRU64
66 #include <netdb.h>
67 #include <sia.h>
68 #include <siad.h>
69 #include <signal.h>
70 #endif /* TRU64 */
71
72 /* --- server uam functions -- */
73 #ifndef NO_LOAD_UAM
74 extern  int uam_setup(const char *path);
75 #endif
76
77 /* uam_load. uams must have a uam_setup function. */
78 struct uam_mod *uam_load(const char *path, const char *name)
79 {
80     char buf[MAXPATHLEN + 1], *p;
81     struct uam_mod *mod;
82     void *module;
83
84 #ifndef NO_LOAD_UAM
85     if ((module = mod_open(path)) == NULL) {
86         LOG(log_error, logtype_afpd, "uam_load(%s): failed to load: %s", name, mod_error());
87         return NULL;
88     }
89 #endif
90
91     if ((mod = (struct uam_mod *) malloc(sizeof(struct uam_mod))) == NULL) {
92         LOG(log_error, logtype_afpd, "uam_load(%s): malloc failed", name);
93         goto uam_load_fail;
94     }
95
96     strlcpy(buf, name, sizeof(buf));
97     if ((p = strchr(buf, '.')))
98         *p = '\0';
99
100 #ifndef NO_LOAD_UAM
101     if ((mod->uam_fcn = mod_symbol(module, buf)) == NULL) {
102         LOG(log_error, logtype_afpd, "uam_load(%s): mod_symbol error for symbol %s",
103             name,
104             buf);
105         goto uam_load_err;
106     }
107
108     if (mod->uam_fcn->uam_type != UAM_MODULE_SERVER) {
109         LOG(log_error, logtype_afpd, "uam_load(%s): attempted to load a non-server module",
110             name);
111         goto uam_load_err;
112     }
113
114     /* version check would go here */
115
116     if (!mod->uam_fcn->uam_setup ||
117             ((*mod->uam_fcn->uam_setup)(name) < 0)) {
118         LOG(log_error, logtype_afpd, "uam_load(%s): uam_setup failed", name);
119         goto uam_load_err;
120     }
121 #else
122    uam_setup(name);
123 #endif
124
125     mod->uam_module = module;
126     return mod;
127
128 uam_load_err:
129     free(mod);
130 uam_load_fail:
131     mod_close(module);
132     return NULL;
133 }
134
135 /* unload the module. we check for a cleanup function, but we don't
136  * die if one doesn't exist. however, things are likely to leak without one.
137  */
138 void uam_unload(struct uam_mod *mod)
139 {
140     if (mod->uam_fcn->uam_cleanup)
141         (*mod->uam_fcn->uam_cleanup)();
142
143 #ifndef NO_LOAD_UAM
144     mod_close(mod->uam_module);
145 #endif    
146     free(mod);
147 }
148
149 /* -- client-side uam functions -- */
150 #ifndef ATACC
151 /* set up stuff for this uam. */
152 int uam_register(const int type, const char *path, const char *name, ...)
153 {
154     va_list ap;
155     struct uam_obj *uam;
156     int ret;
157
158     if (!name)
159         return -1;
160
161     /* see if it already exists. */
162     if ((uam = auth_uamfind(type, name, strlen(name)))) {
163         if (strcmp(uam->uam_path, path)) {
164             /* it exists, but it's not the same module. */
165             LOG(log_error, logtype_afpd, "uam_register: \"%s\" already loaded by %s",
166                 name, path);
167             return -1;
168         }
169         uam->uam_count++;
170         return 0;
171     }
172
173     /* allocate space for uam */
174     if ((uam = calloc(1, sizeof(struct uam_obj))) == NULL)
175         return -1;
176
177     uam->uam_name = name;
178     uam->uam_path = strdup(path);
179     uam->uam_count++;
180
181     va_start(ap, name);
182     switch (type) {
183     case UAM_SERVER_LOGIN_EXT: /* expect four arguments */
184         uam->u.uam_login.login = va_arg(ap, void *);
185         uam->u.uam_login.logincont = va_arg(ap, void *);
186         uam->u.uam_login.logout = va_arg(ap, void *);
187         uam->u.uam_login.login_ext = va_arg(ap, void *);
188         break;
189     
190     case UAM_SERVER_LOGIN: /* expect three arguments */
191         uam->u.uam_login.login_ext = NULL;
192         uam->u.uam_login.login = va_arg(ap, void *);
193         uam->u.uam_login.logincont = va_arg(ap, void *);
194         uam->u.uam_login.logout = va_arg(ap, void *);
195         break;
196     case UAM_SERVER_CHANGEPW: /* one argument */
197         uam->u.uam_changepw = va_arg(ap, void *);
198         break;
199     case UAM_SERVER_PRINTAUTH: /* x arguments */
200     default:
201         break;
202     }
203     va_end(ap);
204
205     /* attach to other uams */
206     ret = auth_register(type, uam);
207     if ( ret) {
208         free(uam->uam_path);
209         free(uam);
210     }
211
212     return ret;
213 }
214 #endif
215
216 #ifdef ATACC
217 int uam_register_fn(const int type, const char *path, const char *name, void *fn1, void *fn2, 
218                      void *fn3, void *fn4)
219 {
220     va_list ap;
221     struct uam_obj *uam;
222
223     if (!name)
224         return -1;
225
226     /* see if it already exists. */
227     if ((uam = auth_uamfind(type, name, strlen(name)))) {
228         if (strcmp(uam->uam_path, path)) {
229             /* it exists, but it's not the same module. */
230             LOG(log_error, logtype_afpd, "uam_register: \"%s\" already loaded by %s",
231                 name, path);
232             return -1;
233         }
234         uam->uam_count++;
235         return 0;
236     }
237
238     /* allocate space for uam */
239     if ((uam = calloc(1, sizeof(struct uam_obj))) == NULL)
240         return -1;
241
242     uam->uam_name = name;
243     uam->uam_path = strdup(path);
244     uam->uam_count++;
245
246     switch (type) {
247     case UAM_SERVER_LOGIN_EXT: /* expect four arguments */
248         uam->u.uam_login.login_ext = fn4;
249         uam->u.uam_login.login = fn1;
250         uam->u.uam_login.logincont = fn2;
251         uam->u.uam_login.logout = fn3;
252         break;
253     case UAM_SERVER_LOGIN: /* expect three arguments */
254         uam->u.uam_login.login_ext = NULL;
255         uam->u.uam_login.login = fn1;
256         uam->u.uam_login.logincont = fn2;
257         uam->u.uam_login.logout = fn3;
258         break;
259     case UAM_SERVER_CHANGEPW: /* one argument */
260         uam->u.uam_changepw = fn1;
261         break;
262     case UAM_SERVER_PRINTAUTH: /* x arguments */
263     default:
264         break;
265     }
266
267     /* attach to other uams */
268     if (auth_register(type, uam) < 0) {
269         free(uam->uam_path);
270         free(uam);
271         return -1;
272     }
273
274     return 0;
275 }
276 #endif
277
278 void uam_unregister(const int type, const char *name)
279 {
280     struct uam_obj *uam;
281
282     if (!name)
283         return;
284
285     uam = auth_uamfind(type, name, strlen(name));
286     if (!uam || --uam->uam_count > 0)
287         return;
288
289     auth_unregister(uam);
290     free(uam->uam_path);
291     free(uam);
292 }
293
294 /* --- helper functions for plugin uams --- */
295
296 struct passwd *uam_getname(void *private, char *name, const int len)
297 {
298     AFPObj *obj = private;
299     struct passwd *pwent;
300     static char username[256];
301     static char user[256];
302     static char pwname[256];
303     char *p;
304     size_t namelen, gecoslen = 0, pwnamelen = 0;
305
306     if ((pwent = getpwnam(name)))
307         return pwent;
308
309 #ifndef NO_REAL_USER_NAME
310
311     if ( (size_t) -1 == (namelen = convert_string((utf8_encoding())?CH_UTF8_MAC:obj->options.maccharset,
312                                 CH_UCS2, name, strlen(name), username, sizeof(username))))
313         return NULL;
314
315     setpwent();
316     while ((pwent = getpwent())) {
317         if ((p = strchr(pwent->pw_gecos, ',')))
318             *p = '\0';
319
320         if ((size_t)-1 == ( gecoslen = convert_string(obj->options.unixcharset, CH_UCS2, 
321                                 pwent->pw_gecos, strlen(pwent->pw_gecos), user, sizeof(username))) )
322                 continue;
323         if ((size_t)-1 == ( pwnamelen = convert_string(obj->options.unixcharset, CH_UCS2, 
324                                 pwent->pw_name, strlen(pwent->pw_name), pwname, sizeof(username))) )
325                 continue;
326
327
328         /* check against both the gecos and the name fields. the user
329          * might have just used a different capitalization. */
330
331         if ( (namelen == gecoslen && strncasecmp_w((ucs2_t*)user, (ucs2_t*)username, len) == 0) || 
332                 ( namelen == pwnamelen && strncasecmp_w ( (ucs2_t*) pwname, (ucs2_t*) username, len) == 0)) {
333             strlcpy(name, pwent->pw_name, len);
334             break;
335         }
336     }
337     endpwent();
338 #endif /* ! NO_REAL_USER_NAME */
339
340     /* os x server doesn't keep anything useful if we do getpwent */
341     return pwent ? getpwnam(name) : NULL;
342 }
343
344 int uam_checkuser(const struct passwd *pwd)
345 {
346     const char *p;
347
348     if (!pwd)
349         return -1;
350
351 #ifndef DISABLE_SHELLCHECK
352         if (!pwd->pw_shell || (*pwd->pw_shell == '\0')) {
353                 LOG(log_info, logtype_afpd, "uam_checkuser: User %s does not have a shell", pwd->pw_name);
354                 return -1;
355         }
356
357     while ((p = getusershell())) {
358         if ( strcmp( p, pwd->pw_shell ) == 0 )
359             break;
360     }
361     endusershell();
362
363     if (!p) {
364         LOG(log_info, logtype_afpd, "illegal shell %s for %s", pwd->pw_shell, pwd->pw_name);
365         return -1;
366     }
367 #endif /* DISABLE_SHELLCHECK */
368
369     return 0;
370 }
371
372 int uam_random_string (AFPObj *obj, char *buf, int len)
373 {
374     u_int32_t result;
375     int ret;
376     int fd;
377
378     if ( (len <= 0) || (len % sizeof(result)))
379             return -1;
380
381     /* construct a random number */
382     if ((fd = open("/dev/urandom", O_RDONLY)) < 0) {
383         struct timeval tv;
384         struct timezone tz;
385         int i;
386
387         if (gettimeofday(&tv, &tz) < 0)
388             return -1;
389         srandom(tv.tv_sec + (unsigned long) obj + (unsigned long) obj->handle);
390         for (i = 0; i < len; i += sizeof(result)) {
391             result = random();
392             memcpy(buf + i, &result, sizeof(result));
393         }
394     } else {
395         ret = read(fd, buf, len);
396         close(fd);
397         if (ret <= 0)
398             return -1;
399     }
400     return 0;
401 }
402
403 /* afp-specific functions */
404 int uam_afpserver_option(void *private, const int what, void *option,
405                          int *len)
406 {
407 AFPObj *obj = private;
408     char **buf = (char **) option; /* most of the options are this */
409     struct session_info **sinfo = (struct session_info **) option;
410
411     if (!obj || !option)
412         return -1;
413
414     switch (what) {
415     case UAM_OPTION_USERNAME:
416         *buf = (void *) obj->username;
417         if (len)
418             *len = sizeof(obj->username) - 1;
419         break;
420
421     case UAM_OPTION_GUEST:
422         *buf = (void *) obj->options.guest;
423         if (len)
424             *len = strlen(obj->options.guest);
425         break;
426
427     case UAM_OPTION_PASSWDOPT:
428         if (!len)
429             return -1;
430
431         switch (*len) {
432         case UAM_PASSWD_FILENAME:
433             *buf = (void *) obj->options.passwdfile;
434             *len = strlen(obj->options.passwdfile);
435             break;
436
437         case UAM_PASSWD_MINLENGTH:
438             *((int *) option) = obj->options.passwdminlen;
439             *len = sizeof(obj->options.passwdminlen);
440             break;
441
442         case UAM_PASSWD_MAXFAIL:
443             *((int *) option) = obj->options.loginmaxfail;
444             *len = sizeof(obj->options.loginmaxfail);
445             break;
446
447         case UAM_PASSWD_EXPIRETIME: /* not implemented */
448         default:
449             return -1;
450             break;
451         }
452         break;
453
454     case UAM_OPTION_SIGNATURE:
455         *buf = (void *) (((AFPConfig *)obj->config)->signature);
456         if (len)
457             *len = 16;
458         break;
459
460     case UAM_OPTION_RANDNUM: /* returns a random number in 4-byte units. */
461         if (!len)
462             return -1;
463
464         return uam_random_string(obj, option, *len);
465         break;
466
467     case UAM_OPTION_HOSTNAME:
468         *buf = (void *) obj->options.hostname;
469         if (len)
470             *len = strlen(obj->options.hostname);
471         break;
472
473     case UAM_OPTION_PROTOCOL:
474         *buf = (void *) obj->proto;
475         break;
476     case UAM_OPTION_CLIENTNAME:
477         {
478             struct DSI *dsi = obj->handle;
479             struct hostent *hp;
480
481             hp = gethostbyaddr( (char *) &dsi->client.sin_addr,
482                                 sizeof( struct in_addr ),
483                                 dsi->client.sin_family );
484             if( hp )
485                 *buf = (void *) hp->h_name;
486             else
487                 *buf = (void *) inet_ntoa( dsi->client.sin_addr );
488         }
489         break;
490     case UAM_OPTION_COOKIE:
491         /* it's up to the uam to actually store something useful here.
492          * this just passes back a handle to the cookie. the uam side
493          * needs to do something like **buf = (void *) cookie to store
494          * the cookie. */
495         *buf = (void *) &obj->uam_cookie;
496         break;
497     case UAM_OPTION_KRB5SERVICE:
498         *buf = obj->options.k5service;
499         if (len)
500             *len = (*buf)?strlen(*buf):0;
501         break;
502     case UAM_OPTION_MACCHARSET:
503         *((int *) option) = obj->options.maccharset;
504         *len = sizeof(obj->options.maccharset);
505         break;
506     case UAM_OPTION_UNIXCHARSET:
507         *((int *) option) = obj->options.unixcharset;
508         *len = sizeof(obj->options.unixcharset);
509         break;
510     case UAM_OPTION_SESSIONINFO:
511         *sinfo = &(obj->sinfo);
512         break;
513     default:
514         return -1;
515         break;
516     }
517
518     return 0;
519 }
520
521 /* if we need to maintain a connection, this is how we do it.
522  * because an action pointer gets passed in, we can stream 
523  * DSI connections */
524 int uam_afp_read(void *handle, char *buf, int *buflen,
525                  int (*action)(void *, void *, const int))
526 {
527     AFPObj *obj = handle;
528     int len;
529
530     if (!obj)
531         return AFPERR_PARAM;
532
533     switch (obj->proto) {
534     case AFPPROTO_ASP:
535         if ((len = asp_wrtcont(obj->handle, buf, buflen )) < 0)
536             goto uam_afp_read_err;
537         return action(handle, buf, *buflen);
538         break;
539
540     case AFPPROTO_DSI:
541         len = dsi_writeinit(obj->handle, buf, *buflen);
542         if (!len || ((len = action(handle, buf, len)) < 0)) {
543             dsi_writeflush(obj->handle);
544             goto uam_afp_read_err;
545         }
546
547         while ((len = (dsi_write(obj->handle, buf, *buflen)))) {
548             if ((len = action(handle, buf, len)) < 0) {
549                 dsi_writeflush(obj->handle);
550                 goto uam_afp_read_err;
551             }
552         }
553         break;
554     }
555     return 0;
556
557 uam_afp_read_err:
558     *buflen = 0;
559     return len;
560 }
561
562 #ifdef TRU64
563 void uam_afp_getcmdline( int *ac, char ***av )
564 {
565     afp_get_cmdline( ac, av );
566 }
567
568 int uam_sia_validate_user(sia_collect_func_t * collect, int argc, char **argv,
569                          char *hostname, char *username, char *tty,
570                          int colinput, char *gssapi, char *passphrase)
571 /* A clone of the Tru64 system function sia_validate_user() that calls
572  * sia_ses_authent() rather than sia_ses_reauthent()   
573  * Added extra code to take into account suspected SIA bug whereby it clobbers
574  * the signal handler on SIGALRM (tickle) installed by Netatalk/afpd
575  */
576 {
577        SIAENTITY *entity = NULL;
578        struct sigaction act;
579        int rc;
580
581        if ((rc=sia_ses_init(&entity, argc, argv, hostname, username, tty,
582                             colinput, gssapi)) != SIASUCCESS) {
583                LOG(log_error, logtype_afpd, "cannot initialise SIA");
584                return SIAFAIL;
585        }
586
587        /* save old action for restoration later */
588        if (sigaction(SIGALRM, NULL, &act))
589                LOG(log_error, logtype_afpd, "cannot save SIGALRM handler");
590
591        if ((rc=sia_ses_authent(collect, passphrase, entity)) != SIASUCCESS) {
592                /* restore old action after clobbering by sia_ses_authent() */
593                if (sigaction(SIGALRM, &act, NULL))
594                        LOG(log_error, logtype_afpd, "cannot restore SIGALRM handler");
595
596                LOG(log_info, logtype_afpd, "unsuccessful login for %s",
597 (hostname?hostname:"(null)"));
598                return SIAFAIL;
599        }
600        LOG(log_info, logtype_afpd, "successful login for %s",
601 (hostname?hostname:"(null)"));
602
603        /* restore old action after clobbering by sia_ses_authent() */   
604        if (sigaction(SIGALRM, &act, NULL))
605                LOG(log_error, logtype_afpd, "cannot restore SIGALRM handler");
606
607        sia_ses_release(&entity);
608
609        return SIASUCCESS;
610 }
611 #endif /* TRU64 */
612
613 /* --- papd-specific functions (just placeholders) --- */
614 void append(void *pf, char *data, int len)
615 {
616     return;
617 }