]> granicus.if.org Git - linux-pam/blob - modules/pam_unix/pam_unix_acct.c
Relevant BUGIDs: 1836981
[linux-pam] / modules / pam_unix / pam_unix_acct.c
1 /*
2  * Copyright Elliot Lee, 1996.  All rights reserved.
3  * Copyright Jan Rêkorajski, 1999.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, and the entire permission notice in its entirety,
10  *    including the disclaimer of warranties.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote
15  *    products derived from this software without specific prior
16  *    written permission.
17  *
18  * ALTERNATIVELY, this product may be distributed under the terms of
19  * the GNU Public License, in which case the provisions of the GPL are
20  * required INSTEAD OF the above restrictions.  (This clause is
21  * necessary due to a potential bad interaction between the GPL and
22  * the restrictions contained in a BSD-style copyright.)
23  *
24  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
25  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
28  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
29  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
32  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
34  * OF THE POSSIBILITY OF SUCH DAMAGE.
35  */
36
37 #include "config.h"
38
39 #include <stdlib.h>
40 #include <stdio.h>
41 #include <string.h>
42 #include <unistd.h>
43 #include <sys/types.h>
44 #include <syslog.h>
45 #include <pwd.h>
46 #include <shadow.h>
47 #include <time.h>               /* for time() */
48 #include <errno.h>
49 #include <sys/wait.h>
50
51 #include <security/_pam_macros.h>
52
53 /* indicate that the following groups are defined */
54
55 #define PAM_SM_ACCOUNT
56
57 #include <security/pam_modules.h>
58 #include <security/pam_ext.h>
59 #include <security/pam_modutil.h>
60
61 #include "support.h"
62 #include "passverify.h"
63
64 int _unix_run_verify_binary(pam_handle_t *pamh, unsigned int ctrl,
65         const char *user, int *daysleft)
66 {
67   int retval=0, child, fds[2];
68   void (*sighandler)(int) = NULL;
69   D(("running verify_binary"));
70
71   /* create a pipe for the messages */
72   if (pipe(fds) != 0) {
73     D(("could not make pipe"));
74     pam_syslog(pamh, LOG_ERR, "Could not make pipe: %m");
75     return PAM_AUTH_ERR;
76   }
77   D(("called."));
78
79   if (off(UNIX_NOREAP, ctrl)) {
80     /*
81      * This code arranges that the demise of the child does not cause
82      * the application to receive a signal it is not expecting - which
83      * may kill the application or worse.
84      *
85      * The "noreap" module argument is provided so that the admin can
86      * override this behavior.
87      */
88     sighandler = signal(SIGCHLD, SIG_DFL);
89   }
90
91   /* fork */
92   child = fork();
93   if (child == 0) {
94     size_t i=0;
95     struct rlimit rlim;
96     static char *envp[] = { NULL };
97     char *args[] = { NULL, NULL, NULL, NULL };
98
99     close(0); close(1);
100     /* reopen stdin as pipe */
101     close(fds[0]);
102     dup2(fds[1], STDOUT_FILENO);
103
104     /* XXX - should really tidy up PAM here too */
105
106     if (getrlimit(RLIMIT_NOFILE,&rlim)==0) {
107       for (i=2; i < rlim.rlim_max; i++) {
108         if ((unsigned int)fds[1] != i) {
109           close(i);
110         }
111       }
112     }
113
114     if (geteuid() == 0) {
115       /* must set the real uid to 0 so the helper will not error
116          out if pam is called from setuid binary (su, sudo...) */
117       setuid(0);
118     }
119
120     /* exec binary helper */
121     args[0] = x_strdup(CHKPWD_HELPER);
122     args[1] = x_strdup(user);
123     args[2] = x_strdup("chkexpiry");
124
125     execve(CHKPWD_HELPER, args, envp);
126
127     pam_syslog(pamh, LOG_ERR, "helper binary execve failed: %m");
128     /* should not get here: exit with error */
129     close (fds[1]);
130     D(("helper binary is not available"));
131     printf("-1\n");
132     exit(PAM_AUTHINFO_UNAVAIL);
133   } else {
134     close(fds[1]);
135     if (child > 0) {
136       char buf[32];
137       int rc=0;
138       rc=waitpid(child, &retval, 0);  /* wait for helper to complete */
139       if (rc<0) {
140         pam_syslog(pamh, LOG_ERR, "unix_chkpwd waitpid returned %d: %m", rc);
141         retval = PAM_AUTH_ERR;
142       } else {
143         retval = WEXITSTATUS(retval);
144         rc = pam_modutil_read(fds[0], buf, sizeof(buf) - 1);
145         if(rc > 0) {
146               buf[rc] = '\0';
147               if (sscanf(buf,"%d", daysleft) != 1 )
148                 retval = PAM_AUTH_ERR;
149             }
150         else {
151             pam_syslog(pamh, LOG_ERR, "read unix_chkpwd output error %d: %m", rc);
152             retval = PAM_AUTH_ERR;
153           }
154       }
155     } else {
156       pam_syslog(pamh, LOG_ERR, "Fork failed: %m");
157       D(("fork failed"));
158       retval = PAM_AUTH_ERR;
159     }
160     close(fds[0]);
161   }
162   if (sighandler != SIG_ERR) {
163     (void) signal(SIGCHLD, sighandler);   /* restore old signal handler */
164   }
165   D(("Returning %d",retval));
166   return retval;
167 }
168
169 /*
170  * PAM framework looks for this entry-point to pass control to the
171  * account management module.
172  */
173
174 PAM_EXTERN int pam_sm_acct_mgmt(pam_handle_t * pamh, int flags,
175                                 int argc, const char **argv)
176 {
177         unsigned int ctrl;
178         const void *void_uname;
179         const char *uname;
180         int retval, daysleft;
181         struct spwd *spent;
182         struct passwd *pwent;
183         char buf[256];
184
185         D(("called."));
186
187         ctrl = _set_ctrl(pamh, flags, NULL, NULL, argc, argv);
188
189         retval = pam_get_item(pamh, PAM_USER, &void_uname);
190         uname = void_uname;
191         D(("user = `%s'", uname));
192         if (retval != PAM_SUCCESS || uname == NULL) {
193                 pam_syslog(pamh, LOG_ALERT,
194                          "could not identify user (from uid=%lu)",
195                          (unsigned long int)getuid());
196                 return PAM_USER_UNKNOWN;
197         }
198
199         retval = get_account_info(pamh, uname, &pwent, &spent);
200         if (retval == PAM_USER_UNKNOWN) {
201                 pam_syslog(pamh, LOG_ALERT,
202                          "could not identify user (from getpwnam(%s))",
203                          uname);
204                 return retval;
205         }
206
207         if (retval == PAM_SUCCESS && spent == NULL)
208                 return PAM_SUCCESS;
209
210         if (retval == PAM_UNIX_RUN_HELPER) {
211                 retval = _unix_run_verify_binary(pamh, ctrl, uname, &daysleft);
212                 if (retval == PAM_AUTHINFO_UNAVAIL &&
213                         on(UNIX_BROKEN_SHADOW, ctrl))
214                         return PAM_SUCCESS;
215         } else if (retval != PAM_SUCCESS) {
216                 if (on(UNIX_BROKEN_SHADOW,ctrl))
217                         return PAM_SUCCESS;
218                 else
219                         return retval;
220         } else
221                 retval = check_shadow_expiry(pamh, spent, &daysleft);
222
223         switch (retval) {
224         case PAM_ACCT_EXPIRED:
225                 pam_syslog(pamh, LOG_NOTICE,
226                         "account %s has expired (account expired)",
227                         uname);
228                 _make_remark(pamh, ctrl, PAM_ERROR_MSG,
229                         _("Your account has expired; please contact your system administrator"));
230                 break;
231         case PAM_NEW_AUTHTOK_REQD:
232                 if (daysleft == 0) {
233                         pam_syslog(pamh, LOG_NOTICE,
234                                 "expired password for user %s (root enforced)",
235                                 uname);
236                         _make_remark(pamh, ctrl, PAM_ERROR_MSG,
237                                 _("You are required to change your password immediately (root enforced)"));
238                 } else {
239                         pam_syslog(pamh, LOG_DEBUG,
240                                 "expired password for user %s (password aged)",
241                                 uname);
242                         _make_remark(pamh, ctrl, PAM_ERROR_MSG,
243                                 _("You are required to change your password immediately (password aged)"));
244                 }
245                 break;
246         case PAM_AUTHTOK_EXPIRED:
247                 pam_syslog(pamh, LOG_NOTICE,
248                         "account %s has expired (failed to change password)",
249                         uname);
250                 _make_remark(pamh, ctrl, PAM_ERROR_MSG,
251                         _("Your account has expired; please contact your system administrator"));
252                 break;
253         case PAM_SUCCESS:
254                 if (daysleft >= 0) {
255                         pam_syslog(pamh, LOG_DEBUG,
256                                 "password for user %s will expire in %d days",
257                                 uname, daysleft);
258 #if defined HAVE_DNGETTEXT && defined ENABLE_NLS
259                         snprintf (buf, sizeof (buf),
260                                 dngettext(PACKAGE,
261                                   "Warning: your password will expire in %d day",
262                                   "Warning: your password will expire in %d days",
263                                   daysleft),
264                                 daysleft);
265 #else
266                         if (daysleft == 1)
267                             snprintf(buf, sizeof (buf),
268                                 _("Warning: your password will expire in %d day"),
269                                 daysleft);
270                         else
271                             snprintf(buf, sizeof (buf),
272                             /* TRANSLATORS: only used if dngettext is not supported */
273                                 _("Warning: your password will expire in %d days"),
274                                 daysleft);
275 #endif
276                         _make_remark(pamh, ctrl, PAM_TEXT_INFO, buf);
277                 }
278         }
279
280         D(("all done"));
281
282         return retval;
283 }
284
285
286 /* static module data */
287 #ifdef PAM_STATIC
288 struct pam_module _pam_unix_acct_modstruct = {
289     "pam_unix_acct",
290     NULL,
291     NULL,
292     pam_sm_acct_mgmt,
293     NULL,
294     NULL,
295     NULL,
296 };
297 #endif