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
|
/*
Copyright (C) 1996, 1999 Free Software Foundation
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 "iohelp.h"
#include <hurd/auth.h>
#include <sys/mman.h>
/* Conduct a reauthentication transaction, returning a new iouser.
AUTHSERVER is the I/O servers auth port. The rendezvous port
provided by the user is REND_PORT. If the transaction cannot be
completed, return zero, unless PERMIT_FAILURE is non-zero. If
PERMIT_FAILURE is nonzero, then should the transaction fail, return
an iouser that has no ids. The new port to be sent to the user is
newright. */
struct iouser *iohelp_reauth (auth_t authserver, mach_port_t rend_port,
mach_port_t newright, int permit_failure)
{
uid_t gubuf[20], ggbuf[20], aubuf[20], agbuf[20];
uid_t *gen_uids, *gen_gids, *aux_uids, *aux_gids;
u_int genuidlen, gengidlen, auxuidlen, auxgidlen;
error_t err;
struct iouser *new;
new = malloc (sizeof (struct iouser));
if (!new)
return 0;
new->uids = make_idvec ();
new->gids = make_idvec ();
if (!new->uids || !new->gids)
{
if (new->uids)
idvec_free (new->uids);
if (new->gids)
idvec_free (new->gids);
free (new);
return 0;
}
genuidlen = gengidlen = auxuidlen = auxgidlen = 20;
gen_uids = gubuf;
gen_gids = ggbuf;
aux_uids = aubuf;
aux_gids = agbuf;
do
err = auth_server_authenticate (authserver,
rend_port,
MACH_MSG_TYPE_COPY_SEND,
newright,
MACH_MSG_TYPE_COPY_SEND,
&gen_uids, &genuidlen,
&aux_uids, &auxuidlen,
&gen_gids, &gengidlen,
&aux_gids, &auxgidlen);
while (err == EINTR);
if (err)
{
if (permit_failure)
genuidlen = gengidlen = 0;
else
goto out;
}
err = idvec_set_ids (new->uids, gen_uids, genuidlen);
if (!err)
err = idvec_set_ids (new->gids, gen_gids, gengidlen);
if (gubuf != gen_uids)
munmap ((caddr_t) gen_uids, genuidlen * sizeof (uid_t));
if (ggbuf != gen_gids)
munmap ((caddr_t) gen_gids, gengidlen * sizeof (uid_t));
if (aubuf != aux_uids)
munmap ((caddr_t) aux_uids, auxuidlen * sizeof (uid_t));
if (agbuf != aux_gids)
munmap ((caddr_t) aux_gids, auxgidlen * sizeof (uid_t));
if (err)
{
out:
idvec_free (new->uids);
idvec_free (new->gids);
free (new);
return 0;
}
return new;
}
|