]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/gssd/svcgssd_mech2file.c
Check that the gssapi library is usable early on.
[nfs-utils.git] / utils / gssd / svcgssd_mech2file.c
1 /*
2   linux_downcall.c
3
4   Copyright (c) 2000 The Regents of the University of Michigan.
5   All rights reserved.
6
7   Copyright (c) 2004 Andy Adamson <andros@UMICH.EDU>.
8   All rights reserved, all wrongs reversed.
9
10   Redistribution and use in source and binary forms, with or without
11   modification, are permitted provided that the following conditions
12   are met:
13
14   1. Redistributions of source code must retain the above copyright
15      notice, this list of conditions and the following disclaimer.
16   2. Redistributions in binary form must reproduce the above copyright
17      notice, this list of conditions and the following disclaimer in the
18      documentation and/or other materials provided with the distribution.
19   3. Neither the name of the University nor the names of its
20      contributors may be used to endorse or promote products derived
21      from this software without specific prior written permission.
22
23   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
24   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26   DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30   BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
35 */
36
37 #include "config.h"
38
39 #ifdef HAVE_KRB5
40 #include <gssapi/gssapi_generic.h>
41 #elif HAVE_HEIMDAL
42 #include <gssapi.h>
43 #endif
44 #include <string.h>
45
46
47 #define g_OID_equal(o1,o2) \
48    (((o1)->length == (o2)->length) && \
49     (memcmp((o1)->elements,(o2)->elements,(int) (o1)->length) == 0))
50
51 struct mech2file {
52         gss_OID_desc mech;
53         char         filename[8];
54 };
55
56 struct mech2file m2f[] = {
57         {{9, "\052\206\110\206\367\022\001\002\002"}, "krb5"},
58         {{7, "\053\006\001\005\005\001\003"}, "spkm3"},
59         {{7, "\053\006\001\005\005\001\009"}, "lipkey"},
60         {{0,0},""},
61 };
62
63 /*
64  * Find the Linux svcgssd downcall file name given the mechanism
65  */
66 char *
67 mech2file(gss_OID mech)
68 {
69         struct mech2file *m2fp = m2f;
70
71         while(m2fp->mech.length != 0) {
72                 if (g_OID_equal(mech,&m2fp->mech))
73                         return(m2fp->filename);
74                 m2fp++;
75         }
76         return NULL;
77 }