Added missing * to function pointer deference
[krb5.git] / src / lib / krb5 / keytab / ktbase.c
1 /*
2  * lib/krb5/keytab/ktbase.c
3  *
4  * Copyright 1990 by the Massachusetts Institute of Technology.
5  * All Rights Reserved.
6  *
7  * Export of this software from the United States of America may
8  *   require a specific license from the United States Government.
9  *   It is the responsibility of any person or organization contemplating
10  *   export to obtain such a license before exporting.
11  * 
12  * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
13  * distribute this software and its documentation for any purpose and
14  * without fee is hereby granted, provided that the above copyright
15  * notice appear in all copies and that both that copyright notice and
16  * this permission notice appear in supporting documentation, and that
17  * the name of M.I.T. not be used in advertising or publicity pertaining
18  * to distribution of the software without specific, written prior
19  * permission.  M.I.T. makes no representations about the suitability of
20  * this software for any purpose.  It is provided "as is" without express
21  * or implied warranty.
22  * 
23  *
24  * Registration functions for keytab.
25  */
26
27
28 #include <krb5/krb5.h>
29 #include <krb5/ext-proto.h>
30
31 struct krb5_kt_typelist
32  {
33   krb5_kt_ops *ops;
34   struct krb5_kt_typelist *next;
35  };
36 static struct krb5_kt_typelist krb5_kt_typelist_dfl = { &krb5_kt_dfl_ops, 0 };
37 static struct krb5_kt_typelist *kt_typehead = &krb5_kt_typelist_dfl;
38
39 /*
40  * Register a new key table type
41  * don't replace if it already exists; return an error instead.
42  */
43
44 krb5_error_code
45 krb5_kt_register(ops)
46 krb5_kt_ops *ops;
47 {
48     struct krb5_kt_typelist *t;
49     for (t = kt_typehead;t && strcmp(t->ops->prefix,ops->prefix);t = t->next)
50         ;
51     if (t) {
52         return KRB5_KT_TYPE_EXISTS;
53     }
54     if (!(t = (struct krb5_kt_typelist *) malloc(sizeof(*t))))
55         return ENOMEM;
56     t->next = kt_typehead;
57     t->ops = ops;
58     kt_typehead = t;
59     return 0;
60 }
61
62 /*
63  * Resolve a key table name into a keytab object.
64  *
65  * The name is currently constrained to be of the form "type:residual";
66  *
67  * The "type" portion corresponds to one of the registered key table
68  * types, while the "residual" portion is specific to the
69  * particular keytab type.
70  */
71
72 krb5_error_code krb5_kt_resolve (name, ktid)
73     const char *name;
74     krb5_keytab *ktid;
75 {
76     struct krb5_kt_typelist *tlist;
77     char *pfx, *resid, *cp;
78     int pfxlen;
79     
80     cp = strchr (name, ':');
81     if (!cp) {
82             return (*krb5_kt_dfl_ops.resolve)(name, ktid);
83     }
84
85     pfxlen = cp - (char *)name;
86     resid = (char *)name + pfxlen + 1;
87         
88     pfx = malloc (pfxlen+1);
89     if (!pfx)
90         return ENOMEM;
91
92     memcpy (pfx, name, pfxlen);
93     pfx[pfxlen] = '\0';
94
95     *ktid = (krb5_keytab) 0;
96
97     for (tlist = kt_typehead; tlist; tlist = tlist->next) {
98         if (strcmp (tlist->ops->prefix, pfx) == 0) {
99             free(pfx);
100             return (*tlist->ops->resolve)(resid, ktid);
101         }
102     }
103     free(pfx);
104     return KRB5_KT_UNKNOWN_TYPE;
105 }