time-t-casting-fixes-20060404
[openafs.git] / src / vol / salvaged.c
1 /*
2  * Copyright 2006, Sine Nomine Associates 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  * demand attach fs
12  * online salvager daemon
13  */
14
15 /* Main program file. Define globals. */
16 #define MAIN 1
17
18 #include <afsconfig.h>
19 #include <afs/param.h>
20
21 RCSID
22     ("$Header$");
23
24 #include <stdlib.h>
25 #include <stdio.h>
26 #include <string.h>
27 #include <dirent.h>
28 #include <sys/stat.h>
29 #include <time.h>
30 #include <errno.h>
31 #ifdef AFS_NT40_ENV
32 #include <io.h>
33 #include <WINNT/afsevent.h>
34 #else
35 #include <sys/param.h>
36 #include <sys/file.h>
37 #ifndef ITIMER_REAL
38 #include <sys/time.h>
39 #endif /* ITIMER_REAL */
40 #endif
41 #if     defined(AFS_AIX_ENV) || defined(AFS_SUN4_ENV)
42 #define WCOREDUMP(x)    (x & 0200)
43 #endif
44 #include <rx/xdr.h>
45 #include <afs/afsint.h>
46 #include <afs/assert.h>
47 #if !defined(AFS_SGI_ENV) && !defined(AFS_NT40_ENV)
48 #if defined(AFS_VFSINCL_ENV)
49 #include <sys/vnode.h>
50 #ifdef  AFS_SUN5_ENV
51 #include <sys/fs/ufs_inode.h>
52 #else
53 #if defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
54 #include <ufs/ufs/dinode.h>
55 #include <ufs/ffs/fs.h>
56 #else
57 #include <ufs/inode.h>
58 #endif
59 #endif
60 #else /* AFS_VFSINCL_ENV */
61 #ifdef  AFS_OSF_ENV
62 #include <ufs/inode.h>
63 #else /* AFS_OSF_ENV */
64 #if !defined(AFS_LINUX20_ENV) && !defined(AFS_XBSD_ENV)
65 #include <sys/inode.h>
66 #endif
67 #endif
68 #endif /* AFS_VFSINCL_ENV */
69 #endif /* AFS_SGI_ENV */
70 #ifdef  AFS_AIX_ENV
71 #include <sys/vfs.h>
72 #include <sys/lockf.h>
73 #else
74 #ifdef  AFS_HPUX_ENV
75 #include <unistd.h>
76 #include <checklist.h>
77 #else
78 #if defined(AFS_SGI_ENV)
79 #include <unistd.h>
80 #include <fcntl.h>
81 #include <mntent.h>
82 #else
83 #if     defined(AFS_SUN_ENV) || defined(AFS_SUN5_ENV)
84 #ifdef    AFS_SUN5_ENV
85 #include <unistd.h>
86 #include <sys/mnttab.h>
87 #include <sys/mntent.h>
88 #else
89 #include <mntent.h>
90 #endif
91 #else
92 #endif /* AFS_SGI_ENV */
93 #endif /* AFS_HPUX_ENV */
94 #endif
95 #endif
96 #include <fcntl.h>
97 #ifndef AFS_NT40_ENV
98 #include <afs/osi_inode.h>
99 #endif
100 #include <afs/cmd.h>
101 #include <afs/afsutil.h>
102 #include <afs/fileutil.h>
103 #include <afs/procmgmt.h>       /* signal(), kill(), wait(), etc. */
104 #ifndef AFS_NT40_ENV
105 #include <syslog.h>
106 #endif
107
108 #include "nfs.h"
109 #include "lwp.h"
110 #include "lock.h"
111 #include <afs/afssyscalls.h>
112 #include "ihandle.h"
113 #include "vnode.h"
114 #include "volume.h"
115 #include "partition.h"
116 #include "daemon_com.h"
117 #include "fssync.h"
118 #include "salvsync.h"
119 #include "viceinode.h"
120 #include "salvage.h"
121 #include "volinodes.h"          /* header magic number, etc. stuff */
122 #include "vol-salvage.h"
123 #ifdef AFS_NT40_ENV
124 #include <pthread.h>
125 #endif
126
127
128 #if !defined(AFS_DEMAND_ATTACH_FS)
129 #error "online salvager only supported for demand attach fileserver"
130 #endif /* AFS_DEMAND_ATTACH_FS */
131
132 #if defined(AFS_NT40_ENV)
133 #error "online salvager not supported on NT"
134 #endif /* AFS_NT40_ENV */
135
136
137 /* Forward declarations */
138 /*@printflike@*/ void Log(const char *format, ...);
139 /*@printflike@*/ void Abort(const char *format, ...);
140
141
142 /*@+fcnmacros +macrofcndecl@*/
143 #ifdef O_LARGEFILE
144 #define afs_fopen       fopen64
145 #else /* !O_LARGEFILE */
146 #define afs_fopen       fopen
147 #endif /* !O_LARGEFILE */
148 /*@=fcnmacros =macrofcndecl@*/
149
150
151
152 static volatile int current_workers = 0;
153 static volatile struct rx_queue pending_q;
154 static pthread_mutex_t worker_lock;
155 static pthread_cond_t worker_cv;
156
157 static void * SalvageChildReaperThread(void *);
158 static int DoSalvageVolume(struct SalvageQueueNode * node, int slot);
159
160 static void SalvageServer(void);
161 static void SalvageClient(VolumeId vid, char * pname);
162
163 static int Reap_Child(char * prog, int * pid, int * status);
164
165 static void * SalvageLogCleanupThread(void *);
166 static int SalvageLogCleanup(int pid);
167
168 struct log_cleanup_node {
169     struct rx_queue q;
170     int pid;
171 };
172
173 struct {
174     struct rx_queue queue_head;
175     pthread_cond_t queue_change_cv;
176 } log_cleanup_queue;
177
178
179 #define DEFAULT_PARALLELISM 4 /* allow 4 parallel salvage workers by default */
180
181 static int
182 handleit(struct cmd_syndesc *as)
183 {
184     register struct cmd_item *ti;
185     char pname[100], *temp;
186     afs_int32 seenpart = 0, seenvol = 0, vid = 0, seenany = 0;
187     struct DiskPartition *partP;
188
189
190 #ifdef AFS_SGI_VNODE_GLUE
191     if (afs_init_kernel_config(-1) < 0) {
192         printf
193             ("Can't determine NUMA configuration, not starting salvager.\n");
194         exit(1);
195     }
196 #endif
197
198     if (as->parms[2].items)     /* -debug */
199         debug = 1;
200     if (as->parms[3].items)     /* -nowrite */
201         Testing = 1;
202     if (as->parms[4].items)     /* -inodes */
203         ListInodeOption = 1;
204     if (as->parms[5].items)     /* -oktozap */
205         OKToZap = 1;
206     if (as->parms[6].items)     /* -rootinodes */
207         ShowRootFiles = 1;
208     if (as->parms[8].items)     /* -ForceReads */
209         forceR = 1;
210     if ((ti = as->parms[9].items)) {    /* -Parallel # */
211         temp = ti->data;
212         if (strncmp(temp, "all", 3) == 0) {
213             PartsPerDisk = 1;
214             temp += 3;
215         }
216         if (strlen(temp) != 0) {
217             Parallel = atoi(temp);
218             if (Parallel < 1)
219                 Parallel = 1;
220             if (Parallel > MAXPARALLEL) {
221                 printf("Setting parallel salvages to maximum of %d \n",
222                        MAXPARALLEL);
223                 Parallel = MAXPARALLEL;
224             }
225         }
226     } else {
227         Parallel = MIN(DEFAULT_PARALLELISM, MAXPARALLEL);
228     }
229     if ((ti = as->parms[10].items)) {   /* -tmpdir */
230         DIR *dirp;
231
232         tmpdir = ti->data;
233         dirp = opendir(tmpdir);
234         if (!dirp) {
235             printf
236                 ("Can't open temporary placeholder dir %s; using current partition \n",
237                  tmpdir);
238             tmpdir = NULL;
239         } else
240             closedir(dirp);
241     }
242     if ((ti = as->parms[11].items))     /* -showlog */
243         ShowLog = 1;
244     if ((ti = as->parms[12].items)) {   /* -orphans */
245         if (Testing)
246             orphans = ORPH_IGNORE;
247         else if (strcmp(ti->data, "remove") == 0
248                  || strcmp(ti->data, "r") == 0)
249             orphans = ORPH_REMOVE;
250         else if (strcmp(ti->data, "attach") == 0
251                  || strcmp(ti->data, "a") == 0)
252             orphans = ORPH_ATTACH;
253     }
254 #ifndef AFS_NT40_ENV            /* ignore options on NT */
255     if ((ti = as->parms[13].items)) {   /* -syslog */
256         useSyslog = 1;
257         ShowLog = 0;
258     }
259     if ((ti = as->parms[14].items)) {   /* -syslogfacility */
260         useSyslogFacility = atoi(ti->data);
261     }
262
263     if ((ti = as->parms[15].items)) {   /* -datelogs */
264         TimeStampLogFile(AFSDIR_SERVER_SALSRVLOG_FILEPATH);
265     }
266 #endif
267
268     if ((ti = as->parms[16].items)) {   /* -client */
269         if ((ti = as->parms[0].items)) {        /* -partition */
270             seenpart = 1;
271             strlcpy(pname, ti->data, sizeof(pname));
272         }
273         if ((ti = as->parms[1].items)) {        /* -volumeid */
274             seenvol = 1;
275             vid = atoi(ti->data);
276         }
277
278         if (!seenpart || !seenvol) {
279             printf("You must specify '-partition' and '-volumeid' with the '-client' option\n");
280             exit(-1);
281         }
282
283         SalvageClient(vid, pname);
284
285     } else {  /* salvageserver mode */
286         SalvageServer();
287     }
288     return (0);
289 }
290
291
292 #ifndef AFS_NT40_ENV
293 #include "AFS_component_version_number.c"
294 #endif
295 #define MAX_ARGS 128
296 #ifdef AFS_NT40_ENV
297 char *save_args[MAX_ARGS];
298 int n_save_args = 0;
299 pthread_t main_thread;
300 #endif
301
302 static char commandLine[150];
303
304 int
305 main(int argc, char **argv)
306 {
307     struct cmd_syndesc *ts;
308     int err = 0;
309
310     int i;
311     extern char cml_version_number[];
312
313 #ifdef  AFS_AIX32_ENV
314     /*
315      * The following signal action for AIX is necessary so that in case of a 
316      * crash (i.e. core is generated) we can include the user's data section 
317      * in the core dump. Unfortunately, by default, only a partial core is
318      * generated which, in many cases, isn't too useful.
319      */
320     struct sigaction nsa;
321
322     sigemptyset(&nsa.sa_mask);
323     nsa.sa_handler = SIG_DFL;
324     nsa.sa_flags = SA_FULLDUMP;
325     sigaction(SIGABRT, &nsa, NULL);
326     sigaction(SIGSEGV, &nsa, NULL);
327 #endif
328
329     /* Initialize directory paths */
330     if (!(initAFSDirPath() & AFSDIR_SERVER_PATHS_OK)) {
331 #ifdef AFS_NT40_ENV
332         ReportErrorEventAlt(AFSEVT_SVR_NO_INSTALL_DIR, 0, argv[0], 0);
333 #endif
334         fprintf(stderr, "%s: Unable to obtain AFS server directory.\n",
335                 argv[0]);
336         exit(2);
337     }
338 #ifdef AFS_NT40_ENV
339     main_thread = pthread_self();
340     if (spawnDatap && spawnDataLen) {
341         /* This is a child per partition salvager. Don't setup log or
342          * try to lock the salvager lock.
343          */
344         if (nt_SetupPartitionSalvage(spawnDatap, spawnDataLen) < 0)
345             exit(3);
346     } else {
347 #endif
348         for (commandLine[0] = '\0', i = 0; i < argc; i++) {
349             if (i > 0)
350                 strlcat(commandLine, " ", sizeof(commandLine));
351             strlcat(commandLine, argv[i], sizeof(commandLine));
352         }
353
354 #ifndef AFS_NT40_ENV
355         if (geteuid() != 0) {
356             printf("Salvager must be run as root.\n");
357             fflush(stdout);
358             Exit(0);
359         }
360 #endif
361
362         /* bad for normal help flag processing, but can do nada */
363
364 #ifdef AFS_NT40_ENV
365     }
366 #endif
367
368     ts = cmd_CreateSyntax("initcmd", handleit, 0, "initialize the program");
369     cmd_AddParm(ts, "-partition", CMD_SINGLE, CMD_OPTIONAL,
370                 "Name of partition to salvage");
371     cmd_AddParm(ts, "-volumeid", CMD_SINGLE, CMD_OPTIONAL,
372                 "Volume Id to salvage");
373     cmd_AddParm(ts, "-debug", CMD_FLAG, CMD_OPTIONAL,
374                 "Run in Debugging mode");
375     cmd_AddParm(ts, "-nowrite", CMD_FLAG, CMD_OPTIONAL,
376                 "Run readonly/test mode");
377     cmd_AddParm(ts, "-inodes", CMD_FLAG, CMD_OPTIONAL,
378                 "Just list affected afs inodes - debugging flag");
379     cmd_AddParm(ts, "-oktozap", CMD_FLAG, CMD_OPTIONAL,
380                 "Give permission to destroy bogus inodes/volumes - debugging flag");
381     cmd_AddParm(ts, "-rootinodes", CMD_FLAG, CMD_OPTIONAL,
382                 "Show inodes owned by root - debugging flag");
383     cmd_AddParm(ts, "-salvagedirs", CMD_FLAG, CMD_OPTIONAL,
384                 "Force rebuild/salvage of all directories");
385     cmd_AddParm(ts, "-blockreads", CMD_FLAG, CMD_OPTIONAL,
386                 "Read smaller blocks to handle IO/bad blocks");
387     cmd_AddParm(ts, "-parallel", CMD_SINGLE, CMD_OPTIONAL,
388                 "# of max parallel partition salvaging");
389     cmd_AddParm(ts, "-tmpdir", CMD_SINGLE, CMD_OPTIONAL,
390                 "Name of dir to place tmp files ");
391     cmd_AddParm(ts, "-showlog", CMD_FLAG, CMD_OPTIONAL,
392                 "Show log file upon completion");
393     cmd_AddParm(ts, "-orphans", CMD_SINGLE, CMD_OPTIONAL,
394                 "ignore | remove | attach");
395
396     /* note - syslog isn't avail on NT, but if we make it conditional, have
397      * to deal with screwy offsets for cmd params */
398     cmd_AddParm(ts, "-syslog", CMD_FLAG, CMD_OPTIONAL,
399                 "Write salvage log to syslogs");
400     cmd_AddParm(ts, "-syslogfacility", CMD_SINGLE, CMD_OPTIONAL,
401                 "Syslog facility number to use");
402     cmd_AddParm(ts, "-datelogs", CMD_FLAG, CMD_OPTIONAL,
403                 "Include timestamp in logfile filename");
404
405     cmd_AddParm(ts, "-client", CMD_FLAG, CMD_OPTIONAL,
406                 "Use SALVSYNC to ask salvageserver to salvage a volume");
407
408     err = cmd_Dispatch(argc, argv);
409     Exit(err);
410 }
411
412 static void
413 SalvageClient(VolumeId vid, char * pname)
414 {
415     int done = 0;
416     afs_int32 code;
417     SYNC_response res;
418     SALVSYNC_response_hdr sres;
419
420     VInitVolumePackage(volumeUtility, 5, 5, DONT_CONNECT_FS, 0);
421     SALVSYNC_clientInit();
422     
423     code = SALVSYNC_SalvageVolume(vid, pname, SALVSYNC_SALVAGE, SALVSYNC_OPERATOR, 0, NULL);
424     if (code != SYNC_OK) {
425         goto sync_error;
426     }
427
428     res.payload.buf = (void *) &sres;
429     res.payload.len = sizeof(sres);
430
431     while(!done) {
432         sleep(2);
433         code = SALVSYNC_SalvageVolume(vid, pname, SALVSYNC_QUERY, SALVSYNC_WHATEVER, 0, &res);
434         if (code != SYNC_OK) {
435             goto sync_error;
436         }
437         switch (sres.state) {
438         case SALVSYNC_STATE_ERROR:
439             printf("salvageserver reports salvage ended in an error; check log files for more details\n");
440         case SALVSYNC_STATE_DONE:
441         case SALVSYNC_STATE_UNKNOWN:
442             done = 1;
443         }
444     }
445     SALVSYNC_clientFinis();
446     return;
447
448  sync_error:
449     if (code == SYNC_DENIED) {
450         printf("salvageserver refused to salvage volume %u on partition %s\n",
451                vid, pname);
452     } else if (code == SYNC_BAD_COMMAND) {
453         printf("SALVSYNC protocol mismatch; please make sure fileserver, volserver, salvageserver and salvager are same version\n");
454     } else if (code == SYNC_COM_ERROR) {
455         printf("SALVSYNC communications error\n");
456     }
457     SALVSYNC_clientFinis();
458     exit(-1);
459 }
460
461 static int * child_slot;
462
463 static void
464 SalvageServer(void)
465 {
466     int pid, ret;
467     struct SalvageQueueNode * node;
468     pthread_t tid;
469     pthread_attr_t attrs;
470     int slot;
471
472     /* All entries to the log will be appended.  Useful if there are
473      * multiple salvagers appending to the log.
474      */
475
476     CheckLogFile(AFSDIR_SERVER_SALSRVLOG_FILEPATH);
477 #ifndef AFS_NT40_ENV
478 #ifdef AFS_LINUX20_ENV
479     fcntl(fileno(logFile), F_SETFL, O_APPEND);  /* Isn't this redundant? */
480 #else
481     fcntl(fileno(logFile), F_SETFL, FAPPEND);   /* Isn't this redundant? */
482 #endif
483 #endif
484     setlinebuf(logFile);
485
486     fprintf(logFile, "%s\n", cml_version_number);
487     Log("Starting OpenAFS Online Salvage Server %s (%s)\n", SalvageVersion, commandLine);
488     
489     /* Get and hold a lock for the duration of the salvage to make sure
490      * that no other salvage runs at the same time.  The routine
491      * VInitVolumePackage (called below) makes sure that a file server or
492      * other volume utilities don't interfere with the salvage.
493      */
494     
495     /* even demand attach online salvager
496      * still needs this because we don't want
497      * a stand-alone salvager to conflict with
498      * the salvager daemon */
499     ObtainSalvageLock();
500
501     child_slot = (int *) malloc(Parallel * sizeof(int));
502     assert(child_slot != NULL);
503     memset(child_slot, 0, Parallel * sizeof(int));
504             
505     /* initialize things */
506     VInitVolumePackage(salvageServer, 5, 5,
507                        1, 0);
508     DInit(10);
509     queue_Init(&pending_q);
510     queue_Init(&log_cleanup_queue);
511     assert(pthread_mutex_init(&worker_lock, NULL) == 0);
512     assert(pthread_cond_init(&worker_cv, NULL) == 0);
513     assert(pthread_cond_init(&log_cleanup_queue.queue_change_cv, NULL) == 0);
514     assert(pthread_attr_init(&attrs) == 0);
515
516     /* start up the reaper and log cleaner threads */
517     assert(pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED) == 0);
518     assert(pthread_create(&tid, 
519                           &attrs, 
520                           &SalvageChildReaperThread,
521                           NULL) == 0);
522     assert(pthread_create(&tid, 
523                           &attrs, 
524                           &SalvageLogCleanupThread,
525                           NULL) == 0);
526
527     /* loop forever serving requests */
528     while (1) {
529         node = SALVSYNC_getWork();
530         assert(node != NULL);
531
532         VOL_LOCK;
533         /* find a slot */
534         for (slot = 0; slot < Parallel; slot++) {
535           if (!child_slot[slot])
536             break;
537         }
538         assert (slot < Parallel);
539
540         pid = Fork();
541         if (pid == 0) {
542             VOL_UNLOCK;
543             ret = DoSalvageVolume(node, slot);
544             Exit(ret);
545         } else if (pid < 0) {
546             VOL_UNLOCK;
547             SALVSYNC_doneWork(node, 1);
548         } else {
549             child_slot[slot] = pid;
550             node->pid = pid;
551             VOL_UNLOCK;
552             
553             assert(pthread_mutex_lock(&worker_lock) == 0);
554             current_workers++;
555             
556             /* let the reaper thread know another worker was spawned */
557             assert(pthread_cond_broadcast(&worker_cv) == 0);
558             
559             /* if we're overquota, wait for the reaper */
560             while (current_workers >= Parallel) {
561                 assert(pthread_cond_wait(&worker_cv, &worker_lock) == 0);
562             }
563             assert(pthread_mutex_unlock(&worker_lock) == 0);
564         }
565     }
566 }
567
568 static int
569 DoSalvageVolume(struct SalvageQueueNode * node, int slot)
570 {
571     char childLog[AFSDIR_PATH_MAX];
572     int ret;
573     struct DiskPartition * partP;
574
575     VChildProcReconnectFS();
576
577     /* do not attempt to close parent's logFile handle as
578      * another thread may have held the lock on the FILE
579      * structure when fork was called! */
580
581     afs_snprintf(childLog, sizeof(childLog), "%s.%d", 
582                  AFSDIR_SERVER_SLVGLOG_FILEPATH, getpid());
583
584     logFile = afs_fopen(childLog, "a");
585     if (!logFile) {             /* still nothing, use stdout */
586         logFile = stdout;
587         ShowLog = 0;
588     }
589
590     if (node->command.sop.volume <= 0) {
591         Log("salvageServer: invalid volume id specified; salvage aborted\n");
592         return 1;
593     }
594     
595     partP = VGetPartition(node->command.sop.partName, 0);
596     if (!partP) {
597         Log("salvageServer: Unknown or unmounted partition %s; salvage aborted\n", 
598             node->command.sop.partName);
599         return 1;
600     }
601
602     /* Salvage individual volume; don't notify fs */
603     SalvageFileSys1(partP, node->command.sop.volume);
604
605     VDisconnectFS();
606
607     fclose(logFile);
608     return 0;
609 }
610
611
612 static void *
613 SalvageChildReaperThread(void * args)
614 {
615     int slot, pid, status, code, found;
616     struct SalvageQueueNode *qp, *nqp;
617     struct log_cleanup_node * cleanup;
618
619     assert(pthread_mutex_lock(&worker_lock) == 0);
620
621     /* loop reaping our children */
622     while (1) {
623         /* wait() won't block unless we have children, so
624          * block on the cond var if we're childless */
625         while (current_workers == 0) {
626             assert(pthread_cond_wait(&worker_cv, &worker_lock) == 0);
627         }
628
629         assert(pthread_mutex_unlock(&worker_lock) == 0);
630
631         cleanup = (struct log_cleanup_node *) malloc(sizeof(struct log_cleanup_node));
632
633         while (Reap_Child("salvageserver", &pid, &status) < 0) {
634             /* try to prevent livelock if something goes wrong */
635             sleep(1);
636         }
637
638         VOL_LOCK;
639         for (slot = 0; slot < Parallel; slot++) {
640             if (child_slot[slot] == pid)
641                 break;
642         }
643         assert(slot < Parallel);
644         child_slot[slot] = 0;
645         VOL_UNLOCK;
646
647         assert(pthread_mutex_lock(&worker_lock) == 0);
648
649         if (cleanup) {
650             cleanup->pid = pid;
651             queue_Append(&log_cleanup_queue, cleanup);
652             assert(pthread_cond_signal(&log_cleanup_queue.queue_change_cv) == 0);
653         }
654
655         /* ok, we've reaped a child */
656         current_workers--;
657         SALVSYNC_doneWorkByPid(pid, 0);
658         assert(pthread_cond_broadcast(&worker_cv) == 0);
659     }
660
661     return NULL;
662 }
663
664 static int
665 Reap_Child(char *prog, int * pid, int * status)
666 {
667     int ret;
668     ret = wait(status);
669
670     if (ret >= 0) {
671         *pid = ret;
672         if (WCOREDUMP(*status))
673             Log("\"%s\" core dumped!\n", prog);
674         if (WIFSIGNALED(*status) != 0 || WEXITSTATUS(*status) != 0)
675             Log("\"%s\" (pid=%d) terminated abnormally!\n", prog, ret);
676     } else {
677         Log("wait returned -1\n");
678     }
679     return ret;
680 }
681
682 /*
683  * thread to combine salvager child logs
684  * back into the main salvageserver log
685  */
686 static void *
687 SalvageLogCleanupThread(void * arg)
688 {
689     struct log_cleanup_node * cleanup;
690
691     assert(pthread_mutex_lock(&worker_lock) == 0);
692
693     while (1) {
694         while (queue_IsEmpty(&log_cleanup_queue)) {
695             assert(pthread_cond_wait(&log_cleanup_queue.queue_change_cv, &worker_lock) == 0);
696         }
697
698         while (queue_IsNotEmpty(&log_cleanup_queue)) {
699             cleanup = queue_First(&log_cleanup_queue, log_cleanup_node);
700             queue_Remove(cleanup);
701             assert(pthread_mutex_unlock(&worker_lock) == 0);
702             SalvageLogCleanup(cleanup->pid);
703             free(cleanup);
704             assert(pthread_mutex_lock(&worker_lock) == 0);
705         }           
706     }
707
708     assert(pthread_mutex_unlock(&worker_lock) == 0);
709     return NULL;
710 }
711
712 #define LOG_XFER_BUF_SIZE 65536
713 static int
714 SalvageLogCleanup(int pid)
715 {
716     int pidlog, len;
717     char fn[AFSDIR_PATH_MAX];
718     static char buf[LOG_XFER_BUF_SIZE];
719
720     afs_snprintf(fn, sizeof(fn), "%s.%d", 
721                  AFSDIR_SERVER_SLVGLOG_FILEPATH, pid);
722     
723
724     pidlog = open(fn, O_RDONLY);
725     unlink(fn);
726     if (pidlog < 0)
727         return 1;
728
729     len = read(pidlog, buf, LOG_XFER_BUF_SIZE);
730     while (len) {
731         fwrite(buf, len, 1, logFile);
732         len = read(pidlog, buf, LOG_XFER_BUF_SIZE);
733     }
734
735     close(pidlog);
736
737     return 0;
738 }