]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/uam.c
Tru64 SIA fixes and Eddie and Burkhard.
[netatalk.git] / etc / afpd / uam.c
1 /*
2  * $Id: uam.c,v 1.20 2002-02-13 16:44:59 srittau 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 TRU64
60 #include <netdb.h>
61 #include <sia.h>
62 #include <siad.h>
63 #include <signal.h>
64 #endif /* TRU64 */
65
66 /* --- server uam functions -- */
67
68 /* uam_load. uams must have a uam_setup function. */
69 struct uam_mod *uam_load(const char *path, const char *name)
70 {
71     char buf[MAXPATHLEN + 1], *p;
72     struct uam_mod *mod;
73     void *module;
74
75     if ((module = mod_open(path)) == NULL) {
76         LOG(log_error, logtype_default, "uam_load(%s): failed to load: %s", name, mod_error());
77         return NULL;
78     }
79
80     if ((mod = (struct uam_mod *) malloc(sizeof(struct uam_mod))) == NULL) {
81         LOG(log_error, logtype_default, "uam_load(%s): malloc failed", name);
82         goto uam_load_fail;
83     }
84
85     strncpy(buf, name, sizeof(buf));
86     buf[sizeof(buf) - 1] = '\0';
87     if ((p = strchr(buf, '.')))
88         *p = '\0';
89     if ((mod->uam_fcn = mod_symbol(module, buf)) == NULL) {
90         LOG(log_error, logtype_default, "uam_load(%s): mod_symbol error for symbol %s",
91             name,
92             buf);
93         goto uam_load_err;
94     }
95
96     if (mod->uam_fcn->uam_type != UAM_MODULE_SERVER) {
97         LOG(log_error, logtype_default, "uam_load(%s): attempted to load a non-server module",
98             name);
99         goto uam_load_err;
100     }
101
102     /* version check would go here */
103
104     if (!mod->uam_fcn->uam_setup ||
105             ((*mod->uam_fcn->uam_setup)(name) < 0)) {
106         LOG(log_error, logtype_default, "uam_load(%s): uam_setup failed", name);
107         goto uam_load_err;
108     }
109
110     mod->uam_module = module;
111     return mod;
112
113 uam_load_err:
114     free(mod);
115 uam_load_fail:
116     mod_close(module);
117     return NULL;
118 }
119
120 /* unload the module. we check for a cleanup function, but we don't
121  * die if one doesn't exist. however, things are likely to leak without one.
122  */
123 void uam_unload(struct uam_mod *mod)
124 {
125     if (mod->uam_fcn->uam_cleanup)
126         (*mod->uam_fcn->uam_cleanup)();
127     mod_close(mod->uam_module);
128     free(mod);
129 }
130
131 /* -- client-side uam functions -- */
132
133 /* set up stuff for this uam. */
134 int uam_register(const int type, const char *path, const char *name, ...)
135 {
136     va_list ap;
137     struct uam_obj *uam;
138
139     if (!name)
140         return -1;
141
142     /* see if it already exists. */
143     if ((uam = auth_uamfind(type, name, strlen(name)))) {
144         if (strcmp(uam->uam_path, path)) {
145             /* it exists, but it's not the same module. */
146             LOG(log_error, logtype_default, "uam_register: \"%s\" already loaded by %s",
147                 name, path);
148             return -1;
149         }
150         uam->uam_count++;
151         return 0;
152     }
153
154     /* allocate space for uam */
155     if ((uam = calloc(1, sizeof(struct uam_obj))) == NULL)
156         return -1;
157
158     uam->uam_name = name;
159     uam->uam_path = strdup(path);
160     uam->uam_count++;
161
162     va_start(ap, name);
163     switch (type) {
164     case UAM_SERVER_LOGIN: /* expect three arguments */
165         uam->u.uam_login.login = va_arg(ap, void *);
166         uam->u.uam_login.logincont = va_arg(ap, void *);
167         uam->u.uam_login.logout = va_arg(ap, void *);
168         break;
169     case UAM_SERVER_CHANGEPW: /* one argument */
170         uam->u.uam_changepw = va_arg(ap, void *);
171         break;
172     case UAM_SERVER_PRINTAUTH: /* x arguments */
173     default:
174         break;
175     }
176     va_end(ap);
177
178     /* attach to other uams */
179     if (auth_register(type, uam) < 0) {
180         free(uam->uam_path);
181         free(uam);
182         return -1;
183     }
184
185     return 0;
186 }
187
188 void uam_unregister(const int type, const char *name)
189 {
190     struct uam_obj *uam;
191
192     if (!name)
193         return;
194
195     uam = auth_uamfind(type, name, strlen(name));
196     if (!uam || --uam->uam_count > 0)
197         return;
198
199     auth_unregister(uam);
200     free(uam->uam_path);
201     free(uam);
202 }
203
204 /* --- helper functions for plugin uams --- */
205
206 struct passwd *uam_getname(char *name, const int len)
207 {
208     struct passwd *pwent;
209     char *user;
210     int i;
211
212     if ((pwent = getpwnam(name)))
213         return pwent;
214
215 #ifndef NO_REAL_USER_NAME
216     for (i = 0; i < len; i++)
217         name[i] = tolower(name[i]);
218
219     setpwent();
220     while ((pwent = getpwent())) {
221         if ((user = strchr(pwent->pw_gecos, ',')))
222             *user = '\0';
223         user = pwent->pw_gecos;
224
225         /* check against both the gecos and the name fields. the user
226          * might have just used a different capitalization. */
227         if ((strncasecmp(user, name, len) == 0) ||
228                 (strncasecmp(pwent->pw_name, name, len) == 0)) {
229             strncpy(name, pwent->pw_name, len);
230             name[len - 1] = '\0';
231             break;
232         }
233     }
234     endpwent();
235 #endif /* ! NO_REAL_USER_NAME */
236
237     /* os x server doesn't keep anything useful if we do getpwent */
238     return pwent ? getpwnam(name) : NULL;
239 }
240
241 int uam_checkuser(const struct passwd *pwd)
242 {
243     const char *p;
244
245     if (!pwd || !pwd->pw_shell || (*pwd->pw_shell == '\0'))
246         return -1;
247
248     while ((p = getusershell())) {
249         if ( strcmp( p, pwd->pw_shell ) == 0 )
250             break;
251     }
252     endusershell();
253
254 #ifndef DISABLE_SHELLCHECK
255     if (!p) {
256         LOG(log_info, logtype_default, "illegal shell %s for %s", pwd->pw_shell, pwd->pw_name);
257         return -1;
258     }
259 #endif /* DISABLE_SHELLCHECK */
260
261     return 0;
262 }
263
264 /* afp-specific functions */
265 int uam_afpserver_option(void *private, const int what, void *option,
266                          int *len)
267 {
268 AFPObj *obj = private;
269     char **buf = (char **) option; /* most of the options are this */
270     int32_t result;
271     int fd;
272
273     if (!obj || !option)
274         return -1;
275
276     switch (what) {
277     case UAM_OPTION_USERNAME:
278         *buf = (void *) obj->username;
279         if (len)
280             *len = sizeof(obj->username) - 1;
281         break;
282
283     case UAM_OPTION_GUEST:
284         *buf = (void *) obj->options.guest;
285         if (len)
286             *len = strlen(obj->options.guest);
287         break;
288
289     case UAM_OPTION_PASSWDOPT:
290         if (!len)
291             return -1;
292
293         switch (*len) {
294         case UAM_PASSWD_FILENAME:
295             *buf = (void *) obj->options.passwdfile;
296             *len = strlen(obj->options.passwdfile);
297             break;
298
299         case UAM_PASSWD_MINLENGTH:
300             *((int *) option) = obj->options.passwdminlen;
301             *len = sizeof(obj->options.passwdminlen);
302             break;
303
304         case UAM_PASSWD_MAXFAIL:
305             *((int *) option) = obj->options.loginmaxfail;
306             *len = sizeof(obj->options.loginmaxfail);
307             break;
308
309         case UAM_PASSWD_EXPIRETIME: /* not implemented */
310         default:
311             return -1;
312             break;
313         }
314         break;
315
316     case UAM_OPTION_SIGNATURE:
317         *buf = (void *) (((AFPConfig *)obj->config)->signature);
318         if (len)
319             *len = 16;
320         break;
321
322     case UAM_OPTION_RANDNUM: /* returns a random number in 4-byte units. */
323         if (!len || (*len < 0) || (*len % sizeof(result)))
324             return -1;
325
326         /* construct a random number */
327         if ((fd = open("/dev/urandom", O_RDONLY)) < 0) {
328             struct timeval tv;
329             struct timezone tz;
330             char *randnum = (char *) option;
331             int i;
332
333             if (gettimeofday(&tv, &tz) < 0)
334                 return -1;
335             srandom(tv.tv_sec + (unsigned long) obj + (unsigned long) obj->handle);
336             for (i = 0; i < *len; i += sizeof(result)) {
337                 result = random();
338                 memcpy(randnum + i, &result, sizeof(result));
339             }
340         } else {
341             result = read(fd, option, *len);
342             close(fd);
343             if (result < 0)
344                 return -1;
345         }
346         break;
347
348     case UAM_OPTION_HOSTNAME:
349         *buf = (void *) obj->options.hostname;
350         if (len)
351             *len = strlen(obj->options.hostname);
352         break;
353
354     case UAM_OPTION_PROTOCOL:
355         *buf = (void *) obj->proto;
356         break;
357     case UAM_OPTION_CLIENTNAME:
358         {
359             struct DSI *dsi = obj->handle;
360             struct hostent *hp;
361
362             hp = gethostbyaddr( (char *) &dsi->client.sin_addr,
363                                 sizeof( struct in_addr ),
364                                 dsi->client.sin_family );
365             if( hp )
366                 *buf = (void *) hp->h_name;
367             else
368                 *buf = (void *) inet_ntoa( dsi->client.sin_addr );
369         }
370         break;
371     case UAM_OPTION_COOKIE:
372         /* it's up to the uam to actually store something useful here.
373          * this just passes back a handle to the cookie. the uam side
374          * needs to do something like **buf = (void *) cookie to store
375          * the cookie. */
376         *buf = (void *) &obj->uam_cookie;
377         break;
378
379     default:
380         return -1;
381         break;
382     }
383
384     return 0;
385 }
386
387 /* if we need to maintain a connection, this is how we do it.
388  * because an action pointer gets passed in, we can stream 
389  * DSI connections */
390 int uam_afp_read(void *handle, char *buf, int *buflen,
391                  int (*action)(void *, void *, const int))
392 {
393     AFPObj *obj = handle;
394     int len;
395
396     if (!obj)
397         return AFPERR_PARAM;
398
399     switch (obj->proto) {
400     case AFPPROTO_ASP:
401         if ((len = asp_wrtcont(obj->handle, buf, buflen )) < 0)
402             goto uam_afp_read_err;
403         return action(handle, buf, *buflen);
404         break;
405
406     case AFPPROTO_DSI:
407         len = dsi_writeinit(obj->handle, buf, *buflen);
408         if (!len || ((len = action(handle, buf, len)) < 0)) {
409             dsi_writeflush(obj->handle);
410             goto uam_afp_read_err;
411         }
412
413         while ((len = (dsi_write(obj->handle, buf, *buflen)))) {
414             if ((len = action(handle, buf, len)) < 0) {
415                 dsi_writeflush(obj->handle);
416                 goto uam_afp_read_err;
417             }
418         }
419         break;
420     }
421     return 0;
422
423 uam_afp_read_err:
424     *buflen = 0;
425     return len;
426 }
427
428 #ifdef TRU64
429 void uam_afp_getcmdline( int *ac, char ***av )
430 {
431     afp_get_cmdline( ac, av );
432 }
433
434 int uam_sia_validate_user(sia_collect_func_t * collect, int argc, char **argv,
435                          char *hostname, char *username, char *tty,
436                          int colinput, char *gssapi, char *passphrase)
437 /* A clone of the Tru64 system function sia_validate_user() that calls
438  * sia_ses_authent() rather than sia_ses_reauthent()   
439  * Added extra code to take into account suspected SIA bug whereby it clobbers
440  * the signal handler on SIGALRM (tickle) installed by Netatalk/afpd
441  */
442 {
443        SIAENTITY *entity = NULL;
444        struct sigaction act;
445        int rc;
446
447        if ((rc=sia_ses_init(&entity, argc, argv, hostname, username, tty,
448                             colinput, gssapi)) != SIASUCCESS) {
449                LOG(log_error, logtype_default, "cannot initialise SIA");
450                return SIAFAIL;
451        }
452
453        /* save old action for restoration later */
454        if (sigaction(SIGALRM, NULL, &act))
455                LOG(log_error, logtype_default, "cannot save SIGALRM handler");
456
457        if ((rc=sia_ses_authent(collect, passphrase, entity)) != SIASUCCESS) {
458                /* restore old action after clobbering by sia_ses_authent() */
459                if (sigaction(SIGALRM, &act, NULL))
460                        LOG(log_error, logtype_default, "cannot restore SIGALRM handler");
461
462                LOG(log_info, logtype_default, "unsuccessful login for %s",
463 (hostname?hostname:"(null)"));
464                return SIAFAIL;
465        }
466        LOG(log_info, logtype_default, "successful login for %s",
467 (hostname?hostname:"(null)"));
468
469        /* restore old action after clobbering by sia_ses_authent() */   
470        if (sigaction(SIGALRM, &act, NULL))
471                LOG(log_error, logtype_default, "cannot restore SIGALRM handler");
472
473        sia_ses_release(&entity);
474
475        return SIASUCCESS;
476 }
477 #endif /* TRU64 */
478
479 /* --- papd-specific functions (just placeholders) --- */
480 void append(void *pf, char *data, int len)
481 {
482     return;
483 }