]> git.decadent.org.uk Git - nfs-utils.git/blob - support/gssapi/gssd_pname_to_uid.c
release 1.0.7-pre2
[nfs-utils.git] / support / gssapi / gssd_pname_to_uid.c
1 /* #ident  "@(#)gssd_pname_to_uid.c 1.5     95/08/02 SMI" */
2
3 /*
4  * Copyright 1996 by Sun Microsystems, Inc.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software
7  * and its documentation for any purpose is hereby granted without fee,
8  * provided that the above copyright notice appears in all copies and
9  * that both that copyright notice and this permission notice appear in
10  * supporting documentation, and that the name of Sun Microsystems not be used
11  * in advertising or publicity pertaining to distribution of the software
12  * without specific, written prior permission. Sun Microsystems makes no
13  * representations about the suitability of this software for any
14  * purpose.  It is provided "as is" without express or implied warranty.
15  *
16  * SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18  * EVENT SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
20  * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
21  * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22  * PERFORMANCE OF THIS SOFTWARE.
23  */
24
25 /*
26  *  glue routines that test the mech id either passed in to
27  *  gss_init_sec_contex() or gss_accept_sec_context() or within the glue
28  *  routine supported version of the security context and then call
29  *  the appropriate underlying mechanism library procedure.
30  *
31  */
32
33 #include "mglueP.h"
34
35 int gssd_pname_to_uid(pname, name_type, mech_type, uid)
36
37 char * pname;
38 gss_OID name_type;
39 gss_OID mech_type;
40 uid_t * uid;
41 {
42     int status;
43     gss_mechanism       mech;
44
45     gss_initialize();
46
47     /*
48      * find the appropriate mechanism specific pname_to_uid procedure and
49      * call it.
50      */
51
52     mech = __gss_get_mechanism (mech_type);
53
54     if (mech) {
55         if (mech_type == GSS_C_NULL_OID)
56             mech_type = &mech->mech_type;
57
58         if (mech->pname_to_uid)
59 #ifdef USE_MECH_CONTEXT
60                 status = mech->pname_to_uid(mech->context,
61 #else
62                 status = mech->pname_to_uid(
63 #endif
64                                         pname, name_type, mech_type, uid);
65         else
66             status = GSS_S_BAD_MECH;
67     } else
68         status = GSS_S_BAD_MECH;
69
70     return(status);
71 }