summaryrefslogtreecommitdiff
path: root/src/gs-auth-pwent.c
blob: 3fe1b228b651b9a595a8762c9133ed63577f8ea6 (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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 *
 * Copyright (c) 1993-1998 Jamie Zawinski <jwz@jwz.org>
 * Copyright (C) 2006 William Jon McCann <mccann@jhu.edu>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 *
 */

#include "config.h"

#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif

#ifdef HAVE_CRYPT_H
# include <crypt.h>
#endif

#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <pwd.h>
#include <grp.h>

#ifdef __bsdi__
# include <sys/param.h>
# if _BSDI_VERSION >= 199608
#  define BSD_AUTH
# endif
#endif /* __bsdi__ */

#include <glib.h>
#include <glib/gi18n.h>

#if defined(HAVE_SHADOW_PASSWD)	      /* passwds live in /etc/shadow */

#   include <shadow.h>
#   define PWTYPE   struct spwd *
#   define PWPSLOT  sp_pwdp
#   define GETPW    getspnam

#elif defined(HAVE_ENHANCED_PASSWD)      /* passwds live in /tcb/files/auth/ */
/* M.Matsumoto <matsu@yao.sharp.co.jp> */
#   include <sys/security.h>
#   include <prot.h>

#   define PWTYPE   struct pr_passwd *
#   define PWPSLOT  ufld.fd_encrypt
#   define GETPW    getprpwnam

#elif defined(HAVE_ADJUNCT_PASSWD)

#   include <sys/label.h>
#   include <sys/audit.h>
#   include <pwdadj.h>

#   define PWTYPE   struct passwd_adjunct *
#   define PWPSLOT  pwa_passwd
#   define GETPW    getpwanam

#elif defined(HAVE_HPUX_PASSWD)

#   include <hpsecurity.h>
#   include <prot.h>

#   define PWTYPE   struct s_passwd *
#   define PWPSLOT  pw_passwd
#   define GETPW    getspwnam

#   define HAVE_BIGCRYPT

#endif

#include "gs-auth.h"

static gboolean verbose_enabled = FALSE;

static char *encrypted_user_passwd = NULL;

GQuark
gs_auth_error_quark (void)
{
	static GQuark quark = 0;
	if (! quark)
	{
		quark = g_quark_from_static_string ("gs_auth_error");
	}

	return quark;
}

void
gs_auth_set_verbose (gboolean enabled)
{
	verbose_enabled = enabled;
}

gboolean
gs_auth_get_verbose (void)
{
	return verbose_enabled;
}

static gboolean
passwd_known (const char *pw)
{
	return (pw &&
	        pw[0] != '*' &&	/* This would be sensible...         */
	        strlen (pw) > 4);	/* ...but this is what Solaris does. */
}

static char *
get_encrypted_passwd (const char *user)
{
	char *result = NULL;

#ifdef PWTYPE
	if (user && *user && !result)
	{
		/* First check the shadow passwords. */
		PWTYPE p = GETPW ((char *) user);
		if (p && passwd_known (p->PWPSLOT))
		{
			result = g_strdup (p->PWPSLOT);
		}
	}
#endif /* PWTYPE */

	if (user && *user && !result)
	{
		/* Check non-shadow passwords too. */
		struct passwd *p = getpwnam (user);
		if (p && passwd_known (p->pw_passwd))
		{
			result = g_strdup (p->pw_passwd);
		}
	}

	/* The manual for passwd(4) on HPUX 10.10 says:

	Password aging is put in effect for a particular user if his
	encrypted password in the password file is followed by a comma and
	a nonnull string of characters from the above alphabet.  This
	string defines the "age" needed to implement password aging.

	So this means that passwd->pw_passwd isn't simply a string of cyphertext,
	it might have trailing junk.  So, if there is a comma in the string, and
	that comma is beyond position 13, terminate the string before the comma.
	*/
	if (result && strlen (result) > 13)
	{
		char *s = strchr (result + 13, ',');
		if (s)
		{
			*s = 0;
		}
	}

#ifndef HAVE_PAM
	/* We only issue this warning if not compiled with support for PAM.
	   If we're using PAM, it's not unheard of that normal pwent passwords
	   would be unavailable. */

	if (!result)
	{
		g_warning ("Couldn't get password of \"%s\"",
		           (user ? user : "(null)"));
	}

#endif /* !HAVE_PAM */

	return result;
}

/* This has to be called before we've changed our effective user ID,
   because it might need privileges to get at the encrypted passwords.
   Returns false if we weren't able to get any passwords, and therefore,
   locking isn't possible.  (It will also have written to stderr.)
*/

gboolean
gs_auth_priv_init (void)
{
	const char *u;

	u = g_get_user_name ();

	encrypted_user_passwd = get_encrypted_passwd (u);

	if (encrypted_user_passwd != NULL)
	{
		return TRUE;
	}
	else
	{
		return FALSE;
	}
}


gboolean
gs_auth_init (void)
{
	if (encrypted_user_passwd != NULL)
	{
		return TRUE;
	}
	else
	{
		return FALSE;
	}
}

static gboolean
passwds_match (const char *cleartext,
               const char *ciphertext)
{
	char *s = NULL;  /* note that on some systems, crypt() may return null */

	s = (char *) crypt (cleartext, ciphertext);
	if (s && !strcmp (s, ciphertext))
	{
		return TRUE;
	}

#ifdef HAVE_BIGCRYPT
	/* There seems to be no way to tell at runtime if an HP machine is in
	   "trusted" mode, and thereby, which of crypt() or bigcrypt() we should
	   be calling to compare passwords.  So call them both, and see which
	   one works. */

	s = (char *) bigcrypt (cleartext, ciphertext);
	if (s && !strcmp (s, ciphertext))
	{
		return TRUE;
	}

#endif /* HAVE_BIGCRYPT */

	return FALSE;
}

gboolean
gs_auth_verify_user (const char       *username,
                     const char       *display,
                     GSAuthMessageFunc func,
                     gpointer          data,
                     GError          **error)
{
	char *password;

	password = NULL;

	/* ask for the password for user */
	if (func != NULL)
	{
		func (GS_AUTH_MESSAGE_PROMPT_ECHO_OFF,
		      "Password: ",
		      &password,
		      data);
	}

	if (password == NULL)
	{
		return FALSE;
	}

	if (encrypted_user_passwd && passwds_match (password, encrypted_user_passwd))
	{
		return TRUE;
	}
	else
	{
		return FALSE;
	}
}