4 Copyright (c) 2000 The Regents of the University of Michigan.
7 Copyright (c) 2004 Andy Adamson <andros@UMICH.EDU>.
8 All rights reserved, all wrongs reversed.
10 Redistribution and use in source and binary forms, with or without
11 modification, are permitted provided that the following conditions
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.
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.
40 #include <gssapi/gssapi_generic.h>
47 #define g_OID_equal(o1,o2) \
48 (((o1)->length == (o2)->length) && \
49 (memcmp((o1)->elements,(o2)->elements,(int) (o1)->length) == 0))
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"},
64 * Find the Linux svcgssd downcall file name given the mechanism
67 mech2file(gss_OID mech)
69 struct mech2file *m2fp = m2f;
71 while(m2fp->mech.length != 0) {
72 if (g_OID_equal(mech,&m2fp->mech))
73 return(m2fp->filename);