Merge branch 'vlock'
[platform/upstream/kbd.git] / src / vlock / pam.c
1
2 /*
3
4   PAM initialization routine for vlock, the VT locking program for linux.
5
6   Copyright (C) 2002, 2005 Dmitry V. Levin <ldv@altlinux.org>
7
8   This program is free software; you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with this program; if not, write to the Free Software
20   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23 #include <stdio.h>
24 #include <errno.h>
25 #include <error.h>
26 #include <stdlib.h>
27 #include <syslog.h>
28
29 #include <security/pam_misc.h>
30
31 #include "pam_auth.h"
32 #include "vlock.h"
33
34 static struct pam_conv conv = {
35         &misc_conv,
36         NULL
37 };
38
39 pam_handle_t *
40 init_pam (const char *username, const char *tty, int log)
41 {
42         pam_handle_t *pamh = 0;
43         int     rc = pam_start ("vlock", username, &conv, &pamh);
44
45         if (rc != PAM_SUCCESS)
46         {
47                 /* pam_strerror is not available atm. */
48                 if (log)
49                         syslog (LOG_WARNING, "pam_start failed: %m");
50                 else
51                         error (EXIT_SUCCESS, errno, "pam_start");
52                 return 0;
53         }
54
55         rc = pam_set_item (pamh, PAM_TTY, tty);
56         if (rc != PAM_SUCCESS)
57         {
58                 if (log)
59                         syslog (LOG_WARNING, "pam_set_item: %s",
60                                 pam_strerror (pamh, rc));
61                 else
62                         error (EXIT_SUCCESS, 0, "pam_set_item: %s",
63                                pam_strerror (pamh, rc));
64                 pam_end (pamh, rc);
65                 return 0;
66         }
67
68         return pamh;
69 }