2 * Copyright 2000, International Business Machines Corporation and others.
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
11 * A general description of the supergroup changes
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
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
21 * The list has room for 10 entries. If more are required,
22 * a continuation record is created.
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
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.
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.
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
52 * The program will terminate with a PT_EXIT(1).
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).
62 * 2/1/98 jjm Add mdw's changes for bit mapping for supergroups
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.
76 #if defined(SUPERGROUPS)
78 * A general description of the supergroup changes
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.
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.
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.
98 * Bit mapping support for supergroups:
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.
111 #include <afsconfig.h>
112 #include <afs/param.h>
117 #include <afs/stds.h>
121 #include <sys/types.h>
124 #include <sys/stat.h>
126 #include <winsock2.h>
127 #include <WINNT/afsevent.h>
130 #include <netinet/in.h>
135 #include <rx/rx_globals.h>
138 #include <afs/cellconfig.h>
139 #include <afs/auth.h>
140 #include <afs/keys.h>
141 #include "ptserver.h"
142 #include "error_macros.h"
143 #include "afs/audit.h"
144 #include <afs/afsutil.h>
145 #include <afs/com_err.h>
148 /* make all of these into a structure if you want */
149 struct prheader cheader;
150 struct ubik_dbase *dbase;
151 struct afsconf_dir *prdir;
153 #if defined(SUPERGROUPS)
154 extern afs_int32 depthsg;
157 extern int afsconf_ServerAuth();
158 extern int afsconf_CheckAuth();
166 int rxkadDisableDotCheck = 0;
168 #define ADDRSPERSITE 16 /* Same global is in rx/rx_user.c */
169 afs_uint32 SHostAddrs[ADDRSPERSITE];
171 static struct afsconf_cell info;
173 extern int prp_group_default;
174 extern int prp_user_default;
176 #include "AFS_component_version_number.c"
183 if (*s >= '0' && *s <= '9') {
184 return strtol(s, NULL, 0);
187 while (*s) switch(*s++)
189 case 'S': r |= PRP_STATUS_ANY; break;
190 case 's': r |= PRP_STATUS_MEM; break;
191 case 'O': r |= PRP_OWNED_ANY; break;
192 case 'M': r |= PRP_MEMBER_ANY; break;
193 case 'm': r |= PRP_MEMBER_MEM; break;
194 case 'A': r |= PRP_ADD_ANY; break;
195 case 'a': r |= PRP_ADD_MEM; break;
196 case 'r': r |= PRP_REMOVE_MEM; break;
201 /* check whether caller is authorized to manage RX statistics */
203 pr_rxstat_userok(struct rx_call *call)
205 return afsconf_SuperUser(prdir, call, NULL);
209 main(int argc, char **argv)
211 register afs_int32 code;
213 register struct hostent *th;
215 struct rx_service *tservice;
216 struct rx_securityClass *sc[3];
217 extern int RXSTATS_ExecuteRequest();
218 extern int PR_ExecuteRequest();
220 struct ktc_encryptionKey tkey;
222 int kerberosKeys; /* set if found some keys */
224 char clones[MAXHOSTSPERCELL];
225 afs_uint32 host = htonl(INADDR_ANY);
227 const char *pr_dbaseName;
228 char *whoami = "ptserver";
235 * The following signal action for AIX is necessary so that in case of a
236 * crash (i.e. core is generated) we can include the user's data section
237 * in the core dump. Unfortunately, by default, only a partial core is
238 * generated which, in many cases, isn't too useful.
240 struct sigaction nsa;
242 sigemptyset(&nsa.sa_mask);
243 nsa.sa_handler = SIG_DFL;
244 nsa.sa_flags = SA_FULLDUMP;
245 sigaction(SIGABRT, &nsa, NULL);
246 sigaction(SIGSEGV, &nsa, NULL);
249 osi_audit(PTS_StartEvent, 0, AUD_END);
251 /* Initialize dirpaths */
252 if (!(initAFSDirPath() & AFSDIR_SERVER_PATHS_OK)) {
254 ReportErrorEventAlt(AFSEVT_SVR_NO_INSTALL_DIR, 0, argv[0], 0);
256 fprintf(stderr, "%s: Unable to obtain AFS server directory.\n",
261 pr_dbaseName = AFSDIR_SERVER_PRDB_FILEPATH;
263 #if defined(SUPERGROUPS)
264 /* make sure the structures for database records are the same size */
265 if ((sizeof(struct prentry) != ENTRYSIZE)
266 || (sizeof(struct prentryg) != ENTRYSIZE)) {
268 "The structures for the database records are different"
269 " sizes\n" "struct prentry = %d\n" "struct prentryg = %d\n"
270 "ENTRYSIZE = %d\n", sizeof(struct prentry),
271 sizeof(struct prentryg), ENTRYSIZE);
276 for (a = 1; a < argc; a++) {
278 lcstring(arg, argv[a], sizeof(arg));
280 if ((strncmp(arg, "-database", alen) == 0)
281 || (strncmp(arg, "-db", alen) == 0)) {
282 pr_dbaseName = argv[++a]; /* specify a database */
283 } else if (strncmp(arg, "-p", alen) == 0) {
284 lwps = atoi(argv[++a]);
285 if (lwps > 16) { /* maximum of 16 */
286 printf("Warning: '-p %d' is too big; using %d instead\n",
289 } else if (lwps < 3) { /* minimum of 3 */
290 printf("Warning: '-p %d' is too small; using %d instead\n",
294 } else if (strncmp(arg, "-rebuild", alen) == 0) /* rebuildDB++ */
296 #if defined(SUPERGROUPS)
297 else if ((strncmp(arg, "-groupdepth", alen) == 0)
298 || (strncmp(arg, "-depth", alen) == 0)) {
299 depthsg = atoi(argv[++a]); /* Max search depth for supergroups */
302 else if (strncmp(arg, "-default_access", alen) == 0) {
303 prp_user_default = prp_access_mask(argv[++a]);
304 prp_group_default = prp_access_mask(argv[++a]);
306 else if (strncmp(arg, "-restricted", alen) == 0) {
309 else if (strncmp(arg, "-rxbind", alen) == 0) {
312 else if (strncmp(arg, "-allow-dotted-principals", alen) == 0) {
313 rxkadDisableDotCheck = 1;
315 else if (strncmp(arg, "-enable_peer_stats", alen) == 0) {
316 rx_enablePeerRPCStats();
317 } else if (strncmp(arg, "-enable_process_stats", alen) == 0) {
318 rx_enableProcessRPCStats();
321 else if (strncmp(arg, "-syslog", alen) == 0) {
322 /* set syslog logging flag */
324 } else if (strncmp(arg, "-syslog=", MIN(8, alen)) == 0) {
326 serverLogSyslogFacility = atoi(arg + 8);
329 else if (strncmp(arg, "-auditlog", alen) == 0) {
332 char oldName[MAXPATHLEN];
333 char *fileName = argv[++a];
338 if ((lstat(fileName, &statbuf) == 0)
339 && (S_ISFIFO(statbuf.st_mode))) {
340 flags = O_WRONLY | O_NONBLOCK;
344 strcpy(oldName, fileName);
345 strcat(oldName, ".old");
346 renamefile(fileName, oldName);
347 flags = O_WRONLY | O_TRUNC | O_CREAT;
349 tempfd = open(fileName, flags, 0666);
351 auditout = fdopen(tempfd, "a");
353 osi_audit_file(auditout);
354 osi_audit(PTS_StartEvent, 0, AUD_END);
356 printf("Warning: auditlog %s not writable, ignored.\n", fileName);
358 printf("Warning: auditlog %s not writable, ignored.\n", fileName);
360 else if (!strncmp(arg, "-rxmaxmtu", alen)) {
361 if ((a + 1) >= argc) {
362 fprintf(stderr, "missing argument for -rxmaxmtu\n");
365 rxMaxMTU = atoi(argv[++a]);
366 if ((rxMaxMTU < RX_MIN_PACKET_SIZE) ||
367 (rxMaxMTU > RX_MAX_PACKET_DATA_SIZE)) {
368 printf("rxMaxMTU %d% invalid; must be between %d-%d\n",
369 rxMaxMTU, RX_MIN_PACKET_SIZE,
370 RX_MAX_PACKET_DATA_SIZE);
374 else if (*arg == '-') {
375 /* hack in help flag support */
377 #if defined(SUPERGROUPS)
379 printf("Usage: ptserver [-database <db path>] "
380 "[-auditlog <log path>] "
381 "[-syslog[=FACILITY]] "
382 "[-p <number of processes>] [-rebuild] "
383 "[-groupdepth <depth>] "
384 "[-restricted] [-rxmaxmtu <bytes>] [-rxbind] "
385 "[-allow-dotted-principals] "
386 "[-enable_peer_stats] [-enable_process_stats] "
387 "[-default_access default_user_access default_group_access] "
389 #else /* AFS_NT40_ENV */
390 printf("Usage: ptserver [-database <db path>] "
391 "[-auditlog <log path>] "
392 "[-p <number of processes>] [-rebuild] [-rxbind] "
393 "[-allow-dotted-principals] "
394 "[-default_access default_user_access default_group_access] "
395 "[-restricted] [-rxmaxmtu <bytes>] [-rxbind] "
396 "[-groupdepth <depth>] " "[-help]\n");
400 printf("Usage: ptserver [-database <db path>] "
401 "[-auditlog <log path>] "
402 "[-syslog[=FACILITY]] "
403 "[-p <number of processes>] [-rebuild] "
404 "[-enable_peer_stats] [-enable_process_stats] "
405 "[-default_access default_user_access default_group_access] "
406 "[-restricted] [-rxmaxmtu <bytes>] [-rxbind] "
407 "[-allow-dotted-principals] "
409 #else /* AFS_NT40_ENV */
410 printf("Usage: ptserver [-database <db path>] "
411 "[-auditlog <log path>] "
412 "[-default_access default_user_access default_group_access] "
413 "[-restricted] [-rxmaxmtu <bytes>] [-rxbind] "
414 "[-allow-dotted-principals] "
415 "[-p <number of processes>] [-rebuild] " "[-help]\n");
422 #if defined(SUPERGROUPS)
424 fprintf(stderr, "Unrecognized arg: '%s' ignored!\n", arg);
430 serverLogSyslogTag = "ptserver";
432 OpenLog(AFSDIR_SERVER_PTLOG_FILEPATH); /* set up logging */
435 prdir = afsconf_Open(AFSDIR_SERVER_ETC_DIRPATH);
437 fprintf(stderr, "ptserver: can't open configuration directory.\n");
440 if (afsconf_GetNoAuthFlag(prdir))
441 printf("ptserver: running unauthenticated\n");
444 /* initialize winsock */
445 if (afs_winsockInit() < 0) {
446 ReportErrorEventAlt(AFSEVT_SVR_WINSOCK_INIT_FAILED, 0, argv[0], 0);
448 fprintf(stderr, "ptserver: couldn't initialize winsock. \n");
453 gethostname(hostname, sizeof(hostname));
454 th = gethostbyname(hostname);
456 fprintf(stderr, "ptserver: couldn't get address of this host.\n");
459 memcpy(&myHost, th->h_addr, sizeof(afs_int32));
461 /* get list of servers */
463 afsconf_GetExtendedCellInfo(prdir, NULL, "afsprot", &info, &clones);
465 afs_com_err(whoami, code, "Couldn't get server list");
468 pr_realmName = info.name;
469 pr_realmNameLen = strlen(pr_realmName);
473 code = afsconf_GetKey(prdir, 999, &tkey);
475 afs_com_err(whoami, code,
476 "couldn't get bcrypt keys from key file, ignoring.");
480 afs_int32 kvno; /* see if there is a KeyFile here */
481 struct ktc_encryptionKey key;
482 code = afsconf_GetLatestKey(prdir, &kvno, &key);
483 kerberosKeys = (code == 0);
486 ("ptserver: can't find any Kerberos keys, code = %d, ignoring\n",
490 /* initialize ubik */
491 ubik_CRXSecurityProc = afsconf_ClientAuth;
492 ubik_CRXSecurityRock = (char *)prdir;
493 ubik_SRXSecurityProc = afsconf_ServerAuth;
494 ubik_SRXSecurityRock = (char *)prdir;
495 ubik_CheckRXSecurityProc = afsconf_CheckAuth;
496 ubik_CheckRXSecurityRock = (char *)prdir;
498 /* The max needed is when deleting an entry. A full CoEntry deletion
499 * required removal from 39 entries. Each of which may refers to the entry
500 * being deleted in one of its CoEntries. If a CoEntry is freed its
501 * predecessor CoEntry will be modified as well. Any freed blocks also
502 * modifies the database header. Counting the entry being deleted and its
503 * CoEntry this adds up to as much as 1+1+39*3 = 119. If all these entries
504 * and the header are in separate Ubik buffers then 120 buffers may be
506 ubik_nBuffers = 120 + /*fudge */ 40;
511 if (AFSDIR_SERVER_NETRESTRICT_FILEPATH ||
512 AFSDIR_SERVER_NETINFO_FILEPATH) {
514 ccode = parseNetFiles(SHostAddrs, NULL, NULL,
515 ADDRSPERSITE, reason,
516 AFSDIR_SERVER_NETINFO_FILEPATH,
517 AFSDIR_SERVER_NETRESTRICT_FILEPATH);
521 ccode = rx_getAllAddr(SHostAddrs, ADDRSPERSITE);
524 host = SHostAddrs[0];
525 rx_InitHost(host, htons(AFSCONF_PROTPORT));
530 ubik_ServerInitByInfo(myHost, htons(AFSCONF_PROTPORT), &info, &clones,
531 pr_dbaseName, &dbase);
533 afs_com_err(whoami, code, "Ubik init failed");
536 #if defined(SUPERGROUPS)
540 sc[0] = rxnull_NewServerSecurityObject();
543 sc[2] = rxkad_NewServerSecurityObject(0, prdir, afsconf_GetKey, NULL);
547 /* Disable jumbograms */
550 if (rxMaxMTU != -1) {
551 rx_SetMaxMTU(rxMaxMTU);
555 rx_NewServiceHost(host, 0, PRSRV, "Protection Server", sc, 3,
557 if (tservice == (struct rx_service *)0) {
558 fprintf(stderr, "ptserver: Could not create new rx service.\n");
561 rx_SetMinProcs(tservice, 2);
562 rx_SetMaxProcs(tservice, lwps);
563 if (rxkadDisableDotCheck) {
564 rx_SetSecurityConfiguration(tservice, RXS_CONFIG_FLAGS,
565 (void *)RXS_CONFIG_FLAGS_DISABLE_DOTCHECK,
570 rx_NewServiceHost(host, 0, RX_STATS_SERVICE_ID, "rpcstats", sc, 3,
571 RXSTATS_ExecuteRequest);
572 if (tservice == (struct rx_service *)0) {
573 fprintf(stderr, "ptserver: Could not create new rx service.\n");
576 rx_SetMinProcs(tservice, 2);
577 rx_SetMaxProcs(tservice, 4);
579 /* allow super users to manage RX statistics */
580 rx_SetRxStatUserOk(pr_rxstat_userok);
583 osi_audit(PTS_FinishEvent, -1, AUD_END);