nfs-ganesha 1.4
|
00001 /* 00002 linux_downcall.c 00003 00004 Copyright (c) 2000 The Regents of the University of Michigan. 00005 All rights reserved. 00006 00007 Copyright (c) 2004 Andy Adamson <andros@UMICH.EDU>. 00008 All rights reserved, all wrongs reversed. 00009 00010 Redistribution and use in source and binary forms, with or without 00011 modification, are permitted provided that the following conditions 00012 are met: 00013 00014 1. Redistributions of source code must retain the above copyright 00015 notice, this list of conditions and the following disclaimer. 00016 2. Redistributions in binary form must reproduce the above copyright 00017 notice, this list of conditions and the following disclaimer in the 00018 documentation and/or other materials provided with the distribution. 00019 3. Neither the name of the University nor the names of its 00020 contributors may be used to endorse or promote products derived 00021 from this software without specific prior written permission. 00022 00023 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 00024 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 00025 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 00026 DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 00027 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00028 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00029 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 00030 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00031 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00032 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00033 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00034 00035 */ 00036 00037 #ifdef HAVE_CONFIG_H 00038 #include <config.h> 00039 #endif /* HAVE_CONFIG_H */ 00040 00041 #include <gssapi/gssapi.h> 00042 #include <string.h> 00043 00044 00045 #define g_OID_equal(o1,o2) \ 00046 (((o1)->length == (o2)->length) && \ 00047 (memcmp((o1)->elements,(o2)->elements,(int) (o1)->length) == 0)) 00048 00049 struct mech2file { 00050 gss_OID_desc mech; 00051 char filename[8]; 00052 }; 00053 00054 struct mech2file m2f[] = { 00055 {{9, "\052\206\110\206\367\022\001\002\002"}, "krb5"}, 00056 {{7, "\053\006\001\005\005\001\003"}, "spkm3"}, 00057 {{7, "\053\006\001\005\005\001\009"}, "lipkey"}, 00058 {{0,0},""}, 00059 }; 00060 00061 /* 00062 * Find the Linux svcgssd downcall file name given the mechanism 00063 */ 00064 char * 00065 mech2file(gss_OID mech) 00066 { 00067 struct mech2file *m2fp = m2f; 00068 00069 while(m2fp->mech.length != 0) { 00070 if (g_OID_equal(mech,&m2fp->mech)) 00071 return(m2fp->filename); 00072 m2fp++; 00073 } 00074 return NULL; 00075 }