5fdd7e50317ce6f665d21f7dbba16ce060a2a8f7
[openafs.git] / src / afs / afs_icl.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #include <afsconfig.h>
11 #include "afs/param.h"
12
13
14 #include "afs/sysincludes.h"    /* Standard vendor system headers */
15 #include "afsincludes.h"        /* Afs-based standard headers */
16 #include "afs/afs_stats.h"
17 #include "rx/rx_globals.h"
18 #if !defined(UKERNEL) && !defined(AFS_LINUX20_ENV)
19 #include "net/if.h"
20 #ifdef AFS_SGI62_ENV
21 #include "h/hashing.h"
22 #endif
23 #if !defined(AFS_HPUX110_ENV) && !defined(AFS_DARWIN_ENV)
24 #include "netinet/in_var.h"
25 #endif
26 #endif /* !defined(UKERNEL) */
27
28
29 struct afs_icl_set *afs_iclSetp = (struct afs_icl_set *)0;
30 struct afs_icl_set *afs_iclLongTermSetp = (struct afs_icl_set *)0;
31
32 /* Matches below where ICL_APPENDLONG is 2 INT32s */
33 #if (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG==64)) || (defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL)) || defined(AFS_DARWIN_ENV) && defined(__amd64__)
34 #define ICL_LONG 2
35 #else
36 #define ICL_LONG 1
37 #endif
38
39 int afs_icl_sizeofLong = ICL_LONG;
40
41 int afs_icl_inited = 0;
42
43 /* init function, called once, under afs_icl_lock */
44 int
45 afs_icl_Init(void)
46 {
47     afs_icl_inited = 1;
48     return 0;
49 }
50
51 /* Function called at shutdown - zap everything */
52 void
53 shutdown_icl(void)
54 {
55     struct afs_icl_log *logp;
56     struct afs_icl_set *setp;
57
58     setp = afs_icl_FindSet("cm");
59     if (setp) {
60         /* Release the reference from Find, and the initial one */
61         afs_icl_SetFree(setp);
62         afs_icl_SetFree(setp);
63     }
64     setp = afs_icl_FindSet("cmlongterm");
65     if (setp) {
66         /* Release the reference from Find, and the initial one */
67         afs_icl_SetFree(setp);
68         afs_icl_SetFree(setp);
69     }
70     logp = afs_icl_FindLog("cmfx");
71     if (logp) {
72         /* Release the reference from Find, and the initial one */
73         afs_icl_LogFree(logp);
74         afs_icl_LogFree(logp);
75     }
76 }
77
78 int
79 afs_icl_InitLogs(void)
80 {
81     struct afs_icl_log *logp;
82     int code;
83
84     /* initialize the ICL system */
85     code = afs_icl_CreateLog("cmfx", 60 * 1024, &logp);
86     if (code == 0)
87         code =
88             afs_icl_CreateSetWithFlags("cm", logp, NULL,
89                                        ICL_CRSET_FLAG_DEFAULT_OFF,
90                                        &afs_iclSetp);
91     code =
92         afs_icl_CreateSet("cmlongterm", logp, NULL,
93                           &afs_iclLongTermSetp);
94     return code;
95 }
96
97
98 struct afs_icl_log *afs_icl_FindLog(char *);
99 struct afs_icl_set *afs_icl_FindSet(char *);
100
101
102 #ifdef AFS_DARWIN100_ENV
103 #define AFSKPTR(X) k ## X
104 int
105 Afscall_icl(long opcode, long p1, long p2, long p3, long p4, long *retval)
106 {
107     return Afscall64_icl(opcode,
108                          CAST_USER_ADDR_T((p1)),
109                          CAST_USER_ADDR_T((p2)),
110                          CAST_USER_ADDR_T((p3)),
111                          CAST_USER_ADDR_T((p4)),
112                          retval);
113 }
114 #else
115 #define AFSKPTR(X) ((caddr_t)X)
116 #endif
117
118 int
119 #ifdef AFS_DARWIN100_ENV
120 Afscall64_icl(int opcode, user_addr_t kp1, user_addr_t kp2, user_addr_t kp3, user_addr_t kp4, int *retval)
121 #else
122 Afscall_icl(long opcode, long p1, long p2, long p3, long p4, long *retval)
123 #endif
124 {
125     afs_int32 *lp, elts, flags;
126     afs_int32 code;
127     struct afs_icl_log *logp;
128     struct afs_icl_set *setp;
129 #if defined(AFS_SGI61_ENV) || defined(AFS_SUN5_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
130     size_t temp;
131 #else /* AFS_SGI61_ENV */
132 #if defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL)
133     afs_uint64 temp;
134 #else
135     afs_uint32 temp;
136 #endif
137 #endif /* AFS_SGI61_ENV */
138     char tname[65];
139     afs_int32 startCookie;
140     afs_int32 allocated;
141     struct afs_icl_log *tlp;
142 #ifdef AFS_DARWIN100_ENV
143     afs_uint32 p1 = (afs_uint32)kp1;
144     afs_uint32 p2 = (afs_uint32)kp2;
145     afs_uint32 p3 = (afs_uint32)kp3;
146     afs_uint32 p4 = (afs_uint32)kp4;
147 #endif
148
149 #ifdef  AFS_SUN5_ENV
150     if (!afs_suser(CRED())) {   /* only root can run this code */
151         return (EACCES);
152     }
153 #else
154     if (!afs_suser(NULL)) {     /* only root can run this code */
155 #if defined(KERNEL_HAVE_UERROR)
156         setuerror(EACCES);
157         return EACCES;
158 #else
159         return EPERM;
160 #endif
161     }
162 #endif
163     switch (opcode) {
164     case ICL_OP_COPYOUTCLR:     /* copy out data then clear */
165     case ICL_OP_COPYOUT:        /* copy ouy data */
166         /* copyout: p1=logname, p2=&buffer, p3=size(words), p4=&cookie
167          * return flags<<24 + nwords.
168          * updates cookie to updated start (not end) if we had to
169          * skip some records.
170          */
171         AFS_COPYINSTR(AFSKPTR(p1), tname, sizeof(tname), &temp, code);
172         if (code)
173             return code;
174         AFS_COPYIN(AFSKPTR(p4), (char *)&startCookie, sizeof(afs_int32), code);
175         if (code)
176             return code;
177         logp = afs_icl_FindLog(tname);
178         if (!logp)
179             return ENOENT;
180 #define BUFFERSIZE      AFS_LRALLOCSIZ
181         lp = (afs_int32 *) osi_AllocLargeSpace(AFS_LRALLOCSIZ);
182         elts = BUFFERSIZE / sizeof(afs_int32);
183         if (p3 < elts)
184             elts = p3;
185         flags = (opcode == ICL_OP_COPYOUT) ? 0 : ICL_COPYOUTF_CLRAFTERREAD;
186         code =
187             afs_icl_CopyOut(logp, lp, &elts, (afs_uint32 *) & startCookie,
188                             &flags);
189         if (code) {
190             osi_FreeLargeSpace((struct osi_buffer *)lp);
191             break;
192         }
193         AFS_COPYOUT((char *)lp, AFSKPTR(p2), elts * sizeof(afs_int32), code);
194         if (code)
195             goto done;
196         AFS_COPYOUT((char *)&startCookie, AFSKPTR(p4), sizeof(afs_int32),
197                     code);
198         if (code)
199             goto done;
200 #if defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL)
201         if (!(IS64U))
202             *retval = ((long)((flags << 24) | (elts & 0xffffff))) << 32;
203         else
204 #endif
205             *retval = (flags << 24) | (elts & 0xffffff);
206       done:
207         afs_icl_LogRele(logp);
208         osi_FreeLargeSpace((struct osi_buffer *)lp);
209         break;
210
211     case ICL_OP_ENUMLOGS:       /* enumerate logs */
212         /* enumerate logs: p1=index, p2=&name, p3=sizeof(name), p4=&size.
213          * return 0 for success, otherwise error.
214          */
215         for (tlp = afs_icl_allLogs; tlp; tlp = tlp->nextp) {
216             if (p1-- == 0)
217                 break;
218         }
219         if (!tlp)
220             return ENOENT;      /* past the end of file */
221         temp = strlen(tlp->name) + 1;
222         if (temp > p3)
223             return EINVAL;
224         AFS_COPYOUT(tlp->name, AFSKPTR(p2), temp, code);
225         if (!code)              /* copy out size of log */
226             AFS_COPYOUT((char *)&tlp->logSize, AFSKPTR(p4), sizeof(afs_int32),
227                         code);
228         break;
229
230     case ICL_OP_ENUMLOGSBYSET:  /* enumerate logs by set name */
231         /* enumerate logs: p1=setname, p2=index, p3=&name, p4=sizeof(name).
232          * return 0 for success, otherwise error.
233          */
234         AFS_COPYINSTR(AFSKPTR(p1), tname, sizeof(tname), &temp, code);
235         if (code)
236             return code;
237         setp = afs_icl_FindSet(tname);
238         if (!setp)
239             return ENOENT;
240         if (p2 > ICL_LOGSPERSET)
241             return EINVAL;
242         if (!(tlp = setp->logs[p2]))
243             return EBADF;
244         temp = strlen(tlp->name) + 1;
245         if (temp > p4)
246             return EINVAL;
247         AFS_COPYOUT(tlp->name, AFSKPTR(p3), temp, code);
248         break;
249
250     case ICL_OP_CLRLOG: /* clear specified log */
251         /* zero out the specified log: p1=logname */
252         AFS_COPYINSTR(AFSKPTR(p1), tname, sizeof(tname), &temp, code);
253         if (code)
254             return code;
255         logp = afs_icl_FindLog(tname);
256         if (!logp)
257             return ENOENT;
258         code = afs_icl_ZeroLog(logp);
259         afs_icl_LogRele(logp);
260         break;
261
262     case ICL_OP_CLRSET: /* clear specified set */
263         /* zero out the specified set: p1=setname */
264         AFS_COPYINSTR(AFSKPTR(p1), tname, sizeof(tname), &temp, code);
265         if (code)
266             return code;
267         setp = afs_icl_FindSet(tname);
268         if (!setp)
269             return ENOENT;
270         code = afs_icl_ZeroSet(setp);
271         afs_icl_SetRele(setp);
272         break;
273
274     case ICL_OP_CLRALL: /* clear all logs */
275         /* zero out all logs -- no args */
276         code = 0;
277         ObtainWriteLock(&afs_icl_lock, 178);
278         for (tlp = afs_icl_allLogs; tlp; tlp = tlp->nextp) {
279             tlp->refCount++;    /* hold this guy */
280             ReleaseWriteLock(&afs_icl_lock);
281             /* don't clear persistent logs */
282             if ((tlp->states & ICL_LOGF_PERSISTENT) == 0)
283                 code = afs_icl_ZeroLog(tlp);
284             ObtainWriteLock(&afs_icl_lock, 179);
285             if (--tlp->refCount == 0)
286                 afs_icl_ZapLog(tlp);
287             if (code)
288                 break;
289         }
290         ReleaseWriteLock(&afs_icl_lock);
291         break;
292
293     case ICL_OP_ENUMSETS:       /* enumerate all sets */
294         /* enumerate sets: p1=index, p2=&name, p3=sizeof(name), p4=&states.
295          * return 0 for success, otherwise error.
296          */
297         for (setp = afs_icl_allSets; setp; setp = setp->nextp) {
298             if (p1-- == 0)
299                 break;
300         }
301         if (!setp)
302             return ENOENT;      /* past the end of file */
303         temp = strlen(setp->name) + 1;
304         if (temp > p3)
305             return EINVAL;
306         AFS_COPYOUT(setp->name, AFSKPTR(p2), temp, code);
307         if (!code)              /* copy out size of log */
308             AFS_COPYOUT((char *)&setp->states, AFSKPTR(p4), sizeof(afs_int32),
309                         code);
310         break;
311
312     case ICL_OP_SETSTAT:        /* set status on a set */
313         /* activate the specified set: p1=setname, p2=op */
314         AFS_COPYINSTR(AFSKPTR(p1), tname, sizeof(tname), &temp, code);
315         if (code)
316             return code;
317         setp = afs_icl_FindSet(tname);
318         if (!setp)
319             return ENOENT;
320         code = afs_icl_SetSetStat(setp, p2);
321         afs_icl_SetRele(setp);
322         break;
323
324     case ICL_OP_SETSTATALL:     /* set status on all sets */
325         /* activate the specified set: p1=op */
326         code = 0;
327         ObtainWriteLock(&afs_icl_lock, 180);
328         for (setp = afs_icl_allSets; setp; setp = setp->nextp) {
329             setp->refCount++;   /* hold this guy */
330             ReleaseWriteLock(&afs_icl_lock);
331             /* don't set states on persistent sets */
332             if ((setp->states & ICL_SETF_PERSISTENT) == 0)
333                 code = afs_icl_SetSetStat(setp, p1);
334             ObtainWriteLock(&afs_icl_lock, 181);
335             if (--setp->refCount == 0)
336                 afs_icl_ZapSet(setp);
337             if (code)
338                 break;
339         }
340         ReleaseWriteLock(&afs_icl_lock);
341         break;
342
343     case ICL_OP_SETLOGSIZE:     /* set size of log */
344         /* set the size of the specified log: p1=logname, p2=size (in words) */
345         AFS_COPYINSTR(AFSKPTR(p1), tname, sizeof(tname), &temp, code);
346         if (code)
347             return code;
348         logp = afs_icl_FindLog(tname);
349         if (!logp)
350             return ENOENT;
351         code = afs_icl_LogSetSize(logp, p2);
352         afs_icl_LogRele(logp);
353         break;
354
355     case ICL_OP_GETLOGINFO:     /* get size of log */
356         /* zero out the specified log: p1=logname, p2=&logSize, p3=&allocated */
357         AFS_COPYINSTR(AFSKPTR(p1), tname, sizeof(tname), &temp, code);
358         if (code)
359             return code;
360         logp = afs_icl_FindLog(tname);
361         if (!logp)
362             return ENOENT;
363         allocated = !!logp->datap;
364         AFS_COPYOUT((char *)&logp->logSize, AFSKPTR(p2), sizeof(afs_int32),
365                     code);
366         if (!code)
367             AFS_COPYOUT((char *)&allocated, AFSKPTR(p3), sizeof(afs_int32),
368                         code);
369         afs_icl_LogRele(logp);
370         break;
371
372     case ICL_OP_GETSETINFO:     /* get state of set */
373         /* zero out the specified set: p1=setname, p2=&state */
374         AFS_COPYINSTR(AFSKPTR(p1), tname, sizeof(tname), &temp, code);
375         if (code)
376             return code;
377         setp = afs_icl_FindSet(tname);
378         if (!setp)
379             return ENOENT;
380         AFS_COPYOUT((char *)&setp->states, AFSKPTR(p2), sizeof(afs_int32),
381                     code);
382         afs_icl_SetRele(setp);
383         break;
384
385     default:
386         code = EINVAL;
387     }
388
389     return code;
390 }
391
392
393 afs_lock_t afs_icl_lock;
394
395 /* exported routine: a 4 parameter event */
396 int
397 afs_icl_Event4(struct afs_icl_set *setp, afs_int32 eventID,
398                afs_int32 lAndT, long p1, long p2, long p3, long p4)
399 {
400     afs_int32 mask;
401     int i;
402     afs_int32 tmask;
403     int ix;
404
405     /* If things aren't init'ed yet (or the set is inactive), don't panic */
406     if (!ICL_SETACTIVE(setp))
407         return 0;
408
409     AFS_ASSERT_GLOCK();
410     afs_icl_SetHold(setp);
411     mask = lAndT >> 24 & 0xff;  /* mask of which logs to log to */
412     ix = ICL_EVENTBYTE(eventID);
413     ObtainReadLock(&setp->lock);
414     if (setp->eventFlags[ix] & ICL_EVENTMASK(eventID)) {
415         for (i = 0, tmask = 1; i < ICL_LOGSPERSET; i++, tmask <<= 1) {
416             if (mask & tmask) {
417                 afs_icl_AppendRecord(setp->logs[i], eventID, lAndT & 0xffffff,
418                                      p1, p2, p3, p4);
419             }
420             mask &= ~tmask;
421             if (mask == 0)
422                 break;          /* break early */
423         }
424     }
425     ReleaseReadLock(&setp->lock);
426     afs_icl_SetRele(setp);
427     return 0;
428 }
429
430 /* Next 4 routines should be implemented via var-args or something.
431  * Whole purpose is to avoid compiler warnings about parameter # mismatches.
432  * Otherwise, could call afs_icl_Event4 directly.
433  */
434 int
435 afs_icl_Event3(struct afs_icl_set *setp, afs_int32 eventID,
436                afs_int32 lAndT, long p1, long p2, long p3)
437 {
438     return afs_icl_Event4(setp, eventID, lAndT, p1, p2, p3, (long)0);
439 }
440
441 int
442 afs_icl_Event2(struct afs_icl_set *setp, afs_int32 eventID,
443                afs_int32 lAndT, long p1, long p2)
444 {
445     return afs_icl_Event4(setp, eventID, lAndT, p1, p2, (long)0, (long)0);
446 }
447
448 int
449 afs_icl_Event1(struct afs_icl_set *setp, afs_int32 eventID,
450                afs_int32 lAndT, long p1)
451 {
452     return afs_icl_Event4(setp, eventID, lAndT, p1, (long)0, (long)0,
453                           (long)0);
454 }
455
456 int
457 afs_icl_Event0(struct afs_icl_set *setp, afs_int32 eventID,
458                afs_int32 lAndT)
459 {
460     return afs_icl_Event4(setp, eventID, lAndT, (long)0, (long)0, (long)0,
461                           (long)0);
462 }
463
464 struct afs_icl_log *afs_icl_allLogs = 0;
465
466 /* function to purge records from the start of the log, until there
467  * is at least minSpace long's worth of space available without
468  * making the head and the tail point to the same word.
469  *
470  * Log must be write-locked.
471  */
472 static void
473 afs_icl_GetLogSpace(struct afs_icl_log *logp, afs_int32 minSpace)
474 {
475     unsigned int tsize;
476
477     while (logp->logSize - logp->logElements <= minSpace) {
478         /* eat a record */
479         tsize = ((logp->datap[logp->firstUsed]) >> 24) & 0xff;
480         logp->logElements -= tsize;
481         logp->firstUsed += tsize;
482         if (logp->firstUsed >= logp->logSize)
483             logp->firstUsed -= logp->logSize;
484         logp->baseCookie += tsize;
485     }
486 }
487
488 /* append string astr to buffer, including terminating null char.
489  *
490  * log must be write-locked.
491  */
492 #define ICL_CHARSPERLONG        4
493 static void
494 afs_icl_AppendString(struct afs_icl_log *logp, char *astr)
495 {
496     char *op;                   /* ptr to char to write */
497     int tc;
498     int bib;            /* bytes in buffer */
499
500     bib = 0;
501     op = (char *)&(logp->datap[logp->firstFree]);
502     while (1) {
503         tc = *astr++;
504         *op++ = tc;
505         if (++bib >= ICL_CHARSPERLONG) {
506             /* new word */
507             bib = 0;
508             if (++(logp->firstFree) >= logp->logSize) {
509                 logp->firstFree = 0;
510                 op = (char *)&(logp->datap[0]);
511             }
512             logp->logElements++;
513         }
514         if (tc == 0)
515             break;
516     }
517     if (bib > 0) {
518         /* if we've used this word at all, allocate it */
519         if (++(logp->firstFree) >= logp->logSize) {
520             logp->firstFree = 0;
521         }
522         logp->logElements++;
523     }
524 }
525
526 /* add a long to the log, ignoring overflow (checked already) */
527 #define ICL_APPENDINT32(lp, x) \
528     MACRO_BEGIN \
529         (lp)->datap[(lp)->firstFree] = (x); \
530         if (++((lp)->firstFree) >= (lp)->logSize) { \
531                 (lp)->firstFree = 0; \
532         } \
533         (lp)->logElements++; \
534     MACRO_END
535
536 #if ICL_LONG == 2
537 #define ICL_APPENDLONG(lp, x) \
538     MACRO_BEGIN \
539         ICL_APPENDINT32((lp), ((x) >> 32) & 0xffffffffL); \
540         ICL_APPENDINT32((lp), (x) & 0xffffffffL); \
541     MACRO_END
542
543 #else
544 #define ICL_APPENDLONG(lp, x) ICL_APPENDINT32((lp), (x))
545 #endif
546
547 /* routine to tell whether we're dealing with the address or the
548  * object itself
549  */
550 int
551 afs_icl_UseAddr(int type)
552 {
553     if (type == ICL_TYPE_HYPER || type == ICL_TYPE_STRING
554         || type == ICL_TYPE_FID || type == ICL_TYPE_INT64)
555         return 1;
556     else
557         return 0;
558 }
559
560 void
561 afs_icl_AppendOne(struct afs_icl_log *logp, int type, long parm)
562 {
563     if (type) {
564         /* marshall parameter 3 now */
565         if (type == ICL_TYPE_STRING)
566             afs_icl_AppendString(logp, (char *)parm);
567         else if (type == ICL_TYPE_HYPER) {
568             ICL_APPENDINT32(logp,
569                             (afs_int32) ((struct afs_hyper_t *)parm)->high);
570             ICL_APPENDINT32(logp,
571                             (afs_int32) ((struct afs_hyper_t *)parm)->low);
572         } else if (type == ICL_TYPE_INT64) {
573 #ifndef WORDS_BIGENDIAN
574 #ifdef AFS_64BIT_CLIENT
575             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) parm)[1]);
576             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) parm)[0]);
577 #else /* AFS_64BIT_CLIENT */
578             ICL_APPENDINT32(logp, (afs_int32) parm);
579             ICL_APPENDINT32(logp, (afs_int32) 0);
580 #endif /* AFS_64BIT_CLIENT */
581 #else /* AFSLITTLE_ENDIAN */
582 #ifdef AFS_64BIT_CLIENT
583             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) parm)[0]);
584             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) parm)[1]);
585 #else /* AFS_64BIT_CLIENT */
586             ICL_APPENDINT32(logp, (afs_int32) 0);
587             ICL_APPENDINT32(logp, (afs_int32) parm);
588 #endif /* AFS_64BIT_CLIENT */
589 #endif /* AFSLITTLE_ENDIAN */
590         } else if (type == ICL_TYPE_FID) {
591             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) parm)[0]);
592             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) parm)[1]);
593             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) parm)[2]);
594             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) parm)[3]);
595         }
596 #if ICL_LONG == 2
597         else if (type == ICL_TYPE_INT32)
598             ICL_APPENDINT32(logp, (afs_int32) parm);
599 #endif
600         else
601             ICL_APPENDLONG(logp, parm);
602     }
603 }
604
605 /* Function to append a record to the log.  Written for speed
606  * since we know that we're going to have to make this work fast
607  * pretty soon, anyway.  The log must be unlocked.
608  */
609
610 void
611 afs_icl_AppendRecord(struct afs_icl_log *logp, afs_int32 op,
612                      afs_int32 types, long p1, long p2, long p3, long p4)
613 {
614     int rsize;                  /* record size in longs */
615     int tsize;          /* temp size */
616     osi_timeval_t tv;
617     int t1, t2, t3, t4;
618
619     t4 = types & 0x3f;          /* decode types */
620     types >>= 6;
621     t3 = types & 0x3f;
622     types >>= 6;
623     t2 = types & 0x3f;
624     types >>= 6;
625     t1 = types & 0x3f;
626
627     osi_GetTime(&tv);           /* It panics for solaris if inside */
628     ObtainWriteLock(&logp->lock, 182);
629     if (!logp->datap) {
630         ReleaseWriteLock(&logp->lock);
631         return;
632     }
633
634     /* get timestamp as # of microseconds since some time that doesn't
635      * change that often.  This algorithm ticks over every 20 minutes
636      * or so (1000 seconds).  Write a timestamp record if it has.
637      */
638     if (tv.tv_sec - logp->lastTS > 1024) {
639         /* the timer has wrapped -- write a timestamp record */
640         if (logp->logSize - logp->logElements <= 5)
641             afs_icl_GetLogSpace(logp, 5);
642
643         ICL_APPENDINT32(logp,
644                         (afs_int32) (5 << 24) + (ICL_TYPE_UNIXDATE << 18));
645         ICL_APPENDINT32(logp, (afs_int32) ICL_INFO_TIMESTAMP);
646         ICL_APPENDINT32(logp, (afs_int32) 0);   /* use thread ID zero for clocks */
647         ICL_APPENDINT32(logp,
648                         (afs_int32) (tv.tv_sec & 0x3ff) * 1000000 +
649                         tv.tv_usec);
650         ICL_APPENDINT32(logp, (afs_int32) tv.tv_sec);
651
652         logp->lastTS = tv.tv_sec;
653     }
654
655     rsize = 4;                  /* base case: see 4 items below */
656     if (t1) {
657         /* compute size of parameter p1.  Only tricky case is string.
658          * In that case, we have to call strlen to get the string length.
659          */
660         ICL_SIZEHACK(t1, p1, tsize, rsize);
661     }
662     if (t2) {
663         /* compute size of parameter p2.  Only tricky case is string.
664          * In that case, we have to call strlen to get the string length.
665          */
666         ICL_SIZEHACK(t2, p2, tsize, rsize);
667     }
668     if (t3) {
669         /* compute size of parameter p3.  Only tricky case is string.
670          * In that case, we have to call strlen to get the string length.
671          */
672         ICL_SIZEHACK(t3, p3, tsize, rsize);
673     }
674     if (t4) {
675         /* compute size of parameter p4.  Only tricky case is string.
676          * In that case, we have to call strlen to get the string length.
677          */
678         ICL_SIZEHACK(t4, p4, tsize, rsize);
679     }
680
681     /* At this point, we've computed all of the parameter sizes, and
682      * have in rsize the size of the entire record we want to append.
683      * Next, we check that we actually have room in the log to do this
684      * work, and then we do the append.
685      */
686     if (rsize > 255) {
687         ReleaseWriteLock(&logp->lock);
688         return;                 /* log record too big to express */
689     }
690
691     if (logp->logSize - logp->logElements <= rsize)
692         afs_icl_GetLogSpace(logp, rsize);
693
694     ICL_APPENDINT32(logp,
695                     (afs_int32) (rsize << 24) + (t1 << 18) + (t2 << 12) +
696                     (t3 << 6) + t4);
697     ICL_APPENDINT32(logp, (afs_int32) op);
698     ICL_APPENDINT32(logp, (afs_int32) osi_ThreadUnique());
699     ICL_APPENDINT32(logp,
700                     (afs_int32) (tv.tv_sec & 0x3ff) * 1000000 + tv.tv_usec);
701
702     afs_icl_AppendOne(logp, t1, p1);
703     afs_icl_AppendOne(logp, t2, p2);
704     afs_icl_AppendOne(logp, t3, p3);
705     afs_icl_AppendOne(logp, t4, p4);
706     ReleaseWriteLock(&logp->lock);
707 }
708
709 /* create a log with size logSize; return it in *outLogpp and tag
710  * it with name "name."
711  */
712 int
713 afs_icl_CreateLog(char *name, afs_int32 logSize,
714                   struct afs_icl_log **outLogpp)
715 {
716     return afs_icl_CreateLogWithFlags(name, logSize, /*flags */ 0, outLogpp);
717 }
718
719 /* create a log with size logSize; return it in *outLogpp and tag
720  * it with name "name."  'flags' can be set to make the log unclearable.
721  */
722 int
723 afs_icl_CreateLogWithFlags(char *name, afs_int32 logSize, afs_uint32 flags,
724                            struct afs_icl_log **outLogpp)
725 {
726     struct afs_icl_log *logp;
727
728     /* add into global list under lock */
729     ObtainWriteLock(&afs_icl_lock, 183);
730     if (!afs_icl_inited)
731         afs_icl_Init();
732
733     for (logp = afs_icl_allLogs; logp; logp = logp->nextp) {
734         if (strcmp(logp->name, name) == 0) {
735             /* found it already created, just return it */
736             logp->refCount++;
737             *outLogpp = logp;
738             if (flags & ICL_CRLOG_FLAG_PERSISTENT) {
739                 ObtainWriteLock(&logp->lock, 184);
740                 logp->states |= ICL_LOGF_PERSISTENT;
741                 ReleaseWriteLock(&logp->lock);
742             }
743             ReleaseWriteLock(&afs_icl_lock);
744             return 0;
745         }
746     }
747
748     logp = (struct afs_icl_log *)
749         osi_AllocSmallSpace(sizeof(struct afs_icl_log));
750     memset((caddr_t) logp, 0, sizeof(*logp));
751
752     logp->refCount = 1;
753     logp->name = osi_AllocSmallSpace(strlen(name) + 1);
754     strcpy(logp->name, name);
755     LOCK_INIT(&logp->lock, "logp lock");
756     logp->logSize = logSize;
757     logp->datap = NULL;         /* don't allocate it until we need it */
758
759     if (flags & ICL_CRLOG_FLAG_PERSISTENT)
760         logp->states |= ICL_LOGF_PERSISTENT;
761
762     logp->nextp = afs_icl_allLogs;
763     afs_icl_allLogs = logp;
764     ReleaseWriteLock(&afs_icl_lock);
765
766     *outLogpp = logp;
767     return 0;
768 }
769
770 /* called with a log, a pointer to a buffer, the size of the buffer
771  * (in *bufSizep), the starting cookie (in *cookiep, use 0 at the start)
772  * and returns data in the provided buffer, and returns output flags
773  * in *flagsp.  The flag ICL_COPYOUTF_MISSEDSOME is set if we can't
774  * find the record with cookie value cookie.
775  */
776 int
777 afs_icl_CopyOut(struct afs_icl_log *logp, afs_int32 * bufferp,
778                 afs_int32 * bufSizep, afs_uint32 * cookiep,
779                 afs_int32 * flagsp)
780 {
781     afs_int32 nwords;           /* number of words to copy out */
782     afs_uint32 startCookie;     /* first cookie to use */
783     afs_int32 outWords;         /* words we've copied out */
784     afs_int32 inWords;          /* max words to copy out */
785     afs_int32 code;             /* return code */
786     afs_int32 ix;               /* index we're copying from */
787     afs_int32 outFlags;         /* return flags */
788     afs_int32 inFlags;          /* flags passed in */
789     afs_int32 end;
790
791     inWords = *bufSizep;        /* max to copy out */
792     outWords = 0;               /* amount copied out */
793     startCookie = *cookiep;
794     outFlags = 0;
795     inFlags = *flagsp;
796     code = 0;
797
798     ObtainWriteLock(&logp->lock, 185);
799     if (!logp->datap) {
800         ReleaseWriteLock(&logp->lock);
801         goto done;
802     }
803
804     /* first, compute the index of the start cookie we've been passed */
805     while (1) {
806         /* (re-)compute where we should start */
807         if (startCookie < logp->baseCookie) {
808             if (startCookie)    /* missed some output */
809                 outFlags |= ICL_COPYOUTF_MISSEDSOME;
810             /* skip to the first available record */
811             startCookie = logp->baseCookie;
812             *cookiep = startCookie;
813         }
814
815         /* compute where we find the first element to copy out */
816         ix = logp->firstUsed + startCookie - logp->baseCookie;
817         if (ix >= logp->logSize)
818             ix -= logp->logSize;
819
820         /* if have some data now, break out and process it */
821         if (startCookie - logp->baseCookie < logp->logElements)
822             break;
823
824         /* At end of log, so clear it if we need to */
825         if (inFlags & ICL_COPYOUTF_CLRAFTERREAD) {
826             logp->firstUsed = logp->firstFree = 0;
827             logp->logElements = 0;
828         }
829         /* otherwise, either wait for the data to arrive, or return */
830         if (!(inFlags & ICL_COPYOUTF_WAITIO)) {
831             ReleaseWriteLock(&logp->lock);
832             code = 0;
833             goto done;
834         }
835         logp->states |= ICL_LOGF_WAITING;
836         ReleaseWriteLock(&logp->lock);
837         afs_osi_Sleep(&logp->lock);
838         ObtainWriteLock(&logp->lock, 186);
839     }
840     /* copy out data from ix to logSize or firstFree, depending
841      * upon whether firstUsed <= firstFree (no wrap) or otherwise.
842      * be careful not to copy out more than nwords.
843      */
844     if (ix >= logp->firstUsed) {
845         if (logp->firstUsed <= logp->firstFree)
846             /* no wrapping */
847             end = logp->firstFree;      /* first element not to copy */
848         else
849             end = logp->logSize;
850         nwords = inWords;       /* don't copy more than this */
851         if (end - ix < nwords)
852             nwords = end - ix;
853         if (nwords > 0) {
854             memcpy((char *)bufferp, (char *)&logp->datap[ix],
855                    sizeof(afs_int32) * nwords);
856             outWords += nwords;
857             inWords -= nwords;
858             bufferp += nwords;
859         }
860         /* if we're going to copy more out below, we'll start here */
861         ix = 0;
862     }
863     /* now, if active part of the log has wrapped, there's more stuff
864      * starting at the head of the log.  Copy out more from there.
865      */
866     if (logp->firstUsed > logp->firstFree && ix < logp->firstFree
867         && inWords > 0) {
868         /* (more to) copy out from the wrapped section at the
869          * start of the log.  May get here even if didn't copy any
870          * above, if the cookie points directly into the wrapped section.
871          */
872         nwords = inWords;
873         if (logp->firstFree - ix < nwords)
874             nwords = logp->firstFree - ix;
875         memcpy((char *)bufferp, (char *)&logp->datap[ix],
876                sizeof(afs_int32) * nwords);
877         outWords += nwords;
878         inWords -= nwords;
879         bufferp += nwords;
880     }
881
882     ReleaseWriteLock(&logp->lock);
883
884   done:
885     if (code == 0) {
886         *bufSizep = outWords;
887         *flagsp = outFlags;
888     }
889     return code;
890 }
891
892 /* return basic parameter information about a log */
893 int
894 afs_icl_GetLogParms(struct afs_icl_log *logp, afs_int32 * maxSizep,
895                     afs_int32 * curSizep)
896 {
897     ObtainReadLock(&logp->lock);
898     *maxSizep = logp->logSize;
899     *curSizep = logp->logElements;
900     ReleaseReadLock(&logp->lock);
901     return 0;
902 }
903
904
905 /* hold and release logs */
906 int
907 afs_icl_LogHold(struct afs_icl_log *logp)
908 {
909     ObtainWriteLock(&afs_icl_lock, 187);
910     logp->refCount++;
911     ReleaseWriteLock(&afs_icl_lock);
912     return 0;
913 }
914
915 /* hold and release logs, called with lock already held */
916 int
917 afs_icl_LogHoldNL(struct afs_icl_log *logp)
918 {
919     logp->refCount++;
920     return 0;
921 }
922
923 /* keep track of how many sets believe the log itself is allocated */
924 int
925 afs_icl_LogUse(struct afs_icl_log *logp)
926 {
927     ObtainWriteLock(&logp->lock, 188);
928     if (logp->setCount == 0) {
929         /* this is the first set actually using the log -- allocate it */
930         if (logp->logSize == 0) {
931             /* we weren't passed in a hint and it wasn't set */
932             logp->logSize = ICL_DEFAULT_LOGSIZE;
933         }
934         logp->datap = afs_osi_Alloc(sizeof(afs_int32) * logp->logSize);
935         osi_Assert(logp->datap != NULL);
936 #ifdef  KERNEL_HAVE_PIN
937         pin((char *)logp->datap, sizeof(afs_int32) * logp->logSize);
938 #endif
939     }
940     logp->setCount++;
941     ReleaseWriteLock(&logp->lock);
942     return 0;
943 }
944
945 /* decrement the number of real users of the log, free if possible */
946 int
947 afs_icl_LogFreeUse(struct afs_icl_log *logp)
948 {
949     ObtainWriteLock(&logp->lock, 189);
950     if (--logp->setCount == 0) {
951         /* no more users -- free it (but keep log structure around) */
952         afs_osi_Free(logp->datap, sizeof(afs_int32) * logp->logSize);
953 #ifdef  KERNEL_HAVE_PIN
954         unpin((char *)logp->datap, sizeof(afs_int32) * logp->logSize);
955 #endif
956         logp->firstUsed = logp->firstFree = 0;
957         logp->logElements = 0;
958         logp->datap = NULL;
959     }
960     ReleaseWriteLock(&logp->lock);
961     return 0;
962 }
963
964 /* set the size of the log to 'logSize' */
965 int
966 afs_icl_LogSetSize(struct afs_icl_log *logp, afs_int32 logSize)
967 {
968     ObtainWriteLock(&logp->lock, 190);
969     if (!logp->datap) {
970         /* nothing to worry about since it's not allocated */
971         logp->logSize = logSize;
972     } else {
973         /* reset log */
974         logp->firstUsed = logp->firstFree = 0;
975         logp->logElements = 0;
976
977         /* free and allocate a new one */
978         afs_osi_Free(logp->datap, sizeof(afs_int32) * logp->logSize);
979 #ifdef  KERNEL_HAVE_PIN
980         unpin((char *)logp->datap, sizeof(afs_int32) * logp->logSize);
981 #endif
982         logp->datap = afs_osi_Alloc(sizeof(afs_int32) * logSize);
983         osi_Assert(logp->datap != NULL);
984 #ifdef  KERNEL_HAVE_PIN
985         pin((char *)logp->datap, sizeof(afs_int32) * logSize);
986 #endif
987         logp->logSize = logSize;
988     }
989     ReleaseWriteLock(&logp->lock);
990
991     return 0;
992 }
993
994 /* free a log.  Called with afs_icl_lock locked. */
995 int
996 afs_icl_ZapLog(struct afs_icl_log *logp)
997 {
998     struct afs_icl_log **lpp, *tp;
999
1000     for (lpp = &afs_icl_allLogs, tp = *lpp; tp; lpp = &tp->nextp, tp = *lpp) {
1001         if (tp == logp) {
1002             /* found the dude we want to remove */
1003             *lpp = logp->nextp;
1004             osi_FreeSmallSpace(logp->name);
1005             afs_osi_Free(logp->datap, sizeof(afs_int32) * logp->logSize);
1006 #ifdef KERNEL_HAVE_PIN
1007             unpin((char *)logp->datap, sizeof(afs_int32) * logp->logSize);
1008 #endif
1009             osi_FreeSmallSpace(logp);
1010             break;              /* won't find it twice */
1011         }
1012     }
1013     return 0;
1014 }
1015
1016 /* do the release, watching for deleted entries */
1017 int
1018 afs_icl_LogRele(struct afs_icl_log *logp)
1019 {
1020     ObtainWriteLock(&afs_icl_lock, 191);
1021     if (--logp->refCount == 0 && (logp->states & ICL_LOGF_DELETED)) {
1022         afs_icl_ZapLog(logp);   /* destroys logp's lock! */
1023     }
1024     ReleaseWriteLock(&afs_icl_lock);
1025     return 0;
1026 }
1027
1028 /* do the release, watching for deleted entries, log already held */
1029 int
1030 afs_icl_LogReleNL(struct afs_icl_log *logp)
1031 {
1032     if (--logp->refCount == 0 && (logp->states & ICL_LOGF_DELETED)) {
1033         afs_icl_ZapLog(logp);   /* destroys logp's lock! */
1034     }
1035     return 0;
1036 }
1037
1038 /* zero out the log */
1039 int
1040 afs_icl_ZeroLog(struct afs_icl_log *logp)
1041 {
1042     ObtainWriteLock(&logp->lock, 192);
1043     logp->firstUsed = logp->firstFree = 0;
1044     logp->logElements = 0;
1045     logp->baseCookie = 0;
1046     ReleaseWriteLock(&logp->lock);
1047     return 0;
1048 }
1049
1050 /* free a log entry, and drop its reference count */
1051 int
1052 afs_icl_LogFree(struct afs_icl_log *logp)
1053 {
1054     ObtainWriteLock(&logp->lock, 193);
1055     logp->states |= ICL_LOGF_DELETED;
1056     ReleaseWriteLock(&logp->lock);
1057     afs_icl_LogRele(logp);
1058     return 0;
1059 }
1060
1061 /* find a log by name, returning it held */
1062 struct afs_icl_log *
1063 afs_icl_FindLog(char *name)
1064 {
1065     struct afs_icl_log *tp;
1066     ObtainWriteLock(&afs_icl_lock, 194);
1067     for (tp = afs_icl_allLogs; tp; tp = tp->nextp) {
1068         if (strcmp(tp->name, name) == 0) {
1069             /* this is the dude we want */
1070             tp->refCount++;
1071             break;
1072         }
1073     }
1074     ReleaseWriteLock(&afs_icl_lock);
1075     return tp;
1076 }
1077
1078 int
1079 afs_icl_EnumerateLogs(int (*aproc)
1080                         (char *name, char *arock, struct afs_icl_log * tp),
1081                       char *arock)
1082 {
1083     struct afs_icl_log *tp;
1084     afs_int32 code;
1085
1086     code = 0;
1087     ObtainWriteLock(&afs_icl_lock, 195);
1088     for (tp = afs_icl_allLogs; tp; tp = tp->nextp) {
1089         tp->refCount++;         /* hold this guy */
1090         ReleaseWriteLock(&afs_icl_lock);
1091         ObtainReadLock(&tp->lock);
1092         code = (*aproc) (tp->name, arock, tp);
1093         ReleaseReadLock(&tp->lock);
1094         ObtainWriteLock(&afs_icl_lock, 196);
1095         if (--tp->refCount == 0)
1096             afs_icl_ZapLog(tp);
1097         if (code)
1098             break;
1099     }
1100     ReleaseWriteLock(&afs_icl_lock);
1101     return code;
1102 }
1103
1104 struct afs_icl_set *afs_icl_allSets = 0;
1105
1106 int
1107 afs_icl_CreateSet(char *name, struct afs_icl_log *baseLogp,
1108                   struct afs_icl_log *fatalLogp,
1109                   struct afs_icl_set **outSetpp)
1110 {
1111     return afs_icl_CreateSetWithFlags(name, baseLogp, fatalLogp,
1112                                       /*flags */ 0, outSetpp);
1113 }
1114
1115 /* create a set, given pointers to base and fatal logs, if any.
1116  * Logs are unlocked, but referenced, and *outSetpp is returned
1117  * referenced.  Function bumps reference count on logs, since it
1118  * addds references from the new afs_icl_set.  When the set is destroyed,
1119  * those references will be released.
1120  */
1121 int
1122 afs_icl_CreateSetWithFlags(char *name, struct afs_icl_log *baseLogp,
1123                            struct afs_icl_log *fatalLogp, afs_uint32 flags,
1124                            struct afs_icl_set **outSetpp)
1125 {
1126     struct afs_icl_set *setp;
1127     int i;
1128     afs_int32 states = ICL_DEFAULT_SET_STATES;
1129
1130     ObtainWriteLock(&afs_icl_lock, 197);
1131     if (!afs_icl_inited)
1132         afs_icl_Init();
1133
1134     for (setp = afs_icl_allSets; setp; setp = setp->nextp) {
1135         if (strcmp(setp->name, name) == 0) {
1136             setp->refCount++;
1137             *outSetpp = setp;
1138             if (flags & ICL_CRSET_FLAG_PERSISTENT) {
1139                 ObtainWriteLock(&setp->lock, 198);
1140                 setp->states |= ICL_SETF_PERSISTENT;
1141                 ReleaseWriteLock(&setp->lock);
1142             }
1143             ReleaseWriteLock(&afs_icl_lock);
1144             return 0;
1145         }
1146     }
1147
1148     /* determine initial state */
1149     if (flags & ICL_CRSET_FLAG_DEFAULT_ON)
1150         states = ICL_SETF_ACTIVE;
1151     else if (flags & ICL_CRSET_FLAG_DEFAULT_OFF)
1152         states = ICL_SETF_FREED;
1153     if (flags & ICL_CRSET_FLAG_PERSISTENT)
1154         states |= ICL_SETF_PERSISTENT;
1155
1156     setp = (struct afs_icl_set *)osi_AllocSmallSpace(sizeof(struct afs_icl_set));
1157     memset((caddr_t) setp, 0, sizeof(*setp));
1158     setp->refCount = 1;
1159     if (states & ICL_SETF_FREED)
1160         states &= ~ICL_SETF_ACTIVE;     /* if freed, can't be active */
1161     setp->states = states;
1162
1163     LOCK_INIT(&setp->lock, "setp lock");
1164     /* next lock is obtained in wrong order, hierarchy-wise, but
1165      * it doesn't matter, since no one can find this lock yet, since
1166      * the afs_icl_lock is still held, and thus the obtain can't block.
1167      */
1168     ObtainWriteLock(&setp->lock, 199);
1169     setp->name = osi_AllocSmallSpace(strlen(name) + 1);
1170     strcpy(setp->name, name);
1171     setp->nevents = ICL_DEFAULTEVENTS;
1172     setp->eventFlags = afs_osi_Alloc(ICL_DEFAULTEVENTS);
1173     osi_Assert(setp->eventFlags != NULL);
1174 #ifdef  KERNEL_HAVE_PIN
1175     pin((char *)setp->eventFlags, ICL_DEFAULTEVENTS);
1176 #endif
1177     for (i = 0; i < ICL_DEFAULTEVENTS; i++)
1178         setp->eventFlags[i] = 0xff;     /* default to enabled */
1179
1180     /* update this global info under the afs_icl_lock */
1181     setp->nextp = afs_icl_allSets;
1182     afs_icl_allSets = setp;
1183     ReleaseWriteLock(&afs_icl_lock);
1184
1185     /* set's basic lock is still held, so we can finish init */
1186     if (baseLogp) {
1187         setp->logs[0] = baseLogp;
1188         afs_icl_LogHold(baseLogp);
1189         if (!(setp->states & ICL_SETF_FREED))
1190             afs_icl_LogUse(baseLogp);   /* log is actually being used */
1191     }
1192     if (fatalLogp) {
1193         setp->logs[1] = fatalLogp;
1194         afs_icl_LogHold(fatalLogp);
1195         if (!(setp->states & ICL_SETF_FREED))
1196             afs_icl_LogUse(fatalLogp);  /* log is actually being used */
1197     }
1198     ReleaseWriteLock(&setp->lock);
1199
1200     *outSetpp = setp;
1201     return 0;
1202 }
1203
1204 /* function to change event enabling information for a particular set */
1205 int
1206 afs_icl_SetEnable(struct afs_icl_set *setp, afs_int32 eventID, int setValue)
1207 {
1208     char *tp;
1209
1210     ObtainWriteLock(&setp->lock, 200);
1211     if (!ICL_EVENTOK(setp, eventID)) {
1212         ReleaseWriteLock(&setp->lock);
1213         return -1;
1214     }
1215     tp = &setp->eventFlags[ICL_EVENTBYTE(eventID)];
1216     if (setValue)
1217         *tp |= ICL_EVENTMASK(eventID);
1218     else
1219         *tp &= ~(ICL_EVENTMASK(eventID));
1220     ReleaseWriteLock(&setp->lock);
1221     return 0;
1222 }
1223
1224 /* return indication of whether a particular event ID is enabled
1225  * for tracing.  If *getValuep is set to 0, the event is disabled,
1226  * otherwise it is enabled.  All events start out enabled by default.
1227  */
1228 int
1229 afs_icl_GetEnable(struct afs_icl_set *setp, afs_int32 eventID, int *getValuep)
1230 {
1231     ObtainReadLock(&setp->lock);
1232     if (!ICL_EVENTOK(setp, eventID)) {
1233         ReleaseWriteLock(&setp->lock);
1234         return -1;
1235     }
1236     if (setp->eventFlags[ICL_EVENTBYTE(eventID)] & ICL_EVENTMASK(eventID))
1237         *getValuep = 1;
1238     else
1239         *getValuep = 0;
1240     ReleaseReadLock(&setp->lock);
1241     return 0;
1242 }
1243
1244 /* hold and release event sets */
1245 int
1246 afs_icl_SetHold(struct afs_icl_set *setp)
1247 {
1248     ObtainWriteLock(&afs_icl_lock, 201);
1249     setp->refCount++;
1250     ReleaseWriteLock(&afs_icl_lock);
1251     return 0;
1252 }
1253
1254 /* free a set.  Called with afs_icl_lock locked */
1255 int
1256 afs_icl_ZapSet(struct afs_icl_set *setp)
1257 {
1258     struct afs_icl_set **lpp, *tp;
1259     int i;
1260     struct afs_icl_log *tlp;
1261
1262     for (lpp = &afs_icl_allSets, tp = *lpp; tp; lpp = &tp->nextp, tp = *lpp) {
1263         if (tp == setp) {
1264             /* found the dude we want to remove */
1265             *lpp = setp->nextp;
1266             osi_FreeSmallSpace(setp->name);
1267             afs_osi_Free(setp->eventFlags, ICL_DEFAULTEVENTS);
1268 #ifdef  KERNEL_HAVE_PIN
1269             unpin((char *)setp->eventFlags, ICL_DEFAULTEVENTS);
1270 #endif
1271             for (i = 0; i < ICL_LOGSPERSET; i++) {
1272                 if ((tlp = setp->logs[i]))
1273                     afs_icl_LogReleNL(tlp);
1274             }
1275             osi_FreeSmallSpace(setp);
1276             break;              /* won't find it twice */
1277         }
1278     }
1279     return 0;
1280 }
1281
1282 /* do the release, watching for deleted entries */
1283 int
1284 afs_icl_SetRele(struct afs_icl_set *setp)
1285 {
1286     ObtainWriteLock(&afs_icl_lock, 202);
1287     if (--setp->refCount == 0 && (setp->states & ICL_SETF_DELETED)) {
1288         afs_icl_ZapSet(setp);   /* destroys setp's lock! */
1289     }
1290     ReleaseWriteLock(&afs_icl_lock);
1291     return 0;
1292 }
1293
1294 /* free a set entry, dropping its reference count */
1295 int
1296 afs_icl_SetFree(struct afs_icl_set *setp)
1297 {
1298     ObtainWriteLock(&setp->lock, 203);
1299     setp->states |= ICL_SETF_DELETED;
1300     ReleaseWriteLock(&setp->lock);
1301     afs_icl_SetRele(setp);
1302     return 0;
1303 }
1304
1305 /* find a set by name, returning it held */
1306 struct afs_icl_set *
1307 afs_icl_FindSet(char *name)
1308 {
1309     struct afs_icl_set *tp;
1310     ObtainWriteLock(&afs_icl_lock, 204);
1311     for (tp = afs_icl_allSets; tp; tp = tp->nextp) {
1312         if (strcmp(tp->name, name) == 0) {
1313             /* this is the dude we want */
1314             tp->refCount++;
1315             break;
1316         }
1317     }
1318     ReleaseWriteLock(&afs_icl_lock);
1319     return tp;
1320 }
1321
1322 /* zero out all the logs in the set */
1323 int
1324 afs_icl_ZeroSet(struct afs_icl_set *setp)
1325 {
1326     int i;
1327     int code = 0;
1328     int tcode;
1329     struct afs_icl_log *logp;
1330
1331     ObtainReadLock(&setp->lock);
1332     for (i = 0; i < ICL_LOGSPERSET; i++) {
1333         logp = setp->logs[i];
1334         if (logp) {
1335             afs_icl_LogHold(logp);
1336             tcode = afs_icl_ZeroLog(logp);
1337             if (tcode != 0)
1338                 code = tcode;   /* save the last bad one */
1339             afs_icl_LogRele(logp);
1340         }
1341     }
1342     ReleaseReadLock(&setp->lock);
1343     return code;
1344 }
1345
1346 int
1347 afs_icl_EnumerateSets(int (*aproc)
1348                         (char *name, char *arock, struct afs_icl_log * tp),
1349                       char *arock)
1350 {
1351     struct afs_icl_set *tp, *np;
1352     afs_int32 code;
1353
1354     code = 0;
1355     ObtainWriteLock(&afs_icl_lock, 205);
1356     for (tp = afs_icl_allSets; tp; tp = np) {
1357         tp->refCount++;         /* hold this guy */
1358         ReleaseWriteLock(&afs_icl_lock);
1359         code = (*aproc) (tp->name, arock, (struct afs_icl_log *)tp);
1360         ObtainWriteLock(&afs_icl_lock, 206);
1361         np = tp->nextp;         /* tp may disappear next, but not np */
1362         if (--tp->refCount == 0 && (tp->states & ICL_SETF_DELETED))
1363             afs_icl_ZapSet(tp);
1364         if (code)
1365             break;
1366     }
1367     ReleaseWriteLock(&afs_icl_lock);
1368     return code;
1369 }
1370
1371 int
1372 afs_icl_AddLogToSet(struct afs_icl_set *setp, struct afs_icl_log *newlogp)
1373 {
1374     int i;
1375     int code = -1;
1376
1377     ObtainWriteLock(&setp->lock, 207);
1378     for (i = 0; i < ICL_LOGSPERSET; i++) {
1379         if (!setp->logs[i]) {
1380             setp->logs[i] = newlogp;
1381             code = i;
1382             afs_icl_LogHold(newlogp);
1383             if (!(setp->states & ICL_SETF_FREED)) {
1384                 /* bump up the number of sets using the log */
1385                 afs_icl_LogUse(newlogp);
1386             }
1387             break;
1388         }
1389     }
1390     ReleaseWriteLock(&setp->lock);
1391     return code;
1392 }
1393
1394 int
1395 afs_icl_SetSetStat(struct afs_icl_set *setp, int op)
1396 {
1397     int i;
1398     afs_int32 code;
1399     struct afs_icl_log *logp;
1400
1401     ObtainWriteLock(&setp->lock, 208);
1402     switch (op) {
1403     case ICL_OP_SS_ACTIVATE:    /* activate a log */
1404         /*
1405          * If we are not already active, see if we have released
1406          * our demand that the log be allocated (FREED set).  If
1407          * we have, reassert our desire.
1408          */
1409         if (!(setp->states & ICL_SETF_ACTIVE)) {
1410             if (setp->states & ICL_SETF_FREED) {
1411                 /* have to reassert desire for logs */
1412                 for (i = 0; i < ICL_LOGSPERSET; i++) {
1413                     logp = setp->logs[i];
1414                     if (logp) {
1415                         afs_icl_LogHold(logp);
1416                         afs_icl_LogUse(logp);
1417                         afs_icl_LogRele(logp);
1418                     }
1419                 }
1420                 setp->states &= ~ICL_SETF_FREED;
1421             }
1422             setp->states |= ICL_SETF_ACTIVE;
1423         }
1424         code = 0;
1425         break;
1426
1427     case ICL_OP_SS_DEACTIVATE:  /* deactivate a log */
1428         /* this doesn't require anything beyond clearing the ACTIVE flag */
1429         setp->states &= ~ICL_SETF_ACTIVE;
1430         code = 0;
1431         break;
1432
1433     case ICL_OP_SS_FREE:        /* deassert design for log */
1434         /*
1435          * if we are already in this state, do nothing; otherwise
1436          * deassert desire for log
1437          */
1438         if (setp->states & ICL_SETF_ACTIVE)
1439             code = EINVAL;
1440         else {
1441             if (!(setp->states & ICL_SETF_FREED)) {
1442                 for (i = 0; i < ICL_LOGSPERSET; i++) {
1443                     logp = setp->logs[i];
1444                     if (logp) {
1445                         afs_icl_LogHold(logp);
1446                         afs_icl_LogFreeUse(logp);
1447                         afs_icl_LogRele(logp);
1448                     }
1449                 }
1450                 setp->states |= ICL_SETF_FREED;
1451             }
1452             code = 0;
1453         }
1454         break;
1455
1456     default:
1457         code = EINVAL;
1458     }
1459     ReleaseWriteLock(&setp->lock);
1460     return code;
1461 }