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>
14 #include <sys/types.h>
23 #include <WINNT/afsevent.h>
27 #include <netinet/in.h>
31 #include <afs/afsint.h>
34 #include <afs/afs_assert.h>
35 #include <afs/prs_fs.h>
39 #include <afs/afssyscalls.h>
40 #include <afs/ihandle.h>
42 #include <afs/ntops.h>
44 #include <afs/vnode.h>
45 #include <afs/volume.h>
46 #include <afs/partition.h>
48 #include <rx/rxstat.h>
49 #include <rx/rx_globals.h>
51 #include <afs/cellconfig.h>
59 #include <afs/audit.h>
60 #include <afs/afsutil.h>
64 #include "volser_internal.h"
66 /*@printflike@*/ extern void Log(const char *format
, ...);
67 /*@printflike@*/ extern void Abort(const char *format
, ...);
69 #define VolserVersion "2.0"
70 #define N_SECURITY_OBJECTS 3
72 extern struct Lock localLock
;
73 char *GlobalNameHack
= NULL
;
75 afs_int32 GlobalVolCloneId
, GlobalVolParentId
;
77 int VolumeChanged
; /* XXXX */
78 static char busyFlags
[MAXHELPERS
];
79 struct volser_trans
*QI_GlobalWriteTrans
= 0;
80 struct afsconf_dir
*tdir
;
81 static afs_int32 runningCalls
= 0;
86 int udpBufSize
= 0; /* UDP buffer size for receive */
89 int rxkadDisableDotCheck
= 0;
90 int DoPreserveVolumeStats
= 0;
92 #define ADDRSPERSITE 16 /* Same global is in rx/rx_user.c */
93 afs_uint32 SHostAddrs
[ADDRSPERSITE
];
95 #define VS_EXIT(code) { \
96 osi_audit(VS_ExitEvent, code, AUD_END); \
100 #if defined(AFS_PTHREAD_ENV)
104 return (intptr_t)pthread_getspecific(rx_thread_id_key
);
109 MyBeforeProc(struct rx_call
*acall
)
118 MyAfterProc(struct rx_call
*acall
, afs_int32 code
)
126 /* Called every GCWAKEUP seconds to try to unlock all our partitions,
127 * if we're idle and there are no active transactions
132 /* if there are no running calls, and there are no active transactions, then
133 * it should be safe to release any partition locks we've accumulated */
135 if (runningCalls
== 0 && TransList() == (struct volser_trans
*)0) {
137 VPFullUnlock(); /* in volprocs.c */
142 /* background daemon for timing out transactions */
144 BKGLoop(void *unused
)
150 tv
.tv_sec
= GCWAKEUP
;
152 #ifdef AFS_PTHREAD_ENV
154 Sleep(GCWAKEUP
* 1000);
156 select(0, 0, 0, 0, &tv
);
159 (void)IOMGR_Select(0, 0, 0, 0, &tv
);
164 if (loop
== 10) { /* reopen log every 5 minutes */
166 ReOpenLog(AFSDIR_SERVER_VOLSERLOG_FILEPATH
);
173 /* Background daemon for sleeping so the volserver does not become I/O bound */
174 afs_int32 TTsleep
, TTrun
;
175 #ifndef AFS_PTHREAD_ENV
177 BKGSleep(void *unused
)
179 struct volser_trans
*tt
;
183 #ifdef AFS_PTHREAD_ENV
185 #else /* AFS_PTHREAD_ENV */
189 for (tt
= TransList(); tt
; tt
= tt
->next
) {
191 if ((strcmp(tt
->lastProcName
, "DeleteVolume") == 0)
192 || (strcmp(tt
->lastProcName
, "Clone") == 0)
193 || (strcmp(tt
->lastProcName
, "ReClone") == 0)
194 || (strcmp(tt
->lastProcName
, "Forward") == 0)
195 || (strcmp(tt
->lastProcName
, "Restore") == 0)
196 || (strcmp(tt
->lastProcName
, "ForwardMulti") == 0)) {
197 VTRANS_OBJ_UNLOCK(tt
);
200 VTRANS_OBJ_UNLOCK(tt
);
214 /* no volser_syscall */
215 #elif defined(AFS_SUN511_ENV)
217 volser_syscall(afs_uint32 a3
, afs_uint32 a4
, void *a5
)
220 code
= ioctl_sun_afs_syscall(28 /* AFSCALL_CALL */, a3
, a4
, a5
, 0, 0, 0,
229 volser_syscall(afs_uint32 a3
, afs_uint32 a4
, void *a5
)
232 #ifndef AFS_LINUX20_ENV
235 old
= signal(SIGSYS
, SIG_IGN
);
238 syscall(AFS_SYSCALL
/* AFS_SYSCALL */ , 28 /* AFSCALL_CALL */ , a3
,
240 #ifndef AFS_LINUX20_ENV
249 /* check whether caller is authorized to manage RX statistics */
251 vol_rxstat_userok(struct rx_call
*call
)
253 return afsconf_SuperUser(tdir
, call
, NULL
);
256 #include "AFS_component_version_number.c"
258 main(int argc
, char **argv
)
261 struct rx_securityClass
**securityClasses
;
262 afs_int32 numClasses
;
263 struct rx_service
*service
;
264 struct ktc_encryptionKey tkey
;
266 int rxJumbograms
= 0; /* default is to send and receive jumbograms. */
268 int bufSize
= 0; /* temp variable to read in udp socket buf size */
269 afs_uint32 host
= ntohl(INADDR_ANY
);
270 char *auditFileName
= NULL
;
271 VolumePackageOptions opts
;
275 * The following signal action for AIX is necessary so that in case of a
276 * crash (i.e. core is generated) we can include the user's data section
277 * in the core dump. Unfortunately, by default, only a partial core is
278 * generated which, in many cases, isn't too useful.
280 struct sigaction nsa
;
282 sigemptyset(&nsa
.sa_mask
);
283 nsa
.sa_handler
= SIG_DFL
;
284 nsa
.sa_flags
= SA_FULLDUMP
;
285 sigaction(SIGABRT
, &nsa
, NULL
);
286 sigaction(SIGSEGV
, &nsa
, NULL
);
289 osi_audit(VS_StartEvent
, 0, AUD_END
);
291 /* Initialize dirpaths */
292 if (!(initAFSDirPath() & AFSDIR_SERVER_PATHS_OK
)) {
294 ReportErrorEventAlt(AFSEVT_SVR_NO_INSTALL_DIR
, 0, argv
[0], 0);
296 fprintf(stderr
, "%s: Unable to obtain AFS server directory.\n",
304 for (code
= 1; code
< argc
; code
++) {
305 if (strcmp(argv
[code
], "-log") == 0) {
306 /* set extra logging flag */
308 } else if (strcmp(argv
[code
], "-help") == 0) {
310 } else if (strcmp(argv
[code
], "-rxbind") == 0) {
312 } else if (strcmp(argv
[code
], "-allow-dotted-principals") == 0) {
313 rxkadDisableDotCheck
= 1;
314 } else if (strcmp(argv
[code
], "-d") == 0) {
315 if ((code
+ 1) >= argc
) {
316 fprintf(stderr
, "missing argument for -d\n");
319 debuglevel
= atoi(argv
[++code
]);
320 LogLevel
= debuglevel
;
321 } else if (strcmp(argv
[code
], "-p") == 0) {
322 lwps
= atoi(argv
[++code
]);
324 printf("Warning: '-p %d' is too big; using %d instead\n",
328 } else if (strcmp(argv
[code
], "-auditlog") == 0) {
329 auditFileName
= argv
[++code
];
331 } else if (strcmp(argv
[code
], "-audit-interface") == 0) {
332 char *interface
= argv
[++code
];
334 if (osi_audit_interface(interface
)) {
335 printf("Invalid audit interface '%s'\n", interface
);
338 } else if (strcmp(argv
[code
], "-nojumbo") == 0) {
340 } else if (strcmp(argv
[code
], "-jumbo") == 0) {
342 } else if (!strcmp(argv
[code
], "-rxmaxmtu")) {
343 if ((code
+ 1) >= argc
) {
344 fprintf(stderr
, "missing argument for -rxmaxmtu\n");
347 rxMaxMTU
= atoi(argv
[++code
]);
348 if ((rxMaxMTU
< RX_MIN_PACKET_SIZE
) ||
349 (rxMaxMTU
> RX_MAX_PACKET_DATA_SIZE
)) {
350 printf("rxMaxMTU %d invalid; must be between %d-%" AFS_SIZET_FMT
"\n",
351 rxMaxMTU
, RX_MIN_PACKET_SIZE
,
352 RX_MAX_PACKET_DATA_SIZE
);
355 } else if (strcmp(argv
[code
], "-sleep") == 0) {
356 sscanf(argv
[++code
], "%d/%d", &TTsleep
, &TTrun
);
357 if ((TTsleep
< 0) || (TTrun
<= 0)) {
358 printf("Warning: '-sleep %d/%d' is incorrect; ignoring\n",
362 } else if (strcmp(argv
[code
], "-udpsize") == 0) {
363 if ((code
+ 1) >= argc
) {
364 printf("You have to specify -udpsize <integer value>\n");
367 sscanf(argv
[++code
], "%d", &bufSize
);
368 if (bufSize
< rx_GetMinUdpBufSize())
370 ("Warning:udpsize %d is less than minimum %d; ignoring\n",
371 bufSize
, rx_GetMinUdpBufSize());
373 udpBufSize
= bufSize
;
374 } else if (strcmp(argv
[code
], "-enable_peer_stats") == 0) {
375 rx_enablePeerRPCStats();
376 } else if (strcmp(argv
[code
], "-enable_process_stats") == 0) {
377 rx_enableProcessRPCStats();
378 } else if (strcmp(argv
[code
], "-preserve-vol-stats") == 0) {
379 DoPreserveVolumeStats
= 1;
380 } else if (strcmp(argv
[code
], "-sync") == 0) {
381 if ((code
+ 1) >= argc
) {
382 printf("You have to specify -sync <sync_behavior>\n");
386 if (ih_SetSyncBehavior(argv
[++code
])) {
387 printf("Invalid -sync value %s\n", argv
[code
]);
392 else if (strcmp(argv
[code
], "-syslog") == 0) {
393 /* set syslog logging flag */
395 } else if (strncmp(argv
[code
], "-syslog=", 8) == 0) {
397 serverLogSyslogFacility
= atoi(argv
[code
] + 8);
401 printf("volserver: unrecognized flag '%s'\n", argv
[code
]);
404 printf("Usage: volserver [-log] [-p <number of processes>] "
405 "[-auditlog <log path>] [-d <debug level>] "
406 "[-nojumbo] [-jumbo] [-rxmaxmtu <bytes>] [-rxbind] [-allow-dotted-principals] "
407 "[-udpsize <size of socket buffer in bytes>] "
408 "[-syslog[=FACILITY]] "
409 "[-enable_peer_stats] [-enable_process_stats] "
410 "[-sync <always | delayed | onclose | never>] "
413 printf("Usage: volserver [-log] [-p <number of processes>] "
414 "[-auditlog <log path>] [-d <debug level>] "
415 "[-nojumbo] [-jumbo] [-rxmaxmtu <bytes>] [-rxbind] [-allow-dotted-principals] "
416 "[-udpsize <size of socket buffer in bytes>] "
417 "[-enable_peer_stats] [-enable_process_stats] "
418 "[-sync <always | delayed | onclose | never>] "
426 osi_audit_file(auditFileName
);
427 osi_audit(VS_StartEvent
, 0, AUD_END
);
429 #ifdef AFS_SGI_VNODE_GLUE
430 if (afs_init_kernel_config(-1) < 0) {
432 ("Can't determine NUMA configuration, not starting volserver.\n");
438 #ifdef AFS_PTHREAD_ENV
439 SetLogThreadNumProgram( threadNum
);
443 if (afs_winsockInit() < 0) {
444 ReportErrorEventAlt(AFSEVT_SVR_WINSOCK_INIT_FAILED
, 0, argv
[0], 0);
445 printf("Volume server unable to start winsock, exiting.\n");
449 /* Open VolserLog and map stdout, stderr into it; VInitVolumePackage2 can
450 log, so we need to do this here */
451 OpenLog(AFSDIR_SERVER_VOLSERLOG_FILEPATH
);
453 VOptDefaults(volumeServer
, &opts
);
454 if (VInitVolumePackage2(volumeServer
, &opts
)) {
455 Log("Shutting down: errors encountered initializing volume package\n");
459 Lock_Init(&localLock
);
461 #ifndef AFS_PTHREAD_ENV
462 vol_PollProc
= IOMGR_Poll
; /* tell vol pkg to poll io system periodically */
465 rxi_syscallp
= volser_syscall
;
467 rx_nPackets
= rxpackets
; /* set the max number of packets */
469 rx_SetUdpBufSize(udpBufSize
); /* set the UDP buffer size for receive */
472 if (AFSDIR_SERVER_NETRESTRICT_FILEPATH
||
473 AFSDIR_SERVER_NETINFO_FILEPATH
) {
475 ccode
= parseNetFiles(SHostAddrs
, NULL
, NULL
,
476 ADDRSPERSITE
, reason
,
477 AFSDIR_SERVER_NETINFO_FILEPATH
,
478 AFSDIR_SERVER_NETRESTRICT_FILEPATH
);
481 ccode
= rx_getAllAddr(SHostAddrs
, ADDRSPERSITE
);
484 host
= SHostAddrs
[0];
487 code
= rx_InitHost(host
, (int)htons(AFSCONF_VOLUMEPORT
));
489 fprintf(stderr
, "rx init failed on socket AFSCONF_VOLUMEPORT %u\n",
494 /* Don't allow 3.4 vos clients to send jumbograms and we don't send. */
497 if (rxMaxMTU
!= -1) {
498 rx_SetMaxMTU(rxMaxMTU
);
501 rx_SetRxDeadTime(420);
502 memset(busyFlags
, 0, sizeof(busyFlags
));
507 #ifdef AFS_PTHREAD_ENV
509 pthread_attr_t tattr
;
510 osi_Assert(pthread_attr_init(&tattr
) == 0);
511 osi_Assert(pthread_attr_setdetachstate(&tattr
, PTHREAD_CREATE_DETACHED
) == 0);
513 osi_Assert(pthread_create(&tid
, &tattr
, BKGLoop
, NULL
) == 0);
516 LWP_CreateProcess(BKGLoop
, 16*1024, 3, 0, "vol bkg daemon", &pid
);
517 LWP_CreateProcess(BKGSleep
,16*1024, 3, 0, "vol slp daemon", &pid
);
521 /* Create a single security object, in this case the null security object, for unauthenticated connections, which will be used to control security on connections made to this server */
523 tdir
= afsconf_Open(AFSDIR_SERVER_ETC_DIRPATH
);
525 Abort("volser: could not open conf files in %s\n",
526 AFSDIR_SERVER_ETC_DIRPATH
);
529 afsconf_GetKey(tdir
, 999, &tkey
);
530 afsconf_BuildServerSecurityObjects(tdir
, 0, &securityClasses
, &numClasses
);
531 if (securityClasses
[0] == NULL
)
532 Abort("rxnull_NewServerSecurityObject");
534 rx_NewServiceHost(host
, 0, VOLSERVICE_ID
, "VOLSER", securityClasses
,
535 numClasses
, AFSVolExecuteRequest
);
536 if (service
== (struct rx_service
*)0)
537 Abort("rx_NewService");
538 rx_SetBeforeProc(service
, MyBeforeProc
);
539 rx_SetAfterProc(service
, MyAfterProc
);
540 rx_SetIdleDeadTime(service
, 0); /* never timeout */
543 rx_SetMaxProcs(service
, lwps
);
544 #if defined(AFS_XBSD_ENV)
545 rx_SetStackSize(service
, (128 * 1024));
546 #elif defined(AFS_SGI_ENV)
547 rx_SetStackSize(service
, (48 * 1024));
549 rx_SetStackSize(service
, (32 * 1024));
552 if (rxkadDisableDotCheck
) {
553 rx_SetSecurityConfiguration(service
, RXS_CONFIG_FLAGS
,
554 (void *)RXS_CONFIG_FLAGS_DISABLE_DOTCHECK
);
558 rx_NewService(0, RX_STATS_SERVICE_ID
, "rpcstats", securityClasses
,
559 numClasses
, RXSTATS_ExecuteRequest
);
560 if (service
== (struct rx_service
*)0)
561 Abort("rx_NewService");
562 rx_SetMinProcs(service
, 2);
563 rx_SetMaxProcs(service
, 4);
565 LogCommandLine(argc
, argv
, "Volserver", VolserVersion
, "Starting AFS",
567 if (afsconf_GetLatestKey(tdir
, NULL
, NULL
) == 0) {
571 Log("Will sleep %d second%s every %d second%s\n", TTsleep
,
572 (TTsleep
> 1) ? "s" : "", TTrun
+ TTsleep
,
573 (TTrun
+ TTsleep
> 1) ? "s" : "");
576 /* allow super users to manage RX statistics */
577 rx_SetRxStatUserOk(vol_rxstat_userok
);
579 rx_StartServer(1); /* Donate this process to the server process pool */
581 osi_audit(VS_FinishEvent
, (-1), AUD_END
);
582 Abort("StartServer returned?");
583 return 0; /* not reached */