Log binding ip address and port during startup
[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 #include <afs/stds.h>
114
115 #include <roken.h>
116 #include <afs/opr.h>
117 #ifdef AFS_PTHREAD_ENV
118 # include <opr/softsig.h>
119 # include <afs/procmgmt_softsig.h> /* must come after softsig.h */
120 #endif
121
122 #ifdef AFS_NT40_ENV
123 #include <WINNT/afsevent.h>
124 #endif
125
126 #include <rx/xdr.h>
127 #include <rx/rx.h>
128 #include <rx/rx_globals.h>
129 #include <rx/rxstat.h>
130 #include <lock.h>
131 #include <ubik.h>
132 #include <afs/cmd.h>
133 #include <afs/cellconfig.h>
134 #include <afs/auth.h>
135 #include <afs/keys.h>
136 #include <afs/afsutil.h>
137 #include <afs/audit.h>
138 #include <afs/com_err.h>
139
140 #include "ptserver.h"
141 #include "ptprototypes.h"
142 #include "error_macros.h"
143
144 /* make all of these into a structure if you want */
145 struct prheader cheader;
146 struct ubik_dbase *dbase;
147 struct afsconf_dir *prdir;
148
149 #if defined(SUPERGROUPS)
150 extern afs_int32 depthsg;
151 #endif
152
153 int restricted = 0;
154 int restrict_anonymous = 0;
155 int rxMaxMTU = -1;
156 int rxBind = 0;
157 int rxkadDisableDotCheck = 0;
158
159 #define ADDRSPERSITE 16         /* Same global is in rx/rx_user.c */
160 afs_uint32 SHostAddrs[ADDRSPERSITE];
161
162 static struct afsconf_cell info;
163
164 extern int prp_group_default;
165 extern int prp_user_default;
166
167 #include "AFS_component_version_number.c"
168
169 int
170 prp_access_mask(char *s)
171 {
172     int r;
173     if (*s >= '0' && *s <= '9') {
174         return strtol(s, NULL, 0);
175     }
176     r = 0;
177     while (*s) switch(*s++)
178     {
179     case 'S':   r |= PRP_STATUS_ANY; break;
180     case 's':   r |= PRP_STATUS_MEM; break;
181     case 'O':   r |= PRP_OWNED_ANY; break;
182     case 'M':   r |= PRP_MEMBER_ANY; break;
183     case 'm':   r |= PRP_MEMBER_MEM; break;
184     case 'A':   r |= PRP_ADD_ANY; break;
185     case 'a':   r |= PRP_ADD_MEM; break;
186     case 'r':   r |= PRP_REMOVE_MEM; break;
187     }
188     return r;
189 }
190
191 /* check whether caller is authorized to manage RX statistics */
192 int
193 pr_rxstat_userok(struct rx_call *call)
194 {
195     return afsconf_SuperUser(prdir, call, NULL);
196 }
197
198 /**
199  * Return true if this name is a member of the local realm.
200  */
201 int
202 pr_IsLocalRealmMatch(void *rock, char *name, char *inst, char *cell)
203 {
204     struct afsconf_dir *dir = (struct afsconf_dir *)rock;
205     afs_int32 islocal = 0;      /* default to no */
206     int code;
207
208     code = afsconf_IsLocalRealmMatch(dir, &islocal, name, inst, cell);
209     if (code) {
210         ViceLog(0, ("Failed local realm check; code=%d, name=%s, inst=%s, cell=%s\n",
211                  code, name, inst, cell));
212     }
213     return islocal;
214 }
215
216
217 enum optionsList {
218     OPT_database,
219     OPT_access,
220     OPT_groupdepth,
221     OPT_restricted,
222     OPT_restrict_anonymous,
223     OPT_auditlog,
224     OPT_auditiface,
225     OPT_config,
226     OPT_debug,
227     OPT_logfile,
228     OPT_threads,
229 #ifdef HAVE_SYSLOG
230     OPT_syslog,
231 #endif
232     OPT_peer,
233     OPT_process,
234     OPT_rxbind,
235     OPT_rxmaxmtu,
236     OPT_dotted,
237     OPT_transarc_logs
238 };
239
240 int
241 main(int argc, char **argv)
242 {
243     afs_int32 code;
244     afs_uint32 myHost;
245     struct hostent *th;
246     char hostname[64];
247     struct rx_service *tservice;
248     struct rx_securityClass **securityClasses;
249     afs_int32 numClasses;
250     int lwps = 3;
251     char clones[MAXHOSTSPERCELL];
252     char hoststr[16];
253     afs_uint32 host = htonl(INADDR_ANY);
254     struct cmd_syndesc *opts;
255     struct cmd_item *list;
256
257     char *pr_dbaseName;
258     char *configDir;
259     struct logOptions logopts;
260     char *whoami = "ptserver";
261
262     char *auditFileName = NULL;
263     char *interface = NULL;
264
265 #ifdef  AFS_AIX32_ENV
266     /*
267      * The following signal action for AIX is necessary so that in case of a
268      * crash (i.e. core is generated) we can include the user's data section
269      * in the core dump. Unfortunately, by default, only a partial core is
270      * generated which, in many cases, isn't too useful.
271      */
272     struct sigaction nsa;
273
274     sigemptyset(&nsa.sa_mask);
275     nsa.sa_handler = SIG_DFL;
276     nsa.sa_flags = SA_FULLDUMP;
277     sigaction(SIGABRT, &nsa, NULL);
278     sigaction(SIGSEGV, &nsa, NULL);
279 #endif
280     osi_audit_init();
281     osi_audit(PTS_StartEvent, 0, AUD_END);
282
283     /* Initialize dirpaths */
284     if (!(initAFSDirPath() & AFSDIR_SERVER_PATHS_OK)) {
285 #ifdef AFS_NT40_ENV
286         ReportErrorEventAlt(AFSEVT_SVR_NO_INSTALL_DIR, 0, argv[0], 0);
287 #endif
288         fprintf(stderr, "%s: Unable to obtain AFS server directory.\n",
289                 argv[0]);
290         exit(2);
291     }
292
293     pr_dbaseName = strdup(AFSDIR_SERVER_PRDB_FILEPATH);
294     configDir = strdup(AFSDIR_SERVER_ETC_DIRPATH);
295     memset(&logopts, 0, sizeof(logopts));
296
297 #if defined(SUPERGROUPS)
298     /* make sure the structures for database records are the same size */
299     if ((sizeof(struct prentry) != ENTRYSIZE)
300         || (sizeof(struct prentryg) != ENTRYSIZE)) {
301         fprintf(stderr,
302                 "The structures for the database records are different"
303                 " sizes\n" "struct prentry = %" AFS_SIZET_FMT "\n"
304                 "struct prentryg = %" AFS_SIZET_FMT "\n"
305                 "ENTRYSIZE = %d\n", sizeof(struct prentry),
306                 sizeof(struct prentryg), ENTRYSIZE);
307         PT_EXIT(1);
308     }
309 #endif
310
311     cmd_DisableAbbreviations();
312     cmd_DisablePositionalCommands();
313     opts = cmd_CreateSyntax(NULL, NULL, NULL, 0, NULL);
314
315 /* ptserver specific options */
316     cmd_AddParmAtOffset(opts, OPT_database, "-database", CMD_SINGLE,
317                         CMD_OPTIONAL, "database file");
318     cmd_AddParmAlias(opts, OPT_database, "-db");
319
320     cmd_AddParmAtOffset(opts, OPT_access, "-default_access", CMD_LIST,
321                         CMD_OPTIONAL, "default access flags for new entries");
322 #if defined(SUPERGROUPS)
323     cmd_AddParmAtOffset(opts, OPT_groupdepth, "-groupdepth", CMD_SINGLE,
324                         CMD_OPTIONAL, "max search depth for supergroups");
325     cmd_AddParmAlias(opts, OPT_groupdepth, "-depth");
326 #endif
327     cmd_AddParmAtOffset(opts, OPT_restricted, "-restricted", CMD_FLAG,
328                         CMD_OPTIONAL, "enable restricted mode");
329     cmd_AddParmAtOffset(opts, OPT_restrict_anonymous, "-restrict_anonymous",
330                         CMD_FLAG, CMD_OPTIONAL, "enable restricted anonymous mode");
331
332     /* general server options */
333     cmd_AddParmAtOffset(opts, OPT_auditlog, "-auditlog", CMD_SINGLE,
334                         CMD_OPTIONAL, "location of audit log");
335     cmd_AddParmAtOffset(opts, OPT_auditiface, "-audit-interface", CMD_SINGLE,
336                         CMD_OPTIONAL, "interface to use for audit logging");
337     cmd_AddParmAtOffset(opts, OPT_config, "-config", CMD_SINGLE,
338                         CMD_OPTIONAL, "configuration location");
339     cmd_AddParmAtOffset(opts, OPT_debug, "-d", CMD_SINGLE,
340                         CMD_OPTIONAL, "debug level");
341     cmd_AddParmAtOffset(opts, OPT_logfile, "-logfile", CMD_SINGLE,
342                         CMD_OPTIONAL, "location of logfile");
343     cmd_AddParmAtOffset(opts, OPT_threads, "-p", CMD_SINGLE,
344                         CMD_OPTIONAL, "number of threads");
345 #ifdef HAVE_SYSLOG
346     cmd_AddParmAtOffset(opts, OPT_syslog, "-syslog", CMD_SINGLE_OR_FLAG, 
347                         CMD_OPTIONAL, "log to syslog");
348 #endif
349     cmd_AddParmAtOffset(opts, OPT_transarc_logs, "-transarc-logs", CMD_FLAG,
350                         CMD_OPTIONAL, "enable Transarc style logging");
351
352     /* rx options */
353     cmd_AddParmAtOffset(opts, OPT_peer, "-enable_peer_stats", CMD_FLAG,
354                         CMD_OPTIONAL, "enable RX transport statistics");
355     cmd_AddParmAtOffset(opts, OPT_process, "-enable_process_stats", CMD_FLAG,
356                         CMD_OPTIONAL, "enable RX RPC statistics");
357     cmd_AddParmAtOffset(opts, OPT_rxbind, "-rxbind", CMD_FLAG,
358                         CMD_OPTIONAL, "bind only to the primary interface");
359     cmd_AddParmAtOffset(opts, OPT_rxmaxmtu, "-rxmaxmtu", CMD_SINGLE,
360                         CMD_OPTIONAL, "maximum MTU for RX");
361
362     /* rxkad options */
363     cmd_AddParmAtOffset(opts, OPT_dotted, "-allow-dotted-principals",
364                         CMD_FLAG, CMD_OPTIONAL,
365                         "permit Kerberos 5 principals with dots");
366
367     code = cmd_Parse(argc, argv, &opts);
368     if (code == CMD_HELP) {
369         PT_EXIT(0);
370     }
371     if (code)
372         PT_EXIT(1);
373
374     cmd_OptionAsString(opts, OPT_config, &configDir);
375
376     cmd_OpenConfigFile(AFSDIR_SERVER_CONFIG_FILE_FILEPATH);
377     cmd_SetCommandName("ptserver");
378
379     if (cmd_OptionAsList(opts, OPT_access, &list) == 0) {
380         prp_user_default = prp_access_mask(list->data);
381         if (list->next == NULL || list->next->data == NULL) {
382             fprintf(stderr, "Missing second argument for -default_access\n");
383             PT_EXIT(1);
384         }
385         prp_group_default = prp_access_mask(list->next->data);
386     }
387
388 #if defined(SUPERGROUPS)
389     cmd_OptionAsInt(opts, OPT_groupdepth, &depthsg);
390 #endif
391
392     cmd_OptionAsFlag(opts, OPT_restricted, &restricted);
393     cmd_OptionAsFlag(opts, OPT_restrict_anonymous, &restrict_anonymous);
394
395     /* general server options */
396     cmd_OptionAsString(opts, OPT_auditlog, &auditFileName);
397
398     if (cmd_OptionAsString(opts, OPT_auditiface, &interface) == 0) {
399         if (osi_audit_interface(interface)) {
400             printf("Invalid audit interface '%s'\n", interface);
401             PT_EXIT(1);
402         }
403         free(interface);
404     }
405
406     cmd_OptionAsString(opts, OPT_database, &pr_dbaseName);
407
408     if (cmd_OptionAsInt(opts, OPT_threads, &lwps) == 0) {
409         if (lwps > 64) {        /* maximum of 64 */
410             printf("Warning: '-p %d' is too big; using %d instead\n",
411                    lwps, 64);
412             lwps = 64;
413         } else if (lwps < 3) {  /* minimum of 3 */
414             printf("Warning: '-p %d' is too small; using %d instead\n",
415                    lwps, 3);
416             lwps = 3;
417         }
418     }
419
420 #ifdef HAVE_SYSLOG
421     if (cmd_OptionPresent(opts, OPT_syslog)) {
422         if (cmd_OptionPresent(opts, OPT_logfile)) {
423             fprintf(stderr, "Invalid options: -syslog and -logfile are exclusive.");
424             PT_EXIT(1);
425         }
426         if (cmd_OptionPresent(opts, OPT_transarc_logs)) {
427             fprintf(stderr, "Invalid options: -syslog and -transarc-logs are exclusive.");
428             PT_EXIT(1);
429         }
430         logopts.lopt_dest = logDest_syslog;
431         logopts.lopt_facility = LOG_DAEMON;
432         logopts.lopt_tag = "ptserver";
433         cmd_OptionAsInt(opts, OPT_syslog, &logopts.lopt_facility);
434     } else
435 #endif
436     {
437         logopts.lopt_dest = logDest_file;
438         if (cmd_OptionPresent(opts, OPT_transarc_logs)) {
439             logopts.lopt_rotateOnOpen = 1;
440             logopts.lopt_rotateStyle = logRotate_old;
441         }
442         if (cmd_OptionPresent(opts, OPT_logfile))
443             cmd_OptionAsString(opts, OPT_logfile, (char**)&logopts.lopt_filename);
444         else
445             logopts.lopt_filename = AFSDIR_SERVER_PTLOG_FILEPATH;
446     }
447     cmd_OptionAsInt(opts, OPT_debug, &logopts.lopt_logLevel);
448
449     /* rx options */
450     if (cmd_OptionPresent(opts, OPT_peer))
451         rx_enablePeerRPCStats();
452
453     if (cmd_OptionPresent(opts, OPT_process))
454         rx_enableProcessRPCStats();
455
456     cmd_OptionAsFlag(opts, OPT_rxbind, &rxBind);
457
458     cmd_OptionAsInt(opts, OPT_rxmaxmtu, &rxMaxMTU);
459
460     /* rxkad options */
461     cmd_OptionAsFlag(opts, OPT_dotted, &rxkadDisableDotCheck);
462
463     cmd_FreeOptions(&opts);
464
465     if (auditFileName) {
466         osi_audit_file(auditFileName);
467         osi_audit(PTS_StartEvent, 0, AUD_END);
468     }
469
470     OpenLog(&logopts);
471 #ifdef AFS_PTHREAD_ENV
472     opr_softsig_Init();
473     SetupLogSoftSignals();
474 #else
475     SetupLogSignals();
476 #endif
477
478     prdir = afsconf_Open(configDir);
479     if (!prdir) {
480         fprintf(stderr, "ptserver: can't open configuration directory.\n");
481         PT_EXIT(1);
482     }
483     if (afsconf_GetNoAuthFlag(prdir))
484         printf("ptserver: running unauthenticated\n");
485
486 #ifdef AFS_NT40_ENV
487     /* initialize winsock */
488     if (afs_winsockInit() < 0) {
489         ReportErrorEventAlt(AFSEVT_SVR_WINSOCK_INIT_FAILED, 0, argv[0], 0);
490
491         fprintf(stderr, "ptserver: couldn't initialize winsock. \n");
492         PT_EXIT(1);
493     }
494 #endif
495     /* get this host */
496     gethostname(hostname, sizeof(hostname));
497     th = gethostbyname(hostname);
498     if (!th) {
499         fprintf(stderr, "ptserver: couldn't get address of this host.\n");
500         PT_EXIT(1);
501     }
502     memcpy(&myHost, th->h_addr, sizeof(afs_uint32));
503
504     /* get list of servers */
505     code =
506         afsconf_GetExtendedCellInfo(prdir, NULL, "afsprot", &info, clones);
507     if (code) {
508         afs_com_err(whoami, code, "Couldn't get server list");
509         PT_EXIT(2);
510     }
511
512     /* initialize audit user check */
513     osi_audit_set_user_check(prdir, pr_IsLocalRealmMatch);
514
515     /* initialize ubik */
516     ubik_SetClientSecurityProcs(afsconf_ClientAuth, afsconf_UpToDate, prdir);
517     ubik_SetServerSecurityProcs(afsconf_BuildServerSecurityObjects,
518                                 afsconf_CheckAuth, prdir);
519
520     /* The max needed is when deleting an entry.  A full CoEntry deletion
521      * required removal from 39 entries.  Each of which may refers to the entry
522      * being deleted in one of its CoEntries.  If a CoEntry is freed its
523      * predecessor CoEntry will be modified as well.  Any freed blocks also
524      * modifies the database header.  Counting the entry being deleted and its
525      * CoEntry this adds up to as much as 1+1+39*3 = 119.  If all these entries
526      * and the header are in separate Ubik buffers then 120 buffers may be
527      * required. */
528     ubik_nBuffers = 120 + /*fudge */ 40;
529
530     if (rxBind) {
531         afs_int32 ccode;
532         if (AFSDIR_SERVER_NETRESTRICT_FILEPATH ||
533             AFSDIR_SERVER_NETINFO_FILEPATH) {
534             char reason[1024];
535             ccode = afsconf_ParseNetFiles(SHostAddrs, NULL, NULL,
536                                           ADDRSPERSITE, reason,
537                                           AFSDIR_SERVER_NETINFO_FILEPATH,
538                                           AFSDIR_SERVER_NETRESTRICT_FILEPATH);
539         } else
540         {
541             ccode = rx_getAllAddr(SHostAddrs, ADDRSPERSITE);
542         }
543         if (ccode == 1) {
544             host = SHostAddrs[0];
545         }
546     }
547
548     ViceLog(0, ("ptserver binding rx to %s:%d\n",
549             afs_inet_ntoa_r(host, hoststr), AFSCONF_PROTPORT));
550     code = rx_InitHost(host, htons(AFSCONF_PROTPORT));
551     if (code < 0) {
552         ViceLog(0, ("ptserver: Rx init failed: %d\n", code));
553         PT_EXIT(1);
554     }
555
556     /* Disable jumbograms */
557     rx_SetNoJumbo();
558
559     if (rxMaxMTU != -1) {
560         if (rx_SetMaxMTU(rxMaxMTU) != 0) {
561             printf("rxMaxMTU %d is invalid\n", rxMaxMTU);
562             PT_EXIT(1);
563         }
564     }
565
566     code =
567         ubik_ServerInitByInfo(myHost, htons(AFSCONF_PROTPORT), &info, clones,
568                               pr_dbaseName, &dbase);
569     if (code) {
570         afs_com_err(whoami, code, "Ubik init failed");
571         PT_EXIT(2);
572     }
573
574 #if defined(SUPERGROUPS)
575     pt_hook_write();
576 #endif
577
578     afsconf_BuildServerSecurityObjects(prdir, &securityClasses, &numClasses);
579
580     tservice =
581         rx_NewServiceHost(host, 0, PRSRV, "Protection Server", securityClasses,
582                           numClasses, PR_ExecuteRequest);
583     if (tservice == (struct rx_service *)0) {
584         fprintf(stderr, "ptserver: Could not create new rx service.\n");
585         PT_EXIT(3);
586     }
587     rx_SetMinProcs(tservice, 2);
588     rx_SetMaxProcs(tservice, lwps);
589     if (rxkadDisableDotCheck) {
590         rx_SetSecurityConfiguration(tservice, RXS_CONFIG_FLAGS,
591                                     (void *)RXS_CONFIG_FLAGS_DISABLE_DOTCHECK);
592     }
593
594     tservice =
595         rx_NewServiceHost(host, 0, RX_STATS_SERVICE_ID, "rpcstats",
596                           securityClasses, numClasses, RXSTATS_ExecuteRequest);
597     if (tservice == (struct rx_service *)0) {
598         fprintf(stderr, "ptserver: Could not create new rx service.\n");
599         PT_EXIT(3);
600     }
601     rx_SetMinProcs(tservice, 2);
602     rx_SetMaxProcs(tservice, 4);
603
604     /* allow super users to manage RX statistics */
605     rx_SetRxStatUserOk(pr_rxstat_userok);
606
607     LogCommandLine(argc, argv, "ptserver",
608 #if defined(SUPERGROUPS)
609                    "1.1",
610 #else
611                    "1.0",
612 #endif
613                    "Starting AFS", FSLog);
614     if (afsconf_GetLatestKey(prdir, NULL, NULL) == 0) {
615         LogDesWarning();
616     }
617
618     rx_StartServer(1);
619     osi_audit(PTS_FinishEvent, -1, AUD_END);
620     exit(0);
621 }