auth: avoid excessive stat of cellservdb
[openafs.git] / src / auth / cellconfig.p.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11 cellconfig.h:
12
13     Interface to the routines used by the FileServer to manipulate the cell/server database
14     for the Cellular Andrew system, along with an operation to determine the name of the
15     local cell.  Included are a string variable used to hold the local cell name, definitions for
16     the database file format and routines for:
17         1) Acquiring the local cell name.
18         2) Reading in the cell/server database from disk.
19         3) Reporting the set of servers associated with a given cell name.
20         4) Printing out the contents of the cell/server database.
21         5) Reclaiming the space used by an in-memory database.
22
23 Creation date:
24     17 August 1987
25
26 --------------------------------------------------------------------------------------------------------------*/
27
28 #ifndef __CELLCONFIG_AFS_INCL_
29 #define __CELLCONFIG_AFS_INCL_  1
30
31 #ifndef IPPROTO_MAX
32         /* get sockaddr_in */
33 #ifdef AFS_NT40_ENV
34 #include <winsock2.h>
35 #else
36 #include <sys/types.h>
37 #include <netinet/in.h>
38 #endif
39 #endif
40 #include <rx/rx_opaque.h>
41 #include <opr/queue.h>
42
43 #define MAXCELLCHARS    64
44 #define MAXHOSTCHARS    64
45 #define MAXHOSTSPERCELL  8
46
47 /*
48  * Return codes.
49  */
50 #define AFSCONF_SUCCESS   0     /* worked */
51
52 /*
53  * Complete server info for one cell.
54  */
55 struct afsconf_cell {
56     char name[MAXCELLCHARS];    /*Cell name */
57     short numServers;           /*Num active servers for the cell */
58     short flags;                /* useful flags */
59     struct sockaddr_in hostAddr[MAXHOSTSPERCELL];       /*IP addresses for cell's servers */
60     char hostName[MAXHOSTSPERCELL][MAXHOSTCHARS];       /*Names for cell's servers */
61     char *linkedCell;           /* Linked cell name, if any */
62     int timeout;                /* Data timeout, if non-zero */
63 };
64
65 #define AFSCONF_CELL_FLAG_DNS_QUERIED   1
66
67 struct afsconf_cellalias {
68     char aliasName[MAXCELLCHARS];
69     char realName[MAXCELLCHARS];
70 };
71
72 struct afsconf_entry {
73     struct afsconf_entry *next; /* next guy in afsconf_dir */
74     struct afsconf_cell cellInfo;       /* info for this cell */
75 };
76
77 struct afsconf_aliasentry {
78     struct afsconf_aliasentry *next;
79     struct afsconf_cellalias aliasInfo;
80 };
81
82 /*!
83  * A set of bit flags to control the selection of a security object
84  */
85 #define AFSCONF_SECOPTS_NOAUTH        0x1
86 #define AFSCONF_SECOPTS_LOCALAUTH     0x2
87 #define AFSCONF_SECOPTS_ALWAYSENCRYPT 0x4
88 #define AFSCONF_SECOPTS_FALLBACK_NULL 0x8
89 typedef afs_uint32 afsconf_secflags;
90
91 struct afsconf_dir {
92     char *name;                 /* pointer to dir prefix */
93     char *cellName;             /* cell name, if any, we're in */
94     struct afsconf_entry *entries;      /* list of cell entries */
95     struct opr_queue keyList;           /* list of keys */
96     afs_int32 timeRead;         /* time stamp of file last read */
97     afs_int32 timeCheck;        /* time of last check for update */
98     struct afsconf_aliasentry *alias_entries;   /* cell aliases */
99     afsconf_secflags securityFlags;
100 };
101
102 extern afs_int32 afsconf_FindService(const char *aname);
103 extern const char *afsconf_FindIANAName(const char *aname);
104 extern struct afsconf_dir *afsconf_Open(const char *adir);
105 extern int afsconf_CellApply(struct afsconf_dir *adir,
106                              int (*aproc) (struct afsconf_cell * cell,
107                                            void *arock,
108                                            struct afsconf_dir * dir),
109                              void *arock);
110 extern int afsconf_CellAliasApply(struct afsconf_dir *adir,
111                                   int (*aproc) (struct afsconf_cellalias *
112                                                 alias, void *arock,
113                                                 struct afsconf_dir * dir),
114                                   void *arock);
115 extern int afsconf_GetExtendedCellInfo(struct afsconf_dir *adir,
116                                        char *acellName, char *aservice,
117                                        struct afsconf_cell *acellInfo,
118                                        char clones[]);
119 extern int afsconf_GetAfsdbInfo(char *acellName, char *aservice,
120                                 struct afsconf_cell *acellInfo);
121 extern int afsconf_GetCellInfo(struct afsconf_dir *adir, char *acellName,
122                                char *aservice,
123                                struct afsconf_cell *acellInfo);
124 extern int afsconf_GetLocalCell(struct afsconf_dir *adir,
125                                 char *aname, afs_int32 alen);
126 extern int afsconf_Close(struct afsconf_dir *adir);
127 extern int afsconf_UpToDate(void *rock);
128
129 struct afsconf_keys;
130 extern int afsconf_GetKeys(struct afsconf_dir *adir,
131                            struct afsconf_keys *astr);
132
133 struct ktc_encryptionKey;
134 extern afs_int32 afsconf_GetLatestKey(struct afsconf_dir *adir,
135                                       afs_int32 * avno,
136                                       struct ktc_encryptionKey *akey);
137 extern int afsconf_GetKey(void *rock, int avno,
138                           struct ktc_encryptionKey *akey);
139 extern int afsconf_AddKey(struct afsconf_dir *adir, afs_int32 akvno,
140                           char akey[8], afs_int32 overwrite);
141 extern int afsconf_DeleteKey(struct afsconf_dir *adir, afs_int32 akvno);
142
143 struct afsconf_typedKey;
144 struct afsconf_typedKeyList {
145     int nkeys;
146     struct afsconf_typedKey **keys;
147 };
148
149 typedef enum {
150     afsconf_rxkad = 0,
151     afsconf_rxgk  =1
152 } afsconf_keyType;
153
154 extern struct afsconf_typedKey *
155         afsconf_typedKey_get(struct afsconf_typedKey *);
156 extern void afsconf_typedKey_put(struct afsconf_typedKey **);
157 extern struct afsconf_typedKey *
158         afsconf_typedKey_new(afsconf_keyType type, int kvno,
159                              int subType, struct rx_opaque *key);
160 extern void afsconf_typedKey_free(struct afsconf_typedKey **);
161
162 extern void afsconf_typedKey_values(struct afsconf_typedKey *key,
163                                   afsconf_keyType *type,
164                                   int *kvno,
165                                   int *minorType,
166                                   struct rx_opaque **keyMaterial);
167
168 extern int afsconf_GetAllKeys(struct afsconf_dir *,
169                               struct afsconf_typedKeyList **);
170 extern int afsconf_GetKeysByType(struct afsconf_dir *dir,
171                                  afsconf_keyType type, int kvno,
172                                  struct afsconf_typedKeyList **);
173 extern int afsconf_GetKeyByTypes(struct afsconf_dir *dir,
174                                  afsconf_keyType type, int kvno, int subType,
175                                  struct afsconf_typedKey **);
176 extern int afsconf_GetLatestKeysByType(struct afsconf_dir *dir,
177                                        afsconf_keyType type,
178                                        struct afsconf_typedKeyList **);
179 extern int afsconf_GetLatestKeyByTypes(struct afsconf_dir *dir,
180                                        afsconf_keyType type, int subType,
181                                        struct afsconf_typedKey **);
182 extern void afsconf_PutTypedKeyList(struct afsconf_typedKeyList **keys);
183 extern int afsconf_AddTypedKey(struct afsconf_dir *dir,
184                                struct afsconf_typedKey *key,
185                                int overwrite);
186 extern int afsconf_DeleteKeyByType(struct afsconf_dir *dir,
187                                    afsconf_keyType type, int kvno);
188 extern int afsconf_DeleteKeyBySubType(struct afsconf_dir *dir,
189                                       afsconf_keyType type, int kvno,
190                                       int subType);
191
192 /* authcon.c */
193 struct rx_securityClass;
194 extern afs_int32 afsconf_ServerAuth(void *arock,
195                                     struct rx_securityClass **,
196                                     afs_int32 *);
197 extern afs_int32 afsconf_ClientAuth(void *arock,
198                                     struct rx_securityClass **astr,
199                                     afs_int32 * aindex);
200 extern afs_int32 afsconf_ClientAuthSecure(void *arock,
201                                           struct rx_securityClass **astr,
202                                           afs_int32 * aindex);
203
204
205 extern afs_int32 afsconf_ClientAuthToken(struct afsconf_cell *info,
206                                          afsconf_secflags flags,
207                                          struct rx_securityClass **sc,
208                                          afs_int32 *scIndex,
209                                          time_t *expires);
210
211
212 extern afs_int32 afsconf_PickClientSecObj(struct afsconf_dir *dir,
213                                           afsconf_secflags flags,
214                                           struct afsconf_cell *info,
215                                           char *cellName,
216                                           struct rx_securityClass **sc,
217                                           afs_int32 *scIndex,
218                                           time_t *expires);
219
220 extern void afsconf_SetSecurityFlags(struct afsconf_dir *dir,
221                                      afsconf_secflags flags);
222
223 extern void afsconf_BuildServerSecurityObjects(void *,
224                                                struct rx_securityClass ***,
225                                                afs_int32 *);
226
227 /* writeconfig.c */
228 int afsconf_SetExtendedCellInfo(struct afsconf_dir *adir, const char *apath,
229                                 struct afsconf_cell *acellInfo, char clones[]);
230 int afsconf_SetCellInfo(struct afsconf_dir *adir, const char *apath,
231                         struct afsconf_cell *acellInfo);
232
233
234 /* userok.c */
235
236 struct rx_call;
237 struct rx_identity;
238 extern int afsconf_CheckAuth(void *arock, struct rx_call *acall);
239 extern int afsconf_GetNoAuthFlag(struct afsconf_dir *adir);
240 extern void afsconf_SetNoAuthFlag(struct afsconf_dir *adir, int aflag);
241 extern int afsconf_DeleteUser(struct afsconf_dir *adir, char *auser);
242 extern int afsconf_DeleteIdentity(struct afsconf_dir *, struct rx_identity *);
243 extern int afsconf_GetNthUser(struct afsconf_dir *adir, afs_int32 an,
244                               char *abuffer, afs_int32 abufferLen);
245 extern int afsconf_GetNthIdentity(struct afsconf_dir *, int,
246                                   struct rx_identity **);
247 extern int afsconf_AddUser(struct afsconf_dir *adir, char *aname);
248 extern int afsconf_AddIdentity(struct afsconf_dir *adir, struct rx_identity *);
249 extern int afsconf_SuperUser(struct afsconf_dir *adir, struct rx_call *acall,
250                              char *namep);
251 extern int afsconf_SuperIdentity(struct afsconf_dir *, struct rx_call *,
252                                  struct rx_identity **);
253 extern int afsconf_IsSuperIdentity(struct afsconf_dir *, struct rx_identity *);
254
255 /* some well-known ports and their names; new additions to table in cellconfig.c, too */
256 #define AFSCONF_FILESERVICE             "afs"
257 #define AFSCONF_FILEPORT                7000
258 #define AFSCONF_CALLBACKSERVICE         "afscb"
259 #define AFSCONF_CALLBACKPORT            7001
260 #define AFSCONF_PROTSERVICE             "afsprot"
261 #define AFSCONF_PROTPORT                7002
262 #define AFSCONF_VLDBSERVICE             "afsvldb"
263 #define AFSCONF_VLDBPORT                7003
264 #define AFSCONF_KAUTHSERVICE            "afskauth"
265 #define AFSCONF_KAUTHPORT               7004
266 #define AFSCONF_VOLUMESERVICE           "afsvol"
267 #define AFSCONF_VOLUMEPORT              7005
268 #define AFSCONF_ERRORSERVICE            "afserror"
269 #define AFSCONF_ERRORPORT               7006
270 #define AFSCONF_NANNYSERVICE            "afsnanny"
271 #define AFSCONF_NANNYPORT               7007
272 #define AFSCONF_UPDATESERVICE           "afsupdate"
273 #define AFSCONF_UPDATEPORT              7008
274 #define AFSCONF_RMTSYSSERVICE           "afsrmtsys"
275 #define AFSCONF_RMTSYSPORT              7009
276 #define AFSCONF_RSDBSERVICE             "afsres"
277 #define AFSCONF_RESPORT                 7010
278 #define AFSCONF_REMIODBSERVICE          "afsremio"
279 #define AFSCONF_REMIOPORT               7011
280
281 #endif /* __CELLCONFIG_AFS_INCL_ */