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 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
|
/* $Id: ckpasswd.c 7565 2006-08-28 02:42:54Z eagle $
**
** The default username/password authenticator.
**
** This program is intended to be run by nnrpd and handle usernames and
** passwords. It can authenticate against a regular flat file (the type
** managed by htpasswd), a DBM file, the system password file or shadow file,
** or PAM.
*/
#include "config.h"
#include "clibrary.h"
#include "inn/messages.h"
#include "inn/qio.h"
#include "inn/vector.h"
#include "libinn.h"
#include "libauth.h"
#if HAVE_CRYPT_H
# include <crypt.h>
#endif
#include <fcntl.h>
#include <pwd.h>
#include <grp.h>
#if defined(HAVE_DBM) || defined(HAVE_BDB_DBM)
# if HAVE_NDBM_H
# include <ndbm.h>
# elif HAVE_BDB_DBM
# define DB_DBM_HSEARCH 1
# include <db.h>
# elif HAVE_GDBM_NDBM_H
# include <gdbm-ndbm.h>
# elif HAVE_DB1_NDBM_H
# include <db1/ndbm.h>
# endif
# define OPT_DBM "d:"
#else
# define OPT_DBM ""
#endif
#if HAVE_GETSPNAM
# include <shadow.h>
# define OPT_SHADOW "s"
#else
# define OPT_SHADOW ""
#endif
#if HAVE_PAM
# if HAVE_PAM_PAM_APPL_H
# include <pam/pam_appl.h>
# else
# include <security/pam_appl.h>
# endif
#endif
/*
** The PAM conversation function.
**
** Since we already have all the information and can't ask the user
** questions, we can't quite follow the real PAM protocol. Instead, we just
** return the password in response to every question that PAM asks. There
** appears to be no generic way to determine whether the message in question
** is indeed asking for the password....
**
** This function allocates an array of struct pam_response to return to the
** PAM libraries that's never freed. For this program, this isn't much of an
** issue, since it will likely only be called once and then the program will
** exit. This function uses malloc and strdup instead of xmalloc and xstrdup
** intentionally so that the PAM conversation will be closed cleanly if we
** run out of memory rather than simply terminated.
**
** appdata_ptr contains the password we were given.
*/
#if HAVE_PAM
static int
pass_conv(int num_msg, const struct pam_message **msgm UNUSED,
struct pam_response **response, void *appdata_ptr)
{
int i;
*response = malloc(num_msg * sizeof(struct pam_response));
if (*response == NULL)
return PAM_CONV_ERR;
for (i = 0; i < num_msg; i++) {
(*response)[i].resp = strdup((char *)appdata_ptr);
(*response)[i].resp_retcode = 0;
}
return PAM_SUCCESS;
}
#endif /* HAVE_PAM */
/*
** Authenticate a user via PAM.
**
** Attempts to authenticate a user with PAM, returning true if the user
** successfully authenticates and false otherwise. Note that this function
** doesn't attempt to handle any remapping of the authenticated user by the
** PAM stack, but just assumes that the authenticated user was the same as
** the username given.
**
** Right now, all failures are handled via die. This may be worth revisiting
** in case we want to try other authentication methods if this fails for a
** reason other than the system not having PAM support.
*/
#if !HAVE_PAM
static bool
auth_pam(char *username UNUSED, char *password UNUSED)
{
return false;
}
#else
static bool
auth_pam(const char *username, char *password)
{
pam_handle_t *pamh;
struct pam_conv conv;
int status;
conv.conv = pass_conv;
conv.appdata_ptr = password;
status = pam_start("nnrpd", username, &conv, &pamh);
if (status != PAM_SUCCESS)
die("pam_start failed: %s", pam_strerror(pamh, status));
status = pam_authenticate(pamh, PAM_SILENT);
if (status != PAM_SUCCESS)
die("pam_authenticate failed: %s", pam_strerror(pamh, status));
status = pam_acct_mgmt(pamh, PAM_SILENT);
if (status != PAM_SUCCESS)
die("pam_acct_mgmt failed: %s", pam_strerror(pamh, status));
status = pam_end(pamh, status);
if (status != PAM_SUCCESS)
die("pam_end failed: %s", pam_strerror(pamh, status));
/* If we get to here, the user successfully authenticated. */
return true;
}
#endif /* HAVE_PAM */
/*
** Try to get a password out of a dbm file. The dbm file should have the
** username for the key and the crypted password as the value. The crypted
** password, if found, is returned as a newly allocated string; otherwise,
** NULL is returned.
*/
#if !(defined(HAVE_DBM) || defined(HAVE_BDB_DBM))
static char *
password_dbm(char *user UNUSED, const char *file UNUSED)
{
return NULL;
}
#else
static char *
password_dbm(char *name, const char *file)
{
datum key, value;
DBM *database;
char *password;
database = dbm_open(file, O_RDONLY, 0600);
if (database == NULL)
return NULL;
key.dptr = name;
key.dsize = strlen(name);
value = dbm_fetch(database, key);
if (value.dptr == NULL) {
dbm_close(database);
return NULL;
}
password = xmalloc(value.dsize + 1);
strlcpy(password, value.dptr, value.dsize + 1);
dbm_close(database);
return password;
}
#endif /* HAVE_DBM || HAVE_BDB_DBM */
/*
** Try to get a password out of the system /etc/shadow file. The crypted
** password, if found, is returned as a newly allocated string; otherwise,
** NULL is returned.
*/
#if !HAVE_GETSPNAM
static char *
password_shadow(const char *user UNUSED)
{
return NULL;
}
#else
static char *
password_shadow(const char *user)
{
struct spwd *spwd;
spwd = getspnam(user);
if (spwd != NULL)
return xstrdup(spwd->sp_pwdp);
return NULL;
}
#endif /* HAVE_GETSPNAM */
/*
** Try to get a password out of a file. The crypted password, if found, is
** returned as a newly allocated string; otherwise, NULL is returned.
*/
static char *
password_file(const char *username, const char *file)
{
QIOSTATE *qp;
char *line, *password;
struct cvector *info = NULL;
qp = QIOopen(file);
if (qp == NULL)
return NULL;
for (line = QIOread(qp); line != NULL; line = QIOread(qp)) {
if (*line == '#' || *line == '\n')
continue;
info = cvector_split(line, ':', info);
if (info->count < 2 || strcmp(info->strings[0], username) != 0)
continue;
password = xstrdup(info->strings[1]);
QIOclose(qp);
cvector_free(info);
return password;
}
if (QIOtoolong(qp))
die("line too long in %s", file);
if (QIOerror(qp))
sysdie("error reading %s", file);
QIOclose(qp);
cvector_free(info);
return NULL;
}
/*
** Try to get a password out of the system password file. The crypted
** password, if found, is returned as a newly allocated string; otherwise,
** NULL is returned.
*/
static char *
password_system(const char *username)
{
struct passwd *pwd;
pwd = getpwnam(username);
if (pwd != NULL)
return xstrdup(pwd->pw_passwd);
return NULL;
}
/*
** Try to get the name of a user's primary group out of the system group
** file. The group, if found, is returned as a newly allocated string;
** otherwise, NULL is returned. If the username is not found, NULL is
** returned.
*/
static char *
group_system(const char *username)
{
struct passwd *pwd;
struct group *gr;
pwd = getpwnam(username);
if (pwd == NULL)
return NULL;
gr = getgrgid(pwd->pw_gid);
if (gr == NULL)
return NULL;
return xstrdup(gr->gr_name);
}
/*
** Output username (and group, if desired) in correct return format.
*/
static void
output_user(const char *username, bool wantgroup)
{
if (wantgroup) {
char *group = group_system(username);
if (group == NULL)
die("group info for user %s not available", username);
printf("User:%s@%s\n", username, group);
}
else
printf("User:%s\n", username);
}
/*
** Main routine.
**
** We handle the variences between systems with #if blocks above, so that
** this code can look fairly clean.
*/
int
main(int argc, char *argv[])
{
enum authtype { AUTH_NONE, AUTH_SHADOW, AUTH_FILE, AUTH_DBM };
int opt;
enum authtype type = AUTH_NONE;
bool wantgroup = false;
const char *filename = NULL;
struct auth_info *authinfo = NULL;
char *password = NULL;
message_program_name = "ckpasswd";
while ((opt = getopt(argc, argv, "gf:u:p:" OPT_DBM OPT_SHADOW)) != -1) {
switch (opt) {
case 'g':
if (type == AUTH_DBM || type == AUTH_FILE)
die("-g option is incompatible with -d or -f");
wantgroup = true;
break;
case 'd':
if (type != AUTH_NONE)
die("only one of -s, -f, or -d allowed");
if (wantgroup)
die("-g option is incompatible with -d or -f");
type = AUTH_DBM;
filename = optarg;
break;
case 'f':
if (type != AUTH_NONE)
die("only one of -s, -f, or -d allowed");
if (wantgroup)
die("-g option is incompatible with -d or -f");
type = AUTH_FILE;
filename = optarg;
break;
case 's':
if (type != AUTH_NONE)
die("only one of -s, -f, or -d allowed");
type = AUTH_SHADOW;
break;
case 'u':
if (authinfo == NULL) {
authinfo = xmalloc(sizeof(struct auth_info));
authinfo->password = NULL;
}
authinfo->username = optarg;
break;
case 'p':
if (authinfo == NULL) {
authinfo = xmalloc(sizeof(struct auth_info));
authinfo->username = NULL;
}
authinfo->password = optarg;
break;
default:
exit(1);
}
}
if (argc != optind)
die("extra arguments given");
if (authinfo != NULL && authinfo->username == NULL)
die("-u option is required if -p option is given");
if (authinfo != NULL && authinfo->password == NULL)
die("-p option is required if -u option is given");
/* Unless a username or password was given on the command line, assume
we're being run by nnrpd. */
if (authinfo == NULL)
authinfo = get_auth_info(stdin);
if (authinfo == NULL)
die("no authentication information from nnrpd");
if (authinfo->username[0] == '\0')
die("null username");
/* Run the appropriate authentication routines. */
switch (type) {
case AUTH_SHADOW:
password = password_shadow(authinfo->username);
if (password == NULL)
password = password_system(authinfo->username);
break;
case AUTH_FILE:
password = password_file(authinfo->username, filename);
break;
case AUTH_DBM:
password = password_dbm(authinfo->username, filename);
break;
case AUTH_NONE:
if (auth_pam(authinfo->username, authinfo->password)) {
output_user(authinfo->username, wantgroup);
exit(0);
}
password = password_system(authinfo->username);
break;
}
if (password == NULL)
die("user %s unknown", authinfo->username);
if (strcmp(password, crypt(authinfo->password, password)) != 0)
die("invalid password for user %s", authinfo->username);
/* The password matched. */
output_user(authinfo->username, wantgroup);
exit(0);
}
|