Imported Upstream version 2.0.90
[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 #include "config.h"
23
24 #include <stdio.h>
25 #include <errno.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 #include "libcommon.h"
34
35 static struct pam_conv conv = {
36         &misc_conv,
37         NULL
38 };
39
40 pam_handle_t *
41 init_pam(const char *username, const char *tty, int log)
42 {
43         pam_handle_t *pamh = 0;
44         int rc             = pam_start("vlock", username, &conv, &pamh);
45
46         if (rc != PAM_SUCCESS) {
47                 /* pam_strerror is not available atm. */
48                 if (log)
49                         syslog(LOG_WARNING, "pam_start failed: %m");
50                 else
51                         kbd_warning(errno, "pam_start");
52                 return 0;
53         }
54
55         rc = pam_set_item(pamh, PAM_TTY, tty);
56         if (rc != PAM_SUCCESS) {
57                 if (log)
58                         syslog(LOG_WARNING, "pam_set_item: %s",
59                                pam_strerror(pamh, rc));
60                 else
61                         kbd_warning(0, "pam_set_item: %s",
62                                     pam_strerror(pamh, rc));
63                 pam_end(pamh, rc);
64                 return 0;
65         }
66
67         return pamh;
68 }