]> arthur.barton.de Git - netatalk.git/blob - etc/uams/uams_dhx_pam.c
No need to log the strerror() when the return value was "success".
[netatalk.git] / etc / uams / uams_dhx_pam.c
1 /*
2  * $Id: uams_dhx_pam.c,v 1.23 2003-01-01 13:19:24 srittau 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 #if defined(GNUTLS_DHX)
27 #include <gnutls/openssl.h>
28 #elif defined(OPENSSL_DHX)
29 #include <openssl/bn.h>
30 #include <openssl/dh.h>
31 #include <openssl/cast.h>
32 #else /* OPENSSL_DHX */
33 #include <bn.h>
34 #include <dh.h>
35 #include <cast.h>
36 #endif /* OPENSSL_DHX */
37
38 #include <atalk/afp.h>
39 #include <atalk/uam.h>
40
41 #define KEYSIZE 16
42 #define PASSWDLEN 64
43 #define CRYPTBUFLEN  (KEYSIZE*2)
44 #define CRYPT2BUFLEN (KEYSIZE + PASSWDLEN)
45 #define CHANGEPWBUFLEN (KEYSIZE + 2*PASSWDLEN)
46
47 /* hash a number to a 16-bit quantity */
48 #define dhxhash(a) ((((unsigned long) (a) >> 8) ^ \
49                      (unsigned long) (a)) & 0xffff)
50
51 /* the secret key */
52 static CAST_KEY castkey;
53 static struct passwd *dhxpwd;
54 static u_int8_t randbuf[KEYSIZE];
55
56 /* diffie-hellman bits */
57 static unsigned char msg2_iv[] = "CJalbert";
58 static unsigned char msg3_iv[] = "LWallace";
59 static const u_int8_t p[] = {0xBA, 0x28, 0x73, 0xDF, 0xB0, 0x60, 0x57, 0xD4,
60                              0x3F, 0x20, 0x24, 0x74, 0x4C, 0xEE, 0xE7, 0x5B};
61 static const u_int8_t g = 0x07;
62
63
64 /* Static variables used to communicate between the conversation function
65  * and the server_login function
66  */
67 static pam_handle_t *pamh = NULL; 
68 static char *PAM_username;
69 static char *PAM_password;
70
71 /* PAM conversation function
72  * Here we assume (for now, at least) that echo on means login name, and
73  * echo off means password.
74  */
75 static int PAM_conv (int num_msg,
76                      const struct pam_message **msg,
77                      struct pam_response **resp,
78                      void *appdata_ptr) {
79   int count = 0;
80   struct pam_response *reply;
81   
82 #define COPY_STRING(s) (s) ? strdup(s) : NULL
83   
84   errno = 0;
85
86   if (num_msg < 1) {
87     /* Log Entry */
88            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM DHX Conversation Err -- %s",
89                   strerror(errno));
90     /* Log Entry */
91     return PAM_CONV_ERR;
92   }
93
94   reply = (struct pam_response *) 
95     calloc(num_msg, sizeof(struct pam_response));
96
97   if (!reply) {
98     /* Log Entry */
99            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM DHX Conversation Err -- %s",
100                   strerror(errno));
101     /* Log Entry */
102     return PAM_CONV_ERR;
103   }
104
105   for (count = 0; count < num_msg; count++) {
106     char *string = NULL;
107
108     switch (msg[count]->msg_style) {
109     case PAM_PROMPT_ECHO_ON:
110       if (!(string = COPY_STRING(PAM_username))) {
111     /* Log Entry */
112            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM: username failure -- %s",
113                   strerror(errno));
114     /* Log Entry */
115         goto pam_fail_conv;
116       }
117       break;
118     case PAM_PROMPT_ECHO_OFF:
119       if (!(string = COPY_STRING(PAM_password))) {
120     /* Log Entry */
121            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM: passwd failure: --: %s",
122                   strerror(errno));
123     /* Log Entry */
124         goto pam_fail_conv;
125       }
126       break;
127     case PAM_TEXT_INFO:
128 #ifdef PAM_BINARY_PROMPT
129     case PAM_BINARY_PROMPT:
130 #endif /* PAM_BINARY_PROMPT */
131       /* ignore it... */
132       break;
133     case PAM_ERROR_MSG:
134     default:
135     /* Log Entry */
136            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM: Binary_Prompt -- %s",
137                   strerror(errno));
138     /* Log Entry */
139       goto pam_fail_conv;
140     }
141
142     if (string) {  
143       reply[count].resp_retcode = 0;
144       reply[count].resp = string;
145       string = NULL;
146     }
147   }
148
149   *resp = reply;
150     /* Log Entry */
151            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM: PAM Success");
152     /* Log Entry */
153   return PAM_SUCCESS;
154
155 pam_fail_conv:
156   for (count = 0; count < num_msg; count++) {
157     if (!reply[count].resp)
158         continue;
159     switch (msg[count]->msg_style) {
160     case PAM_PROMPT_ECHO_OFF:
161     case PAM_PROMPT_ECHO_ON:
162       free(reply[count].resp);
163       break;      
164     }
165   }
166   free(reply);
167     /* Log Entry */
168            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM DHX Conversation Err -- %s",
169                   strerror(errno));
170     /* Log Entry */
171     return PAM_CONV_ERR;
172 }
173
174 static struct pam_conv PAM_conversation = {
175   &PAM_conv,
176   NULL
177 };
178
179
180 static int dhx_setup(void *obj, char *ibuf, int ibuflen, 
181                      char *rbuf, int *rbuflen)
182 {
183     u_int16_t sessid;
184     int i;
185     BIGNUM *bn, *gbn, *pbn;
186     DH *dh;
187
188     /* TODO: seed dhx_setup properly... this is a hack */
189 #ifdef sun
190         /* *SEVERE* hack... fix */
191         RAND_load_file("/var/adm/messages", KEYSIZE);
192 #endif /* sun */
193
194     /* get the client's public key */
195     if (!(bn = BN_bin2bn(ibuf, KEYSIZE, NULL))) {
196     /* Log Entry */
197            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM No Public Key -- %s",
198                   strerror(errno));
199     /* Log Entry */
200       return AFPERR_PARAM;
201     }
202
203     /* get our primes */
204     if (!(gbn = BN_bin2bn(&g, sizeof(g), NULL))) {
205       BN_clear_free(bn);
206     /* Log Entry */
207            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM No Primes: GBN -- %s",
208                   strerror(errno));
209     /* Log Entry */
210       return AFPERR_PARAM;
211     }
212
213     if (!(pbn = BN_bin2bn(p, sizeof(p), NULL))) {
214       BN_free(gbn);
215       BN_clear_free(bn);
216     /* Log Entry */
217            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM No Primes: PBN -- %s",
218                   strerror(errno));
219     /* Log Entry */
220       return AFPERR_PARAM;
221     }
222
223     /* okay, we're ready */
224     if (!(dh = DH_new())) {
225       BN_free(pbn);
226       BN_free(gbn);
227       BN_clear_free(bn);
228     /* Log Entry */
229            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM DH was equal to DH_New... Go figure... -- %s",
230                   strerror(errno));
231     /* Log Entry */
232       return AFPERR_PARAM;
233     }
234
235     /* generate key and make sure that we have enough space */
236     dh->p = pbn;
237     dh->g = gbn;
238     if (!DH_generate_key(dh) || (BN_num_bytes(dh->pub_key) > KEYSIZE)) {
239     /* Log Entry */
240            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM: Err Generating Key -- Not enough Space? -- %s",
241                   strerror(errno));
242     /* Log Entry */
243     goto pam_fail;
244     }
245
246     /* figure out the key. store the key in rbuf for now. */
247     i = DH_compute_key(rbuf, bn, dh);
248     
249     /* set the key */
250     CAST_set_key(&castkey, i, rbuf);
251     
252     /* session id. it's just a hashed version of the object pointer. */
253     sessid = dhxhash(obj);
254     memcpy(rbuf, &sessid, sizeof(sessid));
255     rbuf += sizeof(sessid);
256     *rbuflen += sizeof(sessid);
257     
258     /* public key */
259     BN_bn2bin(dh->pub_key, rbuf); 
260     rbuf += KEYSIZE;
261     *rbuflen += KEYSIZE;
262
263     /* buffer to be encrypted */
264     i = sizeof(randbuf);
265     if (uam_afpserver_option(obj, UAM_OPTION_RANDNUM, (void *) randbuf,
266                              &i) < 0) {
267       *rbuflen = 0;
268     /* Log Entry */
269            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM: Buffer Encryption Err. -- %s",
270                   strerror(errno));
271     /* Log Entry */
272       goto pam_fail;
273     }    
274     memcpy(rbuf, &randbuf, sizeof(randbuf));
275
276     /* get the signature. it's always 16 bytes. */
277 #if 0
278     if (uam_afpserver_option(obj, UAM_OPTION_SIGNATURE, 
279                              (void *) &buf, NULL) < 0) {
280       *rbuflen = 0;
281     /* Log Entry */
282            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM: Signature Retieval Failure -- %s",
283                   strerror(errno));
284     /* Log Entry */
285       goto pam_fail;
286     }
287     memcpy(rbuf + KEYSIZE, buf, KEYSIZE); 
288 #else /* 0 */
289     memset(rbuf + KEYSIZE, 0, KEYSIZE); 
290 #endif /* 0 */
291
292     /* encrypt using cast */
293     CAST_cbc_encrypt(rbuf, rbuf, CRYPTBUFLEN, &castkey, msg2_iv, 
294                      CAST_ENCRYPT);
295     *rbuflen += CRYPTBUFLEN;
296     BN_free(bn);
297     DH_free(dh);
298     return AFPERR_AUTHCONT;
299
300 pam_fail:
301     BN_free(bn);
302     DH_free(dh);
303     /* Log Entry */
304            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM: Fail - Cast Encryption -- %s",
305                   strerror(errno));
306     /* Log Entry */
307     return AFPERR_PARAM;
308 }
309
310
311 /* dhx login: things are done in a slightly bizarre order to avoid
312  * having to clean things up if there's an error. */
313 static int pam_login(void *obj, struct passwd **uam_pwd,
314                      char *ibuf, int ibuflen,
315                      char *rbuf, int *rbuflen)
316 {
317     char *buf;
318     int len, i;
319
320     *rbuflen = 0;
321
322     /* grab some of the options */
323     if (uam_afpserver_option(obj, UAM_OPTION_USERNAME, (void *) &buf,
324                              &i) < 0) {
325     /* Log Entry */
326            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM: uam_afpserver_option didn't meet uam_option_username  -- %s",
327                   strerror(errno));
328     /* Log Entry */
329       return AFPERR_PARAM;
330     }
331
332     len = (unsigned char) *ibuf++;
333     if ( len > i ) {
334     /* Log Entry */
335            LOG(log_info, logtype_uams, "uams_dhx_pam.c :PAM: Signature Retieval Failure -- %s",
336                   strerror(errno));
337     /* Log Entry */
338         return( AFPERR_PARAM );
339     }
340
341     memcpy(buf, ibuf, len );
342     ibuf += len;
343     buf[ len ] = '\0';
344     if ((unsigned long) ibuf & 1) /* pad to even boundary */
345       ++ibuf;
346
347     if (( dhxpwd = uam_getname(buf, i)) == NULL ) {
348     /* Log Entry */
349            LOG(log_info, logtype_uams, "uams_dhx_pam.c: unknown username");
350     /* Log Entry */
351         return AFPERR_PARAM;
352     }
353
354     PAM_username = buf;
355     LOG(log_info, logtype_uams, "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_uams, "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_uams, "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_uams, "uams_dhx_pam.c :PAM: PAM_Error: %s",
435                   pam_strerror(pamh,PAM_error));
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_uams, "uams_dhx_pam.c :PAM: PAM_Error: %s",
449                   pam_strerror(pamh, PAM_error));
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_uams, "uams_dhx_pam.c :PAM: PAM_Error: %s",
464                   pam_strerror(pamh, PAM_error));
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_uams, "uams_dhx_pam.c :PAM: PAM_Error: %s",
476                   pam_strerror(pamh, PAM_error));
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_uams, "uams_dhx_pam.c :PAM: PAM_Error: %s",
485                   pam_strerror(pamh, PAM_error));
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_uams, "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_uams, "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_uams, "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_uams, "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_uams, "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_uams, "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_uams, "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_uams, "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