DAFS: Skip hosts with invalid flags on restore
[openafs.git] / src / viced / callback.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  * Portions Copyright (c) 2006 Sine Nomine Associates
10  */
11
12 /*
13  * NEW callback package callback.c (replaces vicecb.c)
14  * Updated call back routines, NOW with:
15  *
16  *     Faster DeleteVenus (Now called DeleteAllCallBacks)
17  *     Call back breaking for volumes
18  *     Adaptive timeouts on call backs
19  *     Architected for Multi RPC
20  *     No locks (currently implicit vnode locks--these will go, to)
21  *     Delayed call back when rpc connection down.
22  *     Bulk break of delayed call backs when rpc connection
23  *         reestablished
24  *     Strict limit on number of call backs.
25  *
26  * InitCallBack(nblocks)
27  *     Initialize: nblocks is max number # of file entries + # of callback entries
28  *     nblocks must be < 65536
29  *     Space used is nblocks*16 bytes
30  *     Note that space will be reclaimed by breaking callbacks of old hosts
31  *
32  * time = AddCallBack(host, fid)
33  *     Add a call back.
34  *     Returns the expiration time at the workstation.
35  *
36  * BreakCallBack(host, fid)
37  *     Break all call backs for fid, except for the specified host.
38  *     Delete all of them.
39  *
40  * BreakVolumeCallBacksLater(volume)
41  *     Break all call backs on volume, using single call to each host
42  *     Delete all the call backs.
43  *
44  * DeleteCallBack(host,fid)
45  *     Delete (do not break) single call back for fid.
46  *
47  * DeleteFileCallBacks(fid)
48  *     Delete (do not break) all call backs for fid.
49  *
50  * DeleteAllCallBacks(host)
51  *     Delete (do not break) all call backs for host.
52  *
53  * CleanupTimedOutCallBacks()
54  *     Delete all timed out call back entries
55  *     Must be called periodically by file server.
56  *
57  * BreakDelayedCallBacks(host)
58  *     Break all delayed call backs for host.
59  *     Returns 1: one or more failed, 0: success.
60  *
61  * PrintCallBackStats()
62  *     Print statistics about call backs to stdout.
63  *
64  * DumpCallBacks() ---wishful thinking---
65  *     Dump call back state to /tmp/callback.state.
66  *     This is separately interpretable by the program pcb.
67  *
68  * Notes:  In general, if a call back to a host doesn't get through,
69  * then HostDown, supplied elsewhere, is called.  BreakDelayedCallBacks,
70  * however, does not call HostDown, but instead returns an indication of
71  * success if all delayed call backs were finally broken.
72  *
73  * BreakDelayedCallBacks MUST be called at the first sign of activity
74  * from the host after HostDown has been called (or a previous
75  * BreakDelayedCallBacks failed). The BreakDelayedCallBacks must be
76  * allowed to complete before any requests from that host are handled.
77  * If BreakDelayedCallBacks fails, then the host should remain
78  * down (and the request should be failed).
79
80  * CleanupCallBacks MUST be called periodically by the file server for
81  * this package to work correctly.  Every 5 minutes is suggested.
82  */
83
84 #include <afsconfig.h>
85 #include <afs/param.h>
86 #include <afs/stds.h>
87
88 #include <roken.h>
89
90 #ifdef HAVE_SYS_FILE_H
91 #include <sys/file.h>
92 #endif
93
94 #include <afs/nfs.h>            /* yuck.  This is an abomination. */
95 #include <lwp.h>
96 #include <rx/rx.h>
97 #include <afs/afscbint.h>
98 #include <afs/afsutil.h>
99 #include <lock.h>
100 #include <afs/ihandle.h>
101 #include <afs/vnode.h>
102 #include <afs/volume.h>
103 #include "viced_prototypes.h"
104 #include "viced.h"
105
106 #include <afs/ptclient.h>       /* need definition of prlist for host.h */
107 #include "host.h"
108 #include "callback.h"
109 #ifdef AFS_DEMAND_ATTACH_FS
110 #include "../tviced/serialize_state.h"
111 #endif /* AFS_DEMAND_ATTACH_FS */
112
113
114 extern afsUUID FS_HostUUID;
115 extern int hostCount;
116
117 #ifndef INTERPRET_DUMP
118 static int ShowProblems = 1;
119 #endif
120
121 struct cbcounters cbstuff;
122
123 static struct FileEntry * FE = NULL;    /* don't use FE[0] */
124 static struct CallBack * CB = NULL;     /* don't use CB[0] */
125
126 static struct CallBack * CBfree = NULL;
127 static struct FileEntry * FEfree = NULL;
128
129
130 /* Time to live for call backs depends upon number of users of the file.
131  * TimeOuts is indexed by this number/8 (using TimeOut macro).  Times
132  * in this table are for the workstation; server timeouts, add
133  * ServerBias */
134
135 static int TimeOuts[] = {
136 /* Note: don't make the first entry larger than 4 hours (see above) */
137     4 * 60 * 60,                /* 0-7 users */
138     1 * 60 * 60,                /* 8-15 users */
139     30 * 60,                    /* 16-23 users */
140     15 * 60,                    /* 24-31 users */
141     15 * 60,                    /* 32-39 users */
142     10 * 60,                    /* 40-47 users */
143     10 * 60,                    /* 48-55 users */
144     10 * 60,                    /* 56-63 users */
145 };                              /* Anything more: MinTimeOut */
146
147 /* minimum time given for a call back */
148 #ifndef INTERPRET_DUMP
149 static int MinTimeOut = (7 * 60);
150 #endif
151
152 /* Heads of CB queues; a timeout index is 1+index into this array */
153 static afs_uint32 timeout[CB_NUM_TIMEOUT_QUEUES];
154
155 static afs_int32 tfirst;        /* cbtime of oldest unexpired call back time queue */
156
157
158 /* 16 byte object get/free routines */
159 struct object {
160     struct object *next;
161 };
162
163 /* Prototypes for static routines */
164 static struct FileEntry *FindFE(AFSFid * fid);
165
166 #ifndef INTERPRET_DUMP
167 static struct CallBack *iGetCB(int *nused);
168 static int iFreeCB(struct CallBack *cb, int *nused);
169 static struct FileEntry *iGetFE(int *nused);
170 static int iFreeFE(struct FileEntry *fe, int *nused);
171 static int TAdd(struct CallBack *cb, afs_uint32 * thead);
172 static int TDel(struct CallBack *cb);
173 static int HAdd(struct CallBack *cb, struct host *host);
174 static int HDel(struct CallBack *cb);
175 static int CDel(struct CallBack *cb, int deletefe);
176 static int CDelPtr(struct FileEntry *fe, afs_uint32 * cbp,
177                    int deletefe);
178 static afs_uint32 *FindCBPtr(struct FileEntry *fe, struct host *host);
179 static int FDel(struct FileEntry *fe);
180 static int AddCallBack1_r(struct host *host, AFSFid * fid, afs_uint32 * thead,
181                           int type, int locked);
182 static void MultiBreakCallBack_r(struct cbstruct cba[], int ncbas,
183                                  struct AFSCBFids *afidp);
184 static int MultiBreakVolumeCallBack_r(struct host *host,
185                                       struct VCBParams *parms, int deletefe);
186 static int MultiBreakVolumeLaterCallBack(struct host *host, void *rock);
187 static int GetSomeSpace_r(struct host *hostp, int locked);
188 static int ClearHostCallbacks_r(struct host *hp, int locked);
189 static int DumpCallBackState_r(void);
190 #endif
191
192 #define GetCB() ((struct CallBack *)iGetCB(&cbstuff.nCBs))
193 #define GetFE() ((struct FileEntry *)iGetFE(&cbstuff.nFEs))
194 #define FreeCB(cb) iFreeCB((struct CallBack *)cb, &cbstuff.nCBs)
195 #define FreeFE(fe) iFreeFE((struct FileEntry *)fe, &cbstuff.nFEs)
196
197
198 /* Other protos - move out sometime */
199 void PrintCB(struct CallBack *cb, afs_uint32 now);
200
201 static afs_uint32 HashTable[FEHASH_SIZE];       /* File entry hash table */
202
203 static struct FileEntry *
204 FindFE(AFSFid * fid)
205 {
206     int hash;
207     int fei;
208     struct FileEntry *fe;
209
210     hash = FEHash(fid->Volume, fid->Unique);
211     for (fei = HashTable[hash]; fei; fei = fe->fnext) {
212         fe = itofe(fei);
213         if (fe->volid == fid->Volume && fe->unique == fid->Unique
214             && fe->vnode == fid->Vnode && (fe->status & FE_LATER) != FE_LATER)
215             return fe;
216     }
217     return 0;
218 }
219
220 #ifndef INTERPRET_DUMP
221
222 static struct CallBack *
223 iGetCB(int *nused)
224 {
225     struct CallBack *ret;
226
227     if ((ret = CBfree)) {
228         CBfree = (struct CallBack *)(((struct object *)ret)->next);
229         (*nused)++;
230     }
231     return ret;
232 }
233
234 static int
235 iFreeCB(struct CallBack *cb, int *nused)
236 {
237     ((struct object *)cb)->next = (struct object *)CBfree;
238     CBfree = cb;
239     (*nused)--;
240     return 0;
241 }
242
243 static struct FileEntry *
244 iGetFE(int *nused)
245 {
246     struct FileEntry *ret;
247
248     if ((ret = FEfree)) {
249         FEfree = (struct FileEntry *)(((struct object *)ret)->next);
250         (*nused)++;
251     }
252     return ret;
253 }
254
255 static int
256 iFreeFE(struct FileEntry *fe, int *nused)
257 {
258     ((struct object *)fe)->next = (struct object *)FEfree;
259     FEfree = fe;
260     (*nused)--;
261     return 0;
262 }
263
264 /* Add cb to end of specified timeout list */
265 static int
266 TAdd(struct CallBack *cb, afs_uint32 * thead)
267 {
268     if (!*thead) {
269         (*thead) = cb->tnext = cb->tprev = cbtoi(cb);
270     } else {
271         struct CallBack *thp = itocb(*thead);
272
273         cb->tprev = thp->tprev;
274         cb->tnext = *thead;
275         if (thp) {
276             if (thp->tprev)
277                 thp->tprev = (itocb(thp->tprev)->tnext = cbtoi(cb));
278             else
279                 thp->tprev = cbtoi(cb);
280         }
281     }
282     cb->thead = ttoi(thead);
283     return 0;
284 }
285
286 /* Delete call back entry from timeout list */
287 static int
288 TDel(struct CallBack *cb)
289 {
290     afs_uint32 *thead = itot(cb->thead);
291
292     if (*thead == cbtoi(cb))
293         *thead = (*thead == cb->tnext ? 0 : cb->tnext);
294     if (itocb(cb->tprev))
295         itocb(cb->tprev)->tnext = cb->tnext;
296     if (itocb(cb->tnext))
297         itocb(cb->tnext)->tprev = cb->tprev;
298     return 0;
299 }
300
301 /* Add cb to end of specified host list */
302 static int
303 HAdd(struct CallBack *cb, struct host *host)
304 {
305     cb->hhead = h_htoi(host);
306     if (!host->cblist) {
307         host->cblist = cb->hnext = cb->hprev = cbtoi(cb);
308     } else {
309         struct CallBack *fcb = itocb(host->cblist);
310
311         cb->hprev = fcb->hprev;
312         cb->hnext = cbtoi(fcb);
313         fcb->hprev = (itocb(fcb->hprev)->hnext = cbtoi(cb));
314     }
315     return 0;
316 }
317
318 /* Delete call back entry from host list */
319 static int
320 HDel(struct CallBack *cb)
321 {
322     afs_uint32 *hhead = &h_itoh(cb->hhead)->cblist;
323
324     if (*hhead == cbtoi(cb))
325         *hhead = (*hhead == cb->hnext ? 0 : cb->hnext);
326     itocb(cb->hprev)->hnext = cb->hnext;
327     itocb(cb->hnext)->hprev = cb->hprev;
328     return 0;
329 }
330
331 /* Delete call back entry from fid's chain of cb's */
332 /* N.B.  This one also deletes the CB, and also possibly parent FE, so
333  * make sure that it is not on any other list before calling this
334  * routine */
335 static int
336 CDel(struct CallBack *cb, int deletefe)
337 {
338     int cbi = cbtoi(cb);
339     struct FileEntry *fe = itofe(cb->fhead);
340     afs_uint32 *cbp;
341     int safety;
342
343     for (safety = 0, cbp = &fe->firstcb; *cbp && *cbp != cbi;
344          cbp = &itocb(*cbp)->cnext, safety++) {
345         if (safety > cbstuff.nblks + 10) {
346             ViceLogThenPanic(0, ("CDel: Internal Error -- shutting down: "
347                                  "wanted %d from %d, now at %d\n",
348                                  cbi, fe->firstcb, *cbp));
349             DumpCallBackState_r();
350             ShutDownAndCore(PANIC);
351         }
352     }
353     CDelPtr(fe, cbp, deletefe);
354     return 0;
355 }
356
357 /* Same as CDel, but pointer to parent pointer to CB entry is passed,
358  * as well as file entry */
359 /* N.B.  This one also deletes the CB, and also possibly parent FE, so
360  * make sure that it is not on any other list before calling this
361  * routine */
362 static int Ccdelpt = 0, CcdelB = 0;
363
364 static int
365 CDelPtr(struct FileEntry *fe, afs_uint32 * cbp,
366         int deletefe)
367 {
368     struct CallBack *cb;
369
370     if (!*cbp)
371         return 0;
372     Ccdelpt++;
373     cb = itocb(*cbp);
374     if (cb != &CB[*cbp])
375         CcdelB++;
376     *cbp = cb->cnext;
377     FreeCB(cb);
378     if ((--fe->ncbs == 0) && deletefe)
379         FDel(fe);
380     return 0;
381 }
382
383 static afs_uint32 *
384 FindCBPtr(struct FileEntry *fe, struct host *host)
385 {
386     afs_uint32 hostindex = h_htoi(host);
387     struct CallBack *cb;
388     afs_uint32 *cbp;
389     int safety;
390
391     for (safety = 0, cbp = &fe->firstcb; *cbp; cbp = &cb->cnext, safety++) {
392         if (safety > cbstuff.nblks) {
393             ViceLog(0, ("FindCBPtr: Internal Error -- shutting down.\n"));
394             DumpCallBackState_r();
395             ShutDownAndCore(PANIC);
396         }
397         cb = itocb(*cbp);
398         if (cb->hhead == hostindex)
399             break;
400     }
401     return cbp;
402 }
403
404 /* Delete file entry from hash table */
405 static int
406 FDel(struct FileEntry *fe)
407 {
408     int fei = fetoi(fe);
409     afs_uint32 *p = &HashTable[FEHash(fe->volid, fe->unique)];
410
411     while (*p && *p != fei)
412         p = &itofe(*p)->fnext;
413     osi_Assert(*p);
414     *p = fe->fnext;
415     FreeFE(fe);
416     return 0;
417 }
418
419 /* initialize the callback package */
420 int
421 InitCallBack(int nblks)
422 {
423     H_LOCK;
424     tfirst = CBtime(FT_ApproxTime());
425     /* N.B. The "-1", below, is because
426      * FE[0] and CB[0] are not used--and not allocated */
427     FE = ((struct FileEntry *)(calloc(nblks, sizeof(struct FileEntry))));
428     if (!FE) {
429         ViceLogThenPanic(0, ("Failed malloc in InitCallBack\n"));
430     }
431     FE--;  /* FE[0] is supposed to point to junk */
432     cbstuff.nFEs = nblks;
433     while (cbstuff.nFEs)
434         FreeFE(&FE[cbstuff.nFEs]);      /* This is correct */
435     CB = ((struct CallBack *)(calloc(nblks, sizeof(struct CallBack))));
436     if (!CB) {
437         ViceLogThenPanic(0, ("Failed malloc in InitCallBack\n"));
438     }
439     CB--;  /* CB[0] is supposed to point to junk */
440     cbstuff.nCBs = nblks;
441     while (cbstuff.nCBs)
442         FreeCB(&CB[cbstuff.nCBs]);      /* This is correct */
443     cbstuff.nblks = nblks;
444     cbstuff.nbreakers = 0;
445     H_UNLOCK;
446     return 0;
447 }
448
449 afs_int32
450 XCallBackBulk_r(struct host * ahost, struct AFSFid * fids, afs_int32 nfids)
451 {
452     struct AFSCallBack tcbs[AFSCBMAX];
453     int i;
454     struct AFSCBFids tf;
455     struct AFSCBs tc;
456     int code;
457     int j;
458     struct rx_connection *cb_conn = NULL;
459
460 #ifdef  ADAPT_MTU
461     rx_SetConnDeadTime(ahost->callback_rxcon, 4);
462     rx_SetConnHardDeadTime(ahost->callback_rxcon, AFS_HARDDEADTIME);
463 #endif
464
465     code = 0;
466     j = 0;
467     while (nfids > 0) {
468
469         for (i = 0; i < nfids && i < AFSCBMAX; i++) {
470             tcbs[i].CallBackVersion = CALLBACK_VERSION;
471             tcbs[i].ExpirationTime = 0;
472             tcbs[i].CallBackType = CB_DROPPED;
473         }
474         tf.AFSCBFids_len = i;
475         tf.AFSCBFids_val = &(fids[j]);
476         nfids -= i;
477         j += i;
478         tc.AFSCBs_len = i;
479         tc.AFSCBs_val = tcbs;
480
481         cb_conn = ahost->callback_rxcon;
482         rx_GetConnection(cb_conn);
483         H_UNLOCK;
484         code |= RXAFSCB_CallBack(cb_conn, &tf, &tc);
485         rx_PutConnection(cb_conn);
486         cb_conn = NULL;
487         H_LOCK;
488     }
489
490     return code;
491 }
492
493 /* the locked flag tells us if the host entry has already been locked
494  * by our parent.  I don't think anybody actually calls us with the
495  * host locked, but here's how to make that work:  GetSomeSpace has to
496  * change so that it doesn't attempt to lock any hosts < "host".  That
497  * means that it might be unable to free any objects, so it has to
498  * return an exit status.  If it fails, then AddCallBack1 might fail,
499  * as well. If so, the host->ResetDone should probably be set to 0,
500  * and we probably don't want to return a callback promise to the
501  * cache manager, either. */
502 int
503 AddCallBack1(struct host *host, AFSFid * fid, afs_uint32 * thead, int type,
504              int locked)
505 {
506     int retVal = 0;
507     H_LOCK;
508     if (!locked) {
509         h_Lock_r(host);
510     }
511     if (!(host->hostFlags & HOSTDELETED))
512         retVal = AddCallBack1_r(host, fid, thead, type, 1);
513
514     if (!locked) {
515         h_Unlock_r(host);
516     }
517     H_UNLOCK;
518     return retVal;
519 }
520
521 static int
522 AddCallBack1_r(struct host *host, AFSFid * fid, afs_uint32 * thead, int type,
523                int locked)
524 {
525     struct FileEntry *fe;
526     struct CallBack *cb = 0, *lastcb = 0;
527     struct FileEntry *newfe = 0;
528     afs_uint32 time_out = 0;
529     afs_uint32 *Thead = thead;
530     struct CallBack *newcb = 0;
531     int safety;
532
533     cbstuff.AddCallBacks++;
534
535     host->Console |= 2;
536
537     /* allocate these guys first, since we can't call the allocator with
538      * the host structure locked -- or we might deadlock. However, we have
539      * to avoid races with FindFE... */
540     while (!(newcb = GetCB())) {
541         GetSomeSpace_r(host, locked);
542     }
543     while (!(newfe = GetFE())) {        /* Get it now, so we don't have to call */
544         /* GetSomeSpace with the host locked, later.  This might turn out to */
545         /* have been unneccessary, but that's actually kind of unlikely, since */
546         /* most files are not shared. */
547         GetSomeSpace_r(host, locked);
548     }
549
550     if (!locked) {
551         h_Lock_r(host);         /* this can yield, so do it before we get any */
552         /* fragile info */
553         if (host->hostFlags & HOSTDELETED) {
554             host->Console &= ~2;
555             h_Unlock_r(host);
556             return 0;
557         }
558     }
559
560     fe = FindFE(fid);
561     if (type == CB_NORMAL) {
562         time_out =
563             TimeCeiling(FT_ApproxTime() + TimeOut(fe ? fe->ncbs : 0) +
564                         ServerBias);
565         Thead = THead(CBtime(time_out));
566     } else if (type == CB_VOLUME) {
567         time_out = TimeCeiling((60 * 120 + FT_ApproxTime()) + ServerBias);
568         Thead = THead(CBtime(time_out));
569     } else if (type == CB_BULK) {
570         /* bulk status can get so many callbacks all at once, and most of them
571          * are probably not for things that will be used for long.
572          */
573         time_out =
574             TimeCeiling(FT_ApproxTime() + ServerBias +
575                         TimeOut(22 + (fe ? fe->ncbs : 0)));
576         Thead = THead(CBtime(time_out));
577     }
578
579     host->Console &= ~2;
580
581     if (!fe) {
582         afs_uint32 hash;
583
584         fe = newfe;
585         newfe = NULL;
586         fe->firstcb = 0;
587         fe->volid = fid->Volume;
588         fe->vnode = fid->Vnode;
589         fe->unique = fid->Unique;
590         fe->ncbs = 0;
591         fe->status = 0;
592         hash = FEHash(fid->Volume, fid->Unique);
593         fe->fnext = HashTable[hash];
594         HashTable[hash] = fetoi(fe);
595     }
596     for (safety = 0, lastcb = cb = itocb(fe->firstcb); cb;
597          lastcb = cb, cb = itocb(cb->cnext), safety++) {
598         if (safety > cbstuff.nblks) {
599             ViceLog(0, ("AddCallBack1: Internal Error -- shutting down.\n"));
600             DumpCallBackState_r();
601             ShutDownAndCore(PANIC);
602         }
603         if (cb->hhead == h_htoi(host))
604             break;
605     }
606     if (cb) {                   /* Already have call back:  move to new timeout list */
607         /* don't change delayed callbacks back to normal ones */
608         if (cb->status != CB_DELAYED)
609             cb->status = type;
610         /* Only move if new timeout is longer */
611         if (TNorm(ttoi(Thead)) > TNorm(cb->thead)) {
612             TDel(cb);
613             TAdd(cb, Thead);
614         }
615         if (newfe == NULL) {    /* we are using the new FE */
616             fe->firstcb = cbtoi(cb);
617             fe->ncbs++;
618             cb->fhead = fetoi(fe);
619         }
620     } else {
621         cb = newcb;
622         newcb = NULL;
623         *(lastcb ? &lastcb->cnext : &fe->firstcb) = cbtoi(cb);
624         fe->ncbs++;
625         cb->cnext = 0;
626         cb->fhead = fetoi(fe);
627         cb->status = type;
628         HAdd(cb, host);
629         TAdd(cb, Thead);
630     }
631
632     /* now free any still-unused callback or host entries */
633     if (newcb)
634         FreeCB(newcb);
635     if (newfe)
636         FreeFE(newfe);
637
638     if (!locked)                /* freecb and freefe might(?) yield */
639         h_Unlock_r(host);
640
641     if (type == CB_NORMAL || type == CB_VOLUME || type == CB_BULK)
642         return time_out - ServerBias;   /* Expires sooner at workstation */
643
644     return 0;
645 }
646
647 static int
648 CompareCBA(const void *e1, const void *e2)
649 {
650     const struct cbstruct *cba1 = (const struct cbstruct *)e1;
651     const struct cbstruct *cba2 = (const struct cbstruct *)e2;
652     return ((cba1->hp)->index - (cba2->hp)->index);
653 }
654
655 /* Take an array full of hosts, all held.  Break callbacks to them, and
656  * release the holds once you're done.
657  * Currently only works for a single Fid in afidp array.
658  * If you want to make this work with multiple fids, you need to fix
659  * the error handling.  One approach would be to force a reset if a
660  * multi-fid call fails, or you could add delayed callbacks for each
661  * fid.   You probably also need to sort and remove duplicate hosts.
662  * When this is called from the BreakVolumeCallBacks path, it does NOT
663  * force a reset if the RPC fails, it just marks the host down and tries
664  * to create a delayed callback. */
665 /* N.B.  be sure that code works when ncbas == 0 */
666 /* N.B.  requires all the cba[*].hp pointers to be valid... */
667 /* This routine does not hold a lock on the host for the duration of
668  * the BreakCallBack RPC, which is a significant deviation from tradition.
669  * It _does_ get a lock on the host before setting VenusDown = 1,
670  * which is sufficient only if VenusDown = 0 only happens when the
671  * lock is held over the RPC and the subsequent VenusDown == 0
672  * wherever that is done. */
673 static void
674 MultiBreakCallBack_r(struct cbstruct cba[], int ncbas,
675                      struct AFSCBFids *afidp)
676 {
677     int i, j;
678     struct rx_connection *conns[MAX_CB_HOSTS];
679     static struct AFSCBs tc = { 0, 0 };
680     int multi_to_cba_map[MAX_CB_HOSTS];
681
682     osi_Assert(ncbas <= MAX_CB_HOSTS);
683
684     /* sort cba list to avoid makecall issues */
685     qsort(cba, ncbas, sizeof(struct cbstruct), CompareCBA);
686
687     /* set up conns for multi-call */
688     for (i = 0, j = 0; i < ncbas; i++) {
689         struct host *thishost = cba[i].hp;
690         if (!thishost || (thishost->hostFlags & HOSTDELETED)) {
691             continue;
692         }
693         rx_GetConnection(thishost->callback_rxcon);
694         multi_to_cba_map[j] = i;
695         conns[j++] = thishost->callback_rxcon;
696
697 #ifdef  ADAPT_MTU
698         rx_SetConnDeadTime(thishost->callback_rxcon, 4);
699         rx_SetConnHardDeadTime(thishost->callback_rxcon, AFS_HARDDEADTIME);
700 #endif
701     }
702
703     if (j) {                    /* who knows what multi would do with 0 conns? */
704         cbstuff.nbreakers++;
705         H_UNLOCK;
706         multi_Rx(conns, j) {
707             multi_RXAFSCB_CallBack(afidp, &tc);
708             if (multi_error) {
709                 afs_uint32 idx;
710                 struct host *hp;
711                 char hoststr[16];
712
713                 i = multi_to_cba_map[multi_i];
714                 hp = cba[i].hp;
715                 idx = cba[i].thead;
716
717                 if (!hp || !idx) {
718                     ViceLog(0,
719                             ("BCB: INTERNAL ERROR: hp=%p, cba=%p, thead=%u\n",
720                              hp, cba, idx));
721                 } else {
722                     /*
723                      ** try breaking callbacks on alternate interface addresses
724                      */
725                     if (MultiBreakCallBackAlternateAddress(hp, afidp)) {
726                         if (ShowProblems) {
727                             ViceLog(7,
728                                     ("BCB: Failed on file %u.%u.%u, "
729                                      "Host %p (%s:%d) is down\n",
730                                      afidp->AFSCBFids_val->Volume,
731                                      afidp->AFSCBFids_val->Vnode,
732                                      afidp->AFSCBFids_val->Unique,
733                                      hp,
734                                      afs_inet_ntoa_r(hp->host, hoststr),
735                                      ntohs(hp->port)));
736                         }
737
738                         H_LOCK;
739                         h_Lock_r(hp);
740                         if (!(hp->hostFlags & HOSTDELETED)) {
741                             hp->hostFlags |= VENUSDOWN;
742                             /**
743                              * We always go into AddCallBack1_r with the host locked
744                              */
745                             AddCallBack1_r(hp, afidp->AFSCBFids_val, itot(idx),
746                                            CB_DELAYED, 1);
747                         }
748                         h_Unlock_r(hp);
749                         H_UNLOCK;
750                     }
751                 }
752             }
753         }
754         multi_End;
755         H_LOCK;
756         cbstuff.nbreakers--;
757     }
758
759     for (i = 0; i < ncbas; i++) {
760         struct host *hp;
761         hp = cba[i].hp;
762         if (hp) {
763             h_Release_r(hp);
764         }
765     }
766
767     /* H_UNLOCK around this so h_FreeConnection does not deadlock.
768        h_FreeConnection should *never* be called on a callback connection,
769        but on 10/27/04 a deadlock occurred where it was, when we know why,
770        this should be reverted. -- shadow */
771     H_UNLOCK;
772     for (i = 0; i < j; i++) {
773         rx_PutConnection(conns[i]);
774     }
775     H_LOCK;
776
777     return;
778 }
779
780 /*
781  * Break all call backs for fid, except for the specified host (unless flag
782  * is true, in which case all get a callback message. Assumption: the specified
783  * host is h_Held, by the caller; the others aren't.
784  * Specified host may be bogus, that's ok.  This used to check to see if the
785  * host was down in two places, once right after the host was h_held, and
786  * again after it was locked.  That race condition is incredibly rare and
787  * relatively harmless even when it does occur, so we don't check for it now.
788  */
789 /* if flag is true, send a break callback msg to "host", too */
790 int
791 BreakCallBack(struct host *xhost, AFSFid * fid, int flag)
792 {
793     struct FileEntry *fe;
794     struct CallBack *cb, *nextcb;
795     struct cbstruct cbaDef[MAX_CB_HOSTS], *cba = cbaDef;
796     unsigned int ncbas, cbaAlloc = MAX_CB_HOSTS;
797     struct AFSCBFids tf;
798     int hostindex;
799     char hoststr[16];
800
801     ViceLog(7,
802             ("BCB: BreakCallBack(Host %p all but %s:%d, (%u,%u,%u))\n",
803              xhost, afs_inet_ntoa_r(xhost->host, hoststr), ntohs(xhost->port),
804              fid->Volume, fid->Vnode, fid->Unique));
805
806     H_LOCK;
807     cbstuff.BreakCallBacks++;
808     fe = FindFE(fid);
809     if (!fe) {
810         goto done;
811     }
812     hostindex = h_htoi(xhost);
813     cb = itocb(fe->firstcb);
814     if (!cb || ((fe->ncbs == 1) && (cb->hhead == hostindex) && !flag)) {
815         /* the most common case is what follows the || */
816         goto done;
817     }
818     tf.AFSCBFids_len = 1;
819     tf.AFSCBFids_val = fid;
820
821         for (ncbas = 0; cb ; cb = nextcb) {
822             nextcb = itocb(cb->cnext);
823             if ((cb->hhead != hostindex || flag)
824                 && (cb->status == CB_BULK || cb->status == CB_NORMAL
825                     || cb->status == CB_VOLUME)) {
826                 struct host *thishost = h_itoh(cb->hhead);
827                 if (!thishost) {
828                     ViceLog(0, ("BCB: BOGUS! cb->hhead is NULL!\n"));
829                 } else if (thishost->hostFlags & VENUSDOWN) {
830                     ViceLog(7,
831                             ("BCB: %p (%s:%d) is down; delaying break call back\n",
832                              thishost, afs_inet_ntoa_r(thishost->host, hoststr),
833                              ntohs(thishost->port)));
834                     cb->status = CB_DELAYED;
835                 } else {
836                     if (!(thishost->hostFlags & HOSTDELETED)) {
837                         h_Hold_r(thishost);
838                         if (ncbas == cbaAlloc) {        /* Need more space */
839                             int curLen = cbaAlloc*sizeof(cba[0]);
840                             struct cbstruct *cbaOld = (cba == cbaDef) ? NULL : cba;
841
842                             /* There are logical contraints elsewhere that the number of hosts
843                                (i.e. h_HTSPERBLOCK*h_MAXHOSTTABLES) remains in the realm of a signed "int".
844                                cbaAlloc is defined unsigned int hence doubling below cannot overflow
845                             */
846                             cbaAlloc = cbaAlloc<<1;     /* double */
847                             cba = realloc(cbaOld, cbaAlloc * sizeof(cba[0]));
848
849                             if (cbaOld == NULL) {       /* realloc wouldn't have copied from cbaDef */
850                                 memcpy(cba, cbaDef, curLen);
851                             }
852                         }
853                         cba[ncbas].hp = thishost;
854                         cba[ncbas].thead = cb->thead;
855                         ncbas++;
856                     }
857                     TDel(cb);
858                     HDel(cb);
859                     CDel(cb, 1);        /* Usually first; so this delete
860                                          * is reasonably inexpensive */
861                 }
862             }
863         }
864
865         if (ncbas) {
866             struct cbstruct *cba2;
867             int num;
868
869             for (cba2 = cba, num = ncbas; ncbas > 0; cba2 += num, ncbas -= num) {
870                 num = (ncbas > MAX_CB_HOSTS) ? MAX_CB_HOSTS : ncbas;
871                 MultiBreakCallBack_r(cba2, num, &tf);
872             }
873         }
874
875         if (cba != cbaDef) free(cba);
876
877   done:
878     H_UNLOCK;
879     return 0;
880 }
881
882 /* Delete (do not break) single call back for fid */
883 int
884 DeleteCallBack(struct host *host, AFSFid * fid)
885 {
886     struct FileEntry *fe;
887     afs_uint32 *pcb;
888     char hoststr[16];
889
890     H_LOCK;
891     cbstuff.DeleteCallBacks++;
892
893     h_Lock_r(host);
894     /* do not care if the host has been HOSTDELETED */
895     fe = FindFE(fid);
896     if (!fe) {
897         h_Unlock_r(host);
898         H_UNLOCK;
899         ViceLog(8,
900                 ("DCB: No call backs for fid (%u, %u, %u)\n", fid->Volume,
901                  fid->Vnode, fid->Unique));
902         return 0;
903     }
904     pcb = FindCBPtr(fe, host);
905     if (!*pcb) {
906         ViceLog(8,
907                 ("DCB: No call back for host %p (%s:%d), (%u, %u, %u)\n",
908                  host, afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port),
909                  fid->Volume, fid->Vnode, fid->Unique));
910         h_Unlock_r(host);
911         H_UNLOCK;
912         return 0;
913     }
914     HDel(itocb(*pcb));
915     TDel(itocb(*pcb));
916     CDelPtr(fe, pcb, 1);
917     h_Unlock_r(host);
918     H_UNLOCK;
919     return 0;
920 }
921
922 /*
923  * Delete (do not break) all call backs for fid.  This call doesn't
924  * set all of the various host locks, but it shouldn't really matter
925  * since we're not adding callbacks, but deleting them.  I'm not sure
926  * why it doesn't set the lock, however; perhaps it should.
927  */
928 int
929 DeleteFileCallBacks(AFSFid * fid)
930 {
931     struct FileEntry *fe;
932     struct CallBack *cb;
933     afs_uint32 cbi;
934     int n;
935
936     H_LOCK;
937     cbstuff.DeleteFiles++;
938     fe = FindFE(fid);
939     if (!fe) {
940         H_UNLOCK;
941         ViceLog(8,
942                 ("DF: No fid (%u,%u,%u) to delete\n", fid->Volume, fid->Vnode,
943                  fid->Unique));
944         return 0;
945     }
946     for (n = 0, cbi = fe->firstcb; cbi; n++) {
947         cb = itocb(cbi);
948         cbi = cb->cnext;
949         TDel(cb);
950         HDel(cb);
951         FreeCB(cb);
952         fe->ncbs--;
953     }
954     FDel(fe);
955     H_UNLOCK;
956     return 0;
957 }
958
959 /* Delete (do not break) all call backs for host.  The host should be
960  * locked. */
961 int
962 DeleteAllCallBacks_r(struct host *host, int deletefe)
963 {
964     struct CallBack *cb;
965     int cbi, first;
966
967     cbstuff.DeleteAllCallBacks++;
968     cbi = first = host->cblist;
969     if (!cbi) {
970         ViceLog(8, ("DV: no call backs\n"));
971         return 0;
972     }
973     do {
974         cb = itocb(cbi);
975         cbi = cb->hnext;
976         TDel(cb);
977         CDel(cb, deletefe);
978     } while (cbi != first);
979     host->cblist = 0;
980     return 0;
981 }
982
983 /*
984  * Break all delayed call backs for host.  Returns 1 if all call backs
985  * successfully broken; 0 otherwise.  Assumes host is h_Held and h_Locked.
986  * Must be called with VenusDown set for this host
987  */
988 int
989 BreakDelayedCallBacks(struct host *host)
990 {
991     int retVal;
992     H_LOCK;
993     retVal = BreakDelayedCallBacks_r(host);
994     H_UNLOCK;
995     return retVal;
996 }
997
998 int
999 BreakDelayedCallBacks_r(struct host *host)
1000 {
1001     struct AFSFid fids[AFSCBMAX];
1002     int cbi, first, nfids;
1003     struct CallBack *cb;
1004     int code;
1005     char hoststr[16];
1006     struct rx_connection *cb_conn;
1007
1008     cbstuff.nbreakers++;
1009     if (!(host->hostFlags & RESETDONE) && !(host->hostFlags & HOSTDELETED)) {
1010         host->hostFlags &= ~ALTADDR;    /* alternate addresses are invalid */
1011         cb_conn = host->callback_rxcon;
1012         rx_GetConnection(cb_conn);
1013         if (host->interface) {
1014             H_UNLOCK;
1015             code =
1016                 RXAFSCB_InitCallBackState3(cb_conn, &FS_HostUUID);
1017         } else {
1018             H_UNLOCK;
1019             code = RXAFSCB_InitCallBackState(cb_conn);
1020         }
1021         rx_PutConnection(cb_conn);
1022         cb_conn = NULL;
1023         H_LOCK;
1024         host->hostFlags |= ALTADDR;     /* alternate addresses are valid */
1025         if (code) {
1026             if (ShowProblems) {
1027                 ViceLog(0,
1028                         ("CB: Call back connect back failed (in break delayed) "
1029                          "for Host %p (%s:%d)\n",
1030                          host, afs_inet_ntoa_r(host->host, hoststr),
1031                          ntohs(host->port)));
1032             }
1033             host->hostFlags |= VENUSDOWN;
1034         } else {
1035             ViceLog(25,
1036                     ("InitCallBackState success on %p (%s:%d)\n",
1037                      host, afs_inet_ntoa_r(host->host, hoststr),
1038                      ntohs(host->port)));
1039             /* reset was done successfully */
1040             host->hostFlags |= RESETDONE;
1041             host->hostFlags &= ~VENUSDOWN;
1042         }
1043     } else
1044         while (!(host->hostFlags & HOSTDELETED)) {
1045             nfids = 0;
1046             host->hostFlags &= ~VENUSDOWN;      /* presume up */
1047             cbi = first = host->cblist;
1048             if (!cbi)
1049                 break;
1050             do {
1051                 first = host->cblist;
1052                 cb = itocb(cbi);
1053                 cbi = cb->hnext;
1054                 if (cb->status == CB_DELAYED) {
1055                     struct FileEntry *fe = itofe(cb->fhead);
1056                     fids[nfids].Volume = fe->volid;
1057                     fids[nfids].Vnode = fe->vnode;
1058                     fids[nfids].Unique = fe->unique;
1059                     nfids++;
1060                     HDel(cb);
1061                     TDel(cb);
1062                     CDel(cb, 1);
1063                 }
1064             } while (cbi && cbi != first && nfids < AFSCBMAX);
1065
1066             if (nfids == 0) {
1067                 break;
1068             }
1069
1070             if (XCallBackBulk_r(host, fids, nfids)) {
1071                 /* Failed, again:  put them back, probably with old
1072                  * timeout values */
1073                 int i;
1074                 if (ShowProblems) {
1075                     ViceLog(0,
1076                             ("CB: XCallBackBulk failed, Host %p (%s:%d); "
1077                              "callback list follows:\n",
1078                              host, afs_inet_ntoa_r(host->host, hoststr),
1079                              ntohs(host->port)));
1080                 }
1081                 for (i = 0; i < nfids; i++) {
1082                     if (ShowProblems) {
1083                         ViceLog(0,
1084                                 ("CB: Host %p (%s:%d), file %u.%u.%u "
1085                                  "(part of bulk callback)\n",
1086                                  host, afs_inet_ntoa_r(host->host, hoststr),
1087                                  ntohs(host->port), fids[i].Volume,
1088                                  fids[i].Vnode, fids[i].Unique));
1089                     }
1090                     /* used to do this:
1091                      * AddCallBack1_r(host, &fids[i], itot(thead[i]), CB_DELAYED, 1);
1092                      * * but it turns out to cause too many tricky locking problems.
1093                      * * now, if break delayed fails, screw it. */
1094                 }
1095                 host->hostFlags |= VENUSDOWN;   /* Failed */
1096                 ClearHostCallbacks_r(host, 1 /* locked */ );
1097                 nfids = 0;
1098                 break;
1099             }
1100             if (nfids < AFSCBMAX)
1101                 break;
1102         }
1103
1104     cbstuff.nbreakers--;
1105     /* If we succeeded it's always ok to unset HFE_LATER */
1106     if (!(host->hostFlags & VENUSDOWN))
1107         host->hostFlags &= ~HFE_LATER;
1108     return (host->hostFlags & VENUSDOWN);
1109 }
1110
1111 static int
1112 MultiBreakVolumeCallBack_r(struct host *host,
1113                            struct VCBParams *parms, int deletefe)
1114 {
1115     char hoststr[16];
1116
1117     if (host->hostFlags & HOSTDELETED)
1118         return 0;
1119
1120     if (!(host->hostFlags & HCBREAK))
1121         return 0;               /* host is not flagged to notify */
1122
1123     if (host->hostFlags & VENUSDOWN) {
1124         h_Lock_r(host);
1125         /* Do not care if the host is now HOSTDELETED */
1126         if (ShowProblems) {
1127             ViceLog(0,
1128                     ("BVCB: volume callback for Host %p (%s:%d) failed\n",
1129                      host, afs_inet_ntoa_r(host->host, hoststr),
1130                      ntohs(host->port)));
1131         }
1132         DeleteAllCallBacks_r(host, deletefe);   /* Delete all callback state
1133                                                  * rather than attempting to
1134                                                  * selectively remember to
1135                                                  * delete the volume callbacks
1136                                                  * later */
1137         host->hostFlags &= ~(RESETDONE|HCBREAK);        /* Do InitCallBackState when host returns */
1138         h_Unlock_r(host);
1139         return 0;
1140     }
1141     osi_Assert(parms->ncbas <= MAX_CB_HOSTS);
1142
1143     /* Do not call MultiBreakCallBack on the current host structure
1144      ** because it would prematurely release the hold on the host
1145      */
1146     if (parms->ncbas == MAX_CB_HOSTS) {
1147         struct AFSCBFids tf;
1148
1149         tf.AFSCBFids_len = 1;
1150         tf.AFSCBFids_val = parms->fid;
1151
1152         /* this releases all the hosts */
1153         MultiBreakCallBack_r(parms->cba, parms->ncbas, &tf);
1154
1155         parms->ncbas = 0;
1156     }
1157     parms->cba[parms->ncbas].hp = host;
1158     parms->cba[(parms->ncbas)++].thead = parms->thead;
1159     host->hostFlags &= ~HCBREAK;
1160
1161     /* we have more work to do on this host, so make sure we keep a reference
1162      * to it */
1163     h_Hold_r(host);
1164
1165     return 0;
1166 }
1167
1168 static int
1169 MultiBreakVolumeLaterCallBack(struct host *host, void *rock)
1170 {
1171     struct VCBParams *parms = (struct VCBParams *)rock;
1172     int retval;
1173     H_LOCK;
1174     retval = MultiBreakVolumeCallBack_r(host, parms, 0);
1175     H_UNLOCK;
1176     return retval;
1177 }
1178
1179 /*
1180  * Break all call backs on a single volume.  Don't call this with any
1181  * hosts h_held.  Note that this routine clears the callbacks before
1182  * actually breaking them, and that the vnode isn't locked during this
1183  * operation, so that people might see temporary callback loss while
1184  * this function is executing.  It is just a temporary state, however,
1185  * since the callback will be broken later by this same function.
1186  *
1187  * Now uses multi-RX for CallBack RPC in a different thread,
1188  * only marking them here.
1189  */
1190 #ifdef AFS_PTHREAD_ENV
1191 extern pthread_cond_t fsync_cond;
1192 #else
1193 extern char fsync_wait[];
1194 #endif
1195
1196 int
1197 BreakVolumeCallBacksLater(afs_uint32 volume)
1198 {
1199     int hash;
1200     afs_uint32 *feip;
1201     struct FileEntry *fe;
1202     struct CallBack *cb;
1203     struct host *host;
1204     int found = 0;
1205
1206     ViceLog(25, ("Setting later on volume %u\n", volume));
1207     H_LOCK;
1208     for (hash = 0; hash < FEHASH_SIZE; hash++) {
1209         for (feip = &HashTable[hash]; (fe = itofe(*feip)) != NULL; ) {
1210             if (fe->volid == volume) {
1211                 struct CallBack *cbnext;
1212                 for (cb = itocb(fe->firstcb); cb; cb = cbnext) {
1213                     host = h_itoh(cb->hhead);
1214                     host->hostFlags |= HFE_LATER;
1215                     cb->status = CB_DELAYED;
1216                     cbnext = itocb(cb->cnext);
1217                 }
1218                 FSYNC_LOCK;
1219                 fe->status |= FE_LATER;
1220                 FSYNC_UNLOCK;
1221                 found = 1;
1222             }
1223             feip = &fe->fnext;
1224         }
1225     }
1226     H_UNLOCK;
1227     if (!found) {
1228         /* didn't find any callbacks, so return right away. */
1229         return 0;
1230     }
1231
1232     ViceLog(25, ("Fsync thread wakeup\n"));
1233 #ifdef AFS_PTHREAD_ENV
1234     FSYNC_LOCK;
1235     CV_BROADCAST(&fsync_cond);
1236     FSYNC_UNLOCK;
1237 #else
1238     LWP_NoYieldSignal(fsync_wait);
1239 #endif
1240     return 0;
1241 }
1242
1243 int
1244 BreakLaterCallBacks(void)
1245 {
1246     struct AFSFid fid;
1247     int hash;
1248     afs_uint32 *feip;
1249     struct CallBack *cb;
1250     struct FileEntry *fe = NULL;
1251     struct FileEntry *myfe = NULL;
1252     struct host *host;
1253     struct VCBParams henumParms;
1254     unsigned short tthead = 0;  /* zero is illegal value */
1255     char hoststr[16];
1256
1257     /* Unchain first */
1258     ViceLog(25, ("Looking for FileEntries to unchain\n"));
1259     H_LOCK;
1260     FSYNC_LOCK;
1261     /* Pick the first volume we see to clean up */
1262     fid.Volume = fid.Vnode = fid.Unique = 0;
1263
1264     for (hash = 0; hash < FEHASH_SIZE; hash++) {
1265         for (feip = &HashTable[hash]; (fe = itofe(*feip)) != NULL; ) {
1266             if (fe && (fe->status & FE_LATER)
1267                 && (fid.Volume == 0 || fid.Volume == fe->volid)) {
1268                 /* Ugly, but used to avoid left side casting */
1269                 struct object *tmpfe;
1270                 ViceLog(125,
1271                         ("Unchaining for %u:%u:%u\n", fe->vnode, fe->unique,
1272                          fe->volid));
1273                 fid.Volume = fe->volid;
1274                 *feip = fe->fnext;
1275                 fe->status &= ~FE_LATER; /* not strictly needed */
1276                 /* Works since volid is deeper than the largest pointer */
1277                 tmpfe = (struct object *)fe;
1278                 tmpfe->next = (struct object *)myfe;
1279                 myfe = fe;
1280             } else
1281                 feip = &fe->fnext;
1282         }
1283     }
1284     FSYNC_UNLOCK;
1285
1286     if (!myfe) {
1287         H_UNLOCK;
1288         return 0;
1289     }
1290
1291     /* loop over FEs from myfe and free/break */
1292     tthead = 0;
1293     for (fe = myfe; fe;) {
1294         struct CallBack *cbnext;
1295         for (cb = itocb(fe->firstcb); cb; cb = cbnext) {
1296             cbnext = itocb(cb->cnext);
1297             host = h_itoh(cb->hhead);
1298             if (cb->status == CB_DELAYED) {
1299                 if (!(host->hostFlags & HOSTDELETED)) {
1300                     /* mark this host for notification */
1301                     host->hostFlags |= HCBREAK;
1302                     if (!tthead || (TNorm(tthead) < TNorm(cb->thead))) {
1303                         tthead = cb->thead;
1304                     }
1305                 }
1306                 TDel(cb);
1307                 HDel(cb);
1308                 CDel(cb, 0);    /* Don't let CDel clean up the fe */
1309                 /* leave flag for MultiBreakVolumeCallBack to clear */
1310             } else {
1311                 ViceLog(125,
1312                         ("Found host %p (%s:%d) non-DELAYED cb for %u:%u:%u\n",
1313                          host, afs_inet_ntoa_r(host->host, hoststr),
1314                          ntohs(host->port), fe->vnode, fe->unique, fe->volid));
1315             }
1316         }
1317         myfe = fe;
1318         fe = (struct FileEntry *)((struct object *)fe)->next;
1319         FreeFE(myfe);
1320     }
1321
1322     if (tthead) {
1323         ViceLog(125, ("Breaking volume %u\n", fid.Volume));
1324         henumParms.ncbas = 0;
1325         henumParms.fid = &fid;
1326         henumParms.thead = tthead;
1327         H_UNLOCK;
1328         h_Enumerate(MultiBreakVolumeLaterCallBack, (char *)&henumParms);
1329         H_LOCK;
1330         if (henumParms.ncbas) { /* do left-overs */
1331             struct AFSCBFids tf;
1332             tf.AFSCBFids_len = 1;
1333             tf.AFSCBFids_val = &fid;
1334
1335             MultiBreakCallBack_r(henumParms.cba, henumParms.ncbas, &tf);
1336             henumParms.ncbas = 0;
1337         }
1338     }
1339     H_UNLOCK;
1340
1341     /* Arrange to be called again */
1342     return 1;
1343 }
1344
1345 /*
1346  * Delete all timed-out call back entries (to be called periodically by file
1347  * server)
1348  */
1349 int
1350 CleanupTimedOutCallBacks(void)
1351 {
1352     H_LOCK;
1353     CleanupTimedOutCallBacks_r();
1354     H_UNLOCK;
1355     return 0;
1356 }
1357
1358 int
1359 CleanupTimedOutCallBacks_r(void)
1360 {
1361     afs_uint32 now = CBtime(FT_ApproxTime());
1362     afs_uint32 *thead;
1363     struct CallBack *cb;
1364     int ntimedout = 0;
1365     char hoststr[16];
1366
1367     while (tfirst <= now) {
1368         int cbi;
1369         cbi = *(thead = THead(tfirst));
1370         if (cbi) {
1371             do {
1372                 cb = itocb(cbi);
1373                 cbi = cb->tnext;
1374                 ViceLog(8,
1375                         ("CCB: deleting timed out call back %x (%s:%d), (%u,%u,%u)\n",
1376                          h_itoh(cb->hhead)->host,
1377                          afs_inet_ntoa_r(h_itoh(cb->hhead)->host, hoststr),
1378                          h_itoh(cb->hhead)->port, itofe(cb->fhead)->volid,
1379                          itofe(cb->fhead)->vnode, itofe(cb->fhead)->unique));
1380                 HDel(cb);
1381                 CDel(cb, 1);
1382                 ntimedout++;
1383                 if (ntimedout > cbstuff.nblks) {
1384                     ViceLog(0, ("CCB: Internal Error -- shutting down...\n"));
1385                     DumpCallBackState_r();
1386                     ShutDownAndCore(PANIC);
1387                 }
1388             } while (cbi != *thead);
1389             *thead = 0;
1390         }
1391         tfirst++;
1392     }
1393     cbstuff.CBsTimedOut += ntimedout;
1394     ViceLog(7, ("CCB: deleted %d timed out callbacks\n", ntimedout));
1395     return (ntimedout > 0);
1396 }
1397
1398 /**
1399  * parameters to pass to lih*_r from h_Enumerate_r when trying to find a host
1400  * from which to clear callbacks.
1401  */
1402 struct lih_params {
1403     /**
1404      * Points to the least interesting host found; try to clear callbacks on
1405      * this host after h_Enumerate_r(lih*_r)'ing.
1406      */
1407     struct host *lih;
1408
1409     /**
1410      * The last host we got from lih*_r, but we couldn't clear its callbacks
1411      * for some reason. Choose the next-best host after this one (with the
1412      * current lih*_r, this means to only select hosts that have an ActiveCall
1413      * newer than lastlih).
1414      */
1415     struct host *lastlih;
1416 };
1417
1418 /* Value of host->refCount that allows us to reliably infer that
1419  * host may be held by some other thread */
1420 #define OTHER_MUSTHOLD_LIH 2
1421
1422 /* This version does not allow 'host' to be selected unless its ActiveCall
1423  * is newer than 'params->lastlih' which is the host with the oldest
1424  * ActiveCall from the last pass (if it is provided).  We filter out any hosts
1425  * that are are held by other threads.
1426  *
1427  * There is a small problem here, but it may not be easily fixable. Say we
1428  * select some host A, and give it back to GetSomeSpace_r. GSS_r for some
1429  * reason cannot clear the callbacks on A, and so calls us again with
1430  * lastlih = A. Suppose there is another host B that has the same ActiveCall
1431  * time as A. We will now skip over host B, since
1432  * 'hostB->ActiveCall > hostA->ActiveCall' is not true. This could result in
1433  * us prematurely going to the GSS_r 2nd or 3rd pass, and making us a little
1434  * inefficient. This should be pretty rare, though, except perhaps in cases
1435  * with very small numbers of hosts.
1436  *
1437  * Also filter out any hosts with HOSTDELETED set. h_Enumerate_r should in
1438  * theory not give these to us anyway, but be paranoid.
1439  */
1440 static int
1441 lih0_r(struct host *host, void *rock)
1442 {
1443     struct lih_params *params = (struct lih_params *)rock;
1444
1445     /* OTHER_MUSTHOLD_LIH is because the h_Enum loop holds us once */
1446     if (host->cblist
1447         && (!(host->hostFlags & HOSTDELETED))
1448         && (host->refCount < OTHER_MUSTHOLD_LIH)
1449         && (!params->lih || host->ActiveCall < params->lih->ActiveCall)
1450         && (!params->lastlih || host->ActiveCall > params->lastlih->ActiveCall)) {
1451
1452         if (params->lih) {
1453             h_Release_r(params->lih); /* release prev host */
1454         }
1455
1456         h_Hold_r(host);
1457         params->lih = host;
1458     }
1459     return 0;
1460 }
1461
1462 /* same as lih0_r, except we do not prevent held hosts from being selected. */
1463 static int
1464 lih1_r(struct host *host, void *rock)
1465 {
1466     struct lih_params *params = (struct lih_params *)rock;
1467
1468     if (host->cblist
1469         && (!(host->hostFlags & HOSTDELETED))
1470         && (!params->lih || host->ActiveCall < params->lih->ActiveCall)
1471         && (!params->lastlih || host->ActiveCall > params->lastlih->ActiveCall)) {
1472
1473         if (params->lih) {
1474             h_Release_r(params->lih); /* release prev host */
1475         }
1476
1477         h_Hold_r(host);
1478         params->lih = host;
1479     }
1480     return 0;
1481 }
1482
1483 /* This could be upgraded to get more space each time */
1484 /* first pass: sequentially find the oldest host which isn't held by
1485                anyone for which we can clear callbacks;
1486                skipping 'hostp' */
1487 /* second pass: sequentially find the oldest host regardless of
1488                whether or not the host is held; skipping 'hostp' */
1489 /* third pass: attempt to clear callbacks from 'hostp' */
1490 /* always called with hostp unlocked */
1491
1492 /* Note: hostlist is ordered most recently created host first and
1493  * its order has no relationship to the most recently used. */
1494 extern struct host *hostList;
1495 static int
1496 GetSomeSpace_r(struct host *hostp, int locked)
1497 {
1498     struct host *hp;
1499     struct lih_params params;
1500     int i = 0;
1501
1502     cbstuff.GotSomeSpaces++;
1503     ViceLog(5,
1504             ("GSS: First looking for timed out call backs via CleanupCallBacks\n"));
1505     if (CleanupTimedOutCallBacks_r()) {
1506         cbstuff.GSS3++;
1507         return 0;
1508     }
1509
1510     i = 0;
1511     params.lastlih = NULL;
1512
1513     do {
1514         params.lih = NULL;
1515
1516         h_Enumerate_r(i == 0 ? lih0_r : lih1_r, hostList, &params);
1517
1518         hp = params.lih;
1519         if (params.lastlih) {
1520             h_Release_r(params.lastlih);
1521             params.lastlih = NULL;
1522         }
1523
1524         if (hp) {
1525             /* note that 'hp' was held by lih*_r; we will need to release it */
1526             cbstuff.GSS4++;
1527             if ((hp != hostp) && !ClearHostCallbacks_r(hp, 0 /* not locked or held */ )) {
1528                 h_Release_r(hp);
1529                 return 0;
1530             }
1531
1532             params.lastlih = hp;
1533             /* params.lastlih will be released on the next iteration, after
1534              * h_Enumerate_r */
1535
1536         } else {
1537             /*
1538              * Next time try getting callbacks from any host even if
1539              * it's held, since the only other option is starvation for
1540              * the file server (i.e. until the callback timeout arrives).
1541              */
1542             i++;
1543             params.lastlih = NULL;
1544             cbstuff.GSS1++;
1545             ViceLog(5,
1546                     ("GSS: Try harder for longest inactive host cnt= %d\n",
1547                      i));
1548         }
1549     } while (i < 2);
1550
1551     /* Could not obtain space from other hosts, clear hostp's callback state */
1552     cbstuff.GSS2++;
1553     if (!locked) {
1554         h_Lock_r(hostp);
1555     }
1556     ClearHostCallbacks_r(hostp, 1 /*already locked */ );
1557     if (!locked) {
1558         h_Unlock_r(hostp);
1559     }
1560     return 0;
1561 }
1562
1563 /* locked - set if caller has already locked the host */
1564 static int
1565 ClearHostCallbacks_r(struct host *hp, int locked)
1566 {
1567     int code;
1568     char hoststr[16];
1569     struct rx_connection *cb_conn = NULL;
1570
1571     ViceLog(5,
1572             ("GSS: Delete longest inactive host %p (%s:%d)\n",
1573              hp, afs_inet_ntoa_r(hp->host, hoststr), ntohs(hp->port)));
1574
1575     if ((hp->hostFlags & HOSTDELETED)) {
1576         /* hp could go away after reacquiring H_LOCK in h_NBLock_r, so we can't
1577          * really use it; its callbacks will get cleared anyway when
1578          * h_TossStuff_r gets its hands on it */
1579         return 1;
1580     }
1581
1582     h_Hold_r(hp);
1583
1584     /** Try a non-blocking lock. If the lock is already held return
1585       * after releasing hold on hp
1586       */
1587     if (!locked) {
1588         if (h_NBLock_r(hp)) {
1589             h_Release_r(hp);
1590             return 1;
1591         }
1592     }
1593     if (hp->Console & 2) {
1594         /*
1595          * If the special console field is set it means that a thread
1596          * is waiting in AddCallBack1 after it set pointers to the
1597          * file entry and/or callback entry. Because of the bogus
1598          * usage of h_hold it won't prevent from another thread, this
1599          * one, to remove all the callbacks so just to be safe we keep
1600          * a reference. NOTE, on the last phase we'll free the calling
1601          * host's callbacks but that's ok...
1602          */
1603         cbstuff.GSS5++;
1604     }
1605     DeleteAllCallBacks_r(hp, 1);
1606     if (hp->hostFlags & VENUSDOWN) {
1607         hp->hostFlags &= ~RESETDONE;    /* remember that we must do a reset */
1608     } else if (!(hp->hostFlags & HOSTDELETED)) {
1609         /* host is up, try a call */
1610         hp->hostFlags &= ~ALTADDR;      /* alternate addresses are invalid */
1611         cb_conn = hp->callback_rxcon;
1612         rx_GetConnection(hp->callback_rxcon);
1613         if (hp->interface) {
1614             H_UNLOCK;
1615             code =
1616                 RXAFSCB_InitCallBackState3(cb_conn, &FS_HostUUID);
1617         } else {
1618             H_UNLOCK;
1619             code = RXAFSCB_InitCallBackState(cb_conn);
1620         }
1621         rx_PutConnection(cb_conn);
1622         cb_conn = NULL;
1623         H_LOCK;
1624         hp->hostFlags |= ALTADDR;       /* alternate addresses are valid */
1625         if (code) {
1626             /* failed, mark host down and need reset */
1627             hp->hostFlags |= VENUSDOWN;
1628             hp->hostFlags &= ~RESETDONE;
1629         } else {
1630             /* reset succeeded, we're done */
1631             hp->hostFlags |= RESETDONE;
1632         }
1633     }
1634     if (!locked)
1635         h_Unlock_r(hp);
1636     h_Release_r(hp);
1637
1638     return 0;
1639 }
1640 #endif /* INTERPRET_DUMP */
1641
1642
1643 int
1644 PrintCallBackStats(void)
1645 {
1646     fprintf(stderr,
1647             "%d add CB, %d break CB, %d del CB, %d del FE, %d CB's timed out, %d space reclaim, %d del host\n",
1648             cbstuff.AddCallBacks, cbstuff.BreakCallBacks,
1649             cbstuff.DeleteCallBacks, cbstuff.DeleteFiles, cbstuff.CBsTimedOut,
1650             cbstuff.GotSomeSpaces, cbstuff.DeleteAllCallBacks);
1651     fprintf(stderr, "%d CBs, %d FEs, (%d of total of %d 16-byte blocks)\n",
1652             cbstuff.nCBs, cbstuff.nFEs, cbstuff.nCBs + cbstuff.nFEs,
1653             cbstuff.nblks);
1654     fprintf(stderr, "%d GSS1, %d GSS2, %d GSS3, %d GSS4, %d GSS5 (internal counters)\n",
1655             cbstuff.GSS1, cbstuff.GSS2, cbstuff.GSS3, cbstuff.GSS4, cbstuff.GSS5);
1656
1657     return 0;
1658 }
1659
1660 #define MAGIC 0x12345678        /* To check byte ordering of dump when it is read in */
1661 #define MAGICV2 0x12345679      /* To check byte ordering & version of dump when it is read in */
1662
1663
1664 #ifndef INTERPRET_DUMP
1665
1666 #ifdef AFS_DEMAND_ATTACH_FS
1667 /*
1668  * demand attach fs
1669  * callback state serialization
1670  */
1671 static int cb_stateSaveTimeouts(struct fs_dump_state * state);
1672 static int cb_stateSaveFEHash(struct fs_dump_state * state);
1673 static int cb_stateSaveFEs(struct fs_dump_state * state);
1674 static int cb_stateSaveFE(struct fs_dump_state * state, struct FileEntry * fe);
1675 static int cb_stateRestoreTimeouts(struct fs_dump_state * state);
1676 static int cb_stateRestoreFEHash(struct fs_dump_state * state);
1677 static int cb_stateRestoreFEs(struct fs_dump_state * state);
1678 static int cb_stateRestoreFE(struct fs_dump_state * state);
1679 static int cb_stateRestoreCBs(struct fs_dump_state * state, struct FileEntry * fe,
1680                               struct iovec * iov, int niovecs);
1681
1682 static int cb_stateVerifyFEHash(struct fs_dump_state * state);
1683 static int cb_stateVerifyFE(struct fs_dump_state * state, struct FileEntry * fe);
1684 static int cb_stateVerifyFCBList(struct fs_dump_state * state, struct FileEntry * fe);
1685 static int cb_stateVerifyTimeoutQueues(struct fs_dump_state * state);
1686
1687 static int cb_stateFEToDiskEntry(struct FileEntry *, struct FEDiskEntry *);
1688 static int cb_stateDiskEntryToFE(struct fs_dump_state * state,
1689                                  struct FEDiskEntry *, struct FileEntry *);
1690
1691 static int cb_stateCBToDiskEntry(struct CallBack *, struct CBDiskEntry *);
1692 static int cb_stateDiskEntryToCB(struct fs_dump_state * state,
1693                                  struct CBDiskEntry *, struct CallBack *);
1694
1695 static int cb_stateFillHeader(struct callback_state_header * hdr);
1696 static int cb_stateCheckHeader(struct callback_state_header * hdr);
1697
1698 static int cb_stateAllocMap(struct fs_dump_state * state);
1699
1700 int
1701 cb_stateSave(struct fs_dump_state * state)
1702 {
1703     int ret = 0;
1704
1705     AssignInt64(state->eof_offset, &state->hdr->cb_offset);
1706
1707     /* invalidate callback state header */
1708     memset(state->cb_hdr, 0, sizeof(struct callback_state_header));
1709     if (fs_stateWriteHeader(state, &state->hdr->cb_offset, state->cb_hdr,
1710                             sizeof(struct callback_state_header))) {
1711         ret = 1;
1712         goto done;
1713     }
1714
1715     fs_stateIncEOF(state, sizeof(struct callback_state_header));
1716
1717     /* dump timeout state */
1718     if (cb_stateSaveTimeouts(state)) {
1719         ret = 1;
1720         goto done;
1721     }
1722
1723     /* dump fe hashtable state */
1724     if (cb_stateSaveFEHash(state)) {
1725         ret = 1;
1726         goto done;
1727     }
1728
1729     /* dump callback state */
1730     if (cb_stateSaveFEs(state)) {
1731         ret = 1;
1732         goto done;
1733     }
1734
1735     /* write the callback state header to disk */
1736     cb_stateFillHeader(state->cb_hdr);
1737     if (fs_stateWriteHeader(state, &state->hdr->cb_offset, state->cb_hdr,
1738                             sizeof(struct callback_state_header))) {
1739         ret = 1;
1740         goto done;
1741     }
1742
1743  done:
1744     return ret;
1745 }
1746
1747 int
1748 cb_stateRestore(struct fs_dump_state * state)
1749 {
1750     int ret = 0;
1751
1752     if (fs_stateReadHeader(state, &state->hdr->cb_offset, state->cb_hdr,
1753                            sizeof(struct callback_state_header))) {
1754         ret = 1;
1755         goto done;
1756     }
1757
1758     if (cb_stateCheckHeader(state->cb_hdr)) {
1759         ret = 1;
1760         goto done;
1761     }
1762
1763     if (cb_stateAllocMap(state)) {
1764         ret = 1;
1765         goto done;
1766     }
1767
1768     if (cb_stateRestoreTimeouts(state)) {
1769         ret = 1;
1770         goto done;
1771     }
1772
1773     if (cb_stateRestoreFEHash(state)) {
1774         ret = 1;
1775         goto done;
1776     }
1777
1778     /* restore FEs and CBs from disk */
1779     if (cb_stateRestoreFEs(state)) {
1780         ret = 1;
1781         goto done;
1782     }
1783
1784     /* restore the timeout queue heads */
1785     tfirst = state->cb_hdr->tfirst;
1786
1787  done:
1788     return ret;
1789 }
1790
1791 int
1792 cb_stateRestoreIndices(struct fs_dump_state * state)
1793 {
1794     int i, ret = 0;
1795     struct FileEntry * fe;
1796     struct CallBack * cb;
1797
1798     /* restore indices in the FileEntry structures */
1799     for (i = 1; i < state->fe_map.len; i++) {
1800         if (state->fe_map.entries[i].new_idx) {
1801             fe = itofe(state->fe_map.entries[i].new_idx);
1802
1803             /* restore the fe->fnext entry */
1804             if (fe_OldToNew(state, fe->fnext, &fe->fnext)) {
1805                 ret = 1;
1806                 goto done;
1807             }
1808
1809             /* restore the fe->firstcb entry */
1810             if (cb_OldToNew(state, fe->firstcb, &fe->firstcb)) {
1811                 ret = 1;
1812                 goto done;
1813             }
1814         }
1815     }
1816
1817     /* restore indices in the CallBack structures */
1818     for (i = 1; i < state->cb_map.len; i++) {
1819         if (state->cb_map.entries[i].new_idx) {
1820             cb = itocb(state->cb_map.entries[i].new_idx);
1821
1822             /* restore the cb->cnext entry */
1823             if (cb_OldToNew(state, cb->cnext, &cb->cnext)) {
1824                 ret = 1;
1825                 goto done;
1826             }
1827
1828             /* restore the cb->fhead entry */
1829             if (fe_OldToNew(state, cb->fhead, &cb->fhead)) {
1830                 ret = 1;
1831                 goto done;
1832             }
1833
1834             /* restore the cb->hhead entry */
1835             if (h_OldToNew(state, cb->hhead, &cb->hhead)) {
1836                 ret = 1;
1837                 goto done;
1838             }
1839
1840             /* restore the cb->tprev entry */
1841             if (cb_OldToNew(state, cb->tprev, &cb->tprev)) {
1842                 ret = 1;
1843                 goto done;
1844             }
1845
1846             /* restore the cb->tnext entry */
1847             if (cb_OldToNew(state, cb->tnext, &cb->tnext)) {
1848                 ret = 1;
1849                 goto done;
1850             }
1851
1852             /* restore the cb->hprev entry */
1853             if (cb_OldToNew(state, cb->hprev, &cb->hprev)) {
1854                 ret = 1;
1855                 goto done;
1856             }
1857
1858             /* restore the cb->hnext entry */
1859             if (cb_OldToNew(state, cb->hnext, &cb->hnext)) {
1860                 ret = 1;
1861                 goto done;
1862             }
1863         }
1864     }
1865
1866     /* restore the timeout queue head indices */
1867     for (i = 0; i < state->cb_timeout_hdr->records; i++) {
1868         if (cb_OldToNew(state, timeout[i], &timeout[i])) {
1869             ret = 1;
1870             goto done;
1871         }
1872     }
1873
1874     /* restore the FE hash table queue heads */
1875     for (i = 0; i < state->cb_fehash_hdr->records; i++) {
1876         if (fe_OldToNew(state, HashTable[i], &HashTable[i])) {
1877             ret = 1;
1878             goto done;
1879         }
1880     }
1881
1882  done:
1883     return ret;
1884 }
1885
1886 int
1887 cb_stateVerify(struct fs_dump_state * state)
1888 {
1889     int ret = 0;
1890
1891     if (cb_stateVerifyFEHash(state)) {
1892         ret = 1;
1893     }
1894
1895     if (cb_stateVerifyTimeoutQueues(state)) {
1896         ret = 1;
1897     }
1898
1899     return ret;
1900 }
1901
1902 static int
1903 cb_stateVerifyFEHash(struct fs_dump_state * state)
1904 {
1905     int ret = 0, i;
1906     struct FileEntry * fe;
1907     afs_uint32 fei, chain_len;
1908
1909     for (i = 0; i < FEHASH_SIZE; i++) {
1910         chain_len = 0;
1911         for (fei = HashTable[i], fe = itofe(fei);
1912              fe;
1913              fei = fe->fnext, fe = itofe(fei)) {
1914             if (fei > cbstuff.nblks) {
1915                 ViceLog(0, ("cb_stateVerifyFEHash: error: index out of range (fei=%d)\n", fei));
1916                 ret = 1;
1917                 break;
1918             }
1919             if (cb_stateVerifyFE(state, fe)) {
1920                 ret = 1;
1921             }
1922             if (chain_len > FS_STATE_FE_MAX_HASH_CHAIN_LEN) {
1923                 ViceLog(0, ("cb_stateVerifyFEHash: error: hash chain %d length exceeds %d; assuming there's a loop\n",
1924                             i, FS_STATE_FE_MAX_HASH_CHAIN_LEN));
1925                 ret = 1;
1926                 break;
1927             }
1928             chain_len++;
1929         }
1930     }
1931
1932     return ret;
1933 }
1934
1935 static int
1936 cb_stateVerifyFE(struct fs_dump_state * state, struct FileEntry * fe)
1937 {
1938     int ret = 0;
1939
1940     if ((fe->firstcb && !fe->ncbs) ||
1941         (!fe->firstcb && fe->ncbs)) {
1942         ViceLog(0, ("cb_stateVerifyFE: error: fe->firstcb does not agree with fe->ncbs (fei=%lu, fe->firstcb=%lu, fe->ncbs=%lu)\n",
1943                     afs_printable_uint32_lu(fetoi(fe)),
1944                     afs_printable_uint32_lu(fe->firstcb),
1945                     afs_printable_uint32_lu(fe->ncbs)));
1946         ret = 1;
1947     }
1948     if (cb_stateVerifyFCBList(state, fe)) {
1949         ViceLog(0, ("cb_stateVerifyFE: error: FCBList failed verification (fei=%lu)\n",
1950                     afs_printable_uint32_lu(fetoi(fe))));
1951         ret = 1;
1952     }
1953
1954     return ret;
1955 }
1956
1957 static int
1958 cb_stateVerifyFCBList(struct fs_dump_state * state, struct FileEntry * fe)
1959 {
1960     int ret = 0;
1961     afs_uint32 cbi, fei, chain_len = 0;
1962     struct CallBack * cb;
1963
1964     fei = fetoi(fe);
1965
1966     for (cbi = fe->firstcb, cb = itocb(cbi);
1967          cb;
1968          cbi = cb->cnext, cb = itocb(cbi)) {
1969         if (cbi > cbstuff.nblks) {
1970             ViceLog(0, ("cb_stateVerifyFCBList: error: list index out of range (cbi=%d, ncbs=%d)\n",
1971                         cbi, cbstuff.nblks));
1972             ret = 1;
1973             goto done;
1974         }
1975         if (cb->fhead != fei) {
1976             ViceLog(0, ("cb_stateVerifyFCBList: error: cb->fhead != fei (fei=%d, cb->fhead=%d)\n",
1977                         fei, cb->fhead));
1978             ret = 1;
1979         }
1980         if (chain_len > FS_STATE_FCB_MAX_LIST_LEN) {
1981             ViceLog(0, ("cb_stateVerifyFCBList: error: list length exceeds %d (fei=%d); assuming there's a loop\n",
1982                         FS_STATE_FCB_MAX_LIST_LEN, fei));
1983             ret = 1;
1984             goto done;
1985         }
1986         chain_len++;
1987     }
1988
1989     if (fe->ncbs != chain_len) {
1990         ViceLog(0, ("cb_stateVerifyFCBList: error: list length mismatch (len=%d, fe->ncbs=%d)\n",
1991                     chain_len, fe->ncbs));
1992         ret = 1;
1993     }
1994
1995  done:
1996     return ret;
1997 }
1998
1999 int
2000 cb_stateVerifyHCBList(struct fs_dump_state * state, struct host * host)
2001 {
2002     int ret = 0;
2003     afs_uint32 hi, chain_len, cbi;
2004     struct CallBack *cb, *ncb;
2005
2006     hi = h_htoi(host);
2007     chain_len = 0;
2008
2009     for (cbi = host->cblist, cb = itocb(cbi);
2010          cb;
2011          cbi = cb->hnext, cb = ncb) {
2012         if (chain_len && (host->cblist == cbi)) {
2013             /* we've wrapped around the circular list, and everything looks ok */
2014             break;
2015         }
2016         if (cb->hhead != hi) {
2017             ViceLog(0, ("cb_stateVerifyHCBList: error: incorrect cb->hhead (cbi=%d, h->index=%d, cb->hhead=%d)\n",
2018                         cbi, hi, cb->hhead));
2019             ret = 1;
2020         }
2021         if (!cb->hprev || !cb->hnext) {
2022             ViceLog(0, ("cb_stateVerifyHCBList: error: null index in circular list (cbi=%d, h->index=%d)\n",
2023                         cbi, hi));
2024             ret = 1;
2025             goto done;
2026         }
2027         if ((cb->hprev > cbstuff.nblks) ||
2028             (cb->hnext > cbstuff.nblks)) {
2029             ViceLog(0, ("cb_stateVerifyHCBList: error: list index out of range (cbi=%d, h->index=%d, cb->hprev=%d, cb->hnext=%d, nCBs=%d)\n",
2030                         cbi, hi, cb->hprev, cb->hnext, cbstuff.nblks));
2031             ret = 1;
2032             goto done;
2033         }
2034         ncb = itocb(cb->hnext);
2035         if (cbi != ncb->hprev) {
2036             ViceLog(0, ("cb_stateVerifyHCBList: error: corrupt linked list (cbi=%d, h->index=%d)\n",
2037                         cbi, hi));
2038             ret = 1;
2039             goto done;
2040         }
2041         if (chain_len > FS_STATE_HCB_MAX_LIST_LEN) {
2042             ViceLog(0, ("cb_stateVerifyFCBList: error: list length exceeds %d (h->index=%d); assuming there's a loop\n",
2043                         FS_STATE_HCB_MAX_LIST_LEN, hi));
2044             ret = 1;
2045             goto done;
2046         }
2047         chain_len++;
2048     }
2049
2050  done:
2051     return ret;
2052 }
2053
2054 static int
2055 cb_stateVerifyTimeoutQueues(struct fs_dump_state * state)
2056 {
2057     int ret = 0, i;
2058     afs_uint32 cbi, chain_len;
2059     struct CallBack *cb, *ncb;
2060
2061     for (i = 0; i < CB_NUM_TIMEOUT_QUEUES; i++) {
2062         chain_len = 0;
2063         for (cbi = timeout[i], cb = itocb(cbi);
2064              cb;
2065              cbi = cb->tnext, cb = ncb) {
2066             if (chain_len && (cbi == timeout[i])) {
2067                 /* we've wrapped around the circular list, and everything looks ok */
2068                 break;
2069             }
2070             if (cbi > cbstuff.nblks) {
2071                 ViceLog(0, ("cb_stateVerifyTimeoutQueues: error: list index out of range (cbi=%d, tindex=%d)\n",
2072                             cbi, i));
2073                 ret = 1;
2074                 break;
2075             }
2076             if (itot(cb->thead) != &timeout[i]) {
2077                 ViceLog(0, ("cb_stateVerifyTimeoutQueues: error: cb->thead points to wrong timeout queue (tindex=%d, cbi=%d, cb->thead=%d)\n",
2078                             i, cbi, cb->thead));
2079                 ret = 1;
2080             }
2081             if (!cb->tprev || !cb->tnext) {
2082                 ViceLog(0, ("cb_stateVerifyTimeoutQueues: null index in circular list (cbi=%d, tindex=%d)\n",
2083                             cbi, i));
2084                 ret = 1;
2085                 break;
2086             }
2087             if ((cb->tprev > cbstuff.nblks) ||
2088                 (cb->tnext > cbstuff.nblks)) {
2089                 ViceLog(0, ("cb_stateVerifyTimeoutQueues: list index out of range (cbi=%d, tindex=%d, cb->tprev=%d, cb->tnext=%d, nCBs=%d)\n",
2090                             cbi, i, cb->tprev, cb->tnext, cbstuff.nblks));
2091                 ret = 1;
2092                 break;
2093             }
2094             ncb = itocb(cb->tnext);
2095             if (cbi != ncb->tprev) {
2096                 ViceLog(0, ("cb_stateVerifyTimeoutQueues: corrupt linked list (cbi=%d, tindex=%d)\n",
2097                             cbi, i));
2098                 ret = 1;
2099                 break;
2100             }
2101             if (chain_len > FS_STATE_TCB_MAX_LIST_LEN) {
2102                 ViceLog(0, ("cb_stateVerifyTimeoutQueues: list length exceeds %d (tindex=%d); assuming there's a loop\n",
2103                             FS_STATE_TCB_MAX_LIST_LEN, i));
2104                 ret = 1;
2105                 break;
2106             }
2107             chain_len++;
2108         }
2109     }
2110
2111     return ret;
2112 }
2113
2114 static int
2115 cb_stateSaveTimeouts(struct fs_dump_state * state)
2116 {
2117     int ret = 0;
2118     struct iovec iov[2];
2119
2120     AssignInt64(state->eof_offset, &state->cb_hdr->timeout_offset);
2121
2122     memset(state->cb_timeout_hdr, 0, sizeof(struct callback_state_fehash_header));
2123     state->cb_timeout_hdr->magic = CALLBACK_STATE_TIMEOUT_MAGIC;
2124     state->cb_timeout_hdr->records = CB_NUM_TIMEOUT_QUEUES;
2125     state->cb_timeout_hdr->len = sizeof(struct callback_state_timeout_header) +
2126         (state->cb_timeout_hdr->records * sizeof(afs_uint32));
2127
2128     iov[0].iov_base = (char *)state->cb_timeout_hdr;
2129     iov[0].iov_len = sizeof(struct callback_state_timeout_header);
2130     iov[1].iov_base = (char *)timeout;
2131     iov[1].iov_len = sizeof(timeout);
2132
2133     if (fs_stateSeek(state, &state->cb_hdr->timeout_offset)) {
2134         ret = 1;
2135         goto done;
2136     }
2137
2138     if (fs_stateWriteV(state, iov, 2)) {
2139         ret = 1;
2140         goto done;
2141     }
2142
2143     fs_stateIncEOF(state, state->cb_timeout_hdr->len);
2144
2145  done:
2146     return ret;
2147 }
2148
2149 static int
2150 cb_stateRestoreTimeouts(struct fs_dump_state * state)
2151 {
2152     int ret = 0, len;
2153
2154     if (fs_stateReadHeader(state, &state->cb_hdr->timeout_offset,
2155                            state->cb_timeout_hdr,
2156                            sizeof(struct callback_state_timeout_header))) {
2157         ret = 1;
2158         goto done;
2159     }
2160
2161     if (state->cb_timeout_hdr->magic != CALLBACK_STATE_TIMEOUT_MAGIC) {
2162         ret = 1;
2163         goto done;
2164     }
2165     if (state->cb_timeout_hdr->records != CB_NUM_TIMEOUT_QUEUES) {
2166         ret = 1;
2167         goto done;
2168     }
2169
2170     len = state->cb_timeout_hdr->records * sizeof(afs_uint32);
2171
2172     if (state->cb_timeout_hdr->len !=
2173         (sizeof(struct callback_state_timeout_header) + len)) {
2174         ret = 1;
2175         goto done;
2176     }
2177
2178     if (fs_stateRead(state, timeout, len)) {
2179         ret = 1;
2180         goto done;
2181     }
2182
2183  done:
2184     return ret;
2185 }
2186
2187 static int
2188 cb_stateSaveFEHash(struct fs_dump_state * state)
2189 {
2190     int ret = 0;
2191     struct iovec iov[2];
2192
2193     AssignInt64(state->eof_offset, &state->cb_hdr->fehash_offset);
2194
2195     memset(state->cb_fehash_hdr, 0, sizeof(struct callback_state_fehash_header));
2196     state->cb_fehash_hdr->magic = CALLBACK_STATE_FEHASH_MAGIC;
2197     state->cb_fehash_hdr->records = FEHASH_SIZE;
2198     state->cb_fehash_hdr->len = sizeof(struct callback_state_fehash_header) +
2199         (state->cb_fehash_hdr->records * sizeof(afs_uint32));
2200
2201     iov[0].iov_base = (char *)state->cb_fehash_hdr;
2202     iov[0].iov_len = sizeof(struct callback_state_fehash_header);
2203     iov[1].iov_base = (char *)HashTable;
2204     iov[1].iov_len = sizeof(HashTable);
2205
2206     if (fs_stateSeek(state, &state->cb_hdr->fehash_offset)) {
2207         ret = 1;
2208         goto done;
2209     }
2210
2211     if (fs_stateWriteV(state, iov, 2)) {
2212         ret = 1;
2213         goto done;
2214     }
2215
2216     fs_stateIncEOF(state, state->cb_fehash_hdr->len);
2217
2218  done:
2219     return ret;
2220 }
2221
2222 static int
2223 cb_stateRestoreFEHash(struct fs_dump_state * state)
2224 {
2225     int ret = 0, len;
2226
2227     if (fs_stateReadHeader(state, &state->cb_hdr->fehash_offset,
2228                            state->cb_fehash_hdr,
2229                            sizeof(struct callback_state_fehash_header))) {
2230         ret = 1;
2231         goto done;
2232     }
2233
2234     if (state->cb_fehash_hdr->magic != CALLBACK_STATE_FEHASH_MAGIC) {
2235         ret = 1;
2236         goto done;
2237     }
2238     if (state->cb_fehash_hdr->records != FEHASH_SIZE) {
2239         ret = 1;
2240         goto done;
2241     }
2242
2243     len = state->cb_fehash_hdr->records * sizeof(afs_uint32);
2244
2245     if (state->cb_fehash_hdr->len !=
2246         (sizeof(struct callback_state_fehash_header) + len)) {
2247         ret = 1;
2248         goto done;
2249     }
2250
2251     if (fs_stateRead(state, HashTable, len)) {
2252         ret = 1;
2253         goto done;
2254     }
2255
2256  done:
2257     return ret;
2258 }
2259
2260 static int
2261 cb_stateSaveFEs(struct fs_dump_state * state)
2262 {
2263     int ret = 0;
2264     int fei, hash;
2265     struct FileEntry *fe;
2266
2267     AssignInt64(state->eof_offset, &state->cb_hdr->fe_offset);
2268
2269     for (hash = 0; hash < FEHASH_SIZE ; hash++) {
2270         for (fei = HashTable[hash]; fei; fei = fe->fnext) {
2271             fe = itofe(fei);
2272             if (cb_stateSaveFE(state, fe)) {
2273                 ret = 1;
2274                 goto done;
2275             }
2276         }
2277     }
2278
2279  done:
2280     return ret;
2281 }
2282
2283 static int
2284 cb_stateRestoreFEs(struct fs_dump_state * state)
2285 {
2286     int count, nFEs, ret = 0;
2287
2288     nFEs = state->cb_hdr->nFEs;
2289
2290     for (count = 0; count < nFEs; count++) {
2291         if (cb_stateRestoreFE(state)) {
2292             ret = 1;
2293             goto done;
2294         }
2295     }
2296
2297  done:
2298     return ret;
2299 }
2300
2301 static int
2302 cb_stateSaveFE(struct fs_dump_state * state, struct FileEntry * fe)
2303 {
2304     int ret = 0, iovcnt, cbi, written = 0;
2305     afs_uint32 fei;
2306     struct callback_state_entry_header hdr;
2307     struct FEDiskEntry fedsk;
2308     struct CBDiskEntry cbdsk[16];
2309     struct iovec iov[16];
2310     struct CallBack *cb;
2311
2312     fei = fetoi(fe);
2313     if (fei > state->cb_hdr->fe_max) {
2314         state->cb_hdr->fe_max = fei;
2315     }
2316
2317     memset(&hdr, 0, sizeof(struct callback_state_entry_header));
2318
2319     if (cb_stateFEToDiskEntry(fe, &fedsk)) {
2320         ret = 1;
2321         goto done;
2322     }
2323
2324     iov[0].iov_base = (char *)&hdr;
2325     iov[0].iov_len = sizeof(hdr);
2326     iov[1].iov_base = (char *)&fedsk;
2327     iov[1].iov_len = sizeof(struct FEDiskEntry);
2328     iovcnt = 2;
2329
2330     for (cbi = fe->firstcb, cb = itocb(cbi);
2331          cb != NULL;
2332          cbi = cb->cnext, cb = itocb(cbi), hdr.nCBs++) {
2333         if (cbi > state->cb_hdr->cb_max) {
2334             state->cb_hdr->cb_max = cbi;
2335         }
2336         if (cb_stateCBToDiskEntry(cb, &cbdsk[iovcnt])) {
2337             ret = 1;
2338             goto done;
2339         }
2340         cbdsk[iovcnt].index = cbi;
2341         iov[iovcnt].iov_base = (char *)&cbdsk[iovcnt];
2342         iov[iovcnt].iov_len = sizeof(struct CBDiskEntry);
2343         iovcnt++;
2344         if ((iovcnt == 16) || (!cb->cnext)) {
2345             if (fs_stateWriteV(state, iov, iovcnt)) {
2346                 ret = 1;
2347                 goto done;
2348             }
2349             written = 1;
2350             iovcnt = 0;
2351         }
2352     }
2353
2354     hdr.magic = CALLBACK_STATE_ENTRY_MAGIC;
2355     hdr.len = sizeof(hdr) + sizeof(struct FEDiskEntry) +
2356         (hdr.nCBs * sizeof(struct CBDiskEntry));
2357
2358     if (!written) {
2359         if (fs_stateWriteV(state, iov, iovcnt)) {
2360             ret = 1;
2361             goto done;
2362         }
2363     } else {
2364         if (fs_stateWriteHeader(state, &state->eof_offset, &hdr, sizeof(hdr))) {
2365             ret = 1;
2366             goto done;
2367         }
2368     }
2369
2370     fs_stateIncEOF(state, hdr.len);
2371
2372     if (written) {
2373         if (fs_stateSeek(state, &state->eof_offset)) {
2374             ret = 1;
2375             goto done;
2376         }
2377     }
2378
2379     state->cb_hdr->nFEs++;
2380     state->cb_hdr->nCBs += hdr.nCBs;
2381
2382  done:
2383     return ret;
2384 }
2385
2386 static int
2387 cb_stateRestoreFE(struct fs_dump_state * state)
2388 {
2389     int ret = 0, iovcnt, nCBs;
2390     struct callback_state_entry_header hdr;
2391     struct FEDiskEntry fedsk;
2392     struct CBDiskEntry cbdsk[16];
2393     struct iovec iov[16];
2394     struct FileEntry * fe;
2395
2396     iov[0].iov_base = (char *)&hdr;
2397     iov[0].iov_len = sizeof(hdr);
2398     iov[1].iov_base = (char *)&fedsk;
2399     iov[1].iov_len = sizeof(fedsk);
2400     iovcnt = 2;
2401
2402     if (fs_stateReadV(state, iov, iovcnt)) {
2403         ret = 1;
2404         goto done;
2405     }
2406
2407     if (hdr.magic != CALLBACK_STATE_ENTRY_MAGIC) {
2408         ret = 1;
2409         goto done;
2410     }
2411
2412     fe = GetFE();
2413     if (fe == NULL) {
2414         ViceLog(0, ("cb_stateRestoreFE: ran out of free FileEntry structures\n"));
2415         ret = 1;
2416         goto done;
2417     }
2418
2419     if (cb_stateDiskEntryToFE(state, &fedsk, fe)) {
2420         ret = 1;
2421         goto done;
2422     }
2423
2424     if (hdr.nCBs) {
2425         for (iovcnt = 0, nCBs = 0;
2426              nCBs < hdr.nCBs;
2427              nCBs++) {
2428             iov[iovcnt].iov_base = (char *)&cbdsk[iovcnt];
2429             iov[iovcnt].iov_len = sizeof(struct CBDiskEntry);
2430             iovcnt++;
2431             if ((iovcnt == 16) || (nCBs == hdr.nCBs - 1)) {
2432                 if (fs_stateReadV(state, iov, iovcnt)) {
2433                     ret = 1;
2434                     goto done;
2435                 }
2436                 if (cb_stateRestoreCBs(state, fe, iov, iovcnt)) {
2437                     ret = 1;
2438                     goto done;
2439                 }
2440                 iovcnt = 0;
2441             }
2442         }
2443     }
2444
2445  done:
2446     return ret;
2447 }
2448
2449 static int
2450 cb_stateRestoreCBs(struct fs_dump_state * state, struct FileEntry * fe,
2451                    struct iovec * iov, int niovecs)
2452 {
2453     int ret = 0, idx;
2454     struct CallBack * cb;
2455     struct CBDiskEntry * cbdsk;
2456
2457     for (idx = 0; idx < niovecs; idx++) {
2458         cbdsk = (struct CBDiskEntry *) iov[idx].iov_base;
2459
2460         if (cbdsk->cb.hhead < state->h_map.len &&
2461             state->h_map.entries[cbdsk->cb.hhead].valid == FS_STATE_IDX_SKIPPED) {
2462             continue;
2463         }
2464
2465         if ((cb = GetCB()) == NULL) {
2466             ViceLog(0, ("cb_stateRestoreCBs: ran out of free CallBack structures\n"));
2467             ret = 1;
2468             goto done;
2469         }
2470         if (cb_stateDiskEntryToCB(state, cbdsk, cb)) {
2471             ViceLog(0, ("cb_stateRestoreCBs: corrupt CallBack disk entry\n"));
2472             ret = 1;
2473             goto done;
2474         }
2475     }
2476
2477  done:
2478     return ret;
2479 }
2480
2481
2482 static int
2483 cb_stateFillHeader(struct callback_state_header * hdr)
2484 {
2485     hdr->stamp.magic = CALLBACK_STATE_MAGIC;
2486     hdr->stamp.version = CALLBACK_STATE_VERSION;
2487     hdr->tfirst = tfirst;
2488     return 0;
2489 }
2490
2491 static int
2492 cb_stateCheckHeader(struct callback_state_header * hdr)
2493 {
2494     int ret = 0;
2495
2496     if (hdr->stamp.magic != CALLBACK_STATE_MAGIC) {
2497         ret = 1;
2498     } else if (hdr->stamp.version != CALLBACK_STATE_VERSION) {
2499         ret = 1;
2500     } else if ((hdr->nFEs > cbstuff.nblks) || (hdr->nCBs > cbstuff.nblks)) {
2501         ViceLog(0, ("cb_stateCheckHeader: saved callback state larger than callback memory allocation\n"));
2502         ret = 1;
2503     }
2504     return ret;
2505 }
2506
2507 /* disk entry conversion routines */
2508 static int
2509 cb_stateFEToDiskEntry(struct FileEntry * in, struct FEDiskEntry * out)
2510 {
2511     memcpy(&out->fe, in, sizeof(struct FileEntry));
2512     out->index = fetoi(in);
2513     return 0;
2514 }
2515
2516 static int
2517 cb_stateDiskEntryToFE(struct fs_dump_state * state,
2518                       struct FEDiskEntry * in, struct FileEntry * out)
2519 {
2520     int ret = 0;
2521
2522     memcpy(out, &in->fe, sizeof(struct FileEntry));
2523
2524     /* setup FE map entry */
2525     if (!in->index || (in->index >= state->fe_map.len)) {
2526         ViceLog(0, ("cb_stateDiskEntryToFE: index (%d) out of range",
2527                     in->index));
2528         ret = 1;
2529         goto done;
2530     }
2531     state->fe_map.entries[in->index].valid = FS_STATE_IDX_VALID;
2532     state->fe_map.entries[in->index].old_idx = in->index;
2533     state->fe_map.entries[in->index].new_idx = fetoi(out);
2534
2535  done:
2536     return ret;
2537 }
2538
2539 static int
2540 cb_stateCBToDiskEntry(struct CallBack * in, struct CBDiskEntry * out)
2541 {
2542     memcpy(&out->cb, in, sizeof(struct CallBack));
2543     out->index = cbtoi(in);
2544     return 0;
2545 }
2546
2547 static int
2548 cb_stateDiskEntryToCB(struct fs_dump_state * state,
2549                       struct CBDiskEntry * in, struct CallBack * out)
2550 {
2551     int ret = 0;
2552
2553     memcpy(out, &in->cb, sizeof(struct CallBack));
2554
2555     /* setup CB map entry */
2556     if (!in->index || (in->index >= state->cb_map.len)) {
2557         ViceLog(0, ("cb_stateDiskEntryToCB: index (%d) out of range\n",
2558                     in->index));
2559         ret = 1;
2560         goto done;
2561     }
2562     state->cb_map.entries[in->index].valid = FS_STATE_IDX_VALID;
2563     state->cb_map.entries[in->index].old_idx = in->index;
2564     state->cb_map.entries[in->index].new_idx = cbtoi(out);
2565
2566  done:
2567     return ret;
2568 }
2569
2570 /* index map routines */
2571 static int
2572 cb_stateAllocMap(struct fs_dump_state * state)
2573 {
2574     state->fe_map.len = state->cb_hdr->fe_max + 1;
2575     state->cb_map.len = state->cb_hdr->cb_max + 1;
2576     state->fe_map.entries = (struct idx_map_entry_t *)
2577         calloc(state->fe_map.len, sizeof(struct idx_map_entry_t));
2578     state->cb_map.entries = (struct idx_map_entry_t *)
2579         calloc(state->cb_map.len, sizeof(struct idx_map_entry_t));
2580     return ((state->fe_map.entries != NULL) && (state->cb_map.entries != NULL)) ? 0 : 1;
2581 }
2582
2583 int
2584 fe_OldToNew(struct fs_dump_state * state, afs_uint32 old, afs_uint32 * new)
2585 {
2586     int ret = 0;
2587
2588     /* FEs use a one-based indexing system, so old==0 implies no mapping */
2589     if (!old) {
2590         *new = 0;
2591         goto done;
2592     }
2593
2594     if (old >= state->fe_map.len) {
2595         ViceLog(0, ("fe_OldToNew: index %d is out of range\n", old));
2596         ret = 1;
2597     } else if (state->fe_map.entries[old].valid != FS_STATE_IDX_VALID ||
2598                state->fe_map.entries[old].old_idx != old) { /* sanity check */
2599         ViceLog(0, ("fe_OldToNew: index %d points to an invalid FileEntry record\n", old));
2600         ret = 1;
2601     } else {
2602         *new = state->fe_map.entries[old].new_idx;
2603     }
2604
2605  done:
2606     return ret;
2607 }
2608
2609 int
2610 cb_OldToNew(struct fs_dump_state * state, afs_uint32 old, afs_uint32 * new)
2611 {
2612     int ret = 0;
2613
2614     /* CBs use a one-based indexing system, so old==0 implies no mapping */
2615     if (!old) {
2616         *new = 0;
2617         goto done;
2618     }
2619
2620     if (old >= state->cb_map.len) {
2621         ViceLog(0, ("cb_OldToNew: index %d is out of range\n", old));
2622         ret = 1;
2623     } else if (state->cb_map.entries[old].valid != FS_STATE_IDX_VALID ||
2624                state->cb_map.entries[old].old_idx != old) { /* sanity check */
2625         ViceLog(0, ("cb_OldToNew: index %d points to an invalid CallBack record\n", old));
2626         ret = 1;
2627     } else {
2628         *new = state->cb_map.entries[old].new_idx;
2629     }
2630
2631  done:
2632     return ret;
2633 }
2634 #endif /* AFS_DEMAND_ATTACH_FS */
2635
2636 static int
2637 DumpCallBackState_r(void)
2638 {
2639     int fd, oflag;
2640     afs_uint32 magic = MAGICV2, now = (afs_int32) FT_ApproxTime(), freelisthead;
2641
2642     oflag = O_WRONLY | O_CREAT | O_TRUNC;
2643 #ifdef AFS_NT40_ENV
2644     oflag |= O_BINARY;
2645 #endif
2646     fd = open(AFSDIR_SERVER_CBKDUMP_FILEPATH, oflag, 0666);
2647     if (fd < 0) {
2648         ViceLog(0,
2649                 ("Couldn't create callback dump file %s\n",
2650                  AFSDIR_SERVER_CBKDUMP_FILEPATH));
2651         return 0;
2652     }
2653     (void)write(fd, &magic, sizeof(magic));
2654     (void)write(fd, &now, sizeof(now));
2655     (void)write(fd, &cbstuff, sizeof(cbstuff));
2656     (void)write(fd, TimeOuts, sizeof(TimeOuts));
2657     (void)write(fd, timeout, sizeof(timeout));
2658     (void)write(fd, &tfirst, sizeof(tfirst));
2659     freelisthead = cbtoi((struct CallBack *)CBfree);
2660     (void)write(fd, &freelisthead, sizeof(freelisthead));       /* This is a pointer */
2661     freelisthead = fetoi((struct FileEntry *)FEfree);
2662     (void)write(fd, &freelisthead, sizeof(freelisthead));       /* This is a pointer */
2663     (void)write(fd, HashTable, sizeof(HashTable));
2664     (void)write(fd, &CB[1], sizeof(CB[1]) * cbstuff.nblks);     /* CB stuff */
2665     (void)write(fd, &FE[1], sizeof(FE[1]) * cbstuff.nblks);     /* FE stuff */
2666     close(fd);
2667
2668     return 0;
2669 }
2670
2671 int
2672 DumpCallBackState(void) {
2673     int rc;
2674
2675     H_LOCK;
2676     rc = DumpCallBackState_r();
2677     H_UNLOCK;
2678
2679     return(rc);
2680 }
2681
2682 #endif /* !INTERPRET_DUMP */
2683
2684 #ifdef INTERPRET_DUMP
2685
2686 /* This is only compiled in for the callback analyzer program */
2687 /* Returns the time of the dump */
2688 time_t
2689 ReadDump(char *file, int timebits)
2690 {
2691     int fd, oflag;
2692     afs_uint32 magic, freelisthead;
2693     afs_uint32 now;
2694     afs_int64 now64;
2695
2696     oflag = O_RDONLY;
2697 #ifdef AFS_NT40_ENV
2698     oflag |= O_BINARY;
2699 #endif
2700     fd = open(file, oflag);
2701     if (fd < 0) {
2702         fprintf(stderr, "Couldn't read dump file %s\n", file);
2703         exit(1);
2704     }
2705     read(fd, &magic, sizeof(magic));
2706     if (magic == MAGICV2) {
2707         timebits = 32;
2708     } else {
2709         if (magic != MAGIC) {
2710             fprintf(stderr,
2711                     "Magic number of %s is invalid.  You might be trying to\n",
2712                     file);
2713             fprintf(stderr,
2714                     "run this program on a machine type with a different byte ordering.\n");
2715             exit(1);
2716         }
2717     }
2718     if (timebits == 64) {
2719         read(fd, &now64, sizeof(afs_int64));
2720         now = (afs_int32) now64;
2721     } else
2722         read(fd, &now, sizeof(afs_int32));
2723
2724     read(fd, &cbstuff, sizeof(cbstuff));
2725     read(fd, TimeOuts, sizeof(TimeOuts));
2726     read(fd, timeout, sizeof(timeout));
2727     read(fd, &tfirst, sizeof(tfirst));
2728     read(fd, &freelisthead, sizeof(freelisthead));
2729     CB = ((struct CallBack
2730            *)(calloc(cbstuff.nblks, sizeof(struct CallBack)))) - 1;
2731     FE = ((struct FileEntry
2732            *)(calloc(cbstuff.nblks, sizeof(struct FileEntry)))) - 1;
2733     CBfree = (struct CallBack *)itocb(freelisthead);
2734     read(fd, &freelisthead, sizeof(freelisthead));
2735     FEfree = (struct FileEntry *)itofe(freelisthead);
2736     read(fd, HashTable, sizeof(HashTable));
2737     read(fd, &CB[1], sizeof(CB[1]) * cbstuff.nblks);    /* CB stuff */
2738     read(fd, &FE[1], sizeof(FE[1]) * cbstuff.nblks);    /* FE stuff */
2739     if (close(fd)) {
2740         perror("Error reading dumpfile");
2741         exit(1);
2742     }
2743     return now;
2744 }
2745
2746 #ifdef AFS_NT40_ENV
2747 #include "AFS_component_version_number.h"
2748 #else
2749 #include "AFS_component_version_number.c"
2750 #endif
2751
2752 static afs_uint32 *cbTrack;
2753
2754 int
2755 main(int argc, char **argv)
2756 {
2757     int err = 0, cbi = 0, stats = 0, noptions = 0, all = 0, vol = 0, raw = 0;
2758     static AFSFid fid;
2759     struct FileEntry *fe;
2760     struct CallBack *cb;
2761     time_t now;
2762     int timebits = 32;
2763
2764     memset(&fid, 0, sizeof(fid));
2765     argc--;
2766     argv++;
2767     while (argc && **argv == '-') {
2768         noptions++;
2769         argc--;
2770         if (!strcmp(*argv, "-host")) {
2771             if (argc < 1) {
2772                 err++;
2773                 break;
2774             }
2775             argc--;
2776             cbi = atoi(*++argv);
2777         } else if (!strcmp(*argv, "-fid")) {
2778             if (argc < 2) {
2779                 err++;
2780                 break;
2781             }
2782             argc -= 3;
2783             fid.Volume = atoi(*++argv);
2784             fid.Vnode = atoi(*++argv);
2785             fid.Unique = atoi(*++argv);
2786         } else if (!strcmp(*argv, "-time")) {
2787             fprintf(stderr, "-time not supported\n");
2788             exit(1);
2789         } else if (!strcmp(*argv, "-stats")) {
2790             stats = 1;
2791         } else if (!strcmp(*argv, "-all")) {
2792             all = 1;
2793         } else if (!strcmp(*argv, "-raw")) {
2794             raw = 1;
2795         } else if (!strcmp(*argv, "-timebits")) {
2796             if (argc < 1) {
2797                 err++;
2798                 break;
2799             }
2800             argc--;
2801             timebits = atoi(*++argv);
2802             if ((timebits != 32)
2803                 && (timebits != 64)
2804                 )
2805                 err++;
2806         } else if (!strcmp(*argv, "-volume")) {
2807             if (argc < 1) {
2808                 err++;
2809                 break;
2810             }
2811             argc--;
2812             vol = atoi(*++argv);
2813         } else
2814             err++;
2815         argv++;
2816     }
2817     if (err || argc != 1) {
2818         fprintf(stderr,
2819                 "Usage: cbd [-host cbid] [-fid volume vnode] [-stats] [-all] [-timebits 32"
2820                 "|64"
2821                 "] callbackdumpfile\n");
2822         fprintf(stderr,
2823                 "[cbid is shown for each host in the hosts.dump file]\n");
2824         exit(1);
2825     }
2826     now = ReadDump(*argv, timebits);
2827     if (stats || noptions == 0) {
2828         time_t uxtfirst = UXtime(tfirst), tnow = now;
2829         printf("The time of the dump was %u %s", (unsigned int) now, ctime(&tnow));
2830         printf("The last time cleanup ran was %u %s", (unsigned int) uxtfirst,
2831                ctime(&uxtfirst));
2832         PrintCallBackStats();
2833     }
2834
2835     cbTrack = calloc(cbstuff.nblks, sizeof(cbTrack[0]));
2836
2837     if (all || vol) {
2838         int hash;
2839         afs_uint32 *feip;
2840         struct CallBack *cb;
2841         struct FileEntry *fe;
2842
2843         for (hash = 0; hash < FEHASH_SIZE; hash++) {
2844             for (feip = &HashTable[hash]; (fe = itofe(*feip));) {
2845                 if (!vol || (fe->volid == vol)) {
2846                     afs_uint32 fe_i = fetoi(fe);
2847
2848                     for (cb = itocb(fe->firstcb); cb; cb = itocb(cb->cnext)) {
2849                         afs_uint32 cb_i = cbtoi(cb);
2850
2851                         if (cb_i > cbstuff.nblks) {
2852                             printf("CB index out of range (%u > %d), stopped for this FE\n",
2853                                 cb_i, cbstuff.nblks);
2854                             break;
2855                         }
2856
2857                         if (cbTrack[cb_i]) {
2858                             printf("CB entry already claimed for FE[%u] (this is FE[%u]), stopped\n",
2859                                 cbTrack[cb_i], fe_i);
2860                             break;
2861                         }
2862                         cbTrack[cb_i] = fe_i;
2863
2864                         PrintCB(cb, now);
2865                     }
2866                     *feip = fe->fnext;
2867                 } else {
2868                     feip = &fe->fnext;
2869                 }
2870             }
2871         }
2872     }
2873     if (cbi) {
2874         afs_uint32 cfirst = cbi;
2875         do {
2876             cb = itocb(cbi);
2877             PrintCB(cb, now);
2878             cbi = cb->hnext;
2879         } while (cbi != cfirst);
2880     }
2881     if (fid.Volume) {
2882         fe = FindFE(&fid);
2883         if (!fe) {
2884             printf("No callback entries for %u.%u\n", fid.Volume, fid.Vnode);
2885             exit(1);
2886         }
2887         cb = itocb(fe->firstcb);
2888         while (cb) {
2889             PrintCB(cb, now);
2890             cb = itocb(cb->cnext);
2891         }
2892     }
2893     if (raw) {
2894         afs_int32 *p, i;
2895         for (i = 1; i < cbstuff.nblks; i++) {
2896             p = (afs_int32 *) & FE[i];
2897             printf("%d:%12x%12x%12x%12x\n", i, p[0], p[1], p[2], p[3]);
2898         }
2899     }
2900
2901     free(cbTrack);
2902     exit(0);
2903 }
2904
2905 void
2906 PrintCB(struct CallBack *cb, afs_uint32 now)
2907 {
2908     struct FileEntry *fe = itofe(cb->fhead);
2909     time_t expires = TIndexToTime(cb->thead);
2910
2911     if (fe == NULL)
2912         return;
2913
2914     printf("vol=%u vn=%u cbs=%d hi=%d st=%d fest=%d, exp in %lu secs at %s",
2915            fe->volid, fe->vnode, fe->ncbs, cb->hhead, cb->status, fe->status,
2916            expires - now, ctime(&expires));
2917 }
2918
2919 #endif
2920
2921 #if     !defined(INTERPRET_DUMP)
2922 /*
2923 ** try breaking calbacks on afidp from host. Use multi_rx.
2924 ** return 0 on success, non-zero on failure
2925 */
2926 int
2927 MultiBreakCallBackAlternateAddress(struct host *host, struct AFSCBFids *afidp)
2928 {
2929     int retVal;
2930     H_LOCK;
2931     retVal = MultiBreakCallBackAlternateAddress_r(host, afidp);
2932     H_UNLOCK;
2933     return retVal;
2934 }
2935
2936 int
2937 MultiBreakCallBackAlternateAddress_r(struct host *host,
2938                                      struct AFSCBFids *afidp)
2939 {
2940     int i, j;
2941     struct rx_connection **conns;
2942     struct rx_connection *connSuccess = 0;
2943     struct AddrPort *interfaces;
2944     static struct rx_securityClass *sc = 0;
2945     static struct AFSCBs tc = { 0, 0 };
2946     char hoststr[16];
2947
2948     /* nothing more can be done */
2949     if (!host->interface)
2950         return 1;               /* failure */
2951
2952     /* the only address is the primary interface */
2953     if (host->interface->numberOfInterfaces <= 1)
2954         return 1;               /* failure */
2955
2956     /* initialise a security object only once */
2957     if (!sc)
2958         sc = rxnull_NewClientSecurityObject();
2959
2960     i = host->interface->numberOfInterfaces;
2961     interfaces = calloc(i, sizeof(struct AddrPort));
2962     conns = calloc(i, sizeof(struct rx_connection *));
2963     if (!interfaces || !conns) {
2964         ViceLogThenPanic(0, ("Failed malloc in "
2965                              "MultiBreakCallBackAlternateAddress_r\n"));
2966     }
2967
2968     /* initialize alternate rx connections */
2969     for (i = 0, j = 0; i < host->interface->numberOfInterfaces; i++) {
2970         /* this is the current primary address */
2971         if (host->host == host->interface->interface[i].addr &&
2972             host->port == host->interface->interface[i].port)
2973             continue;
2974
2975         interfaces[j] = host->interface->interface[i];
2976         conns[j] =
2977             rx_NewConnection(interfaces[j].addr,
2978                              interfaces[j].port, 1, sc, 0);
2979         rx_SetConnDeadTime(conns[j], 2);
2980         rx_SetConnHardDeadTime(conns[j], AFS_HARDDEADTIME);
2981         j++;
2982     }
2983
2984     osi_Assert(j);                      /* at least one alternate address */
2985     ViceLog(125,
2986             ("Starting multibreakcall back on all addr for host %p (%s:%d)\n",
2987              host, afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port)));
2988     H_UNLOCK;
2989     multi_Rx(conns, j) {
2990         multi_RXAFSCB_CallBack(afidp, &tc);
2991         if (!multi_error) {
2992             /* first success */
2993             H_LOCK;
2994             if (host->callback_rxcon)
2995                 rx_DestroyConnection(host->callback_rxcon);
2996             host->callback_rxcon = conns[multi_i];
2997             h_DeleteHostFromAddrHashTable_r(host->host, host->port, host);
2998             host->host = interfaces[multi_i].addr;
2999             host->port = interfaces[multi_i].port;
3000             h_AddHostToAddrHashTable_r(host->host, host->port, host);
3001             connSuccess = conns[multi_i];
3002             rx_SetConnDeadTime(host->callback_rxcon, 50);
3003             rx_SetConnHardDeadTime(host->callback_rxcon, AFS_HARDDEADTIME);
3004             ViceLog(125,
3005                     ("multibreakcall success with addr %s:%d\n",
3006                      afs_inet_ntoa_r(interfaces[multi_i].addr, hoststr),
3007                      ntohs(interfaces[multi_i].port)));
3008             H_UNLOCK;
3009             multi_Abort;
3010         }
3011     }
3012     multi_End_Ignore;
3013     H_LOCK;
3014     /* Destroy all connections except the one on which we succeeded */
3015     for (i = 0; i < j; i++)
3016         if (conns[i] != connSuccess)
3017             rx_DestroyConnection(conns[i]);
3018
3019     free(interfaces);
3020     free(conns);
3021
3022     if (connSuccess)
3023         return 0;               /* success */
3024     else
3025         return 1;               /* failure */
3026 }
3027
3028
3029 /*
3030 ** try multi_RX probes to host.
3031 ** return 0 on success, non-0 on failure
3032 */
3033 int
3034 MultiProbeAlternateAddress_r(struct host *host)
3035 {
3036     int i, j;
3037     struct rx_connection **conns;
3038     struct rx_connection *connSuccess = 0;
3039     struct AddrPort *interfaces;
3040     static struct rx_securityClass *sc = 0;
3041     char hoststr[16];
3042
3043     /* nothing more can be done */
3044     if (!host->interface)
3045         return 1;               /* failure */
3046
3047     /* the only address is the primary interface */
3048     if (host->interface->numberOfInterfaces <= 1)
3049         return 1;               /* failure */
3050
3051     /* initialise a security object only once */
3052     if (!sc)
3053         sc = rxnull_NewClientSecurityObject();
3054
3055     i = host->interface->numberOfInterfaces;
3056     interfaces = calloc(i, sizeof(struct AddrPort));
3057     conns = calloc(i, sizeof(struct rx_connection *));
3058     if (!interfaces || !conns) {
3059         ViceLogThenPanic(0, ("Failed malloc in "
3060                              "MultiProbeAlternateAddress_r\n"));
3061     }
3062
3063     /* initialize alternate rx connections */
3064     for (i = 0, j = 0; i < host->interface->numberOfInterfaces; i++) {
3065         /* this is the current primary address */
3066         if (host->host == host->interface->interface[i].addr &&
3067             host->port == host->interface->interface[i].port)
3068             continue;
3069
3070         interfaces[j] = host->interface->interface[i];
3071         conns[j] =
3072             rx_NewConnection(interfaces[j].addr,
3073                              interfaces[j].port, 1, sc, 0);
3074         rx_SetConnDeadTime(conns[j], 2);
3075         rx_SetConnHardDeadTime(conns[j], AFS_HARDDEADTIME);
3076         j++;
3077     }
3078
3079     osi_Assert(j);                      /* at least one alternate address */
3080     ViceLog(125,
3081             ("Starting multiprobe on all addr for host %p (%s:%d)\n",
3082              host, afs_inet_ntoa_r(host->host, hoststr),
3083              ntohs(host->port)));
3084     H_UNLOCK;
3085     multi_Rx(conns, j) {
3086         multi_RXAFSCB_ProbeUuid(&host->interface->uuid);
3087         if (!multi_error) {
3088             /* first success */
3089             H_LOCK;
3090             if (host->callback_rxcon)
3091                 rx_DestroyConnection(host->callback_rxcon);
3092             host->callback_rxcon = conns[multi_i];
3093             h_DeleteHostFromAddrHashTable_r(host->host, host->port, host);
3094             host->host = interfaces[multi_i].addr;
3095             host->port = interfaces[multi_i].port;
3096             h_AddHostToAddrHashTable_r(host->host, host->port, host);
3097             connSuccess = conns[multi_i];
3098             rx_SetConnDeadTime(host->callback_rxcon, 50);
3099             rx_SetConnHardDeadTime(host->callback_rxcon, AFS_HARDDEADTIME);
3100             ViceLog(125,
3101                     ("multiprobe success with addr %s:%d\n",
3102                      afs_inet_ntoa_r(interfaces[multi_i].addr, hoststr),
3103                      ntohs(interfaces[multi_i].port)));
3104             H_UNLOCK;
3105             multi_Abort;
3106         } else {
3107             ViceLog(125,
3108                     ("multiprobe failure with addr %s:%d\n",
3109                      afs_inet_ntoa_r(interfaces[multi_i].addr, hoststr),
3110                      ntohs(interfaces[multi_i].port)));
3111
3112             /* This is less than desirable but its the best we can do.
3113              * The AFS Cache Manager will return either 0 for a Uuid
3114              * match and a 1 for a non-match.   If the error is 1 we
3115              * therefore know that our mapping of IP address to Uuid
3116              * is wrong.   We should attempt to find the correct
3117              * Uuid and fix the host tables.
3118              */
3119             if (multi_error == 1) {
3120                 /* remove the current alternate address from this host */
3121                 H_LOCK;
3122                 removeInterfaceAddr_r(host, interfaces[multi_i].addr, interfaces[multi_i].port);
3123                 H_UNLOCK;
3124             }
3125         }
3126 #ifdef AFS_DEMAND_ATTACH_FS
3127         /* try to bail ASAP if the fileserver is shutting down */
3128         FS_STATE_RDLOCK;
3129         if (fs_state.mode == FS_MODE_SHUTDOWN) {
3130             FS_STATE_UNLOCK;
3131             multi_Abort;
3132         }
3133         FS_STATE_UNLOCK;
3134 #endif
3135     }
3136     multi_End_Ignore;
3137     H_LOCK;
3138     /* Destroy all connections except the one on which we succeeded */
3139     for (i = 0; i < j; i++)
3140         if (conns[i] != connSuccess)
3141             rx_DestroyConnection(conns[i]);
3142
3143     free(interfaces);
3144     free(conns);
3145
3146     if (connSuccess)
3147         return 0;               /* success */
3148     else
3149         return 1;               /* failure */
3150 }
3151
3152 #endif /* !defined(INTERPRET_DUMP) */