ptserver-flags-default-switch-20040623
[openafs.git] / src / ptserver / ptserver.c
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  *                      A general description of the supergroup changes
12  *                      to ptserver:
13  *
14  *                      In AFS users can be members of groups. When you add
15  *                      a user, u1, to a group, g1, you add the user id for u1
16  *                      to an entries list in g1. This is a list of all the
17  *                      members of g1.
18  *                      You also add the id for g1 to an entries list in u1.
19  *                      This is a list of all the groups this user is a
20  *                      member of.
21  *                      The list has room for 10 entries. If more are required,
22  *                      a continuation record is created.
23  *
24  *                      With UMICH mods, u1 can be a group. When u1 is a group
25  *                      a new field is required to list the groups this group
26  *                      is a member of (since the entries field is used to
27  *                      list it's members). This new field is supergroups and
28  *                      has two entries. If more are required, a continuation
29  *                      record is formed. 
30  *                      There are two additional fields required, nextsg is
31  *                      an address of the next continuation record for this
32  *                      group, and countsg is the count for the number of 
33  *                      groups this group is a member of.
34  *                   
35  *
36  *
37  *      09/18/95 jjm    Add mdw's changes to afs-3.3a Changes:
38  *                      (1) Add the parameter -groupdepth or -depth to
39  *                          define the maximum search depth for supergroups.
40  *                          Define the variable depthsg to be the value of
41  *                          the parameter. The default value is set to 5.
42  *
43  *                      (3) Make sure the sizes of the struct prentry and
44  *                          struct prentryg are equal. If they aren't equal
45  *                          the pt database will be corrupted.
46  *                          The error is reported with an fprintf statement,
47  *                          but this doesn't print when ptserver is started by
48  *                          bos, so all you see is an error message in the
49  *                          /usr/afs/logs/BosLog file. If you start the
50  *                          ptserver without bos the fprintf will print
51  *                          on stdout.
52  *                          The program will terminate with a PT_EXIT(1).
53  *
54  *
55  *                      Transarc does not currently use opcodes past 520, but
56  *                      they *could* decide at any time to use more opcodes.
57  *                      If they did, then one part of our local mods,
58  *                      ListSupergroups, would break.  I've therefore
59  *                      renumbered it to 530, and put logic in to enable the
60  *                      old opcode to work (for now).
61  *
62  *      2/1/98 jjm      Add mdw's changes for bit mapping for supergroups
63  *                      Overview:
64  *                      Before fetching a supergroup, this version of ptserver
65  *                      checks to see if it was marked "found" and "not a
66  *                      member".  If and only if so, it doesn't fetch the group.
67  *                      Since this should be the case with most groups, this
68  *                      should save a significant amount of CPU in redundant
69  *                      fetches of the same group.  After fetching the group,
70  *                      it sets "found", and either sets or clears "not a
71  *                      member", depending on if the group was a member of
72  *                      other groups.  When it writes group entries to the
73  *                      database, it clears the "found" flag.
74  */
75
76 #if defined(SUPERGROUPS)
77 /*
78  *  A general description of the supergroup changes
79  *  to ptserver:
80  *
81  *  In AFS users can be members of groups. When you add a user, u1,
82  *  to a group, g1, you add the user id for u1 to an entries list
83  *  in g1. This is a list of all the members of g1.  You also add
84  *  the id for g1 to an entries list in u1.  This is a list of all
85  *  the groups this user is a member of.  The list has room for 10
86  *  entries. If more are required, a continuation record is created.
87  *
88  *  With UMICH mods, u1 can be a group. When u1 is a group a new
89  *  field is required to list the groups this group is a member of
90  *  (since the entries field is used to list it's members). This
91  *  new field is supergroups and has two entries. If more are
92  *  required, a continuation record is formed.
93  *
94  *  There are two additional fields required, nextsg is an address
95  *  of the next continuation record for this group, and countsg is
96  *  the count for the number of groups this group is a member of.
97  *
98  *  Bit mapping support for supergroups:
99  *
100  *  Before fetching a supergroup, this version of ptserver checks to
101  *  see if it was marked "found" and "not a member".  If and only if
102  *  so, it doesn't fetch the group.  Since this should be the case
103  *  with most groups, this should save a significant amount of CPU in
104  *  redundant fetches of the same group.  After fetching the group, it
105  *  sets "found", and either sets or clears "not a member", depending
106  *  on if the group was a member of other groups.  When it writes
107  *  group entries to the database, it clears the "found" flag.
108  */
109 #endif
110
111 #include <afsconfig.h>
112 #include <afs/param.h>
113
114 RCSID
115     ("$Header$");
116
117 #include <afs/stds.h>
118 #ifdef  AFS_AIX32_ENV
119 #include <signal.h>
120 #endif
121 #include <sys/types.h>
122 #include <stdio.h>
123 #ifdef AFS_NT40_ENV
124 #include <winsock2.h>
125 #include <WINNT/afsevent.h>
126 #else
127 #include <netdb.h>
128 #include <netinet/in.h>
129 #endif
130 #ifdef HAVE_STRING_H
131 #include <string.h>
132 #else
133 #ifdef HAVE_STRINGS_H
134 #include <strings.h>
135 #endif
136 #endif
137 #include <rx/xdr.h>
138 #include <rx/rx.h>
139 #include <rx/rx_globals.h>
140 #include <lock.h>
141 #include <ubik.h>
142 #include <afs/cellconfig.h>
143 #include <afs/auth.h>
144 #include <afs/keys.h>
145 #include "ptserver.h"
146 #include "error_macros.h"
147 #include "afs/audit.h"
148 #include <afs/afsutil.h>
149
150
151 /* make all of these into a structure if you want */
152 struct prheader cheader;
153 struct ubik_dbase *dbase;
154 struct afsconf_dir *prdir;
155
156 #if defined(SUPERGROUPS)
157 extern afs_int32 depthsg;
158 #endif
159
160 extern int afsconf_ServerAuth();
161 extern int afsconf_CheckAuth();
162
163 int pr_realmNameLen;
164 char *pr_realmName;
165
166 static struct afsconf_cell info;
167
168 extern int prp_group_default;
169 extern int prp_user_default;
170
171 #include "AFS_component_version_number.c"
172
173 int
174 prp_access_mask(s)
175     char *s;
176 {
177     int r;
178     if (*s >= '0' && *s <= '9') {
179         return strtol(s, NULL, 0);
180     }
181     r = 0;
182     while (*s) switch(*s++)
183     {
184     case 'S':   r |= PRP_STATUS_ANY; break;
185     case 's':   r |= PRP_STATUS_MEM; break;
186     case 'O':   r |= PRP_OWNED_ANY; break;
187     case 'M':   r |= PRP_MEMBER_ANY; break;
188     case 'm':   r |= PRP_MEMBER_MEM; break;
189     case 'A':   r |= PRP_ADD_ANY; break;
190     case 'a':   r |= PRP_ADD_MEM; break;
191     case 'r':   r |= PRP_REMOVE_MEM; break;
192     }
193     return r;
194 }
195
196 /* check whether caller is authorized to manage RX statistics */
197 int
198 pr_rxstat_userok(call)
199      struct rx_call *call;
200 {
201     return afsconf_SuperUser(prdir, call, NULL);
202 }
203
204 int
205 main(int argc, char **argv)
206 {
207     register afs_int32 code;
208     afs_int32 myHost;
209     register struct hostent *th;
210     char hostname[64];
211     struct rx_service *tservice;
212     struct rx_securityClass *sc[3];
213     extern int RXSTATS_ExecuteRequest();
214     extern int PR_ExecuteRequest();
215 #if 0
216     struct ktc_encryptionKey tkey;
217 #endif
218     int kerberosKeys;           /* set if found some keys */
219     int lwps = 3;
220     char clones[MAXHOSTSPERCELL];
221
222     const char *pr_dbaseName;
223     char *whoami = "ptserver";
224
225     int a;
226     char arg[100];
227
228 #ifdef  AFS_AIX32_ENV
229     /*
230      * The following signal action for AIX is necessary so that in case of a 
231      * crash (i.e. core is generated) we can include the user's data section 
232      * in the core dump. Unfortunately, by default, only a partial core is
233      * generated which, in many cases, isn't too useful.
234      */
235     struct sigaction nsa;
236
237     sigemptyset(&nsa.sa_mask);
238     nsa.sa_handler = SIG_DFL;
239     nsa.sa_flags = SA_FULLDUMP;
240     sigaction(SIGABRT, &nsa, NULL);
241     sigaction(SIGSEGV, &nsa, NULL);
242 #endif
243     osi_audit(PTS_StartEvent, 0, AUD_END);
244
245     /* Initialize dirpaths */
246     if (!(initAFSDirPath() & AFSDIR_SERVER_PATHS_OK)) {
247 #ifdef AFS_NT40_ENV
248         ReportErrorEventAlt(AFSEVT_SVR_NO_INSTALL_DIR, 0, argv[0], 0);
249 #endif
250         fprintf(stderr, "%s: Unable to obtain AFS server directory.\n",
251                 argv[0]);
252         exit(2);
253     }
254
255     pr_dbaseName = AFSDIR_SERVER_PRDB_FILEPATH;
256
257 #if defined(SUPERGROUPS)
258     /* make sure the structures for database records are the same size */
259     if ((sizeof(struct prentry) != ENTRYSIZE)
260         || (sizeof(struct prentryg) != ENTRYSIZE)) {
261         fprintf(stderr,
262                 "The structures for the database records are different"
263                 " sizes\n" "struct prentry = %d\n" "struct prentryg = %d\n"
264                 "ENTRYSIZE = %d\n", sizeof(struct prentry),
265                 sizeof(struct prentryg), ENTRYSIZE);
266         PT_EXIT(1);
267     }
268 #endif
269
270     for (a = 1; a < argc; a++) {
271         int alen;
272         lcstring(arg, argv[a], sizeof(arg));
273         alen = strlen(arg);
274         if ((strncmp(arg, "-database", alen) == 0)
275             || (strncmp(arg, "-db", alen) == 0)) {
276             pr_dbaseName = argv[++a];   /* specify a database */
277         } else if (strncmp(arg, "-p", alen) == 0) {
278             lwps = atoi(argv[++a]);
279             if (lwps > 16) {    /* maximum of 16 */
280                 printf("Warning: '-p %d' is too big; using %d instead\n",
281                        lwps, 16);
282                 lwps = 16;
283             } else if (lwps < 3) {      /* minimum of 3 */
284                 printf("Warning: '-p %d' is too small; using %d instead\n",
285                        lwps, 3);
286                 lwps = 3;
287             }
288         } else if (strncmp(arg, "-rebuild", alen) == 0) /* rebuildDB++ */
289             ;
290 #if defined(SUPERGROUPS)
291         else if ((strncmp(arg, "-groupdepth", alen) == 0)
292                  || (strncmp(arg, "-depth", alen) == 0)) {
293             depthsg = atoi(argv[++a]);  /* Max search depth for supergroups */
294         }
295 #endif
296         else if (strncmp(arg, "-default_access", alen) == 0) {
297             prp_user_default = prp_access_mask(argv[++a]);
298             prp_group_default = prp_access_mask(argv[++a]);
299         }
300         else if (strncmp(arg, "-enable_peer_stats", alen) == 0) {
301             rx_enablePeerRPCStats();
302         } else if (strncmp(arg, "-enable_process_stats", alen) == 0) {
303             rx_enableProcessRPCStats();
304         }
305 #ifndef AFS_NT40_ENV
306         else if (strncmp(arg, "-syslog", alen) == 0) {
307             /* set syslog logging flag */
308             serverLogSyslog = 1;
309         } else if (strncmp(arg, "-syslog=", MIN(8, alen)) == 0) {
310             serverLogSyslog = 1;
311             serverLogSyslogFacility = atoi(arg + 8);
312         }
313 #endif
314         else if (*arg == '-') {
315             /* hack in help flag support */
316
317 #if defined(SUPERGROUPS)
318 #ifndef AFS_NT40_ENV
319             printf("Usage: ptserver [-database <db path>] "
320                    "[-syslog[=FACILITY]] "
321                    "[-p <number of processes>] [-rebuild] "
322                    "[-groupdepth <depth>] "
323                    "[-enable_peer_stats] [-enable_process_stats] "
324                    "[-default_access default_user_access default_group_access] "
325                    "[-help]\n");
326 #else /* AFS_NT40_ENV */
327             printf("Usage: ptserver [-database <db path>] "
328                    "[-p <number of processes>] [-rebuild] "
329                    "[-default_access default_user_access default_group_access] "
330                    "[-groupdepth <depth>] " "[-help]\n");
331 #endif
332 #else
333 #ifndef AFS_NT40_ENV
334             printf("Usage: ptserver [-database <db path>] "
335                    "[-syslog[=FACILITY]] "
336                    "[-p <number of processes>] [-rebuild] "
337                    "[-enable_peer_stats] [-enable_process_stats] "
338                    "[-default_access default_user_access default_group_access] "
339                    "[-help]\n");
340 #else /* AFS_NT40_ENV */
341             printf("Usage: ptserver [-database <db path>] "
342                    "[-default_access default_user_access default_group_access] "
343                    "[-p <number of processes>] [-rebuild] " "[-help]\n");
344 #endif
345 #endif
346             fflush(stdout);
347
348             PT_EXIT(1);
349         }
350 #if defined(SUPERGROUPS)
351         else {
352             fprintf(stderr, "Unrecognized arg: '%s' ignored!\n", arg);
353         }
354 #endif
355     }
356
357 #ifndef AFS_NT40_ENV
358     serverLogSyslogTag = "ptserver";
359 #endif
360     OpenLog(AFSDIR_SERVER_PTLOG_FILEPATH);      /* set up logging */
361     SetupLogSignals();
362
363     prdir = afsconf_Open(AFSDIR_SERVER_ETC_DIRPATH);
364     if (!prdir) {
365         fprintf(stderr, "ptserver: can't open configuration directory.\n");
366         PT_EXIT(1);
367     }
368     if (afsconf_GetNoAuthFlag(prdir))
369         printf("ptserver: running unauthenticated\n");
370
371 #ifdef AFS_NT40_ENV
372     /* initialize winsock */
373     if (afs_winsockInit() < 0) {
374         ReportErrorEventAlt(AFSEVT_SVR_WINSOCK_INIT_FAILED, 0, argv[0], 0);
375
376         fprintf(stderr, "ptserver: couldn't initialize winsock. \n");
377         PT_EXIT(1);
378     }
379 #endif
380     /* get this host */
381     gethostname(hostname, sizeof(hostname));
382     th = gethostbyname(hostname);
383     if (!th) {
384         fprintf(stderr, "ptserver: couldn't get address of this host.\n");
385         PT_EXIT(1);
386     }
387     memcpy(&myHost, th->h_addr, sizeof(afs_int32));
388
389     /* get list of servers */
390     code =
391         afsconf_GetExtendedCellInfo(prdir, NULL, "afsprot", &info, &clones);
392     if (code) {
393         com_err(whoami, code, "Couldn't get server list");
394         PT_EXIT(2);
395     }
396     pr_realmName = info.name;
397     pr_realmNameLen = strlen(pr_realmName);
398
399 #if 0
400     /* get keys */
401     code = afsconf_GetKey(prdir, 999, &tkey);
402     if (code) {
403         com_err(whoami, code,
404                 "couldn't get bcrypt keys from key file, ignoring.");
405     }
406 #endif
407     {
408         afs_int32 kvno;         /* see if there is a KeyFile here */
409         struct ktc_encryptionKey key;
410         code = afsconf_GetLatestKey(prdir, &kvno, &key);
411         kerberosKeys = (code == 0);
412         if (!kerberosKeys)
413             printf
414                 ("ptserver: can't find any Kerberos keys, code = %d, ignoring\n",
415                  code);
416     }
417     if (kerberosKeys) {
418         /* initialize ubik */
419         ubik_CRXSecurityProc = afsconf_ClientAuth;
420         ubik_CRXSecurityRock = (char *)prdir;
421         ubik_SRXSecurityProc = afsconf_ServerAuth;
422         ubik_SRXSecurityRock = (char *)prdir;
423         ubik_CheckRXSecurityProc = afsconf_CheckAuth;
424         ubik_CheckRXSecurityRock = (char *)prdir;
425     }
426     /* The max needed is when deleting an entry.  A full CoEntry deletion
427      * required removal from 39 entries.  Each of which may refers to the entry
428      * being deleted in one of its CoEntries.  If a CoEntry is freed its
429      * predecessor CoEntry will be modified as well.  Any freed blocks also
430      * modifies the database header.  Counting the entry being deleted and its
431      * CoEntry this adds up to as much as 1+1+39*3 = 119.  If all these entries
432      * and the header are in separate Ubik buffers then 120 buffers may be
433      * required. */
434     ubik_nBuffers = 120 + /*fudge */ 40;
435     code =
436         ubik_ServerInitByInfo(myHost, htons(AFSCONF_PROTPORT), &info, &clones,
437                               pr_dbaseName, &dbase);
438     if (code) {
439         com_err(whoami, code, "Ubik init failed");
440         PT_EXIT(2);
441     }
442 #if defined(SUPERGROUPS)
443     pt_hook_write();
444 #endif
445
446     sc[0] = rxnull_NewServerSecurityObject();
447     sc[1] = 0;
448     if (kerberosKeys) {
449         sc[2] = rxkad_NewServerSecurityObject(0, prdir, afsconf_GetKey, NULL);
450     } else
451         sc[2] = sc[0];
452
453     /* Disable jumbograms */
454     rx_SetNoJumbo();
455
456     tservice =
457         rx_NewService(0, PRSRV, "Protection Server", sc, 3,
458                       PR_ExecuteRequest);
459     if (tservice == (struct rx_service *)0) {
460         fprintf(stderr, "ptserver: Could not create new rx service.\n");
461         PT_EXIT(3);
462     }
463     rx_SetMinProcs(tservice, 2);
464     rx_SetMaxProcs(tservice, lwps);
465
466     tservice =
467         rx_NewService(0, RX_STATS_SERVICE_ID, "rpcstats", sc, 3,
468                       RXSTATS_ExecuteRequest);
469     if (tservice == (struct rx_service *)0) {
470         fprintf(stderr, "ptserver: Could not create new rx service.\n");
471         PT_EXIT(3);
472     }
473     rx_SetMinProcs(tservice, 2);
474     rx_SetMaxProcs(tservice, 4);
475
476     /* allow super users to manage RX statistics */
477     rx_SetRxStatUserOk(pr_rxstat_userok);
478
479     rx_StartServer(1);
480     osi_audit(PTS_FinishEvent, -1, AUD_END);
481     exit(0);
482 }