]> arthur.barton.de Git - netatalk.git/blob - etc/uams/uams_dhx2_pam.c
First working IPC reconnect
[netatalk.git] / etc / uams / uams_dhx2_pam.c
1 /*
2  * Copyright (c) 1990,1993 Regents of The University of Michigan.
3  * Copyright (c) 1999 Adrian Sun (asun@u.washington.edu)
4  * All Rights Reserved.  See COPYRIGHT.
5  */
6
7 #ifdef HAVE_CONFIG_H
8 #include "config.h"
9 #endif /* HAVE_CONFIG_H */
10
11 #if defined (USE_PAM) && defined (UAM_DHX2)
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #include <atalk/logger.h>
16
17 #ifdef HAVE_UNISTD_H
18 #include <unistd.h>
19 #endif /* HAVE_UNISTD_H */
20 #include <errno.h>
21 #ifdef HAVE_SECURITY_PAM_APPL_H
22 #include <security/pam_appl.h>
23 #endif
24 #ifdef HAVE_PAM_PAM_APPL_H
25 #include <pam/pam_appl.h>
26 #endif
27
28
29 #ifdef HAVE_LIBGCRYPT
30 #include <gcrypt.h>
31 #endif /* HAVE_LIBGCRYPT */
32
33 #include <atalk/afp.h>
34 #include <atalk/uam.h>
35 #include <atalk/globals.h>
36
37 /* Number of bits for p which we generate. Everybode out there uses 512, so we beet them */
38 #define PRIMEBITS 1024
39
40 /* hash a number to a 16-bit quantity */
41 #define dhxhash(a) ((((unsigned long) (a) >> 8) ^   \
42                      (unsigned long) (a)) & 0xffff)
43
44 /* Some parameters need be maintained across calls */
45 static gcry_mpi_t p, g, Ra;
46 static gcry_mpi_t serverNonce;
47 static char *K_MD5hash = NULL;
48 static int K_hash_len;
49 static u_int16_t ID;
50
51 /* The initialization vectors for CAST128 are fixed by Apple. */
52 static unsigned char dhx_c2siv[] = { 'L', 'W', 'a', 'l', 'l', 'a', 'c', 'e' };
53 static unsigned char dhx_s2civ[] = { 'C', 'J', 'a', 'l', 'b', 'e', 'r', 't' };
54
55 /* Static variables used to communicate between the conversation function
56  * and the server_login function */
57 static pam_handle_t *pamh = NULL;
58 static char *PAM_username;
59 static char *PAM_password;
60 static struct passwd *dhxpwd;
61
62 /*********************************************************
63  * Crypto helper func to generate p and g for use in DH.
64  * libgcrypt doesn't provide one directly.
65  * Algorithm taken from GNUTLS:gnutls_dh_primes.c
66  *********************************************************/
67
68 /**
69  * This function will generate a new pair of prime and generator for use in
70  * the Diffie-Hellman key exchange.
71  * The bits value should be one of 768, 1024, 2048, 3072 or 4096.
72  **/
73 static int dh_params_generate (unsigned int bits) {
74
75     int result, times = 0, qbits;
76     gcry_mpi_t *factors = NULL;
77     gcry_error_t err;
78
79     /* Version check should be the very first call because it
80        makes sure that important subsystems are intialized. */
81     if (!gcry_check_version (GCRYPT_VERSION)) {
82         LOG(log_error, logtype_uams, "PAM DHX2: libgcrypt versions mismatch. Need: %s", GCRYPT_VERSION);
83         result = AFPERR_MISC;
84         goto error;
85     }
86
87     if (bits < 256)
88         qbits = bits / 2;
89     else
90         qbits = (bits / 40) + 105;
91
92     if (qbits & 1) /* better have an even number */
93         qbits++;
94
95     /* find a prime number of size bits. */
96     do {
97         if (times) {
98             gcry_mpi_release(p);
99             gcry_prime_release_factors (factors);
100         }
101         err = gcry_prime_generate(&p, bits, qbits, &factors, NULL, NULL,
102                                   GCRY_STRONG_RANDOM, GCRY_PRIME_FLAG_SPECIAL_FACTOR);
103         if (err != 0) {
104             result = AFPERR_MISC;
105             goto error;
106         }
107         err = gcry_prime_check(p, 0);
108         times++;
109     } while (err != 0 && times < 10);
110
111     if (err != 0) {
112         result = AFPERR_MISC;
113         goto error;
114     }
115
116     /* generate the group generator. */
117     err = gcry_prime_group_generator(&g, p, factors, NULL);
118     if (err != 0) {
119         result = AFPERR_MISC;
120         goto error;
121     }
122
123     gcry_prime_release_factors(factors);
124
125     return 0;
126
127 error:
128     gcry_prime_release_factors(factors);
129
130     return result;
131 }
132
133
134 /* PAM conversation function
135  * Here we assume (for now, at least) that echo on means login name, and
136  * echo off means password.
137  */
138 static int PAM_conv (int num_msg,
139                      const struct pam_message **msg,
140                      struct pam_response **resp,
141                      void *appdata_ptr _U_) {
142     int count = 0;
143     struct pam_response *reply;
144
145 #define COPY_STRING(s) (s) ? strdup(s) : NULL
146
147     errno = 0;
148
149     if (num_msg < 1) {
150         /* Log Entry */
151         LOG(log_info, logtype_uams, "PAM DHX2 Conversation Err -- %s",
152             strerror(errno));
153         /* Log Entry */
154         return PAM_CONV_ERR;
155     }
156
157     reply = (struct pam_response *)
158         calloc(num_msg, sizeof(struct pam_response));
159
160     if (!reply) {
161         /* Log Entry */
162         LOG(log_info, logtype_uams, "PAM DHX2: Conversation Err -- %s",
163             strerror(errno));
164         /* Log Entry */
165         return PAM_CONV_ERR;
166     }
167
168     for (count = 0; count < num_msg; count++) {
169         char *string = NULL;
170
171         switch (msg[count]->msg_style) {
172         case PAM_PROMPT_ECHO_ON:
173             if (!(string = COPY_STRING(PAM_username))) {
174                 /* Log Entry */
175                 LOG(log_info, logtype_uams, "PAM DHX2: username failure -- %s",
176                     strerror(errno));
177                 /* Log Entry */
178                 goto pam_fail_conv;
179             }
180             break;
181         case PAM_PROMPT_ECHO_OFF:
182             if (!(string = COPY_STRING(PAM_password))) {
183                 /* Log Entry */
184                 LOG(log_info, logtype_uams, "PAM DHX2: passwd failure: --: %s",
185                     strerror(errno));
186                 /* Log Entry */
187                 goto pam_fail_conv;
188             }
189             break;
190         case PAM_TEXT_INFO:
191 #ifdef PAM_BINARY_PROMPT
192         case PAM_BINARY_PROMPT:
193 #endif /* PAM_BINARY_PROMPT */
194             /* ignore it... */
195             break;
196         case PAM_ERROR_MSG:
197         default:
198             LOG(log_info, logtype_uams, "PAM DHX2: Binary_Prompt -- %s", strerror(errno));
199             goto pam_fail_conv;
200         }
201
202         if (string) {
203             reply[count].resp_retcode = 0;
204             reply[count].resp = string;
205             string = NULL;
206         }
207     }
208
209     *resp = reply;
210     LOG(log_info, logtype_uams, "PAM DHX2: PAM Success");
211     return PAM_SUCCESS;
212
213 pam_fail_conv:
214     for (count = 0; count < num_msg; count++) {
215         if (!reply[count].resp)
216             continue;
217         switch (msg[count]->msg_style) {
218         case PAM_PROMPT_ECHO_OFF:
219         case PAM_PROMPT_ECHO_ON:
220             free(reply[count].resp);
221             break;
222         }
223     }
224     free(reply);
225     /* Log Entry */
226     LOG(log_info, logtype_uams, "PAM DHX2: Conversation Err -- %s",
227         strerror(errno));
228     /* Log Entry */
229     return PAM_CONV_ERR;
230 }
231
232 static struct pam_conv PAM_conversation = {
233     &PAM_conv,
234     NULL
235 };
236
237
238 static int dhx2_setup(void *obj, char *ibuf _U_, size_t ibuflen _U_,
239                       char *rbuf, size_t *rbuflen)
240 {
241     int ret;
242     size_t nwritten;
243     gcry_mpi_t Ma;
244     char *Ra_binary = NULL;
245
246     *rbuflen = 0;
247
248     Ra = gcry_mpi_new(0);
249     Ma = gcry_mpi_new(0);
250
251     /* Generate our random number Ra. */
252     Ra_binary = calloc(1, PRIMEBITS/8);
253     if (Ra_binary == NULL) {
254         ret = AFPERR_MISC;
255         goto error;
256     }
257     gcry_randomize(Ra_binary, PRIMEBITS/8, GCRY_STRONG_RANDOM);
258     gcry_mpi_scan(&Ra, GCRYMPI_FMT_USG, Ra_binary, PRIMEBITS/8, NULL);
259     free(Ra_binary);
260     Ra_binary = NULL;
261
262     /* Ma = g^Ra mod p. This is our "public" key */
263     gcry_mpi_powm(Ma, g, Ra, p);
264
265     /* ------- DH Init done ------ */
266     /* Start building reply packet */
267
268     /* Session ID first */
269     ID = dhxhash(obj);
270     *(u_int16_t *)rbuf = htons(ID);
271     rbuf += 2;
272     *rbuflen += 2;
273
274     /* g is next */
275     gcry_mpi_print( GCRYMPI_FMT_USG, (unsigned char *)rbuf, 4, &nwritten, g);
276     if (nwritten < 4) {
277         memmove( rbuf+4-nwritten, rbuf, nwritten);
278         memset( rbuf, 0, 4-nwritten);
279     }
280     rbuf += 4;
281     *rbuflen += 4;
282
283     /* len = length of p = PRIMEBITS/8 */
284     *(u_int16_t *)rbuf = htons((u_int16_t) PRIMEBITS/8);
285     rbuf += 2;
286     *rbuflen += 2;
287
288     /* p */
289     gcry_mpi_print( GCRYMPI_FMT_USG, (unsigned char *)rbuf, PRIMEBITS/8, NULL, p);
290     rbuf += PRIMEBITS/8;
291     *rbuflen += PRIMEBITS/8;
292
293     /* Ma */
294     gcry_mpi_print( GCRYMPI_FMT_USG, (unsigned char *)rbuf, PRIMEBITS/8, &nwritten, Ma);
295     if (nwritten < PRIMEBITS/8) {
296         memmove(rbuf + (PRIMEBITS/8) - nwritten, rbuf, nwritten);
297         memset(rbuf, 0, (PRIMEBITS/8) - nwritten);
298     }
299     rbuf += PRIMEBITS/8;
300     *rbuflen += PRIMEBITS/8;
301
302     ret = AFPERR_AUTHCONT;
303
304 error:              /* We exit here anyway */
305     /* We will need Ra later, but mustn't forget to release it ! */
306     gcry_mpi_release(Ma);
307     return ret;
308 }
309
310 /* -------------------------------- */
311 static int login(void *obj, char *username, int ulen,  struct passwd **uam_pwd _U_,
312                  char *ibuf, size_t ibuflen,
313                  char *rbuf, size_t *rbuflen)
314 {
315     if (( dhxpwd = uam_getname(obj, username, ulen)) == NULL ) {
316         LOG(log_info, logtype_uams, "DHX2: unknown username");
317         return AFPERR_NOTAUTH;
318     }
319
320     PAM_username = username;
321     LOG(log_info, logtype_uams, "DHX2 login: %s", username);
322     return dhx2_setup(obj, ibuf, ibuflen, rbuf, rbuflen);
323 }
324
325 /* -------------------------------- */
326 /* dhx login: things are done in a slightly bizarre order to avoid
327  * having to clean things up if there's an error. */
328 static int pam_login(void *obj, struct passwd **uam_pwd,
329                      char *ibuf, size_t ibuflen,
330                      char *rbuf, size_t *rbuflen)
331 {
332     char *username;
333     size_t len, ulen;
334
335     *rbuflen = 0;
336
337     /* grab some of the options */
338     if (uam_afpserver_option(obj, UAM_OPTION_USERNAME, (void *) &username, &ulen) < 0) {
339         LOG(log_info, logtype_uams, "DHX2: uam_afpserver_option didn't meet uam_option_username  -- %s",
340             strerror(errno));
341         return AFPERR_PARAM;
342     }
343
344     len = (unsigned char) *ibuf++;
345     if ( len > ulen ) {
346         LOG(log_info, logtype_uams, "DHX2: Signature Retieval Failure -- %s",
347             strerror(errno));
348         return AFPERR_PARAM;
349     }
350
351     memcpy(username, ibuf, len );
352     ibuf += len;
353     username[ len ] = '\0';
354
355     if ((unsigned long) ibuf & 1) /* pad to even boundary */
356         ++ibuf;
357
358     return (login(obj, username, ulen, uam_pwd, ibuf, ibuflen, rbuf, rbuflen));
359 }
360
361 /* ----------------------------- */
362 static int pam_login_ext(void *obj, char *uname, struct passwd **uam_pwd,
363                          char *ibuf, size_t ibuflen,
364                          char *rbuf, size_t *rbuflen)
365 {
366     char *username;
367     size_t len, ulen;
368     u_int16_t  temp16;
369
370     *rbuflen = 0;
371
372     /* grab some of the options */
373     if (uam_afpserver_option(obj, UAM_OPTION_USERNAME, (void *) &username, &ulen) < 0) {
374         LOG(log_info, logtype_uams, "DHX2: uam_afpserver_option didn't meet uam_option_username  -- %s",
375             strerror(errno));
376         return AFPERR_PARAM;
377     }
378
379     if (*uname != 3)
380         return AFPERR_PARAM;
381     uname++;
382     memcpy(&temp16, uname, sizeof(temp16));
383     len = ntohs(temp16);
384
385     if ( !len || len > ulen ) {
386         LOG(log_info, logtype_uams, "DHX2: Signature Retrieval Failure -- %s",
387             strerror(errno));
388         return AFPERR_PARAM;
389     }
390     memcpy(username, uname +2, len );
391     username[ len ] = '\0';
392
393     return (login(obj, username, ulen, uam_pwd, ibuf, ibuflen, rbuf, rbuflen));
394 }
395
396 /* -------------------------------- */
397 static int logincont1(void *obj _U_, char *ibuf, size_t ibuflen, char *rbuf, size_t *rbuflen)
398 {
399     int ret;
400     size_t nwritten;
401     gcry_mpi_t Mb, K, clientNonce;
402     unsigned char *K_bin = NULL;
403     char serverNonce_bin[16];
404     gcry_cipher_hd_t ctx;
405     gcry_error_t ctxerror;
406
407     *rbuflen = 0;
408
409     Mb = gcry_mpi_new(0);
410     K = gcry_mpi_new(0);
411     clientNonce = gcry_mpi_new(0);
412     serverNonce = gcry_mpi_new(0);
413
414     /* Packet size should be: Session ID + Ma + Encrypted client nonce */
415     if (ibuflen != 2 + PRIMEBITS/8 + 16) {
416         LOG(log_error, logtype_uams, "DHX2: Paket length not correct");
417         ret = AFPERR_PARAM;
418         goto error_noctx;
419     }
420
421     /* Skip session id */
422     ibuf += 2;
423
424     /* Extract Mb, client's "public" key */
425     gcry_mpi_scan(&Mb, GCRYMPI_FMT_USG, ibuf, PRIMEBITS/8, NULL);
426     ibuf += PRIMEBITS/8;
427
428     /* Now finally generate the Key: K = Mb^Ra mod p */
429     gcry_mpi_powm(K, Mb, Ra, p);
430
431     /* We need K in binary form in order to ... */
432     K_bin = calloc(1, PRIMEBITS/8);
433     if (K_bin == NULL) {
434         ret = AFPERR_MISC;
435         goto error_noctx;
436     }
437     gcry_mpi_print(GCRYMPI_FMT_USG, K_bin, PRIMEBITS/8, &nwritten, K);
438     if (nwritten < PRIMEBITS/8) {
439         memmove(K_bin + PRIMEBITS/8 - nwritten, K_bin, nwritten);
440         memset(K_bin, 0, PRIMEBITS/8 - nwritten);
441     }
442
443     /* ... generate the MD5 hash of K. K_MD5hash is what we actually use ! */
444     K_MD5hash = calloc(1, K_hash_len = gcry_md_get_algo_dlen(GCRY_MD_MD5));
445     if (K_MD5hash == NULL) {
446         ret = AFPERR_MISC;
447         goto error_noctx;
448     }
449     gcry_md_hash_buffer(GCRY_MD_MD5, K_MD5hash, K_bin, PRIMEBITS/8);
450     free(K_bin);
451     K_bin = NULL;
452
453     /* FIXME: To support the Reconnect UAM, we need to store this key somewhere */
454
455     /* Set up our encryption context. */
456     ctxerror = gcry_cipher_open( &ctx, GCRY_CIPHER_CAST5, GCRY_CIPHER_MODE_CBC, 0);
457     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
458         ret = AFPERR_MISC;
459         goto error_ctx;
460     }
461     /* Set key */
462     ctxerror = gcry_cipher_setkey(ctx, K_MD5hash, K_hash_len);
463     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
464         ret = AFPERR_MISC;
465         goto error_ctx;
466     }
467     /* Set the initialization vector for client->server transfer. */
468     ctxerror = gcry_cipher_setiv(ctx, dhx_c2siv, sizeof(dhx_c2siv));
469     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
470         ret = AFPERR_MISC;
471         goto error_ctx;
472     }
473     /* Finally: decrypt client's md5_K(client nonce, C2SIV) inplace */
474     ctxerror = gcry_cipher_decrypt(ctx, ibuf, 16, NULL, 0);
475     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
476         ret = AFPERR_MISC;
477         goto error_ctx;
478     }
479     /* Pull out clients nonce */
480     gcry_mpi_scan(&clientNonce, GCRYMPI_FMT_USG, ibuf, 16, NULL);
481     /* Increment nonce */
482     gcry_mpi_add_ui(clientNonce, clientNonce, 1);
483
484     /* Generate our nonce and remember it for Logincont2 */
485     gcry_create_nonce(serverNonce_bin, 16); /* We'll use this here */
486     gcry_mpi_scan(&serverNonce, GCRYMPI_FMT_USG, serverNonce_bin, 16, NULL); /* For use in Logincont2 */
487
488     /* ---- Start building reply packet ---- */
489
490     /* Session ID + 1 first */
491     *(u_int16_t *)rbuf = htons(ID+1);
492     rbuf += 2;
493     *rbuflen += 2;
494
495     /* Client nonce + 1 */
496     gcry_mpi_print(GCRYMPI_FMT_USG, (unsigned char *)rbuf, PRIMEBITS/8, NULL, clientNonce);
497     /* Server nonce */
498     memcpy(rbuf+16, serverNonce_bin, 16);
499
500     /* Set the initialization vector for server->client transfer. */
501     ctxerror = gcry_cipher_setiv(ctx, dhx_s2civ, sizeof(dhx_s2civ));
502     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
503         ret = AFPERR_MISC;
504         goto error_ctx;
505     }
506     /* Encrypt md5_K(clientNonce+1, serverNonce) inplace */
507     ctxerror = gcry_cipher_encrypt(ctx, rbuf, 32, NULL, 0);
508     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
509         ret = AFPERR_MISC;
510         goto error_ctx;
511     }
512     rbuf += 32;
513     *rbuflen += 32;
514
515     ret = AFPERR_AUTHCONT;
516     goto exit;
517
518 error_ctx:
519     gcry_cipher_close(ctx);
520 error_noctx:
521     gcry_mpi_release(serverNonce);
522     free(K_MD5hash);
523     K_MD5hash=NULL;
524 exit:
525     gcry_mpi_release(K);
526     gcry_mpi_release(Mb);
527     gcry_mpi_release(Ra);
528     gcry_mpi_release(clientNonce);
529     return ret;
530 }
531
532 static int logincont2(void *obj, struct passwd **uam_pwd,
533                       char *ibuf, size_t ibuflen,
534                       char *rbuf _U_, size_t *rbuflen)
535 {
536     int ret;
537     int PAM_error;
538     const char *hostname = NULL;
539     gcry_mpi_t retServerNonce;
540     gcry_cipher_hd_t ctx;
541     gcry_error_t ctxerror;
542
543     *rbuflen = 0;
544
545     /* Packet size should be: Session ID + ServerNonce + Passwd buffer (evantually +10 extra bytes, see Apples Docs) */
546     if ((ibuflen != 2 + 16 + 256) && (ibuflen != 2 + 16 + 256 + 10)) {
547         LOG(log_error, logtype_uams, "DHX2: Paket length not correct: %u. Should be 274 or 284.", ibuflen);
548         ret = AFPERR_PARAM;
549         goto error_noctx;
550     }
551
552     retServerNonce = gcry_mpi_new(0);
553
554     /* For PAM */
555     uam_afpserver_option(obj, UAM_OPTION_CLIENTNAME, (void *) &hostname, NULL);
556
557     /* Set up our encryption context. */
558     ctxerror = gcry_cipher_open( &ctx, GCRY_CIPHER_CAST5, GCRY_CIPHER_MODE_CBC, 0);
559     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
560         ret = AFPERR_MISC;
561         goto error_ctx;
562     }
563     /* Set key */
564     ctxerror = gcry_cipher_setkey(ctx, K_MD5hash, K_hash_len);
565     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
566         ret = AFPERR_MISC;
567         goto error_ctx;
568     }
569     /* Set the initialization vector for client->server transfer. */
570     ctxerror = gcry_cipher_setiv(ctx, dhx_c2siv, sizeof(dhx_c2siv));
571     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
572         ret = AFPERR_MISC;
573         goto error_ctx;
574     }
575
576     /* Skip Session ID */
577     ibuf += 2;
578
579     /* Finally: decrypt client's md5_K(serverNonce+1, passwor, C2SIV) inplace */
580     ctxerror = gcry_cipher_decrypt(ctx, ibuf, 16+256, NULL, 0);
581     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
582         ret = AFPERR_MISC;
583         goto error_ctx;
584     }
585     /* Pull out nonce. Should be serverNonce+1 */
586     gcry_mpi_scan(&retServerNonce, GCRYMPI_FMT_USG, ibuf, 16, NULL);
587     gcry_mpi_sub_ui(retServerNonce, retServerNonce, 1);
588     if ( gcry_mpi_cmp( serverNonce, retServerNonce) != 0) {
589         /* We're hacked!  */
590         ret = AFPERR_NOTAUTH;
591         goto error_ctx;
592     }
593     ibuf += 16;
594
595     /* ---- Start authentication with PAM --- */
596
597     /* Set these things up for the conv function */
598     PAM_password = ibuf;
599
600     ret = AFPERR_NOTAUTH;
601     PAM_error = pam_start("netatalk", PAM_username, &PAM_conversation, &pamh);
602     if (PAM_error != PAM_SUCCESS) {
603         LOG(log_info, logtype_uams, "DHX2: PAM_Error: %s",
604             pam_strerror(pamh,PAM_error));
605         goto error_ctx;
606     }
607
608     /* solaris craps out if PAM_TTY and PAM_RHOST aren't set. */
609     pam_set_item(pamh, PAM_TTY, "afpd");
610     pam_set_item(pamh, PAM_RHOST, hostname);
611     PAM_error = pam_authenticate(pamh, 0);
612     if (PAM_error != PAM_SUCCESS) {
613         if (PAM_error == PAM_MAXTRIES)
614             ret = AFPERR_PWDEXPR;
615         LOG(log_info, logtype_uams, "DHX2: PAM_Error: %s",
616             pam_strerror(pamh, PAM_error));
617         goto error_ctx;
618     }
619
620     PAM_error = pam_acct_mgmt(pamh, 0);
621     if (PAM_error != PAM_SUCCESS ) {
622         LOG(log_info, logtype_uams, "DHX2: PAM_Error: %s",
623             pam_strerror(pamh, PAM_error));
624         if (PAM_error == PAM_NEW_AUTHTOK_REQD)    /* password expired */
625             ret = AFPERR_PWDEXPR;
626 #ifdef PAM_AUTHTOKEN_REQD
627         else if (PAM_error == PAM_AUTHTOKEN_REQD)
628             ret = AFPERR_PWDCHNG;
629 #endif
630         else
631             goto error_ctx;
632     }
633
634 #ifndef PAM_CRED_ESTABLISH
635 #define PAM_CRED_ESTABLISH PAM_ESTABLISH_CRED
636 #endif
637     PAM_error = pam_setcred(pamh, PAM_CRED_ESTABLISH);
638     if (PAM_error != PAM_SUCCESS) {
639         LOG(log_info, logtype_uams, "DHX2: PAM_Error: %s",
640             pam_strerror(pamh, PAM_error));
641         goto error_ctx;
642     }
643
644     PAM_error = pam_open_session(pamh, 0);
645     if (PAM_error != PAM_SUCCESS) {
646         LOG(log_info, logtype_uams, "DHX2: PAM_Error: %s",
647             pam_strerror(pamh, PAM_error));
648         goto error_ctx;
649     }
650
651     memset(ibuf, 0, 256); /* zero out the password */
652     *uam_pwd = dhxpwd;
653     LOG(log_info, logtype_uams, "DHX2: PAM Auth OK!");
654     if ( ret == AFPERR_PWDEXPR)
655         return ret;
656     ret = AFP_OK;
657
658 error_ctx:
659     gcry_cipher_close(ctx);
660 error_noctx:
661     free(K_MD5hash);
662     K_MD5hash=NULL;
663     gcry_mpi_release(serverNonce);
664     gcry_mpi_release(retServerNonce);
665     return ret;
666 }
667
668 static int pam_logincont(void *obj, struct passwd **uam_pwd,
669                          char *ibuf, size_t ibuflen,
670                          char *rbuf, size_t *rbuflen)
671 {
672     u_int16_t retID;
673     int ret;
674
675     /* check for session id */
676     retID = ntohs(*(u_int16_t *)ibuf);
677     if (retID == ID)
678         ret = logincont1(obj, ibuf, ibuflen, rbuf, rbuflen);
679     else if (retID == ID+1)
680         ret = logincont2(obj, uam_pwd, ibuf,ibuflen, rbuf, rbuflen);
681     else {
682         LOG(log_info, logtype_uams, "DHX2: Session ID Mismatch");
683         ret = AFPERR_PARAM;
684     }
685     return ret;
686 }
687
688
689 /* logout */
690 static void pam_logout(void) {
691     pam_close_session(pamh, 0);
692     pam_end(pamh, 0);
693     pamh = NULL;
694 }
695
696 /****************************
697  * --- Change pwd stuff --- */
698
699 static int changepw_1(void *obj, char *uname,
700                       char *ibuf, size_t ibuflen, char *rbuf, size_t *rbuflen)
701 {
702     *rbuflen = 0;
703
704     /* Remember it now, use it in changepw_3 */
705     PAM_username = uname;
706     return( dhx2_setup(obj, ibuf, ibuflen, rbuf, rbuflen) );
707 }
708
709 static int changepw_2(void *obj,
710                       char *ibuf, size_t ibuflen, char *rbuf, size_t *rbuflen)
711 {
712     return( logincont1(obj, ibuf, ibuflen, rbuf, rbuflen) );
713 }
714
715 static int changepw_3(void *obj _U_,
716                       char *ibuf, size_t ibuflen _U_,
717                       char *rbuf _U_, size_t *rbuflen _U_)
718 {
719     int ret;
720     int PAM_error;
721     uid_t uid;
722     pam_handle_t *lpamh;
723     const char *hostname = NULL;
724     gcry_mpi_t retServerNonce;
725     gcry_cipher_hd_t ctx;
726     gcry_error_t ctxerror;
727
728     *rbuflen = 0;
729
730     LOG(log_error, logtype_uams, "DHX2 ChangePW: packet 3 processing");
731
732     /* Packet size should be: Session ID + ServerNonce + 2*Passwd buffer */
733     if (ibuflen != 2 + 16 + 2*256) {
734         LOG(log_error, logtype_uams, "DHX2: Paket length not correct");
735         ret = AFPERR_PARAM;
736         goto error_noctx;
737     }
738
739     retServerNonce = gcry_mpi_new(0);
740
741     /* For PAM */
742     uam_afpserver_option(obj, UAM_OPTION_CLIENTNAME, (void *) &hostname, NULL);
743
744     /* Set up our encryption context. */
745     ctxerror = gcry_cipher_open( &ctx, GCRY_CIPHER_CAST5, GCRY_CIPHER_MODE_CBC, 0);
746     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
747         ret = AFPERR_MISC;
748         goto error_ctx;
749     }
750     /* Set key */
751     ctxerror = gcry_cipher_setkey(ctx, K_MD5hash, K_hash_len);
752     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
753         ret = AFPERR_MISC;
754         goto error_ctx;
755     }
756
757     /* Set the initialization vector for client->server transfer. */
758     ctxerror = gcry_cipher_setiv(ctx, dhx_c2siv, sizeof(dhx_c2siv));
759     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
760         ret = AFPERR_MISC;
761         goto error_ctx;
762     }
763
764     /* Skip Session ID */
765     ibuf += 2;
766
767     /* Finally: decrypt client's md5_K(serverNonce+1, 2*password, C2SIV) inplace */
768     ctxerror = gcry_cipher_decrypt(ctx, ibuf, 16+2*256, NULL, 0);
769     if (gcry_err_code(ctxerror) != GPG_ERR_NO_ERROR) {
770         ret = AFPERR_MISC;
771         goto error_ctx;
772     }
773     /* Pull out nonce. Should be serverNonce+1 */
774     gcry_mpi_scan(&retServerNonce, GCRYMPI_FMT_USG, ibuf, 16, NULL);
775     gcry_mpi_sub_ui(retServerNonce, retServerNonce, 1);
776     if ( gcry_mpi_cmp( serverNonce, retServerNonce) != 0) {
777         /* We're hacked!  */
778         ret = AFPERR_NOTAUTH;
779         goto error_ctx;
780     }
781     ibuf += 16;
782
783     /* ---- Start pwd changing with PAM --- */
784     ibuf[255] = '\0';       /* For safety */
785     ibuf[511] = '\0';
786
787     /* check if new and old password are equal */
788     if (memcmp(ibuf, ibuf + 256, 255) == 0) {
789         LOG(log_info, logtype_uams, "DHX2 Chgpwd: new and old password are equal");
790         ret = AFPERR_PWDSAME;
791         goto error_ctx;
792     }
793
794     /* Set these things up for the conv function. PAM_username was set in changepw_1 */
795     PAM_password = ibuf + 256;
796     PAM_error = pam_start("netatalk", PAM_username, &PAM_conversation, &lpamh);
797     if (PAM_error != PAM_SUCCESS) {
798         LOG(log_info, logtype_uams, "DHX2 Chgpwd: PAM error in pam_start");
799         ret = AFPERR_PARAM;
800         goto error_ctx;
801     }
802     pam_set_item(lpamh, PAM_TTY, "afpd");
803     uam_afpserver_option(obj, UAM_OPTION_CLIENTNAME, (void *) &hostname, NULL);
804     pam_set_item(lpamh, PAM_RHOST, hostname);
805     uid = geteuid();
806     seteuid(0);
807     PAM_error = pam_authenticate(lpamh,0);
808     if (PAM_error != PAM_SUCCESS) {
809         LOG(log_info, logtype_uams, "DHX2 Chgpwd: error authenticating with PAM");
810         seteuid(uid);
811         pam_end(lpamh, PAM_error);
812         ret = AFPERR_NOTAUTH;
813         goto error_ctx;
814     }
815     PAM_password = ibuf;
816     PAM_error = pam_chauthtok(lpamh, 0);
817     seteuid(uid); /* un-root ourselves. */
818     memset(ibuf, 0, 512);
819     if (PAM_error != PAM_SUCCESS) {
820         LOG(log_info, logtype_uams, "DHX2 Chgpwd: error changing pw with PAM");
821         pam_end(lpamh, PAM_error);
822         ret = AFPERR_ACCESS;
823         goto error_ctx;
824     }
825     pam_end(lpamh, 0);
826     ret = AFP_OK;
827
828 error_ctx:
829     gcry_cipher_close(ctx);
830 error_noctx:
831     free(K_MD5hash);
832     K_MD5hash=NULL;
833     gcry_mpi_release(serverNonce);
834     gcry_mpi_release(retServerNonce);
835     return ret;
836 }
837
838 static int dhx2_changepw(void *obj _U_, char *uname,
839                          struct passwd *pwd _U_, char *ibuf, size_t ibuflen _U_,
840                          char *rbuf _U_, size_t *rbuflen _U_)
841 {
842     /* We use this to serialize the three incoming FPChangePassword calls */
843     static int dhx2_changepw_status = 1;
844
845     int ret = AFPERR_NOTAUTH;  /* gcc can't figure out it's always initialized */
846
847     switch (dhx2_changepw_status) {
848     case 1:
849         ret = changepw_1( obj, uname, ibuf, ibuflen, rbuf, rbuflen);
850         if ( ret == AFPERR_AUTHCONT)
851             dhx2_changepw_status = 2;
852         break;
853     case 2:
854         ret = changepw_2( obj, ibuf, ibuflen, rbuf, rbuflen);
855         if ( ret == AFPERR_AUTHCONT)
856             dhx2_changepw_status = 3;
857         else
858             dhx2_changepw_status = 1;
859         break;
860     case 3:
861         ret = changepw_3( obj, ibuf, ibuflen, rbuf, rbuflen);
862         dhx2_changepw_status = 1; /* Whether is was succesfull or not: we
863                                      restart anyway !*/
864         break;
865     }
866     return ret;
867 }
868
869 static int uam_setup(const char *path)
870 {
871     if (uam_register(UAM_SERVER_LOGIN_EXT, path, "DHX2", pam_login,
872                      pam_logincont, pam_logout, pam_login_ext) < 0)
873         return -1;
874     if (uam_register(UAM_SERVER_CHANGEPW, path, "DHX2", dhx2_changepw) < 0)
875         return -1;
876
877     p = gcry_mpi_new(0);
878     g = gcry_mpi_new(0);
879
880     LOG(log_debug, logtype_uams, "DHX2: generating mersenne primes");
881     /* Generate p and g for DH */
882     if (dh_params_generate(PRIMEBITS) != 0) {
883         LOG(log_error, logtype_uams, "DHX2: Couldn't generate p and g");
884         return -1;
885     }
886
887     return 0;
888 }
889
890 static void uam_cleanup(void)
891 {
892     uam_unregister(UAM_SERVER_LOGIN, "DHX2");
893     uam_unregister(UAM_SERVER_CHANGEPW, "DHX2");
894
895     gcry_mpi_release(p);
896     gcry_mpi_release(g);
897 }
898
899
900 UAM_MODULE_EXPORT struct uam_export uams_dhx2 = {
901     UAM_MODULE_SERVER,
902     UAM_MODULE_VERSION,
903     uam_setup, uam_cleanup
904 };
905
906
907 UAM_MODULE_EXPORT struct uam_export uams_dhx2_pam = {
908     UAM_MODULE_SERVER,
909     UAM_MODULE_VERSION,
910     uam_setup, uam_cleanup
911 };
912
913 #endif /* USE_PAM && UAM_DHX2 */