summaryrefslogtreecommitdiff
path: root/pam/mock-pam.c
blob: 59f2da2f34cc86341bbcd14f30d1afec2e278396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
   Copyright (C) 2014 Red Hat Inc.

   The Gnome Keyring Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public License as
   published by the Free Software Foundation; either version 2 of the
   License, or (at your option) any later version.

   The Gnome Keyring Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public
   License along with the Gnome Library; see the file COPYING.LIB.  If not,
   <http://www.gnu.org/licenses/>.

   Author: Stef Walter <stefw@gnome.org>
*/

#include "config.h"

#include <security/pam_appl.h>
#include <security/pam_modules.h>

#include <stdlib.h>
#include <string.h>

static int
prompt_password (pam_handle_t *ph,
                 const char *prompt,
                 int password_type)
{
	const struct pam_conv *conv;
	struct pam_message msg;
	struct pam_response *resp;
	const struct pam_message *msgs[1];
	const void *item;
	char *password;
	int ret;

	/* Get the conversation function */
	ret = pam_get_item (ph, PAM_CONV, &item);
	if (ret != PAM_SUCCESS)
		return ret;

	/* Setup a message */
	memset (&msg, 0, sizeof (msg));
	memset (&resp, 0, sizeof (resp));
	msg.msg_style = PAM_PROMPT_ECHO_OFF;
	msg.msg = prompt;
	msgs[0] = &msg;

	/* Call away */
	conv = (const struct pam_conv*)item;
	ret = (conv->conv) (1, msgs, &resp, conv->appdata_ptr);
	if (ret != PAM_SUCCESS)
		return ret;

	password = resp[0].resp;
	free (resp);

	if (password == NULL)
		return PAM_CONV_ERR;

	/* Store it away for later use */
	ret = pam_set_item (ph, password_type, password);
	free (password);

	if (ret == PAM_SUCCESS)
		ret = pam_get_item (ph, password_type, &item);

	return ret;
}

PAM_EXTERN int
pam_sm_authenticate (pam_handle_t *ph,
                     int unused,
                     int argc,
                     const char **argv)
{
	/* Just prompt for the password, accept any result */
	return prompt_password (ph, "Password: ", PAM_AUTHTOK);
}

PAM_EXTERN int
pam_sm_open_session (pam_handle_t *ph,
                     int flags,
                     int argc,
                     const char **argv)
{
	return PAM_IGNORE;
}

PAM_EXTERN int
pam_sm_close_session (pam_handle_t *ph,
                      int flags,
                      int argc,
                      const char **argv)
{
	return PAM_IGNORE;
}

PAM_EXTERN int
pam_sm_setcred (pam_handle_t *ph,
                int flags,
                int argc,
                const char **argv)
{
	return PAM_SUCCESS;
}

PAM_EXTERN int
pam_sm_chauthtok (pam_handle_t *ph,
                  int flags,
                  int argc,
                  const char **argv)
{
	if (flags & PAM_PRELIM_CHECK)
		return prompt_password (ph, "Old Password: ", PAM_OLDAUTHTOK);
	else if (flags & PAM_UPDATE_AUTHTOK)
		return prompt_password (ph, "New Password: ", PAM_AUTHTOK);
	else
		return PAM_IGNORE;
}