]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/pam.c
Streamline DEBUG_ARRAY, DEBUG_BUFFER, DEBUG_IO, DEBUG_ZIP
[ngircd-alex.git] / src / ngircd / pam.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  */
11
12 #include "portab.h"
13
14 #ifdef PAM
15
16 /**
17  * @file
18  * PAM User Authentication
19  */
20
21 #include <assert.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #ifdef HAVE_SECURITY_PAM_APPL_H
25 # include <security/pam_appl.h>
26 #endif
27 #ifdef HAVE_PAM_PAM_APPL_H
28 # include <pam/pam_appl.h>
29 #endif
30
31 #include "defines.h"
32 #include "log.h"
33 #include "conn.h"
34 #include "client.h"
35
36 #include "pam.h"
37
38 static char *password;
39
40 /**
41  * PAM "conversation function".
42  * This is a callback function used by the PAM library to get the password.
43  * Please see the PAM documentation for details :-)
44  */
45 static int
46 password_conversation(int num_msg, const struct pam_message **msg,
47                       struct pam_response **resp, void *appdata_ptr) {
48         LogDebug("PAM: conv(%d, %d, '%s', '%s')",
49                  num_msg, msg[0]->msg_style, msg[0]->msg, appdata_ptr);
50
51         /* Can we deal with this request? */
52         if (num_msg != 1 || msg[0]->msg_style != PAM_PROMPT_ECHO_OFF) {
53                 Log(LOG_ERR, "PAM: Unexpected PAM conversation '%d:%s'!",
54                     msg[0]->msg_style, msg[0]->msg);
55                 return PAM_CONV_ERR;
56         }
57
58         if (!appdata_ptr) {
59                 /* Sometimes appdata_ptr gets lost!? */
60                 appdata_ptr = password;
61         }
62
63         /* Duplicate password ("application data") for the PAM library */
64         *resp = calloc(num_msg, sizeof(struct pam_response));
65         if (!*resp) {
66                 Log(LOG_ERR, "PAM: Out of memory!");
67                 return PAM_CONV_ERR;
68         }
69
70         (*resp)[0].resp = strdup((char *)appdata_ptr);
71         (*resp)[0].resp_retcode = 0;
72
73         return ((*resp)[0].resp ? PAM_SUCCESS : PAM_CONV_ERR);
74 }
75
76 /**
77  * PAM "conversation" structure.
78  */
79 static struct pam_conv conv = {
80         &password_conversation,
81         NULL
82 };
83
84 /**
85  * Authenticate a connecting client using PAM.
86  * @param Client The client to authenticate.
87  * @return true when authentication succeeded, false otherwise.
88  */
89 GLOBAL bool
90 PAM_Authenticate(CLIENT *Client) {
91         pam_handle_t *pam;
92         int retval = PAM_SUCCESS;
93
94         LogDebug("PAM: Authenticate \"%s\" (%s) ...",
95                  Client_OrigUser(Client), Client_Mask(Client));
96
97         /* Set supplied client password */
98         if (password)
99                 free(password);
100         password = strdup(Conn_Password(Client_Conn(Client)));
101         conv.appdata_ptr = Conn_Password(Client_Conn(Client));
102
103         /* Initialize PAM */
104         retval = pam_start("ngircd", Client_OrigUser(Client), &conv, &pam);
105         if (retval != PAM_SUCCESS) {
106                 Log(LOG_ERR, "PAM: Failed to create authenticator! (%d)", retval);
107                 return false;
108         }
109
110         pam_set_item(pam, PAM_RUSER, Client_User(Client));
111         pam_set_item(pam, PAM_RHOST, Client_Hostname(Client));
112 #if defined(HAVE_PAM_FAIL_DELAY) && !defined(NO_PAM_FAIL_DELAY)
113         pam_fail_delay(pam, 0);
114 #endif
115
116         /* PAM authentication ... */
117         retval = pam_authenticate(pam, 0);
118
119         /* Success? */
120         if (retval == PAM_SUCCESS)
121                 Log(LOG_INFO, "PAM: Authenticated \"%s\" (%s).",
122                     Client_OrigUser(Client), Client_Mask(Client));
123         else
124                 Log(LOG_ERR, "PAM: Error on \"%s\" (%s): %s",
125                     Client_OrigUser(Client), Client_Mask(Client),
126                     pam_strerror(pam, retval));
127
128         /* Free PAM structures */
129         if (pam_end(pam, retval) != PAM_SUCCESS)
130                 Log(LOG_ERR, "PAM: Failed to release authenticator!");
131
132         return (retval == PAM_SUCCESS);
133 }
134
135 #endif /* PAM */
136
137 /* -eof- */