]> arthur.barton.de Git - netatalk.git/blob - etc/uams/uams_dhx_pam.c
merged logging code into main branch. use configure option --without-logfile to...
[netatalk.git] / etc / uams / uams_dhx_pam.c
1 /*
2  * $Id: uams_dhx_pam.c,v 1.20 2002-01-04 04:45:48 sibaz Exp $
3  *
4  * Copyright (c) 1990,1993 Regents of The University of Michigan.
5  * Copyright (c) 1999 Adrian Sun (asun@u.washington.edu) 
6  * All Rights Reserved.  See COPYRIGHT.
7  */
8
9 #ifdef HAVE_CONFIG_H
10 #include "config.h"
11 #endif /* HAVE_CONFIG_H */
12
13 #if defined(USE_PAM) && defined(UAM_DHX)
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <string.h>
17 #include <atalk/logger.h>
18
19 #ifdef HAVE_UNISTD_H
20 #include <unistd.h>
21 #endif /* HAVE_UNISTD_H */
22 #include <errno.h>
23
24 #include <security/pam_appl.h>
25
26 #ifdef OPENSSL_DHX
27 #include <openssl/bn.h>
28 #include <openssl/dh.h>
29 #include <openssl/cast.h>
30 #else /* OPENSSL_DHX */
31 #include <bn.h>
32 #include <dh.h>
33 #include <cast.h>
34 #endif /* OPENSSL_DHX */
35
36 #include <atalk/afp.h>
37 #include <atalk/uam.h>
38
39 #define KEYSIZE 16
40 #define PASSWDLEN 64
41 #define CRYPTBUFLEN  (KEYSIZE*2)
42 #define CRYPT2BUFLEN (KEYSIZE + PASSWDLEN)
43 #define CHANGEPWBUFLEN (KEYSIZE + 2*PASSWDLEN)
44
45 /* hash a number to a 16-bit quantity */
46 #define dhxhash(a) ((((unsigned long) (a) >> 8) ^ \
47                      (unsigned long) (a)) & 0xffff)
48
49 /* the secret key */
50 static CAST_KEY castkey;
51 static struct passwd *dhxpwd;
52 static u_int8_t randbuf[KEYSIZE];
53
54 /* diffie-hellman bits */
55 static unsigned char msg2_iv[] = "CJalbert";
56 static unsigned char msg3_iv[] = "LWallace";
57 static const u_int8_t p[] = {0xBA, 0x28, 0x73, 0xDF, 0xB0, 0x60, 0x57, 0xD4,
58                              0x3F, 0x20, 0x24, 0x74, 0x4C, 0xEE, 0xE7, 0x5B};
59 static const u_int8_t g = 0x07;
60
61
62 /* Static variables used to communicate between the conversation function
63  * and the server_login function
64  */
65 static pam_handle_t *pamh = NULL; 
66 static char *PAM_username;
67 static char *PAM_password;
68
69 /* PAM conversation function
70  * Here we assume (for now, at least) that echo on means login name, and
71  * echo off means password.
72  */
73 static int PAM_conv (int num_msg,
74                      const struct pam_message **msg,
75                      struct pam_response **resp,
76                      void *appdata_ptr) {
77   int count = 0;
78   struct pam_response *reply;
79   
80 #define COPY_STRING(s) (s) ? strdup(s) : NULL
81   
82   errno = 0;
83
84   if (num_msg < 1) {
85     /* Log Entry */
86            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM DHX Conversation Err -- %s",
87                   strerror(errno));
88     /* Log Entry */
89     return PAM_CONV_ERR;
90   }
91
92   reply = (struct pam_response *) 
93     calloc(num_msg, sizeof(struct pam_response));
94
95   if (!reply) {
96     /* Log Entry */
97            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM DHX Conversation Err -- %s",
98                   strerror(errno));
99     /* Log Entry */
100     return PAM_CONV_ERR;
101   }
102
103   for (count = 0; count < num_msg; count++) {
104     char *string = NULL;
105
106     switch (msg[count]->msg_style) {
107     case PAM_PROMPT_ECHO_ON:
108       if (!(string = COPY_STRING(PAM_username))) {
109     /* Log Entry */
110            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: username failure -- %s",
111                   strerror(errno));
112     /* Log Entry */
113         goto pam_fail_conv;
114       }
115       break;
116     case PAM_PROMPT_ECHO_OFF:
117       if (!(string = COPY_STRING(PAM_password))) {
118     /* Log Entry */
119            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: passwd failure: --: %s",
120                   strerror(errno));
121     /* Log Entry */
122         goto pam_fail_conv;
123       }
124       break;
125     case PAM_TEXT_INFO:
126 #ifdef PAM_BINARY_PROMPT
127     case PAM_BINARY_PROMPT:
128 #endif /* PAM_BINARY_PROMPT */
129       /* ignore it... */
130       break;
131     case PAM_ERROR_MSG:
132     default:
133     /* Log Entry */
134            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: Binary_Prompt -- %s",
135                   strerror(errno));
136     /* Log Entry */
137       goto pam_fail_conv;
138     }
139
140     if (string) {  
141       reply[count].resp_retcode = 0;
142       reply[count].resp = string;
143       string = NULL;
144     }
145   }
146
147   *resp = reply;
148     /* Log Entry */
149            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: PAM Success -- %s",
150                   strerror(errno));
151     /* Log Entry */
152   return PAM_SUCCESS;
153
154 pam_fail_conv:
155   for (count = 0; count < num_msg; count++) {
156     if (!reply[count].resp)
157         continue;
158     switch (msg[count]->msg_style) {
159     case PAM_PROMPT_ECHO_OFF:
160     case PAM_PROMPT_ECHO_ON:
161       free(reply[count].resp);
162       break;      
163     }
164   }
165   free(reply);
166     /* Log Entry */
167            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM DHX Conversation Err -- %s",
168                   strerror(errno));
169     /* Log Entry */
170     return PAM_CONV_ERR;
171 }
172
173 static struct pam_conv PAM_conversation = {
174   &PAM_conv,
175   NULL
176 };
177
178
179 static int dhx_setup(void *obj, char *ibuf, int ibuflen, 
180                      char *rbuf, int *rbuflen)
181 {
182     u_int16_t sessid;
183     int i;
184     BIGNUM *bn, *gbn, *pbn;
185     DH *dh;
186
187     /* TODO: seed dhx_setup properly... this is a hack */
188 #ifdef sun
189         /* *SEVERE* hack... fix */
190         RAND_load_file("/var/adm/messages", KEYSIZE);
191 #endif /* sun */
192
193     /* get the client's public key */
194     if (!(bn = BN_bin2bn(ibuf, KEYSIZE, NULL))) {
195     /* Log Entry */
196            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM No Public Key -- %s",
197                   strerror(errno));
198     /* Log Entry */
199       return AFPERR_PARAM;
200     }
201
202     /* get our primes */
203     if (!(gbn = BN_bin2bn(&g, sizeof(g), NULL))) {
204       BN_clear_free(bn);
205     /* Log Entry */
206            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM No Primes: GBN -- %s",
207                   strerror(errno));
208     /* Log Entry */
209       return AFPERR_PARAM;
210     }
211
212     if (!(pbn = BN_bin2bn(p, sizeof(p), NULL))) {
213       BN_free(gbn);
214       BN_clear_free(bn);
215     /* Log Entry */
216            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM No Primes: PBN -- %s",
217                   strerror(errno));
218     /* Log Entry */
219       return AFPERR_PARAM;
220     }
221
222     /* okay, we're ready */
223     if (!(dh = DH_new())) {
224       BN_free(pbn);
225       BN_free(gbn);
226       BN_clear_free(bn);
227     /* Log Entry */
228            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM DH was equal to DH_New... Go figure... -- %s",
229                   strerror(errno));
230     /* Log Entry */
231       return AFPERR_PARAM;
232     }
233
234     /* generate key and make sure that we have enough space */
235     dh->p = pbn;
236     dh->g = gbn;
237     if (!DH_generate_key(dh) || (BN_num_bytes(dh->pub_key) > KEYSIZE)) {
238     /* Log Entry */
239            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: Err Generating Key -- Not enough Space? -- %s",
240                   strerror(errno));
241     /* Log Entry */
242     goto pam_fail;
243     }
244
245     /* figure out the key. store the key in rbuf for now. */
246     i = DH_compute_key(rbuf, bn, dh);
247     
248     /* set the key */
249     CAST_set_key(&castkey, i, rbuf);
250     
251     /* session id. it's just a hashed version of the object pointer. */
252     sessid = dhxhash(obj);
253     memcpy(rbuf, &sessid, sizeof(sessid));
254     rbuf += sizeof(sessid);
255     *rbuflen += sizeof(sessid);
256     
257     /* public key */
258     BN_bn2bin(dh->pub_key, rbuf); 
259     rbuf += KEYSIZE;
260     *rbuflen += KEYSIZE;
261
262     /* buffer to be encrypted */
263     i = sizeof(randbuf);
264     if (uam_afpserver_option(obj, UAM_OPTION_RANDNUM, (void *) randbuf,
265                              &i) < 0) {
266       *rbuflen = 0;
267     /* Log Entry */
268            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: Buffer Encryption Err. -- %s",
269                   strerror(errno));
270     /* Log Entry */
271       goto pam_fail;
272     }    
273     memcpy(rbuf, &randbuf, sizeof(randbuf));
274
275     /* get the signature. it's always 16 bytes. */
276 #if 0
277     if (uam_afpserver_option(obj, UAM_OPTION_SIGNATURE, 
278                              (void *) &buf, NULL) < 0) {
279       *rbuflen = 0;
280     /* Log Entry */
281            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: Signature Retieval Failure -- %s",
282                   strerror(errno));
283     /* Log Entry */
284       goto pam_fail;
285     }
286     memcpy(rbuf + KEYSIZE, buf, KEYSIZE); 
287 #else /* 0 */
288     memset(rbuf + KEYSIZE, 0, KEYSIZE); 
289 #endif /* 0 */
290
291     /* encrypt using cast */
292     CAST_cbc_encrypt(rbuf, rbuf, CRYPTBUFLEN, &castkey, msg2_iv, 
293                      CAST_ENCRYPT);
294     *rbuflen += CRYPTBUFLEN;
295     BN_free(bn);
296     DH_free(dh);
297     return AFPERR_AUTHCONT;
298
299 pam_fail:
300     BN_free(bn);
301     DH_free(dh);
302     /* Log Entry */
303            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: Fail - Cast Encryption -- %s",
304                   strerror(errno));
305     /* Log Entry */
306     return AFPERR_PARAM;
307 }
308
309
310 /* dhx login: things are done in a slightly bizarre order to avoid
311  * having to clean things up if there's an error. */
312 static int pam_login(void *obj, struct passwd **uam_pwd,
313                      char *ibuf, int ibuflen,
314                      char *rbuf, int *rbuflen)
315 {
316     char *buf;
317     int len, i;
318
319     *rbuflen = 0;
320
321     /* grab some of the options */
322     if (uam_afpserver_option(obj, UAM_OPTION_USERNAME, (void *) &buf,
323                              &i) < 0) {
324     /* Log Entry */
325            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: uam_afpserver_option didn't meet uam_option_username  -- %s",
326                   strerror(errno));
327     /* Log Entry */
328       return AFPERR_PARAM;
329     }
330
331     len = (unsigned char) *ibuf++;
332     if ( len > i ) {
333     /* Log Entry */
334            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: Signature Retieval Failure -- %s",
335                   strerror(errno));
336     /* Log Entry */
337         return( AFPERR_PARAM );
338     }
339
340     memcpy(buf, ibuf, len );
341     ibuf += len;
342     buf[ len ] = '\0';
343     if ((unsigned long) ibuf & 1) /* pad to even boundary */
344       ++ibuf;
345
346     if (( dhxpwd = uam_getname(buf, i)) == NULL ) {
347     /* Log Entry */
348            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: User entered a null value -- %s",
349                   strerror(errno));
350     /* Log Entry */
351         return AFPERR_PARAM;
352     }
353
354     PAM_username = buf;
355     LOG(log_info, logtype_default, "dhx login: %s", buf);
356     return dhx_setup(obj, ibuf, ibuflen, rbuf, rbuflen);
357 }
358
359
360 static int pam_logincont(void *obj, struct passwd **uam_pwd,
361                          char *ibuf, int ibuflen, 
362                          char *rbuf, int *rbuflen)
363 {
364     char *hostname;
365     BIGNUM *bn1, *bn2, *bn3;
366     u_int16_t sessid;
367     int err, PAM_error;
368
369     *rbuflen = 0;
370
371     /* check for session id */
372     memcpy(&sessid, ibuf, sizeof(sessid));
373     if (sessid != dhxhash(obj)) {
374     /* Log Entry */
375            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM Session ID - DHXHash Mismatch -- %s",
376                   strerror(errno));
377     /* Log Entry */
378       return AFPERR_PARAM;
379     }
380     ibuf += sizeof(sessid);
381     
382     if (uam_afpserver_option(obj, UAM_OPTION_CLIENTNAME,
383                              (void *) &hostname, NULL) < 0)
384         {
385         LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: unable to retrieve client hostname");
386         hostname = NULL;
387         }
388
389     CAST_cbc_encrypt(ibuf, rbuf, CRYPT2BUFLEN, &castkey,
390                      msg3_iv, CAST_DECRYPT);
391     memset(&castkey, 0, sizeof(castkey));
392
393     /* check to make sure that the random number is the same. we
394      * get sent back an incremented random number. */
395     if (!(bn1 = BN_bin2bn(rbuf, KEYSIZE, NULL)))
396       return AFPERR_PARAM;
397
398     if (!(bn2 = BN_bin2bn(randbuf, sizeof(randbuf), NULL))) {
399       BN_free(bn1);
400       return AFPERR_PARAM;
401     }
402       
403     /* zero out the random number */
404     memset(rbuf, 0, sizeof(randbuf));
405     memset(randbuf, 0, sizeof(randbuf));
406     rbuf += KEYSIZE;
407
408     if (!(bn3 = BN_new())) {
409       BN_free(bn2);
410       BN_free(bn1);
411       return AFPERR_PARAM;
412     }
413
414     BN_sub(bn3, bn1, bn2);
415     BN_free(bn2);
416     BN_free(bn1);
417
418     /* okay. is it one more? */
419     if (!BN_is_one(bn3)) {
420       BN_free(bn3);
421       return AFPERR_PARAM;
422     }
423     BN_free(bn3);
424
425     /* Set these things up for the conv function */
426     rbuf[PASSWDLEN] = '\0';
427     PAM_password = rbuf;
428
429     err = AFPERR_NOTAUTH;
430     PAM_error = pam_start("netatalk", PAM_username, &PAM_conversation,
431                           &pamh);
432     if (PAM_error != PAM_SUCCESS) {
433     /* Log Entry */
434            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: PAM_Error: %s -- %s",
435                   pam_strerror(pamh,PAM_error), strerror(errno));
436     /* Log Entry */
437       goto logincont_err;
438     }
439
440     /* solaris craps out if PAM_TTY and PAM_RHOST aren't set. */
441     pam_set_item(pamh, PAM_TTY, "afpd");
442     pam_set_item(pamh, PAM_RHOST, hostname);
443     PAM_error = pam_authenticate(pamh,0);
444     if (PAM_error != PAM_SUCCESS) {
445       if (PAM_error == PAM_MAXTRIES) 
446         err = AFPERR_PWDEXPR;
447     /* Log Entry */
448            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: PAM_Error: %s -- %s",
449                   pam_strerror(pamh, PAM_error), strerror(errno));
450     /* Log Entry */
451       goto logincont_err;
452     }      
453
454     PAM_error = pam_acct_mgmt(pamh, 0);
455     if (PAM_error != PAM_SUCCESS) {
456       if (PAM_error == PAM_ACCT_EXPIRED)
457         err = AFPERR_PWDEXPR;
458 #ifdef PAM_AUTHTOKEN_REQD
459       else if (PAM_error == PAM_AUTHTOKEN_REQD) 
460         err = AFPERR_PWDCHNG;
461 #endif
462     /* Log Entry */
463            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: PAM_Error: %s -- %s",
464                   pam_strerror(pamh, PAM_error), strerror(errno));
465     /* Log Entry */
466       goto logincont_err;
467     }
468
469 #ifndef PAM_CRED_ESTABLISH
470 #define PAM_CRED_ESTABLISH PAM_ESTABLISH_CRED
471 #endif
472     PAM_error = pam_setcred(pamh, PAM_CRED_ESTABLISH);
473     if (PAM_error != PAM_SUCCESS) {
474     /* Log Entry */
475            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: PAM_Error: %s -- %s",
476                   pam_strerror(pamh, PAM_error), strerror(errno));
477     /* Log Entry */
478       goto logincont_err;
479     }
480
481     PAM_error = pam_open_session(pamh, 0);
482     if (PAM_error != PAM_SUCCESS) {
483     /* Log Entry */
484            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: PAM_Error: %s -- %s",
485                   pam_strerror(pamh, PAM_error), strerror(errno));
486     /* Log Entry */
487       goto logincont_err;
488     }
489
490     memset(rbuf, 0, PASSWDLEN); /* zero out the password */
491     *uam_pwd = dhxpwd;
492     /* Log Entry */
493            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: PAM Auth OK!");
494     /* Log Entry */
495     return AFP_OK;
496
497 logincont_err:
498     pam_end(pamh, PAM_error);
499     pamh = NULL;
500     memset(rbuf, 0, CRYPT2BUFLEN);
501     return err;
502 }
503
504 /* logout */
505 static void pam_logout() {
506     pam_close_session(pamh, 0);
507     pam_end(pamh, 0);
508     pamh = NULL;
509 }
510
511
512 /* change pw for dhx needs a couple passes to get everything all
513  * right. basically, it's like the login/logincont sequence */
514 static int pam_changepw(void *obj, char *username,
515                         struct passwd *pwd, char *ibuf, int ibuflen,
516                         char *rbuf, int *rbuflen)
517 {
518     BIGNUM *bn1, *bn2, *bn3;
519
520     char *hostname;
521     pam_handle_t *lpamh;
522     uid_t uid;
523     u_int16_t sessid;
524     int PAM_error;
525
526     /* grab the id */
527     memcpy(&sessid, ibuf, sizeof(sessid));
528     ibuf += sizeof(sessid);
529     
530     if (!sessid) {  /* no sessid -> initialization phase */
531       PAM_username = username;
532       ibuflen -= sizeof(sessid);
533       return dhx_setup(obj, ibuf, ibuflen, rbuf, rbuflen);
534     }
535
536
537     /* otherwise, it's like logincont but different. */
538
539     /* check out the session id */
540     if (sessid != dhxhash(obj)) {
541     /* Log Entry */
542            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: Session ID not Equal to DHX Hash -- %s",
543                   strerror(errno));
544     /* Log Entry */
545       return AFPERR_PARAM;
546     }
547
548     /* we need this for pam */
549     if (uam_afpserver_option(obj, UAM_OPTION_HOSTNAME,
550                              (void *) &hostname, NULL) < 0) {
551     /* Log Entry */
552            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: Hostname Null?? -- %s",
553                   strerror(errno));
554     /* Log Entry */
555       return AFPERR_MISC;
556     }
557
558     /* grab the client's nonce, old password, and new password. */
559     CAST_cbc_encrypt(ibuf, ibuf, CHANGEPWBUFLEN, &castkey,
560                      msg3_iv, CAST_DECRYPT);
561     memset(&castkey, 0, sizeof(castkey));
562
563     /* check to make sure that the random number is the same. we
564      * get sent back an incremented random number. */
565     if (!(bn1 = BN_bin2bn(ibuf, KEYSIZE, NULL))) {
566     /* Log Entry */
567            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: Random Number Not the same or not incremented-- %s",
568                   strerror(errno));
569     /* Log Entry */
570       return AFPERR_PARAM;
571     }
572
573     if (!(bn2 = BN_bin2bn(randbuf, sizeof(randbuf), NULL))) {
574       BN_free(bn1);
575     /* Log Entry */
576            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: Random Number Not the same or not incremented -- %s",
577                   strerror(errno));
578     /* Log Entry */
579       return AFPERR_PARAM;
580     }
581       
582     /* zero out the random number */
583     memset(rbuf, 0, sizeof(randbuf));
584     memset(randbuf, 0, sizeof(randbuf));
585
586     if (!(bn3 = BN_new())) {
587       BN_free(bn2);
588       BN_free(bn1);
589     /* Log Entry */
590            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: Random Number did not Zero -- %s",
591                   strerror(errno));
592     /* Log Entry */
593       return AFPERR_PARAM;
594     }
595
596     BN_sub(bn3, bn1, bn2);
597     BN_free(bn2);
598     BN_free(bn1);
599
600     /* okay. is it one more? */
601 #if 0
602     if (!BN_is_one(bn3)) {
603       BN_free(bn3);
604     /* Log Entry */
605            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: After Random Number not Zero, is it one more? -- %s",
606                   strerror(errno));
607     /* Log Entry */
608       return AFPERR_PARAM;
609     }
610 #endif
611     BN_free(bn3);
612
613     /* Set these things up for the conv function. the old password
614      * is at the end. */
615     ibuf += KEYSIZE;
616     ibuf[PASSWDLEN + PASSWDLEN] = '\0';
617     PAM_password = ibuf + PASSWDLEN;
618
619     PAM_error = pam_start("netatalk", username, &PAM_conversation,
620                           &lpamh);
621     if (PAM_error != PAM_SUCCESS) {
622     /* Log Entry */
623            LOG(log_info, logtype_default, "uams_dhx_pam.c :PAM: Needless to say, PAM_error is != to PAM_SUCCESS -- %s",
624                   strerror(errno));
625     /* Log Entry */
626       return AFPERR_PARAM;
627     }
628     pam_set_item(lpamh, PAM_TTY, "afpd");
629     pam_set_item(lpamh, PAM_RHOST, hostname);
630
631     /* we might need to do this as root */
632     uid = geteuid();
633     seteuid(0);
634     PAM_error = pam_authenticate(lpamh, 0);
635     if (PAM_error != PAM_SUCCESS) {
636       seteuid(uid);
637       pam_end(lpamh, PAM_error);
638       return AFPERR_NOTAUTH;
639     }
640
641     /* clear out old passwd */
642     memset(ibuf + PASSWDLEN, 0, PASSWDLEN);
643
644     /* new password */
645     PAM_password = ibuf;
646     ibuf[PASSWDLEN] = '\0';
647
648     /* this really does need to be done as root */
649     PAM_error = pam_chauthtok(lpamh, 0);
650     seteuid(uid); /* un-root ourselves. */
651     memset(ibuf, 0, PASSWDLEN);
652     if (PAM_error != PAM_SUCCESS) {
653       pam_end(lpamh, PAM_error);
654       return AFPERR_ACCESS;
655     }
656
657     pam_end(lpamh, 0);
658     return AFP_OK;
659 }
660
661
662 static int uam_setup(const char *path)
663 {
664   if (uam_register(UAM_SERVER_LOGIN, path, "DHCAST128", pam_login, 
665                    pam_logincont, pam_logout) < 0)
666     return -1;
667
668   if (uam_register(UAM_SERVER_CHANGEPW, path, "DHCAST128", 
669                    pam_changepw) < 0) {
670     uam_unregister(UAM_SERVER_LOGIN, "DHCAST128");
671     return -1;
672   }
673
674   /*uam_register(UAM_SERVER_PRINTAUTH, path, "DHCAST128",
675     pam_printer);*/
676
677   return 0;
678 }
679
680 static void uam_cleanup(void)
681 {
682   uam_unregister(UAM_SERVER_LOGIN, "DHCAST128");
683   uam_unregister(UAM_SERVER_CHANGEPW, "DHCAST128");
684   /*uam_unregister(UAM_SERVER_PRINTAUTH, "DHCAST128"); */
685 }
686
687 UAM_MODULE_EXPORT struct uam_export uams_dhx = {
688   UAM_MODULE_SERVER,
689   UAM_MODULE_VERSION,
690   uam_setup, uam_cleanup
691 };
692
693 UAM_MODULE_EXPORT struct uam_export uams_dhx_pam = {
694   UAM_MODULE_SERVER,
695   UAM_MODULE_VERSION,
696   uam_setup, uam_cleanup
697 };
698
699 #endif /* USE_PAM && UAM_DHX */
700