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
10 #include <afsconfig.h>
11 #include <afs/param.h>
18 #include <WINNT/afsevent.h>
25 #include <rx/rxstat.h>
27 #include <rx/rx_globals.h>
28 #include <afs/cellconfig.h>
30 #include <afs/afsutil.h>
31 #include <afs/com_err.h>
32 #include <afs/audit.h>
35 #include "kalog.h" /* for OpenLog() */
37 #include "kauth_internal.h"
40 #include "kadatabase.h"
43 struct kadstats dynamic_statistics
;
44 struct ubik_dbase
*KA_dbase
;
45 afs_uint32 myHost
= 0;
46 afs_int32 verbose_track
= 1;
47 afs_int32 krb4_cross
= 0;
50 #define ADDRSPERSITE 16 /* Same global is in rx/rx_user.c */
51 afs_uint32 SHostAddrs
[ADDRSPERSITE
];
53 struct afsconf_dir
*KA_conf
; /* for getting cell info */
56 int npwSums
= KA_NPWSUMS
; /* needs to be variable sometime */
58 #if !defined(AFS_NT40_ENV) && !defined(AFS_LINUX20_ENV) && !defined(AFS_DARWIN_ENV) && !defined(AFS_XBSD_ENV)
60 #define vfprintf(stream,fmt,args) _doprnt(fmt,args,stream)
63 static int debugOutput
;
65 /* check whether caller is authorized to manage RX statistics */
67 KA_rxstat_userok(struct rx_call
*call
)
69 return afsconf_SuperUser(KA_conf
, call
, NULL
);
73 * Return true if this name is a member of the local realm.
76 KA_IsLocalRealmMatch(void *rock
, char *name
, char *inst
, char *cell
)
78 struct afsconf_dir
*dir
= (struct afsconf_dir
*)rock
;
79 afs_int32 islocal
= 0; /* default to no */
82 code
= afsconf_IsLocalRealmMatch(dir
, &islocal
, name
, inst
, cell
);
85 ("Failed local realm check; code=%d, name=%s, inst=%s, cell=%s\n",
86 code
, name
, inst
, cell
));
92 es_Report(char *fmt
, ...)
99 vfprintf(stderr
, fmt
, pvar
);
105 initialize_dstats(void)
107 memset(&dynamic_statistics
, 0, sizeof(dynamic_statistics
));
108 dynamic_statistics
.start_time
= time(0);
109 dynamic_statistics
.host
= myHost
;
113 convert_cell_to_ubik(struct afsconf_cell
*cellinfo
, afs_uint32
*myHost
,
114 afs_uint32
*serverList
)
121 gethostname(hostname
, sizeof(hostname
));
122 th
= gethostbyname(hostname
);
124 ViceLog(0, ("kaserver: couldn't get address of this host.\n"));
127 memcpy(myHost
, th
->h_addr
, sizeof(afs_uint32
));
129 for (i
= 0; i
< cellinfo
->numServers
; i
++)
130 if (cellinfo
->hostAddr
[i
].sin_addr
.s_addr
!= *myHost
) {
131 /* omit my host from serverList */
132 *serverList
++ = cellinfo
->hostAddr
[i
].sin_addr
.s_addr
;
134 *serverList
= 0; /* terminate list */
139 kvno_admin_key(void *rock
, afs_int32 kvno
, struct ktc_encryptionKey
*key
)
141 return ka_LookupKvno(0, KA_ADMIN_NAME
, KA_ADMIN_INST
, kvno
, key
);
143 /* we would like to start a Ubik transaction to fill the cache if that
144 * fails, but may deadlock as Rx is now organized. */
147 /* initFlags: 0x01 Do not require authenticated connections.
148 0x02 Do not check the bos NoAuth flag
149 0x04 Use fast key expiration to test oldkey code.
150 0x08 Temporary flag allowing database inconsistency fixup
153 #include "AFS_component_version_number.c"
156 main(int argc
, char *argv
[])
159 char *whoami
= argv
[0];
160 afs_uint32 serverList
[MAXSERVERS
];
161 struct afsconf_cell cellinfo
;
163 const char *cellservdb
, *dbpath
, *lclpath
;
166 char *default_lclpath
;
169 int level
; /* security level for Ubik */
171 char clones
[MAXHOSTSPERCELL
];
172 afs_uint32 host
= ntohl(INADDR_ANY
);
173 char *auditFileName
= NULL
;
174 struct logOptions logopts
;
176 struct rx_service
*tservice
;
177 struct rx_securityClass
*sca
[1];
178 struct rx_securityClass
*scm
[3];
180 extern int rx_stackSize
;
184 * The following signal action for AIX is necessary so that in case of a
185 * crash (i.e. core is generated) we can include the user's data section
186 * in the core dump. Unfortunately, by default, only a partial core is
187 * generated which, in many cases, isn't too useful.
189 struct sigaction nsa
;
191 sigemptyset(&nsa
.sa_mask
);
192 nsa
.sa_handler
= SIG_DFL
;
193 nsa
.sa_flags
= SA_FULLDUMP
;
194 sigaction(SIGABRT
, &nsa
, NULL
);
195 sigaction(SIGSEGV
, &nsa
, NULL
);
199 memset(&logopts
, 0, sizeof(logopts
));
203 printf("Usage: kaserver [-noAuth] [-database <dbpath>] "
204 "[-auditlog <log path>] [-audit-interface <file|sysvmq>] "
205 "[-rxbind] [-localfiles <lclpath>] [-minhours <n>] "
206 "[-servers <serverlist>] [-crossrealm] "
207 "[-enable_peer_stats] [-enable_process_stats] "
212 /* initialize winsock */
213 if (afs_winsockInit() < 0) {
214 ReportErrorEventAlt(AFSEVT_SVR_WINSOCK_INIT_FAILED
, 0, argv
[0], 0);
215 fprintf(stderr
, "%s: Couldn't initialize winsock.\n", whoami
);
219 /* Initialize dirpaths */
220 if (!(initAFSDirPath() & AFSDIR_SERVER_PATHS_OK
)) {
222 ReportErrorEventAlt(AFSEVT_SVR_NO_INSTALL_DIR
, 0, argv
[0], 0);
224 fprintf(stderr
, "%s: Unable to obtain AFS server directory.\n",
229 cellservdb
= AFSDIR_SERVER_ETC_DIRPATH
;
230 dbpath
= AFSDIR_SERVER_KADB_FILEPATH
;
232 if (asprintf(&default_lclpath
, "%s/%s", AFSDIR_SERVER_LOCAL_DIRPATH
,
233 AFSDIR_KADB_FILE
) < 0) {
234 fprintf(stderr
, "%s: No memory for default local dir path\n", argv
[0]);
237 lclpath
= default_lclpath
;
243 for (a
= 1; a
< argc
; a
++) {
244 int arglen
= strlen(argv
[a
]);
245 lcstring(arg
, argv
[a
], sizeof(arg
));
246 #define IsArg(a) (strncmp (arg,a, arglen) == 0)
248 if (strcmp(arg
, "-database") == 0) {
250 if (strcmp(lclpath
, default_lclpath
) == 0)
253 else if (strncmp(arg
, "-auditlog", arglen
) == 0) {
254 auditFileName
= argv
[++a
];
256 } else if (strncmp(arg
, "-audit-interface", arglen
) == 0) {
257 char *interface
= argv
[++a
];
259 if (osi_audit_interface(interface
)) {
260 printf("Invalid audit interface '%s'\n", interface
);
264 } else if (strcmp(arg
, "-localfiles") == 0)
266 else if (strcmp(arg
, "-servers") == 0)
267 debugOutput
++, servers
= 1;
268 else if (strcmp(arg
, "-noauth") == 0)
269 debugOutput
++, initFlags
|= 1;
270 else if (strcmp(arg
, "-fastkeys") == 0)
271 debugOutput
++, initFlags
|= 4;
272 else if (strcmp(arg
, "-dbfixup") == 0)
273 debugOutput
++, initFlags
|= 8;
274 else if (strcmp(arg
, "-cellservdb") == 0) {
275 cellservdb
= argv
[++a
];
280 else if (IsArg("-crypt"))
282 else if (IsArg("-safe"))
284 else if (IsArg("-clear"))
286 else if (IsArg("-sorry"))
288 else if (IsArg("-debug"))
290 else if (IsArg("-crossrealm"))
292 else if (IsArg("-rxbind"))
294 else if (IsArg("-minhours")) {
295 MinHours
= atoi(argv
[++a
]);
296 } else if (IsArg("-enable_peer_stats")) {
297 rx_enablePeerRPCStats();
298 } else if (IsArg("-enable_process_stats")) {
299 rx_enableProcessRPCStats();
300 } else if (*arg
== '-') {
301 /* hack to support help flag */
307 osi_audit_file(auditFileName
);
310 if ((code
= ka_CellConfig(cellservdb
)))
312 cell
= ka_LocalCell();
313 KA_conf
= afsconf_Open(cellservdb
);
317 afs_com_err(whoami
, code
, "Failed getting cell info");
323 /* NT & HPUX do not have dbm package support. So we can only do some
324 * text logging. So open the AuthLog file for logging and redirect
325 * stdin and stdout to it
327 logopts
.lopt_dest
= logDest_file
;
328 logopts
.lopt_filename
= AFSDIR_SERVER_KALOG_FILEPATH
;
329 logopts
.lopt_rotateOnOpen
= 1;
330 logopts
.lopt_rotateStyle
= logRotate_old
;
336 fprintf(stderr
, "%s: WARNING: kaserver is deprecated due to its weak security "
337 "properties. Migrating to a Kerberos 5 KDC is advised. "
338 "http://www.openafs.org/no-more-des.html\n", whoami
);
339 ViceLog(0, ("WARNING: kaserver is deprecated due to its weak security properties. "
340 "Migrating to a Kerberos 5 KDC is advised. "
341 "http://www.openafs.org/no-more-des.html\n"));
343 code
= afsconf_GetExtendedCellInfo(KA_conf
, cell
, AFSCONF_KAUTHSERVICE
,
346 afs_com_err(whoami
, code
, "Couldn't read cell configuration");
351 if ((code
= ubik_ParseServerList(argc
, argv
, &myHost
, serverList
))) {
352 afs_com_err(whoami
, code
, "Couldn't parse server list");
355 cellinfo
.hostAddr
[0].sin_addr
.s_addr
= myHost
;
356 for (i
= 1; i
< MAXSERVERS
; i
++) {
359 if (i
>= MAXHOSTSPERCELL
) {
361 "Too many ubik servers specified on command line\n");
364 cellinfo
.hostAddr
[i
].sin_addr
.s_addr
= serverList
[i
];
366 cellinfo
.numServers
= i
;
368 code
= convert_cell_to_ubik(&cellinfo
, &myHost
, serverList
);
371 ViceLog(0, ("Using server list from %s cell database.\n", cell
));
374 /* initialize audit user check */
375 osi_audit_set_user_check(KA_conf
, KA_IsLocalRealmMatch
);
377 /* initialize ubik */
378 if (level
== rxkad_clear
)
379 ubik_SetClientSecurityProcs(afsconf_ClientAuth
, afsconf_UpToDate
,
381 else if (level
== rxkad_crypt
)
382 ubik_SetClientSecurityProcs(afsconf_ClientAuthSecure
,
383 afsconf_UpToDate
, KA_conf
);
385 ViceLog(0, ("Unsupported security level %d\n", level
));
389 ("Using level %s for Ubik connections.\n",
390 (level
== rxkad_crypt
? "crypt" : "clear")));
392 ubik_SetServerSecurityProcs(afsconf_BuildServerSecurityObjects
,
400 if (AFSDIR_SERVER_NETRESTRICT_FILEPATH
||
401 AFSDIR_SERVER_NETINFO_FILEPATH
) {
403 ccode
= afsconf_ParseNetFiles(SHostAddrs
, NULL
, NULL
,
404 ADDRSPERSITE
, reason
,
405 AFSDIR_SERVER_NETINFO_FILEPATH
,
406 AFSDIR_SERVER_NETRESTRICT_FILEPATH
);
409 ccode
= rx_getAllAddr(SHostAddrs
, ADDRSPERSITE
);
412 host
= SHostAddrs
[0];
413 rx_InitHost(host
, htons(AFSCONF_KAUTHPORT
));
417 /* Disable jumbograms */
422 ubik_ServerInit(myHost
, htons(AFSCONF_KAUTHPORT
), serverList
,
426 ubik_ServerInitByInfo(myHost
, htons(AFSCONF_KAUTHPORT
), &cellinfo
,
427 clones
, dbpath
, &KA_dbase
);
430 afs_com_err(whoami
, code
, "Ubik init failed");
434 sca
[RX_SECIDX_NULL
] = rxnull_NewServerSecurityObject();
437 rx_NewServiceHost(host
, 0, KA_AUTHENTICATION_SERVICE
,
438 "AuthenticationService", sca
, 1, KAA_ExecuteRequest
);
439 if (tservice
== (struct rx_service
*)0) {
440 ViceLog(0, ("Could not create Authentication rx service\n"));
443 rx_SetMinProcs(tservice
, 1);
444 rx_SetMaxProcs(tservice
, 1);
448 rx_NewServiceHost(host
, 0, KA_TICKET_GRANTING_SERVICE
, "TicketGrantingService",
449 sca
, 1, KAT_ExecuteRequest
);
450 if (tservice
== (struct rx_service
*)0) {
451 ViceLog(0, ("Could not create Ticket Granting rx service\n"));
454 rx_SetMinProcs(tservice
, 1);
455 rx_SetMaxProcs(tservice
, 1);
457 scm
[RX_SECIDX_NULL
] = sca
[RX_SECIDX_NULL
];
458 scm
[RX_SECIDX_VAB
] = 0;
460 rxkad_NewServerSecurityObject(rxkad_crypt
, 0, kvno_admin_key
, 0);
462 rx_NewServiceHost(host
, 0, KA_MAINTENANCE_SERVICE
, "Maintenance", scm
, 3,
464 if (tservice
== (struct rx_service
*)0) {
465 ViceLog(0, ("Could not create Maintenance rx service\n"));
468 rx_SetMinProcs(tservice
, 1);
469 rx_SetMaxProcs(tservice
, 1);
470 rx_SetStackSize(tservice
, 10000);
473 rx_NewServiceHost(host
, 0, RX_STATS_SERVICE_ID
, "rpcstats", scm
, 3,
474 RXSTATS_ExecuteRequest
);
475 if (tservice
== (struct rx_service
*)0) {
476 ViceLog(0, ("Could not create rpc stats rx service\n"));
479 rx_SetMinProcs(tservice
, 2);
480 rx_SetMaxProcs(tservice
, 4);
484 /* allow super users to manage RX statistics */
485 rx_SetRxStatUserOk(KA_rxstat_userok
);
487 rx_StartServer(0); /* start handling req. of all types */
489 if (init_kaprocs(lclpath
, initFlags
))
492 if ((code
= init_krb_udp())) {
494 ("Failed to initialize UDP interface; code = %d.\n", code
));
495 ViceLog(0, ("Running without UDP access.\n"));
498 ViceLog(0, ("Starting to process AuthServer requests\n"));
499 rx_ServerProc(NULL
); /* donate this LWP */