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
|
/* Verify user/group passwords
Copyright (C) 1997 Free Software Foundation, Inc.
Written by Miles Bader <miles@gnu.ai.mit.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, 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., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <stdlib.h>
#include <string.h>
#include <hurd.h>
#include <ctype.h>
#include <unistd.h>
#include <argp.h>
#include <pwd.h>
#include <grp.h>
#include "ugids.h"
/* Verify that we have the right to the ids in UGIDS, given that we already
possess those in HAVE_UIDS and HAVE_GIDS, asking for passwords where
necessary. 0 is returned if access should be allowed, otherwise
EINVAL if an incorrect password was entered, or an error relating to
resource failure. The GETPASS_FN, GETPASS_HOOK, VERIFY_FN, and
VERIFY_HOOK arguments are as for the idvec_verify function (in <idvec.h>). */
error_t
ugids_verify (const struct ugids *ugids,
const struct idvec *have_uids, const struct idvec *have_gids,
char *(*getpass_fn) (const char *prompt,
uid_t id, int is_group,
void *pwd_or_grp, void *hook),
void *getpass_hook,
error_t (*verify_fn) (const char *password,
uid_t id, int is_group,
void *pwd_or_grp, void *hook),
void *verify_hook)
{
error_t err;
struct idvec check_uids = IDVEC_INIT; /* User-ids to verify. */
struct idvec check_gids = IDVEC_INIT; /* group-ids to verify. */
err = idvec_merge (&check_uids, &ugids->eff_uids);
if (! err)
err = idvec_merge (&check_uids, &ugids->avail_uids);
if (! err)
err = idvec_merge (&check_gids, &ugids->eff_gids);
if (! err)
err = idvec_merge (&check_gids, &ugids->avail_gids);
if (! err)
err = idvec_verify (&check_uids, &check_gids, have_uids, have_gids,
getpass_fn, getpass_hook, verify_fn, verify_hook);
idvec_fini (&check_uids);
idvec_fini (&check_gids);
return err;
}
|