obsd-vattrs-20040125
[openafs.git] / src / afs / afs_call.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 RCSID
14     ("$Header$");
15
16 #include "afs/sysincludes.h"    /* Standard vendor system headers */
17 #include "afsincludes.h"        /* Afs-based standard headers */
18 #include "afs/afs_stats.h"
19 #include "rx/rx_globals.h"
20 #if !defined(UKERNEL) && !defined(AFS_LINUX20_ENV)
21 #include "net/if.h"
22 #ifdef AFS_SGI62_ENV
23 #include "h/hashing.h"
24 #endif
25 #if !defined(AFS_HPUX110_ENV) && !defined(AFS_DARWIN60_ENV)
26 #include "netinet/in_var.h"
27 #endif
28 #endif /* !defined(UKERNEL) */
29 #ifdef AFS_LINUX22_ENV
30 #include "h/smp_lock.h"
31 #endif
32
33
34 #if     defined(AFS_AIX_ENV) || defined(AFS_SGI_ENV) || defined(AFS_SUN_ENV) || defined(AFS_HPUX_ENV)
35 #define AFS_MINBUFFERS  100
36 #else
37 #define AFS_MINBUFFERS  50
38 #endif
39
40 struct afsop_cell {
41     afs_int32 hosts[MAXCELLHOSTS];
42     char cellName[100];
43 };
44
45 char afs_zeros[AFS_ZEROS];
46 char afs_rootVolumeName[64] = "";
47 struct afs_icl_set *afs_iclSetp = (struct afs_icl_set *)0;
48 struct afs_icl_set *afs_iclLongTermSetp = (struct afs_icl_set *)0;
49 afs_uint32 rx_bindhost;
50
51 #if defined(AFS_SUN5_ENV) || defined(AFS_SGI_ENV)
52 kmutex_t afs_global_lock;
53 kmutex_t afs_rxglobal_lock;
54 #endif
55
56 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI64_ENV)
57 long afs_global_owner;
58 #endif
59
60 #if defined(AFS_OSF_ENV)
61 simple_lock_data_t afs_global_lock;
62 #endif
63
64 #if defined(AFS_DARWIN_ENV)
65 struct lock__bsd__ afs_global_lock;
66 #endif
67
68 #if defined(AFS_XBSD_ENV) && !defined(AFS_FBSD50_ENV)
69 struct lock afs_global_lock;
70 struct proc *afs_global_owner;
71 #endif
72 #ifdef AFS_FBSD50_ENV
73 struct mtx afs_global_mtx;
74 #endif
75
76 #if defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV)
77 thread_t afs_global_owner;
78 #endif /* AFS_OSF_ENV */
79
80 #if defined(AFS_AIX41_ENV)
81 simple_lock_data afs_global_lock;
82 #endif
83
84 afs_int32 afs_initState = 0;
85 afs_int32 afs_termState = 0;
86 afs_int32 afs_setTime = 0;
87 int afs_cold_shutdown = 0;
88 char afs_SynchronousCloses = '\0';
89 static int afs_CB_Running = 0;
90 static int AFS_Running = 0;
91 static int afs_CacheInit_Done = 0;
92 static int afs_Go_Done = 0;
93 extern struct interfaceAddr afs_cb_interface;
94 static int afs_RX_Running = 0;
95 static int afs_InitSetup_done = 0;
96
97 afs_int32 afs_rx_deadtime = AFS_RXDEADTIME;
98 afs_int32 afs_rx_harddead = AFS_HARDDEADTIME;
99
100 static int
101   Afscall_icl(long opcode, long p1, long p2, long p3, long p4, long *retval);
102
103 #if defined(AFS_HPUX_ENV)
104 extern int afs_vfs_mount();
105 #endif /* defined(AFS_HPUX_ENV) */
106
107 /* This is code which needs to be called once when the first daemon enters
108  * the client. A non-zero return means an error and AFS should not start.
109  */
110 static int
111 afs_InitSetup(int preallocs)
112 {
113     extern void afs_InitStats();
114     int code;
115
116     if (afs_InitSetup_done)
117         return EAGAIN;
118
119 #ifndef AFS_NOSTATS
120     /*
121      * Set up all the AFS statistics variables.  This should be done
122      * exactly once, and it should be done here, the first resource-setting
123      * routine to be called by the CM/RX.
124      */
125     afs_InitStats();
126 #endif /* AFS_NOSTATS */
127
128     memset(afs_zeros, 0, AFS_ZEROS);
129
130     /* start RX */
131     rx_extraPackets = AFS_NRXPACKETS;   /* smaller # of packets */
132     code = rx_InitHost(rx_bindhost, htons(7001));
133     if (code) {
134         printf("AFS: RX failed to initialize %d).\n", code);
135         return code;
136     }
137     rx_SetRxDeadTime(afs_rx_deadtime);
138     /* resource init creates the services */
139     afs_ResourceInit(preallocs);
140
141     afs_InitSetup_done = 1;
142     afs_osi_Wakeup(&afs_InitSetup_done);
143
144     return code;
145 }
146
147 #if defined(AFS_LINUX24_ENV) && defined(COMPLETION_H_EXISTS)
148 struct afsd_thread_info {
149     unsigned long parm;
150     struct completion *complete;
151 };
152
153 static int
154 afsd_thread(void *rock)
155 {
156     struct afsd_thread_info *arg = rock;
157     unsigned long parm = arg->parm;
158 #ifdef SYS_SETPRIORITY_EXPORTED
159     int (*sys_setpriority) (int, int, int) = sys_call_table[__NR_setpriority];
160 #endif
161 #if defined(AFS_LINUX26_ENV)
162     daemonize("afsd");
163 #else
164     daemonize();
165 #endif
166                                 /* doesn't do much, since we were forked from keventd, but
167                                  * does call mm_release, which wakes up our parent (since it
168                                  * used CLONE_VFORK) */
169 #if !defined(AFS_LINUX26_ENV)
170     reparent_to_init();
171 #endif
172     afs_osi_MaskSignals();
173     switch (parm) {
174     case AFSOP_START_RXCALLBACK:
175         sprintf(current->comm, "afs_cbstart");
176         AFS_GLOCK();
177         complete(arg->complete);
178         afs_CB_Running = 1;
179         while (afs_RX_Running != 2)
180             afs_osi_Sleep(&afs_RX_Running);
181         sprintf(current->comm, "afs_callback");
182         afs_RXCallBackServer();
183         AFS_GUNLOCK();
184         complete_and_exit(0, 0);
185         break;
186     case AFSOP_START_AFS:
187         sprintf(current->comm, "afs_afsstart");
188         AFS_GLOCK();
189         complete(arg->complete);
190         AFS_Running = 1;
191         while (afs_initState < AFSOP_START_AFS)
192             afs_osi_Sleep(&afs_initState);
193         afs_initState = AFSOP_START_BKG;
194         afs_osi_Wakeup(&afs_initState);
195         sprintf(current->comm, "afsd");
196         afs_Daemon();
197         AFS_GUNLOCK();
198         complete_and_exit(0, 0);
199         break;
200     case AFSOP_START_BKG:
201         sprintf(current->comm, "afs_bkgstart");
202         AFS_GLOCK();
203         complete(arg->complete);
204         while (afs_initState < AFSOP_START_BKG)
205             afs_osi_Sleep(&afs_initState);
206         if (afs_initState < AFSOP_GO) {
207             afs_initState = AFSOP_GO;
208             afs_osi_Wakeup(&afs_initState);
209         }
210         sprintf(current->comm, "afs_background");
211         afs_BackgroundDaemon();
212         AFS_GUNLOCK();
213         complete_and_exit(0, 0);
214         break;
215     case AFSOP_START_TRUNCDAEMON:
216         sprintf(current->comm, "afs_trimstart");
217         AFS_GLOCK();
218         complete(arg->complete);
219         while (afs_initState < AFSOP_GO)
220             afs_osi_Sleep(&afs_initState);
221         sprintf(current->comm, "afs_cachetrim");
222         afs_CacheTruncateDaemon();
223         AFS_GUNLOCK();
224         complete_and_exit(0, 0);
225         break;
226     case AFSOP_START_CS:
227         sprintf(current->comm, "afs_checkserver");
228         AFS_GLOCK();
229         complete(arg->complete);
230         afs_CheckServerDaemon();
231         AFS_GUNLOCK();
232         complete_and_exit(0, 0);
233         break;
234     case AFSOP_RXEVENT_DAEMON:
235         sprintf(current->comm, "afs_evtstart");
236 #ifdef SYS_SETPRIORITY_EXPORTED
237         sys_setpriority(PRIO_PROCESS, 0, -10);
238 #else
239 #ifdef CURRENT_INCLUDES_NICE
240         current->nice = -10;
241 #endif
242 #endif
243         AFS_GLOCK();
244         complete(arg->complete);
245         while (afs_initState < AFSOP_START_BKG)
246             afs_osi_Sleep(&afs_initState);
247         sprintf(current->comm, "afs_rxevent");
248         afs_rxevent_daemon();
249         AFS_GUNLOCK();
250         complete_and_exit(0, 0);
251         break;
252     case AFSOP_RXLISTENER_DAEMON:
253         sprintf(current->comm, "afs_lsnstart");
254 #ifdef SYS_SETPRIORITY_EXPORTED
255         sys_setpriority(PRIO_PROCESS, 0, -10);
256 #else
257 #ifdef CURRENT_INCLUDES_NICE
258         current->nice = -10;
259 #endif
260 #endif
261         AFS_GLOCK();
262         complete(arg->complete);
263         afs_initState = AFSOP_START_AFS;
264         afs_osi_Wakeup(&afs_initState);
265         afs_RX_Running = 2;
266         afs_osi_Wakeup(&afs_RX_Running);
267         afs_osi_RxkRegister();
268         sprintf(current->comm, "afs_rxlistener");
269         rxk_Listener();
270         AFS_GUNLOCK();
271         complete_and_exit(0, 0);
272         break;
273     default:
274         printf("Unknown op %ld in StartDaemon()\n", (long)parm);
275         break;
276     }
277     return 0;
278 }
279
280 void
281 afsd_launcher(void *rock)
282 {
283     if (!kernel_thread(afsd_thread, rock, CLONE_VFORK | SIGCHLD))
284         printf("kernel_thread failed. afs startup will not complete\n");
285 }
286
287 void
288 afs_DaemonOp(long parm, long parm2, long parm3, long parm4, long parm5,
289              long parm6)
290 {
291     int code;
292     DECLARE_COMPLETION(c);
293 #if defined(AFS_LINUX26_ENV)
294     struct work_struct tq;
295 #else
296     struct tq_struct tq;
297 #endif
298     struct afsd_thread_info info;
299     if (parm == AFSOP_START_RXCALLBACK) {
300         if (afs_CB_Running)
301             return;
302     } else if (parm == AFSOP_RXLISTENER_DAEMON) {
303         if (afs_RX_Running)
304             return;
305         afs_RX_Running = 1;
306         code = afs_InitSetup(parm2);
307         if (parm3) {
308             rx_enablePeerRPCStats();
309         }
310         if (parm4) {
311             rx_enableProcessRPCStats();
312         }
313         if (code)
314             return;
315     } else if (parm == AFSOP_START_AFS) {
316         if (AFS_Running)
317             return;
318     }                           /* other functions don't need setup in the parent */
319     info.complete = &c;
320     info.parm = parm;
321 #if defined(AFS_LINUX26_ENV)
322     INIT_WORK(&tq, afsd_launcher, &info);
323     schedule_work(&tq);
324 #else
325     tq.sync = 0;
326     INIT_LIST_HEAD(&tq.list);
327     tq.routine = afsd_launcher;
328     tq.data = &info;
329     schedule_task(&tq);
330 #endif
331     AFS_GUNLOCK();
332     /* we need to wait cause we passed stack pointers around.... */
333     wait_for_completion(&c);
334     AFS_GLOCK();
335 }
336 #endif
337
338 /* leaving as is, probably will barf if we add prototypes here since it's likely being called
339 with partial list */
340 int
341 afs_syscall_call(parm, parm2, parm3, parm4, parm5, parm6)
342      long parm, parm2, parm3, parm4, parm5, parm6;
343 {
344     afs_int32 code = 0;
345 #if defined(AFS_SGI61_ENV) || defined(AFS_SUN57_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
346     size_t bufferSize;
347 #else /* AFS_SGI61_ENV */
348     u_int bufferSize;
349 #endif /* AFS_SGI61_ENV */
350
351     AFS_STATCNT(afs_syscall_call);
352 #ifdef  AFS_SUN5_ENV
353     if (!afs_suser(CRED()) && (parm != AFSOP_GETMTU)
354         && (parm != AFSOP_GETMASK)) {
355         /* only root can run this code */
356         return (EACCES);
357 #else
358     if (!afs_suser(NULL) && (parm != AFSOP_GETMTU)
359         && (parm != AFSOP_GETMASK)) {
360         /* only root can run this code */
361 #if defined(KERNEL_HAVE_UERROR)
362         setuerror(EACCES);
363         return (EACCES);
364 #else
365 #if defined(AFS_OSF_ENV)
366         return EACCES;
367 #else /* AFS_OSF_ENV */
368         return EPERM;
369 #endif /* AFS_OSF_ENV */
370 #endif
371 #endif
372     }
373     AFS_GLOCK();
374 #if defined(AFS_LINUX24_ENV) && defined(COMPLETION_H_EXISTS) && !defined(UKERNEL)
375     if (parm < AFSOP_ADDCELL || parm == AFSOP_RXEVENT_DAEMON
376         || parm == AFSOP_RXLISTENER_DAEMON) {
377         afs_DaemonOp(parm, parm2, parm3, parm4, parm5, parm6);
378     }
379 #else /* !(AFS_LINUX24_ENV && !UKERNEL) */
380     if (parm == AFSOP_START_RXCALLBACK) {
381         if (afs_CB_Running)
382             goto out;
383         afs_CB_Running = 1;
384 #ifndef RXK_LISTENER_ENV
385         code = afs_InitSetup(parm2);
386         if (!code)
387 #endif /* !RXK_LISTENER_ENV */
388         {
389 #ifdef RXK_LISTENER_ENV
390             while (afs_RX_Running != 2)
391                 afs_osi_Sleep(&afs_RX_Running);
392 #else /* !RXK_LISTENER_ENV */
393             afs_initState = AFSOP_START_AFS;
394             afs_osi_Wakeup(&afs_initState);
395 #endif /* RXK_LISTENER_ENV */
396             afs_osi_Invisible();
397             afs_RXCallBackServer();
398         }
399 #ifdef AFS_SGI_ENV
400         AFS_GUNLOCK();
401         exit(CLD_EXITED, code);
402 #endif /* AFS_SGI_ENV */
403     }
404 #ifdef RXK_LISTENER_ENV
405     else if (parm == AFSOP_RXLISTENER_DAEMON) {
406         if (afs_RX_Running)
407             goto out;
408         afs_RX_Running = 1;
409         code = afs_InitSetup(parm2);
410         if (parm3) {
411             rx_enablePeerRPCStats();
412         }
413         if (parm4) {
414             rx_enableProcessRPCStats();
415         }
416         if (!code) {
417             afs_initState = AFSOP_START_AFS;
418             afs_osi_Wakeup(&afs_initState);
419             afs_osi_Invisible();
420             afs_RX_Running = 2;
421             afs_osi_Wakeup(&afs_RX_Running);
422 #ifndef UKERNEL
423             afs_osi_RxkRegister();
424 #endif /* !UKERNEL */
425             rxk_Listener();
426         }
427 #ifdef  AFS_SGI_ENV
428         AFS_GUNLOCK();
429         exit(CLD_EXITED, code);
430 #endif /* AFS_SGI_ENV */
431     }
432 #endif /* RXK_LISTENER_ENV */
433     else if (parm == AFSOP_START_AFS) {
434         /* afs daemon */
435         if (AFS_Running)
436             goto out;
437         AFS_Running = 1;
438         while (afs_initState < AFSOP_START_AFS)
439             afs_osi_Sleep(&afs_initState);
440
441         afs_initState = AFSOP_START_BKG;
442         afs_osi_Wakeup(&afs_initState);
443         afs_osi_Invisible();
444         afs_Daemon();
445 #ifdef AFS_SGI_ENV
446         AFS_GUNLOCK();
447         exit(CLD_EXITED, 0);
448 #endif /* AFS_SGI_ENV */
449     } else if (parm == AFSOP_START_CS) {
450         afs_osi_Invisible();
451         afs_CheckServerDaemon();
452 #ifdef AFS_SGI_ENV
453         AFS_GUNLOCK();
454         exit(CLD_EXITED, 0);
455 #endif /* AFS_SGI_ENV */
456     } else if (parm == AFSOP_START_BKG) {
457         while (afs_initState < AFSOP_START_BKG)
458             afs_osi_Sleep(&afs_initState);
459         if (afs_initState < AFSOP_GO) {
460             afs_initState = AFSOP_GO;
461             afs_osi_Wakeup(&afs_initState);
462         }
463         /* start the bkg daemon */
464         afs_osi_Invisible();
465 #ifdef AFS_AIX32_ENV
466         if (parm2)
467             afs_BioDaemon(parm2);
468         else
469 #endif /* AFS_AIX32_ENV */
470             afs_BackgroundDaemon();
471 #ifdef AFS_SGI_ENV
472         AFS_GUNLOCK();
473         exit(CLD_EXITED, 0);
474 #endif /* AFS_SGI_ENV */
475     } else if (parm == AFSOP_START_TRUNCDAEMON) {
476         while (afs_initState < AFSOP_GO)
477             afs_osi_Sleep(&afs_initState);
478         /* start the bkg daemon */
479         afs_osi_Invisible();
480         afs_CacheTruncateDaemon();
481 #ifdef  AFS_SGI_ENV
482         AFS_GUNLOCK();
483         exit(CLD_EXITED, 0);
484 #endif /* AFS_SGI_ENV */
485     }
486 #if defined(AFS_SUN5_ENV) || defined(RXK_LISTENER_ENV)
487     else if (parm == AFSOP_RXEVENT_DAEMON) {
488         while (afs_initState < AFSOP_START_BKG)
489             afs_osi_Sleep(&afs_initState);
490         afs_osi_Invisible();
491         afs_rxevent_daemon();
492 #ifdef AFS_SGI_ENV
493         AFS_GUNLOCK();
494         exit(CLD_EXITED, 0);
495 #endif /* AFS_SGI_ENV */
496     }
497 #endif /* AFS_SUN5_ENV || RXK_LISTENER_ENV */
498 #endif /* AFS_LINUX24_ENV && !UKERNEL */
499     else if (parm == AFSOP_BASIC_INIT) {
500         afs_int32 temp;
501
502         while (!afs_InitSetup_done)
503             afs_osi_Sleep(&afs_InitSetup_done);
504
505 #if defined(AFS_SUN_ENV) || defined(AFS_SGI_ENV) || defined(AFS_HPUX_ENV) || defined(AFS_LINUX20_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
506         temp = AFS_MINBUFFERS;  /* Should fix this soon */
507 #else
508         /* number of 2k buffers we could get from all of the buffer space */
509         temp = ((afs_bufferpages * NBPG) >> 11);
510         temp = temp >> 2;       /* don't take more than 25% (our magic parameter) */
511         if (temp < AFS_MINBUFFERS)
512             temp = AFS_MINBUFFERS;      /* though we really should have this many */
513 #endif
514         DInit(temp);
515         afs_rootFid.Fid.Volume = 0;
516         code = 0;
517     } else if (parm == AFSOP_ADDCELL) {
518         /* add a cell.  Parameter 2 is 8 hosts (in net order),  parm 3 is the null-terminated
519          * name.  Parameter 4 is the length of the name, including the null.  Parm 5 is the
520          * home cell flag (0x1 bit) and the nosuid flag (0x2 bit) */
521         struct afsop_cell *tcell = afs_osi_Alloc(sizeof(struct afsop_cell));
522
523         AFS_COPYIN((char *)parm2, (char *)tcell->hosts, sizeof(tcell->hosts),
524                    code);
525         if (!code) {
526             if (parm4 > sizeof(tcell->cellName))
527                 code = EFAULT;
528             else {
529                 AFS_COPYIN((char *)parm3, tcell->cellName, parm4, code);
530                 if (!code)
531                     afs_NewCell(tcell->cellName, tcell->hosts, parm5, NULL, 0,
532                                 0, 0);
533             }
534         }
535         afs_osi_Free(tcell, sizeof(struct afsop_cell));
536     } else if (parm == AFSOP_ADDCELL2) {
537         struct afsop_cell *tcell = afs_osi_Alloc(sizeof(struct afsop_cell));
538         char *tbuffer = osi_AllocSmallSpace(AFS_SMALLOCSIZ), *lcnamep = 0;
539         char *tbuffer1 = osi_AllocSmallSpace(AFS_SMALLOCSIZ);
540         int cflags = parm4;
541
542 #if 0
543         /* wait for basic init - XXX can't find any reason we need this? */
544         while (afs_initState < AFSOP_START_BKG)
545             afs_osi_Sleep(&afs_initState);
546 #endif
547
548         AFS_COPYIN((char *)parm2, (char *)tcell->hosts, sizeof(tcell->hosts),
549                    code);
550         if (!code) {
551             AFS_COPYINSTR((char *)parm3, tbuffer1, AFS_SMALLOCSIZ,
552                           &bufferSize, code);
553             if (!code) {
554                 if (parm4 & 4) {
555                     AFS_COPYINSTR((char *)parm5, tbuffer, AFS_SMALLOCSIZ,
556                                   &bufferSize, code);
557                     if (!code) {
558                         lcnamep = tbuffer;
559                         cflags |= CLinkedCell;
560                     }
561                 }
562                 if (!code)
563                     code =
564                         afs_NewCell(tbuffer1, tcell->hosts, cflags, lcnamep,
565                                     0, 0, 0);
566             }
567         }
568         afs_osi_Free(tcell, sizeof(struct afsop_cell));
569         osi_FreeSmallSpace(tbuffer);
570         osi_FreeSmallSpace(tbuffer1);
571     } else if (parm == AFSOP_ADDCELLALIAS) {
572         /*
573          * Call arguments:
574          * parm2 is the alias name
575          * parm3 is the real cell name
576          */
577         char *aliasName = osi_AllocSmallSpace(AFS_SMALLOCSIZ);
578         char *cellName = osi_AllocSmallSpace(AFS_SMALLOCSIZ);
579
580         AFS_COPYINSTR((char *)parm2, aliasName, AFS_SMALLOCSIZ, &bufferSize,
581                       code);
582         if (!code)
583             AFS_COPYINSTR((char *)parm3, cellName, AFS_SMALLOCSIZ,
584                           &bufferSize, code);
585         if (!code)
586             afs_NewCellAlias(aliasName, cellName);
587         osi_FreeSmallSpace(aliasName);
588         osi_FreeSmallSpace(cellName);
589     } else if (parm == AFSOP_SET_THISCELL) {
590         /*
591          * Call arguments:
592          * parm2 is the primary cell name
593          */
594         char *cell = osi_AllocSmallSpace(AFS_SMALLOCSIZ);
595
596         AFS_COPYINSTR((char *)parm2, cell, AFS_SMALLOCSIZ, &bufferSize, code);
597         if (!code)
598             afs_SetPrimaryCell(cell);
599         osi_FreeSmallSpace(cell);
600     } else if (parm == AFSOP_CACHEINIT) {
601         struct afs_cacheParams cparms;
602
603         if (afs_CacheInit_Done)
604             goto out;
605
606         AFS_COPYIN((char *)parm2, (caddr_t) & cparms, sizeof(cparms), code);
607         if (code) {
608 #if defined(KERNEL_HAVE_UERROR)
609             setuerror(code);
610             code = -1;
611 #endif
612             goto out;
613         }
614         afs_CacheInit_Done = 1;
615         {
616             struct afs_icl_log *logp;
617             /* initialize the ICL system */
618             code = afs_icl_CreateLog("cmfx", 60 * 1024, &logp);
619             if (code == 0)
620                 code =
621                     afs_icl_CreateSetWithFlags("cm", logp, NULL,
622                                                ICL_CRSET_FLAG_DEFAULT_OFF,
623                                                &afs_iclSetp);
624             code =
625                 afs_icl_CreateSet("cmlongterm", logp, NULL,
626                                   &afs_iclLongTermSetp);
627         }
628         afs_setTime = cparms.setTimeFlag;
629
630         code =
631             afs_CacheInit(cparms.cacheScaches, cparms.cacheFiles,
632                           cparms.cacheBlocks, cparms.cacheDcaches,
633                           cparms.cacheVolumes, cparms.chunkSize,
634                           cparms.memCacheFlag, cparms.inodes, cparms.users);
635
636     } else if (parm == AFSOP_CACHEINODE) {
637         ino_t ainode = parm2;
638         /* wait for basic init */
639         while (afs_initState < AFSOP_START_BKG)
640             afs_osi_Sleep(&afs_initState);
641
642         /* do it by inode */
643 #ifdef AFS_SGI62_ENV
644         ainode = (ainode << 32) | (parm3 & 0xffffffff);
645 #endif
646         code = afs_InitCacheFile(NULL, ainode);
647     } else if (parm == AFSOP_ROOTVOLUME) {
648         /* wait for basic init */
649         while (afs_initState < AFSOP_START_BKG)
650             afs_osi_Sleep(&afs_initState);
651
652         if (parm2) {
653             AFS_COPYINSTR((char *)parm2, afs_rootVolumeName,
654                           sizeof(afs_rootVolumeName), &bufferSize, code);
655             afs_rootVolumeName[sizeof(afs_rootVolumeName) - 1] = 0;
656         } else
657             code = 0;
658     } else if (parm == AFSOP_CACHEFILE || parm == AFSOP_CACHEINFO
659                || parm == AFSOP_VOLUMEINFO || parm == AFSOP_AFSLOG
660                || parm == AFSOP_CELLINFO) {
661         char *tbuffer = osi_AllocSmallSpace(AFS_SMALLOCSIZ);
662
663         code = 0;
664         AFS_COPYINSTR((char *)parm2, tbuffer, AFS_SMALLOCSIZ, &bufferSize,
665                       code);
666         if (code) {
667             osi_FreeSmallSpace(tbuffer);
668             goto out;
669         }
670         if (!code) {
671             tbuffer[AFS_SMALLOCSIZ - 1] = '\0'; /* null-terminate the name */
672             /* We have the cache dir copied in.  Call the cache init routine */
673             if (parm == AFSOP_CACHEFILE)
674                 code = afs_InitCacheFile(tbuffer, 0);
675             else if (parm == AFSOP_CACHEINFO)
676                 code = afs_InitCacheInfo(tbuffer);
677             else if (parm == AFSOP_VOLUMEINFO)
678                 code = afs_InitVolumeInfo(tbuffer);
679             else if (parm == AFSOP_CELLINFO)
680                 code = afs_InitCellInfo(tbuffer);
681         }
682         osi_FreeSmallSpace(tbuffer);
683     } else if (parm == AFSOP_GO) {
684         /* the generic initialization calls come here.  One parameter: should we do the
685          * set-time operation on this workstation */
686         if (afs_Go_Done)
687             goto out;
688         afs_Go_Done = 1;
689         while (afs_initState < AFSOP_GO)
690             afs_osi_Sleep(&afs_initState);
691         afs_initState = 101;
692         afs_setTime = parm2;
693         afs_osi_Wakeup(&afs_initState);
694 #if     (!defined(AFS_NONFSTRANS) && !defined(AFS_DEC_ENV)) || defined(AFS_AIX_IAUTH_ENV)
695         afs_nfsclient_init();
696 #endif
697         printf("found %d non-empty cache files (%d%%).\n",
698                afs_stats_cmperf.cacheFilesReused,
699                (100 * afs_stats_cmperf.cacheFilesReused) /
700                (afs_stats_cmperf.cacheNumEntries ? afs_stats_cmperf.
701                 cacheNumEntries : 1));
702     } else if (parm == AFSOP_ADVISEADDR) {
703         /* pass in the host address to the rx package */
704         int rxbind = 0;
705         afs_int32 count = parm2;
706         afs_int32 *buffer =
707             afs_osi_Alloc(sizeof(afs_int32) * AFS_MAX_INTERFACE_ADDR);
708         afs_int32 *maskbuffer =
709             afs_osi_Alloc(sizeof(afs_int32) * AFS_MAX_INTERFACE_ADDR);
710         afs_int32 *mtubuffer =
711             afs_osi_Alloc(sizeof(afs_int32) * AFS_MAX_INTERFACE_ADDR);
712         int i;
713
714         /* Bind, but only if there's only one address configured */ 
715         if ( count & 0x80000000) {
716             count &= ~0x80000000;
717             if (count == 1)
718                 rxbind=1;
719         }
720
721         if (count > AFS_MAX_INTERFACE_ADDR) {
722             code = ENOMEM;
723             count = AFS_MAX_INTERFACE_ADDR;
724         }
725
726         AFS_COPYIN((char *)parm3, (char *)buffer, count * sizeof(afs_int32),
727                    code);
728         if (parm4)
729             AFS_COPYIN((char *)parm4, (char *)maskbuffer,
730                        count * sizeof(afs_int32), code);
731         if (parm5)
732             AFS_COPYIN((char *)parm5, (char *)mtubuffer,
733                        count * sizeof(afs_int32), code);
734
735         afs_cb_interface.numberOfInterfaces = count;
736         for (i = 0; i < count; i++) {
737             afs_cb_interface.addr_in[i] = buffer[i];
738 #ifdef AFS_USERSPACE_IP_ADDR
739             /* AFS_USERSPACE_IP_ADDR means we have no way of finding the
740              * machines IP addresses when in the kernel (the in_ifaddr
741              * struct is not available), so we pass the info in at
742              * startup. We also pass in the subnetmask and mtu size. The
743              * subnetmask is used when setting the rank:
744              * afsi_SetServerIPRank(); and the mtu size is used when
745              * finding the best mtu size. rxi_FindIfnet() is replaced
746              * with rxi_Findcbi().
747              */
748             afs_cb_interface.subnetmask[i] =
749                 (parm4 ? maskbuffer[i] : 0xffffffff);
750             afs_cb_interface.mtu[i] = (parm5 ? mtubuffer[i] : htonl(1500));
751 #endif
752         }
753         afs_uuid_create(&afs_cb_interface.uuid);
754         rxi_setaddr(buffer[0]);
755         if (rxbind)
756             rx_bindhost = buffer[0];
757         else
758             rx_bindhost = htonl(INADDR_ANY);
759
760         afs_osi_Free(buffer, sizeof(afs_int32) * AFS_MAX_INTERFACE_ADDR);
761         afs_osi_Free(maskbuffer, sizeof(afs_int32) * AFS_MAX_INTERFACE_ADDR);
762         afs_osi_Free(mtubuffer, sizeof(afs_int32) * AFS_MAX_INTERFACE_ADDR);
763     }
764 #ifdef  AFS_SGI53_ENV
765     else if (parm == AFSOP_NFSSTATICADDR) {
766         extern int (*nfs_rfsdisptab_v2) ();
767         nfs_rfsdisptab_v2 = (int (*)())parm2;
768     } else if (parm == AFSOP_NFSSTATICADDR2) {
769         extern int (*nfs_rfsdisptab_v2) ();
770 #ifdef _K64U64
771         nfs_rfsdisptab_v2 = (int (*)())((parm2 << 32) | (parm3 & 0xffffffff));
772 #else /* _K64U64 */
773         nfs_rfsdisptab_v2 = (int (*)())(parm3 & 0xffffffff);
774 #endif /* _K64U64 */
775     }
776 #if defined(AFS_SGI62_ENV) && !defined(AFS_SGI65_ENV)
777     else if (parm == AFSOP_SBLOCKSTATICADDR2) {
778         extern int (*afs_sblockp) ();
779         extern void (*afs_sbunlockp) ();
780 #ifdef _K64U64
781         afs_sblockp = (int (*)())((parm2 << 32) | (parm3 & 0xffffffff));
782         afs_sbunlockp = (void (*)())((parm4 << 32) | (parm5 & 0xffffffff));
783 #else
784         afs_sblockp = (int (*)())(parm3 & 0xffffffff);
785         afs_sbunlockp = (void (*)())(parm5 & 0xffffffff);
786 #endif /* _K64U64 */
787     }
788 #endif /* AFS_SGI62_ENV && !AFS_SGI65_ENV */
789 #endif /* AFS_SGI53_ENV */
790     else if (parm == AFSOP_SHUTDOWN) {
791         afs_cold_shutdown = 0;
792         if (parm2 == 1)
793             afs_cold_shutdown = 1;
794 #ifndef AFS_DARWIN_ENV
795         if (afs_globalVFS != 0) {
796             afs_warn("AFS isn't unmounted yet! Call aborted\n");
797             code = EACCES;
798         } else
799 #endif
800             afs_shutdown();
801     } else if (parm == AFSOP_AFS_VFSMOUNT) {
802 #ifdef  AFS_HPUX_ENV
803         vfsmount(parm2, parm3, parm4, parm5);
804 #else /* defined(AFS_HPUX_ENV) */
805 #if defined(KERNEL_HAVE_UERROR)
806         setuerror(EINVAL);
807 #else
808         code = EINVAL;
809 #endif
810 #endif /* defined(AFS_HPUX_ENV) */
811     } else if (parm == AFSOP_CLOSEWAIT) {
812         afs_SynchronousCloses = 'S';
813     } else if (parm == AFSOP_GETMTU) {
814         afs_uint32 mtu = 0;
815 #if     !defined(AFS_SUN5_ENV) && !defined(AFS_LINUX20_ENV)
816 #ifdef AFS_USERSPACE_IP_ADDR
817         afs_int32 i;
818         i = rxi_Findcbi(parm2);
819         mtu = ((i == -1) ? htonl(1500) : afs_cb_interface.mtu[i]);
820 #else /* AFS_USERSPACE_IP_ADDR */
821         struct ifnet *tifnp;
822
823         tifnp = rxi_FindIfnet(parm2, NULL);     /*  make iterative */
824         mtu = (tifnp ? tifnp->if_mtu : htonl(1500));
825 #endif /* else AFS_USERSPACE_IP_ADDR */
826 #endif /* !AFS_SUN5_ENV */
827         if (!code)
828             AFS_COPYOUT((caddr_t) & mtu, (caddr_t) parm3, sizeof(afs_int32),
829                         code);
830 #ifdef AFS_AIX32_ENV
831 /* this is disabled for now because I can't figure out how to get access
832  * to these kernel variables.  It's only for supporting user-mode rx
833  * programs -- it makes a huge difference on the 220's in my testbed,
834  * though I don't know why. The bosserver does this with /etc/no, so it's
835  * being handled a different way for the servers right now.  */
836 /*      {
837         static adjusted = 0;
838         extern u_long sb_max_dflt;
839         if (!adjusted) {
840           adjusted = 1;
841           if (sb_max_dflt < 131072) sb_max_dflt = 131072; 
842           if (sb_max < 131072) sb_max = 131072; 
843         }
844       } */
845 #endif /* AFS_AIX32_ENV */
846     } else if (parm == AFSOP_GETMASK) { /* parm2 == addr in net order */
847         afs_uint32 mask = 0;
848 #if     !defined(AFS_SUN5_ENV)
849 #ifdef AFS_USERSPACE_IP_ADDR
850         afs_int32 i;
851         i = rxi_Findcbi(parm2);
852         if (i != -1) {
853             mask = afs_cb_interface.subnetmask[i];
854         } else {
855             code = -1;
856         }
857 #else /* AFS_USERSPACE_IP_ADDR */
858         struct ifnet *tifnp;
859
860         tifnp = rxi_FindIfnet(parm2, &mask);    /* make iterative */
861         if (!tifnp)
862             code = -1;
863 #endif /* else AFS_USERSPACE_IP_ADDR */
864 #endif /* !AFS_SUN5_ENV */
865         if (!code)
866             AFS_COPYOUT((caddr_t) & mask, (caddr_t) parm3, sizeof(afs_int32),
867                         code);
868     }
869 #ifdef AFS_AFSDB_ENV
870     else if (parm == AFSOP_AFSDB_HANDLER) {
871         int sizeArg = (int)parm4;
872         int kmsgLen = sizeArg & 0xffff;
873         int cellLen = (sizeArg & 0xffff0000) >> 16;
874         afs_int32 *kmsg = afs_osi_Alloc(kmsgLen);
875         char *cellname = afs_osi_Alloc(cellLen);
876
877 #ifndef UKERNEL
878         afs_osi_MaskUserLoop();
879 #endif
880         AFS_COPYIN((afs_int32 *) parm2, cellname, cellLen, code);
881         AFS_COPYIN((afs_int32 *) parm3, kmsg, kmsgLen, code);
882         if (!code) {
883             code = afs_AFSDBHandler(cellname, cellLen, kmsg);
884             if (*cellname == 1)
885                 *cellname = 0;
886             if (code == -2) {   /* Shutting down? */
887                 *cellname = 1;
888                 code = 0;
889             }
890         }
891         if (!code)
892             AFS_COPYOUT(cellname, (char *)parm2, cellLen, code);
893         afs_osi_Free(kmsg, kmsgLen);
894         afs_osi_Free(cellname, cellLen);
895     }
896 #endif
897     else if (parm == AFSOP_SET_DYNROOT) {
898         code = afs_SetDynrootEnable(parm2);
899     } else if (parm == AFSOP_SET_FAKESTAT) {
900         afs_fakestat_enable = parm2;
901         code = 0;
902     } else if (parm == AFSOP_SET_BACKUPTREE) {
903         afs_bkvolpref = parm2;
904     } else
905         code = EINVAL;
906
907   out:
908     AFS_GUNLOCK();
909 #ifdef AFS_LINUX20_ENV
910     return -code;
911 #else
912     return code;
913 #endif
914 }
915
916 #ifdef AFS_AIX32_ENV
917
918 #include "sys/lockl.h"
919
920 /*
921  * syscall -    this is the VRMIX system call entry point.
922  *
923  * NOTE:
924  *      THIS SHOULD BE CHANGED TO afs_syscall(), but requires
925  *      all the user-level calls to `syscall' to change.
926  */
927 syscall(syscall, p1, p2, p3, p4, p5, p6)
928 {
929     register rval1 = 0, code;
930     register monster;
931     int retval = 0;
932 #ifndef AFS_AIX41_ENV
933     extern lock_t kernel_lock;
934     monster = lockl(&kernel_lock, LOCK_SHORT);
935 #endif /* !AFS_AIX41_ENV */
936
937     AFS_STATCNT(syscall);
938     setuerror(0);
939     switch (syscall) {
940     case AFSCALL_CALL:
941         rval1 = afs_syscall_call(p1, p2, p3, p4, p5, p6);
942         break;
943
944     case AFSCALL_SETPAG:
945         AFS_GLOCK();
946         rval1 = afs_setpag();
947         AFS_GUNLOCK();
948         break;
949
950     case AFSCALL_PIOCTL:
951         AFS_GLOCK();
952         rval1 = afs_syscall_pioctl(p1, p2, p3, p4);
953         AFS_GUNLOCK();
954         break;
955
956     case AFSCALL_ICREATE:
957         rval1 = afs_syscall_icreate(p1, p2, p3, p4, p5, p6);
958         break;
959
960     case AFSCALL_IOPEN:
961         rval1 = afs_syscall_iopen(p1, p2, p3);
962         break;
963
964     case AFSCALL_IDEC:
965         rval1 = afs_syscall_iincdec(p1, p2, p3, -1);
966         break;
967
968     case AFSCALL_IINC:
969         rval1 = afs_syscall_iincdec(p1, p2, p3, 1);
970         break;
971
972     case AFSCALL_ICL:
973         AFS_GLOCK();
974         code = Afscall_icl(p1, p2, p3, p4, p5, &retval);
975         AFS_GUNLOCK();
976         if (!code)
977             rval1 = retval;
978         if (!rval1)
979             rval1 = code;
980         break;
981
982     default:
983         rval1 = EINVAL;
984         setuerror(EINVAL);
985         break;
986     }
987
988   out:
989 #ifndef AFS_AIX41_ENV
990     if (monster != LOCK_NEST)
991         unlockl(&kernel_lock);
992 #endif /* !AFS_AIX41_ENV */
993     return getuerror()? -1 : rval1;
994 }
995
996 /*
997  * lsetpag -    interface to afs_setpag().
998  */
999 lsetpag()
1000 {
1001
1002     AFS_STATCNT(lsetpag);
1003     return syscall(AFSCALL_SETPAG, 0, 0, 0, 0, 0);
1004 }
1005
1006 /*
1007  * lpioctl -    interface to pioctl()
1008  */
1009 lpioctl(path, cmd, cmarg, follow)
1010      char *path, *cmarg;
1011 {
1012
1013     AFS_STATCNT(lpioctl);
1014     return syscall(AFSCALL_PIOCTL, path, cmd, cmarg, follow);
1015 }
1016
1017 #else /* !AFS_AIX32_ENV       */
1018
1019 #if defined(AFS_SGI_ENV)
1020 struct afsargs {
1021     sysarg_t syscall;
1022     sysarg_t parm1;
1023     sysarg_t parm2;
1024     sysarg_t parm3;
1025     sysarg_t parm4;
1026     sysarg_t parm5;
1027 };
1028
1029
1030 int
1031 Afs_syscall(struct afsargs *uap, rval_t * rvp)
1032 {
1033     int error;
1034     long retval;
1035
1036     AFS_STATCNT(afs_syscall);
1037     switch (uap->syscall) {
1038     case AFSCALL_ICL:
1039         retval = 0;
1040         AFS_GLOCK();
1041         error =
1042             Afscall_icl(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1043                         uap->parm5, &retval);
1044         AFS_GUNLOCK();
1045         rvp->r_val1 = retval;
1046         break;
1047 #ifdef AFS_SGI_XFS_IOPS_ENV
1048     case AFSCALL_IDEC64:
1049         error =
1050             afs_syscall_idec64(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1051                                uap->parm5);
1052         break;
1053     case AFSCALL_IINC64:
1054         error =
1055             afs_syscall_iinc64(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1056                                uap->parm5);
1057         break;
1058     case AFSCALL_ILISTINODE64:
1059         error =
1060             afs_syscall_ilistinode64(uap->parm1, uap->parm2, uap->parm3,
1061                                      uap->parm4, uap->parm5);
1062         break;
1063     case AFSCALL_ICREATENAME64:
1064         error =
1065             afs_syscall_icreatename64(uap->parm1, uap->parm2, uap->parm3,
1066                                       uap->parm4, uap->parm5);
1067         break;
1068 #endif
1069 #ifdef AFS_SGI_VNODE_GLUE
1070     case AFSCALL_INIT_KERNEL_CONFIG:
1071         error = afs_init_kernel_config(uap->parm1);
1072         break;
1073 #endif
1074     default:
1075         error =
1076             afs_syscall_call(uap->syscall, uap->parm1, uap->parm2, uap->parm3,
1077                              uap->parm4, uap->parm5);
1078     }
1079     return error;
1080 }
1081
1082 #else /* AFS_SGI_ENV */
1083
1084 struct iparam {
1085     long param1;
1086     long param2;
1087     long param3;
1088     long param4;
1089 };
1090
1091 struct iparam32 {
1092     int param1;
1093     int param2;
1094     int param3;
1095     int param4;
1096 };
1097
1098
1099 #if defined(AFS_HPUX_64BIT_ENV) || defined(AFS_SUN57_64BIT_ENV) || (defined(AFS_LINUX_64BIT_KERNEL) && !defined(AFS_ALPHA_LINUX20_ENV) && !defined(AFS_IA64_LINUX20_ENV) && !defined(AFS_AMD64_LINUX20_ENV))
1100 static void
1101 iparam32_to_iparam(const struct iparam32 *src, struct iparam *dst)
1102 {
1103     dst->param1 = src->param1;
1104     dst->param2 = src->param2;
1105     dst->param3 = src->param3;
1106     dst->param4 = src->param4;
1107 }
1108 #endif
1109
1110 /*
1111  * If you need to change copyin_iparam(), you may also need to change
1112  * copyin_afs_ioctl().
1113  */
1114
1115 static int
1116 copyin_iparam(caddr_t cmarg, struct iparam *dst)
1117 {
1118     int code;
1119
1120 #if defined(AFS_HPUX_64BIT_ENV)
1121     struct iparam32 dst32;
1122
1123     if (is_32bit(u.u_procp)) {  /* is_32bit() in proc_iface.h */
1124         AFS_COPYIN(cmarg, (caddr_t) & dst32, sizeof dst32, code);
1125         if (!code)
1126             iparam32_to_iparam(&dst32, dst);
1127         return code;
1128     }
1129 #endif /* AFS_HPUX_64BIT_ENV */
1130
1131 #if defined(AFS_SUN57_64BIT_ENV)
1132     struct iparam32 dst32;
1133
1134     if (get_udatamodel() == DATAMODEL_ILP32) {
1135         AFS_COPYIN(cmarg, (caddr_t) & dst32, sizeof dst32, code);
1136         if (!code)
1137             iparam32_to_iparam(&dst32, dst);
1138         return code;
1139     }
1140 #endif /* AFS_SUN57_64BIT_ENV */
1141
1142 #if defined(AFS_LINUX_64BIT_KERNEL) && !defined(AFS_ALPHA_LINUX20_ENV) && !defined(AFS_IA64_LINUX20_ENV) && !defined(AFS_AMD64_LINUX20_ENV)
1143     struct iparam32 dst32;
1144
1145 #ifdef AFS_SPARC64_LINUX24_ENV
1146     if (current->thread.flags & SPARC_FLAG_32BIT)
1147 #elif defined(AFS_SPARC64_LINUX20_ENV)
1148     if (current->tss.flags & SPARC_FLAG_32BIT)
1149 #elif defined(AFS_AMD64_LINUX20_ENV)
1150     if (current->thread.flags & THREAD_IA32)
1151 #elif defined(AFS_PPC64_LINUX20_ENV)
1152     if (current->thread.flags & PPC_FLAG_32BIT) 
1153 #elif defined(AFS_S390X_LINUX20_ENV)
1154     if (current->thread.flags & S390_FLAG_31BIT) 
1155 #else
1156 #error Not done for this linux version
1157 #endif
1158     {
1159         AFS_COPYIN(cmarg, (caddr_t) & dst32, sizeof dst32, code);
1160         if (!code)
1161             iparam32_to_iparam(&dst32, dst);
1162         return code;
1163     }
1164 #endif /* AFS_LINUX_64BIT_KERNEL */
1165
1166     AFS_COPYIN(cmarg, (caddr_t) dst, sizeof *dst, code);
1167     return code;
1168 }
1169
1170 /* Main entry of all afs system calls */
1171 #ifdef  AFS_SUN5_ENV
1172 extern int afs_sinited;
1173
1174 /** The 32 bit OS expects the members of this structure to be 32 bit
1175  * quantities and the 64 bit OS expects them as 64 bit quanties. Hence
1176  * to accomodate both, *long* is used instead of afs_int32
1177  */
1178
1179 #ifdef AFS_SUN57_ENV
1180 struct afssysa {
1181     long syscall;
1182     long parm1;
1183     long parm2;
1184     long parm3;
1185     long parm4;
1186     long parm5;
1187     long parm6;
1188 };
1189 #else
1190 struct afssysa {
1191     afs_int32 syscall;
1192     afs_int32 parm1;
1193     afs_int32 parm2;
1194     afs_int32 parm3;
1195     afs_int32 parm4;
1196     afs_int32 parm5;
1197     afs_int32 parm6;
1198 };
1199 #endif
1200
1201 Afs_syscall(register struct afssysa *uap, rval_t * rvp)
1202 {
1203     int *retval = &rvp->r_val1;
1204 #else /* AFS_SUN5_ENV */
1205 #if     defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
1206 int
1207 afs3_syscall(p, args, retval)
1208 #ifdef AFS_FBSD50_ENV
1209      struct thread *p;
1210 #else
1211      struct proc *p;
1212 #endif
1213      void *args;
1214      int *retval;
1215 {
1216     register struct a {
1217         long syscall;
1218         long parm1;
1219         long parm2;
1220         long parm3;
1221         long parm4;
1222         long parm5;
1223         long parm6;
1224     } *uap = (struct a *)args;
1225 #else /* AFS_OSF_ENV */
1226 #ifdef AFS_LINUX20_ENV
1227 struct afssysargs {
1228     long syscall;
1229     long parm1;
1230     long parm2;
1231     long parm3;
1232     long parm4;
1233     long parm5;
1234     long parm6;                 /* not actually used - should be removed */
1235 };
1236 /* Linux system calls only set up for 5 arguments. */
1237 asmlinkage long
1238 afs_syscall(long syscall, long parm1, long parm2, long parm3, long parm4)
1239 {
1240     struct afssysargs args, *uap = &args;
1241     long linux_ret = 0;
1242     long *retval = &linux_ret;
1243     long eparm[4];              /* matches AFSCALL_ICL in fstrace.c */
1244 #ifdef AFS_SPARC64_LINUX24_ENV
1245     afs_int32 eparm32[4];
1246 #endif
1247     /* eparm is also used by AFSCALL_CALL in afsd.c */
1248 #else
1249 #if defined(UKERNEL)
1250 Afs_syscall()
1251 {
1252     register struct a {
1253         long syscall;
1254         long parm1;
1255         long parm2;
1256         long parm3;
1257         long parm4;
1258         long parm5;
1259         long parm6;
1260     } *uap = (struct a *)u.u_ap;
1261 #else /* UKERNEL */
1262 int
1263 #if defined(AFS_SUN_ENV) && !defined(AFS_SUN5_ENV)
1264 afs_syscall()
1265 #else
1266 Afs_syscall()
1267 #endif                          /* SUN && !SUN5 */
1268 {
1269     register struct a {
1270         long syscall;
1271         long parm1;
1272         long parm2;
1273         long parm3;
1274         long parm4;
1275         long parm5;
1276         long parm6;
1277     } *uap = (struct a *)u.u_ap;
1278 #endif /* UKERNEL */
1279 #if  defined(AFS_DEC_ENV)
1280     int *retval = &u.u_r.r_val1;
1281 #elif defined(AFS_HPUX_ENV)
1282     long *retval = &u.u_rval1;
1283 #else
1284     int *retval = &u.u_rval1;
1285 #endif
1286 #endif /* AFS_LINUX20_ENV */
1287 #endif /* AFS_OSF_ENV */
1288 #endif /* AFS_SUN5_ENV */
1289     register int code = 0;
1290
1291     AFS_STATCNT(afs_syscall);
1292 #ifdef        AFS_SUN5_ENV
1293     rvp->r_vals = 0;
1294     if (!afs_sinited) {
1295         return (ENODEV);
1296     }
1297 #endif
1298 #ifdef AFS_LINUX20_ENV
1299     lock_kernel();
1300     /* setup uap for use below - pull out the magic decoder ring to know
1301      * which syscalls have folded argument lists.
1302      */
1303     uap->syscall = syscall;
1304     uap->parm1 = parm1;
1305     uap->parm2 = parm2;
1306     uap->parm3 = parm3;
1307     if (syscall == AFSCALL_ICL || syscall == AFSCALL_CALL) {
1308 #ifdef AFS_SPARC64_LINUX24_ENV
1309 /* from arch/sparc64/kernel/sys_sparc32.c */
1310 #define AA(__x)                                \
1311 ({     unsigned long __ret;            \
1312        __asm__ ("srl   %0, 0, %0"      \
1313                 : "=r" (__ret)         \
1314                 : "0" (__x));          \
1315        __ret;                          \
1316 })
1317
1318
1319         if (current->thread.flags & SPARC_FLAG_32BIT) {
1320             AFS_COPYIN((char *)parm4, (char *)eparm32, sizeof(eparm32), code);
1321             eparm[0] = AA(eparm32[0]);
1322             eparm[1] = AA(eparm32[1]);
1323             eparm[2] = AA(eparm32[2]);
1324 #undef AA
1325         } else
1326 #endif
1327             AFS_COPYIN((char *)parm4, (char *)eparm, sizeof(eparm), code);
1328         uap->parm4 = eparm[0];
1329         uap->parm5 = eparm[1];
1330         uap->parm6 = eparm[2];
1331     } else {
1332         uap->parm4 = parm4;
1333         uap->parm5 = 0;
1334         uap->parm6 = 0;
1335     }
1336 #endif
1337
1338 #if defined(AFS_HPUX_ENV)
1339     /*
1340      * There used to be code here (duplicated from osi_Init()) for
1341      * initializing the semaphore used by AFS_GLOCK().  Was the
1342      * duplication to handle the case of a dynamically loaded kernel
1343      * module?
1344      */
1345     osi_InitGlock();
1346 #endif
1347     if (uap->syscall == AFSCALL_CALL) {
1348 #ifdef  AFS_SUN5_ENV
1349         code =
1350             afs_syscall_call(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1351                              uap->parm5, uap->parm6, rvp, CRED());
1352 #else
1353         code =
1354             afs_syscall_call(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1355                              uap->parm5, uap->parm6);
1356 #endif
1357     } else if (uap->syscall == AFSCALL_SETPAG) {
1358 #ifdef  AFS_SUN5_ENV
1359         register proc_t *procp;
1360
1361         procp = ttoproc(curthread);
1362         AFS_GLOCK();
1363         code = afs_setpag(&procp->p_cred);
1364         AFS_GUNLOCK();
1365 #else
1366         AFS_GLOCK();
1367 #if     defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
1368         code = afs_setpag(p, args, retval);
1369 #else /* AFS_OSF_ENV */
1370         code = afs_setpag();
1371 #endif
1372         AFS_GUNLOCK();
1373 #endif
1374     } else if (uap->syscall == AFSCALL_PIOCTL) {
1375         AFS_GLOCK();
1376 #if defined(AFS_SUN5_ENV)
1377         code =
1378             afs_syscall_pioctl(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1379                                rvp, CRED());
1380 #elif defined(AFS_FBSD50_ENV)
1381         code =
1382             afs_syscall_pioctl(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1383                                p->td_ucred);
1384 #elif defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
1385         code =
1386             afs_syscall_pioctl(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1387                                p->p_cred->pc_ucred);
1388 #else
1389         code =
1390             afs_syscall_pioctl(uap->parm1, uap->parm2, uap->parm3,
1391                                uap->parm4);
1392 #endif
1393         AFS_GUNLOCK();
1394     } else if (uap->syscall == AFSCALL_ICREATE) {
1395         struct iparam iparams;
1396
1397         code = copyin_iparam((char *)uap->parm3, &iparams);
1398         if (code) {
1399 #if defined(KERNEL_HAVE_UERROR)
1400             setuerror(code);
1401 #endif
1402         } else
1403 #ifdef  AFS_SUN5_ENV
1404             code =
1405                 afs_syscall_icreate(uap->parm1, uap->parm2, iparams.param1,
1406                                     iparams.param2, iparams.param3,
1407                                     iparams.param4, rvp, CRED());
1408 #else
1409             code =
1410                 afs_syscall_icreate(uap->parm1, uap->parm2, iparams.param1,
1411                                     iparams.param2,
1412 #if defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
1413                                     iparams.param3, iparams.param4, retval);
1414 #else
1415                                     iparams.param3, iparams.param4);
1416 #endif
1417 #endif /* AFS_SUN5_ENV */
1418     } else if (uap->syscall == AFSCALL_IOPEN) {
1419 #ifdef  AFS_SUN5_ENV
1420         code =
1421             afs_syscall_iopen(uap->parm1, uap->parm2, uap->parm3, rvp,
1422                               CRED());
1423 #else
1424 #if defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
1425         code = afs_syscall_iopen(uap->parm1, uap->parm2, uap->parm3, retval);
1426 #else
1427         code = afs_syscall_iopen(uap->parm1, uap->parm2, uap->parm3);
1428 #endif
1429 #endif /* AFS_SUN5_ENV */
1430     } else if (uap->syscall == AFSCALL_IDEC) {
1431 #ifdef  AFS_SUN5_ENV
1432         code =
1433             afs_syscall_iincdec(uap->parm1, uap->parm2, uap->parm3, -1, rvp,
1434                                 CRED());
1435 #else
1436         code = afs_syscall_iincdec(uap->parm1, uap->parm2, uap->parm3, -1);
1437 #endif /* AFS_SUN5_ENV */
1438     } else if (uap->syscall == AFSCALL_IINC) {
1439 #ifdef  AFS_SUN5_ENV
1440         code =
1441             afs_syscall_iincdec(uap->parm1, uap->parm2, uap->parm3, 1, rvp,
1442                                 CRED());
1443 #else
1444         code = afs_syscall_iincdec(uap->parm1, uap->parm2, uap->parm3, 1);
1445 #endif /* AFS_SUN5_ENV */
1446     } else if (uap->syscall == AFSCALL_ICL) {
1447         AFS_GLOCK();
1448         code =
1449             Afscall_icl(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1450                         uap->parm5, retval);
1451         AFS_GUNLOCK();
1452 #ifdef AFS_LINUX20_ENV
1453         if (!code) {
1454             /* ICL commands can return values. */
1455             code = -linux_ret;  /* Gets negated again at exit below */
1456         }
1457 #else
1458         if (code) {
1459 #if defined(KERNEL_HAVE_UERROR)
1460             setuerror(code);
1461 #endif
1462         }
1463 #endif /* !AFS_LINUX20_ENV */
1464     } else {
1465 #if defined(KERNEL_HAVE_UERROR)
1466         setuerror(EINVAL);
1467 #else
1468         code = EINVAL;
1469 #endif
1470     }
1471
1472 #ifdef AFS_LINUX20_ENV
1473     code = -code;
1474     unlock_kernel();
1475 #endif
1476     return code;
1477 }
1478 #endif /* AFS_SGI_ENV */
1479 #endif /* !AFS_AIX32_ENV       */
1480
1481 /*
1482  * Initstate in the range 0 < x < 100 are early initialization states.
1483  * Initstate of 100 means a AFSOP_START operation has been done.  After this,
1484  *  the cache may be initialized.
1485  * Initstate of 101 means a AFSOP_GO operation has been done.  This operation
1486  *  is done after all the cache initialization has been done.
1487  * Initstate of 200 means that the volume has been looked up once, possibly
1488  *  incorrectly.
1489  * Initstate of 300 means that the volume has been *successfully* looked up.
1490  */
1491 int
1492 afs_CheckInit(void)
1493 {
1494     register int code = 0;
1495
1496     AFS_STATCNT(afs_CheckInit);
1497     if (afs_initState <= 100)
1498         code = ENXIO;           /* never finished init phase */
1499     else if (afs_initState == 101) {    /* init done, wait for afs_daemon */
1500         while (afs_initState < 200)
1501             afs_osi_Sleep(&afs_initState);
1502     } else if (afs_initState == 200)
1503         code = ETIMEDOUT;       /* didn't find root volume */
1504     return code;
1505 }
1506
1507 int afs_shuttingdown = 0;
1508 void
1509 afs_shutdown(void)
1510 {
1511     extern short afs_brsDaemons;
1512     extern afs_int32 afs_CheckServerDaemonStarted;
1513     extern struct afs_osi_WaitHandle AFS_WaitHandler, AFS_CSWaitHandler;
1514     extern struct osi_file *afs_cacheInodep;
1515
1516     AFS_STATCNT(afs_shutdown);
1517     if (afs_initState == 0) {
1518         afs_warn("AFS not initialized - not shutting down\n");
1519       return;
1520     }
1521
1522     if (afs_shuttingdown)
1523         return;
1524     afs_shuttingdown = 1;
1525     if (afs_cold_shutdown)
1526         afs_warn("COLD ");
1527     else
1528         afs_warn("WARM ");
1529     afs_warn("shutting down of: CB... ");
1530
1531     afs_termState = AFSOP_STOP_RXCALLBACK;
1532     rx_WakeupServerProcs();
1533 #ifdef AFS_AIX51_ENV
1534     shutdown_rxkernel();
1535 #endif
1536     /* shutdown_rxkernel(); */
1537     while (afs_termState == AFSOP_STOP_RXCALLBACK)
1538         afs_osi_Sleep(&afs_termState);
1539
1540     afs_warn("afs... ");
1541     while (afs_termState == AFSOP_STOP_AFS) {
1542         afs_osi_CancelWait(&AFS_WaitHandler);
1543         afs_osi_Sleep(&afs_termState);
1544     }
1545     if (afs_CheckServerDaemonStarted) {
1546         while (afs_termState == AFSOP_STOP_CS) {
1547             afs_osi_CancelWait(&AFS_CSWaitHandler);
1548             afs_osi_Sleep(&afs_termState);
1549         }
1550     }
1551     afs_warn("BkG... ");
1552     /* Wake-up afs_brsDaemons so that we don't have to wait for a bkg job! */
1553     while (afs_termState == AFSOP_STOP_BKG) {
1554         afs_osi_Wakeup(&afs_brsDaemons);
1555         afs_osi_Sleep(&afs_termState);
1556     }
1557     afs_warn("CTrunc... ");
1558     /* Cancel cache truncate daemon. */
1559     while (afs_termState == AFSOP_STOP_TRUNCDAEMON) {
1560         afs_osi_Wakeup((char *)&afs_CacheTruncateDaemon);
1561         afs_osi_Sleep(&afs_termState);
1562     }
1563 #ifdef AFS_AFSDB_ENV
1564     afs_warn("AFSDB... ");
1565     afs_StopAFSDB();
1566     while (afs_termState == AFSOP_STOP_AFSDB)
1567         afs_osi_Sleep(&afs_termState);
1568 #endif
1569 #if     defined(AFS_SUN5_ENV) || defined(RXK_LISTENER_ENV)
1570     afs_warn("RxEvent... ");
1571     /* cancel rx event daemon */
1572     while (afs_termState == AFSOP_STOP_RXEVENT)
1573         afs_osi_Sleep(&afs_termState);
1574 #if defined(RXK_LISTENER_ENV)
1575 #ifndef UKERNEL
1576     afs_warn("UnmaskRxkSignals... ");
1577     afs_osi_UnmaskRxkSignals();
1578 #endif
1579     /* cancel rx listener */
1580     afs_warn("RxListener... ");
1581     osi_StopListener();         /* This closes rx_socket. */
1582     while (afs_termState == AFSOP_STOP_RXK_LISTENER) {
1583         afs_warn("Sleep... ");
1584         afs_osi_Sleep(&afs_termState);
1585     }
1586 #endif
1587 #else
1588     afs_termState = AFSOP_STOP_COMPLETE;
1589 #endif
1590     afs_warn("\n");
1591
1592     /* Close file only after daemons which can write to it are stopped. */
1593     if (afs_cacheInodep) {      /* memcache won't set this */
1594         osi_UFSClose(afs_cacheInodep);  /* Since we always leave it open */
1595         afs_cacheInodep = 0;
1596     }
1597     return;                     /* Just kill daemons for now */
1598 #ifdef notdef
1599     shutdown_CB();
1600     shutdown_AFS();
1601     shutdown_rxkernel();
1602     shutdown_rxevent();
1603     shutdown_rx();
1604     afs_shutdown_BKG();
1605     shutdown_bufferpackage();
1606 #endif
1607 #ifdef AFS_AIX51_ENV
1608     shutdown_daemons();
1609 #endif
1610 #ifdef notdef
1611     shutdown_cache();
1612     shutdown_osi();
1613     shutdown_osinet();
1614     shutdown_osifile();
1615     shutdown_vnodeops();
1616     shutdown_vfsops();
1617     shutdown_exporter();
1618     shutdown_memcache();
1619 #if !defined(AFS_NONFSTRANS) || defined(AFS_AIX_IAUTH_ENV)
1620 #if !defined(AFS_DEC_ENV) && !defined(AFS_OSF_ENV)
1621     /* this routine does not exist in Ultrix systems... 93.01.19 */
1622     shutdown_nfsclnt();
1623 #endif /* AFS_DEC_ENV */
1624 #endif
1625     shutdown_afstest();
1626     /* The following hold the cm stats */
1627 /*
1628     memset(&afs_cmstats, 0, sizeof(struct afs_CMStats));
1629     memset(&afs_stats_cmperf, 0, sizeof(struct afs_stats_CMPerf));
1630     memset(&afs_stats_cmfullperf, 0, sizeof(struct afs_stats_CMFullPerf));
1631 */
1632     afs_warn(" ALL allocated tables\n");
1633     afs_shuttingdown = 0;
1634 #endif
1635 }
1636
1637 void
1638 shutdown_afstest(void)
1639 {
1640     AFS_STATCNT(shutdown_afstest);
1641     afs_initState = afs_termState = afs_setTime = 0;
1642     AFS_Running = afs_CB_Running = 0;
1643     afs_CacheInit_Done = afs_Go_Done = 0;
1644     if (afs_cold_shutdown) {
1645         *afs_rootVolumeName = 0;
1646     }
1647 }
1648
1649
1650 /* In case there is a bunch of dynamically build bkg daemons to free */
1651 void
1652 afs_shutdown_BKG(void)
1653 {
1654     AFS_STATCNT(shutdown_BKG);
1655 }
1656
1657
1658 #if defined(AFS_ALPHA_ENV) || defined(AFS_SGI61_ENV)
1659 /* For SGI 6.2, this can is changed to 1 if it's a 32 bit kernel. */
1660 #if defined(AFS_SGI62_ENV) && defined(KERNEL) && !defined(_K64U64)
1661 int afs_icl_sizeofLong = 1;
1662 #else
1663 int afs_icl_sizeofLong = 2;
1664 #endif /* SGI62 */
1665 #else
1666 #if defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL)
1667 int afs_icl_sizeofLong = 2;
1668 #else
1669 int afs_icl_sizeofLong = 1;
1670 #endif
1671 #endif
1672
1673 int afs_icl_inited = 0;
1674
1675 /* init function, called once, under afs_icl_lock */
1676 int
1677 afs_icl_Init(void)
1678 {
1679     afs_icl_inited = 1;
1680     return 0;
1681 }
1682
1683 extern struct afs_icl_log *afs_icl_FindLog();
1684 extern struct afs_icl_set *afs_icl_FindSet();
1685
1686
1687 static int
1688 Afscall_icl(long opcode, long p1, long p2, long p3, long p4, long *retval)
1689 {
1690     afs_int32 *lp, elts, flags;
1691     register afs_int32 code;
1692     struct afs_icl_log *logp;
1693     struct afs_icl_set *setp;
1694 #if defined(AFS_SGI61_ENV) || defined(AFS_SUN57_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
1695     size_t temp;
1696 #else /* AFS_SGI61_ENV */
1697 #if defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL)
1698     afs_uint64 temp;
1699 #else
1700     afs_uint32 temp;
1701 #endif
1702 #endif /* AFS_SGI61_ENV */
1703     char tname[65];
1704     afs_int32 startCookie;
1705     afs_int32 allocated;
1706     struct afs_icl_log *tlp;
1707
1708 #ifdef  AFS_SUN5_ENV
1709     if (!afs_suser(CRED())) {   /* only root can run this code */
1710         return (EACCES);
1711     }
1712 #else
1713     if (!afs_suser(NULL)) {     /* only root can run this code */
1714 #if defined(KERNEL_HAVE_UERROR)
1715         setuerror(EACCES);
1716         return EACCES;
1717 #else
1718         return EPERM;
1719 #endif
1720     }
1721 #endif
1722     switch (opcode) {
1723     case ICL_OP_COPYOUTCLR:     /* copy out data then clear */
1724     case ICL_OP_COPYOUT:        /* copy ouy data */
1725         /* copyout: p1=logname, p2=&buffer, p3=size(words), p4=&cookie
1726          * return flags<<24 + nwords.
1727          * updates cookie to updated start (not end) if we had to
1728          * skip some records.
1729          */
1730         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1731         if (code)
1732             return code;
1733         AFS_COPYIN((char *)p4, (char *)&startCookie, sizeof(afs_int32), code);
1734         if (code)
1735             return code;
1736         logp = afs_icl_FindLog(tname);
1737         if (!logp)
1738             return ENOENT;
1739 #define BUFFERSIZE      AFS_LRALLOCSIZ
1740         lp = (afs_int32 *) osi_AllocLargeSpace(AFS_LRALLOCSIZ);
1741         elts = BUFFERSIZE / sizeof(afs_int32);
1742         if (p3 < elts)
1743             elts = p3;
1744         flags = (opcode == ICL_OP_COPYOUT) ? 0 : ICL_COPYOUTF_CLRAFTERREAD;
1745         code =
1746             afs_icl_CopyOut(logp, lp, &elts, (afs_uint32 *) & startCookie,
1747                             &flags);
1748         if (code) {
1749             osi_FreeLargeSpace((struct osi_buffer *)lp);
1750             break;
1751         }
1752         AFS_COPYOUT((char *)lp, (char *)p2, elts * sizeof(afs_int32), code);
1753         if (code)
1754             goto done;
1755         AFS_COPYOUT((char *)&startCookie, (char *)p4, sizeof(afs_int32),
1756                     code);
1757         if (code)
1758             goto done;
1759 #if defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL)
1760         if (!(IS64U))
1761             *retval = ((long)((flags << 24) | (elts & 0xffffff))) << 32;
1762         else
1763 #endif
1764             *retval = (flags << 24) | (elts & 0xffffff);
1765       done:
1766         afs_icl_LogRele(logp);
1767         osi_FreeLargeSpace((struct osi_buffer *)lp);
1768         break;
1769
1770     case ICL_OP_ENUMLOGS:       /* enumerate logs */
1771         /* enumerate logs: p1=index, p2=&name, p3=sizeof(name), p4=&size.
1772          * return 0 for success, otherwise error.
1773          */
1774         for (tlp = afs_icl_allLogs; tlp; tlp = tlp->nextp) {
1775             if (p1-- == 0)
1776                 break;
1777         }
1778         if (!tlp)
1779             return ENOENT;      /* past the end of file */
1780         temp = strlen(tlp->name) + 1;
1781         if (temp > p3)
1782             return EINVAL;
1783         AFS_COPYOUT(tlp->name, (char *)p2, temp, code);
1784         if (!code)              /* copy out size of log */
1785             AFS_COPYOUT((char *)&tlp->logSize, (char *)p4, sizeof(afs_int32),
1786                         code);
1787         break;
1788
1789     case ICL_OP_ENUMLOGSBYSET:  /* enumerate logs by set name */
1790         /* enumerate logs: p1=setname, p2=index, p3=&name, p4=sizeof(name).
1791          * return 0 for success, otherwise error.
1792          */
1793         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1794         if (code)
1795             return code;
1796         setp = afs_icl_FindSet(tname);
1797         if (!setp)
1798             return ENOENT;
1799         if (p2 > ICL_LOGSPERSET)
1800             return EINVAL;
1801         if (!(tlp = setp->logs[p2]))
1802             return EBADF;
1803         temp = strlen(tlp->name) + 1;
1804         if (temp > p4)
1805             return EINVAL;
1806         AFS_COPYOUT(tlp->name, (char *)p3, temp, code);
1807         break;
1808
1809     case ICL_OP_CLRLOG: /* clear specified log */
1810         /* zero out the specified log: p1=logname */
1811         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1812         if (code)
1813             return code;
1814         logp = afs_icl_FindLog(tname);
1815         if (!logp)
1816             return ENOENT;
1817         code = afs_icl_ZeroLog(logp);
1818         afs_icl_LogRele(logp);
1819         break;
1820
1821     case ICL_OP_CLRSET: /* clear specified set */
1822         /* zero out the specified set: p1=setname */
1823         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1824         if (code)
1825             return code;
1826         setp = afs_icl_FindSet(tname);
1827         if (!setp)
1828             return ENOENT;
1829         code = afs_icl_ZeroSet(setp);
1830         afs_icl_SetRele(setp);
1831         break;
1832
1833     case ICL_OP_CLRALL: /* clear all logs */
1834         /* zero out all logs -- no args */
1835         code = 0;
1836         ObtainWriteLock(&afs_icl_lock, 178);
1837         for (tlp = afs_icl_allLogs; tlp; tlp = tlp->nextp) {
1838             tlp->refCount++;    /* hold this guy */
1839             ReleaseWriteLock(&afs_icl_lock);
1840             /* don't clear persistent logs */
1841             if ((tlp->states & ICL_LOGF_PERSISTENT) == 0)
1842                 code = afs_icl_ZeroLog(tlp);
1843             ObtainWriteLock(&afs_icl_lock, 179);
1844             if (--tlp->refCount == 0)
1845                 afs_icl_ZapLog(tlp);
1846             if (code)
1847                 break;
1848         }
1849         ReleaseWriteLock(&afs_icl_lock);
1850         break;
1851
1852     case ICL_OP_ENUMSETS:       /* enumerate all sets */
1853         /* enumerate sets: p1=index, p2=&name, p3=sizeof(name), p4=&states.
1854          * return 0 for success, otherwise error.
1855          */
1856         for (setp = afs_icl_allSets; setp; setp = setp->nextp) {
1857             if (p1-- == 0)
1858                 break;
1859         }
1860         if (!setp)
1861             return ENOENT;      /* past the end of file */
1862         temp = strlen(setp->name) + 1;
1863         if (temp > p3)
1864             return EINVAL;
1865         AFS_COPYOUT(setp->name, (char *)p2, temp, code);
1866         if (!code)              /* copy out size of log */
1867             AFS_COPYOUT((char *)&setp->states, (char *)p4, sizeof(afs_int32),
1868                         code);
1869         break;
1870
1871     case ICL_OP_SETSTAT:        /* set status on a set */
1872         /* activate the specified set: p1=setname, p2=op */
1873         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1874         if (code)
1875             return code;
1876         setp = afs_icl_FindSet(tname);
1877         if (!setp)
1878             return ENOENT;
1879         code = afs_icl_SetSetStat(setp, p2);
1880         afs_icl_SetRele(setp);
1881         break;
1882
1883     case ICL_OP_SETSTATALL:     /* set status on all sets */
1884         /* activate the specified set: p1=op */
1885         code = 0;
1886         ObtainWriteLock(&afs_icl_lock, 180);
1887         for (setp = afs_icl_allSets; setp; setp = setp->nextp) {
1888             setp->refCount++;   /* hold this guy */
1889             ReleaseWriteLock(&afs_icl_lock);
1890             /* don't set states on persistent sets */
1891             if ((setp->states & ICL_SETF_PERSISTENT) == 0)
1892                 code = afs_icl_SetSetStat(setp, p1);
1893             ObtainWriteLock(&afs_icl_lock, 181);
1894             if (--setp->refCount == 0)
1895                 afs_icl_ZapSet(setp);
1896             if (code)
1897                 break;
1898         }
1899         ReleaseWriteLock(&afs_icl_lock);
1900         break;
1901
1902     case ICL_OP_SETLOGSIZE:     /* set size of log */
1903         /* set the size of the specified log: p1=logname, p2=size (in words) */
1904         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1905         if (code)
1906             return code;
1907         logp = afs_icl_FindLog(tname);
1908         if (!logp)
1909             return ENOENT;
1910         code = afs_icl_LogSetSize(logp, p2);
1911         afs_icl_LogRele(logp);
1912         break;
1913
1914     case ICL_OP_GETLOGINFO:     /* get size of log */
1915         /* zero out the specified log: p1=logname, p2=&logSize, p3=&allocated */
1916         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1917         if (code)
1918             return code;
1919         logp = afs_icl_FindLog(tname);
1920         if (!logp)
1921             return ENOENT;
1922         allocated = !!logp->datap;
1923         AFS_COPYOUT((char *)&logp->logSize, (char *)p2, sizeof(afs_int32),
1924                     code);
1925         if (!code)
1926             AFS_COPYOUT((char *)&allocated, (char *)p3, sizeof(afs_int32),
1927                         code);
1928         afs_icl_LogRele(logp);
1929         break;
1930
1931     case ICL_OP_GETSETINFO:     /* get state of set */
1932         /* zero out the specified set: p1=setname, p2=&state */
1933         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1934         if (code)
1935             return code;
1936         setp = afs_icl_FindSet(tname);
1937         if (!setp)
1938             return ENOENT;
1939         AFS_COPYOUT((char *)&setp->states, (char *)p2, sizeof(afs_int32),
1940                     code);
1941         afs_icl_SetRele(setp);
1942         break;
1943
1944     default:
1945         code = EINVAL;
1946     }
1947
1948     return code;
1949 }
1950
1951
1952 afs_lock_t afs_icl_lock;
1953
1954 /* exported routine: a 4 parameter event */
1955 int
1956 afs_icl_Event4(register struct afs_icl_set *setp, afs_int32 eventID,
1957                afs_int32 lAndT, long p1, long p2, long p3, long p4)
1958 {
1959     afs_int32 mask;
1960     register int i;
1961     register afs_int32 tmask;
1962     int ix;
1963
1964     /* If things aren't init'ed yet (or the set is inactive), don't panic */
1965     if (!ICL_SETACTIVE(setp))
1966         return 0;
1967
1968     AFS_ASSERT_GLOCK();
1969     mask = lAndT >> 24 & 0xff;  /* mask of which logs to log to */
1970     ix = ICL_EVENTBYTE(eventID);
1971     ObtainReadLock(&setp->lock);
1972     if (setp->eventFlags[ix] & ICL_EVENTMASK(eventID)) {
1973         for (i = 0, tmask = 1; i < ICL_LOGSPERSET; i++, tmask <<= 1) {
1974             if (mask & tmask) {
1975                 afs_icl_AppendRecord(setp->logs[i], eventID, lAndT & 0xffffff,
1976                                      p1, p2, p3, p4);
1977             }
1978             mask &= ~tmask;
1979             if (mask == 0)
1980                 break;          /* break early */
1981         }
1982     }
1983     ReleaseReadLock(&setp->lock);
1984     return 0;
1985 }
1986
1987 /* Next 4 routines should be implemented via var-args or something.
1988  * Whole purpose is to avoid compiler warnings about parameter # mismatches.
1989  * Otherwise, could call afs_icl_Event4 directly.
1990  */
1991 int
1992 afs_icl_Event3(register struct afs_icl_set *setp, afs_int32 eventID,
1993                afs_int32 lAndT, long p1, long p2, long p3)
1994 {
1995     return afs_icl_Event4(setp, eventID, lAndT, p1, p2, p3, (long)0);
1996 }
1997
1998 int
1999 afs_icl_Event2(register struct afs_icl_set *setp, afs_int32 eventID,
2000                afs_int32 lAndT, long p1, long p2)
2001 {
2002     return afs_icl_Event4(setp, eventID, lAndT, p1, p2, (long)0, (long)0);
2003 }
2004
2005 int
2006 afs_icl_Event1(register struct afs_icl_set *setp, afs_int32 eventID,
2007                afs_int32 lAndT, long p1)
2008 {
2009     return afs_icl_Event4(setp, eventID, lAndT, p1, (long)0, (long)0,
2010                           (long)0);
2011 }
2012
2013 int
2014 afs_icl_Event0(register struct afs_icl_set *setp, afs_int32 eventID,
2015                afs_int32 lAndT)
2016 {
2017     return afs_icl_Event4(setp, eventID, lAndT, (long)0, (long)0, (long)0,
2018                           (long)0);
2019 }
2020
2021 struct afs_icl_log *afs_icl_allLogs = 0;
2022
2023 /* function to purge records from the start of the log, until there
2024  * is at least minSpace long's worth of space available without
2025  * making the head and the tail point to the same word.
2026  *
2027  * Log must be write-locked.
2028  */
2029 static void
2030 afs_icl_GetLogSpace(register struct afs_icl_log *logp, afs_int32 minSpace)
2031 {
2032     register unsigned int tsize;
2033
2034     while (logp->logSize - logp->logElements <= minSpace) {
2035         /* eat a record */
2036         tsize = ((logp->datap[logp->firstUsed]) >> 24) & 0xff;
2037         logp->logElements -= tsize;
2038         logp->firstUsed += tsize;
2039         if (logp->firstUsed >= logp->logSize)
2040             logp->firstUsed -= logp->logSize;
2041         logp->baseCookie += tsize;
2042     }
2043 }
2044
2045 /* append string astr to buffer, including terminating null char.
2046  *
2047  * log must be write-locked.
2048  */
2049 #define ICL_CHARSPERLONG        4
2050 static void
2051 afs_icl_AppendString(struct afs_icl_log *logp, char *astr)
2052 {
2053     char *op;                   /* ptr to char to write */
2054     int tc;
2055     register int bib;           /* bytes in buffer */
2056
2057     bib = 0;
2058     op = (char *)&(logp->datap[logp->firstFree]);
2059     while (1) {
2060         tc = *astr++;
2061         *op++ = tc;
2062         if (++bib >= ICL_CHARSPERLONG) {
2063             /* new word */
2064             bib = 0;
2065             if (++(logp->firstFree) >= logp->logSize) {
2066                 logp->firstFree = 0;
2067                 op = (char *)&(logp->datap[0]);
2068             }
2069             logp->logElements++;
2070         }
2071         if (tc == 0)
2072             break;
2073     }
2074     if (bib > 0) {
2075         /* if we've used this word at all, allocate it */
2076         if (++(logp->firstFree) >= logp->logSize) {
2077             logp->firstFree = 0;
2078         }
2079         logp->logElements++;
2080     }
2081 }
2082
2083 /* add a long to the log, ignoring overflow (checked already) */
2084 #define ICL_APPENDINT32(lp, x) \
2085     MACRO_BEGIN \
2086         (lp)->datap[(lp)->firstFree] = (x); \
2087         if (++((lp)->firstFree) >= (lp)->logSize) { \
2088                 (lp)->firstFree = 0; \
2089         } \
2090         (lp)->logElements++; \
2091     MACRO_END
2092
2093 #if defined(AFS_ALPHA_ENV) || (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG==64)) || (defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL))
2094 #define ICL_APPENDLONG(lp, x) \
2095     MACRO_BEGIN \
2096         ICL_APPENDINT32((lp), ((x) >> 32) & 0xffffffffL); \
2097         ICL_APPENDINT32((lp), (x) & 0xffffffffL); \
2098     MACRO_END
2099
2100 #else /* AFS_ALPHA_ENV */
2101 #define ICL_APPENDLONG(lp, x) ICL_APPENDINT32((lp), (x))
2102 #endif /* AFS_ALPHA_ENV */
2103
2104 /* routine to tell whether we're dealing with the address or the
2105  * object itself
2106  */
2107 int
2108 afs_icl_UseAddr(int type)
2109 {
2110     if (type == ICL_TYPE_HYPER || type == ICL_TYPE_STRING
2111         || type == ICL_TYPE_FID || type == ICL_TYPE_INT64)
2112         return 1;
2113     else
2114         return 0;
2115 }
2116
2117 /* Function to append a record to the log.  Written for speed
2118  * since we know that we're going to have to make this work fast
2119  * pretty soon, anyway.  The log must be unlocked.
2120  */
2121
2122 void
2123 afs_icl_AppendRecord(register struct afs_icl_log *logp, afs_int32 op,
2124                      afs_int32 types, long p1, long p2, long p3, long p4)
2125 {
2126     int rsize;                  /* record size in longs */
2127     register int tsize;         /* temp size */
2128     osi_timeval_t tv;
2129     int t1, t2, t3, t4;
2130
2131     t4 = types & 0x3f;          /* decode types */
2132     types >>= 6;
2133     t3 = types & 0x3f;
2134     types >>= 6;
2135     t2 = types & 0x3f;
2136     types >>= 6;
2137     t1 = types & 0x3f;
2138
2139     osi_GetTime(&tv);           /* It panics for solaris if inside */
2140     ObtainWriteLock(&logp->lock, 182);
2141     if (!logp->datap) {
2142         ReleaseWriteLock(&logp->lock);
2143         return;
2144     }
2145
2146     /* get timestamp as # of microseconds since some time that doesn't
2147      * change that often.  This algorithm ticks over every 20 minutes
2148      * or so (1000 seconds).  Write a timestamp record if it has.
2149      */
2150     if (tv.tv_sec - logp->lastTS > 1024) {
2151         /* the timer has wrapped -- write a timestamp record */
2152         if (logp->logSize - logp->logElements <= 5)
2153             afs_icl_GetLogSpace(logp, 5);
2154
2155         ICL_APPENDINT32(logp,
2156                         (afs_int32) (5 << 24) + (ICL_TYPE_UNIXDATE << 18));
2157         ICL_APPENDINT32(logp, (afs_int32) ICL_INFO_TIMESTAMP);
2158         ICL_APPENDINT32(logp, (afs_int32) 0);   /* use thread ID zero for clocks */
2159         ICL_APPENDINT32(logp,
2160                         (afs_int32) (tv.tv_sec & 0x3ff) * 1000000 +
2161                         tv.tv_usec);
2162         ICL_APPENDINT32(logp, (afs_int32) tv.tv_sec);
2163
2164         logp->lastTS = tv.tv_sec;
2165     }
2166
2167     rsize = 4;                  /* base case */
2168     if (t1) {
2169         /* compute size of parameter p1.  Only tricky case is string.
2170          * In that case, we have to call strlen to get the string length.
2171          */
2172         ICL_SIZEHACK(t1, p1);
2173     }
2174     if (t2) {
2175         /* compute size of parameter p2.  Only tricky case is string.
2176          * In that case, we have to call strlen to get the string length.
2177          */
2178         ICL_SIZEHACK(t2, p2);
2179     }
2180     if (t3) {
2181         /* compute size of parameter p3.  Only tricky case is string.
2182          * In that case, we have to call strlen to get the string length.
2183          */
2184         ICL_SIZEHACK(t3, p3);
2185     }
2186     if (t4) {
2187         /* compute size of parameter p4.  Only tricky case is string.
2188          * In that case, we have to call strlen to get the string length.
2189          */
2190         ICL_SIZEHACK(t4, p4);
2191     }
2192
2193     /* At this point, we've computed all of the parameter sizes, and
2194      * have in rsize the size of the entire record we want to append.
2195      * Next, we check that we actually have room in the log to do this
2196      * work, and then we do the append.
2197      */
2198     if (rsize > 255) {
2199         ReleaseWriteLock(&logp->lock);
2200         return;                 /* log record too big to express */
2201     }
2202
2203     if (logp->logSize - logp->logElements <= rsize)
2204         afs_icl_GetLogSpace(logp, rsize);
2205
2206     ICL_APPENDINT32(logp,
2207                     (afs_int32) (rsize << 24) + (t1 << 18) + (t2 << 12) +
2208                     (t3 << 6) + t4);
2209     ICL_APPENDINT32(logp, (afs_int32) op);
2210     ICL_APPENDINT32(logp, (afs_int32) osi_ThreadUnique());
2211     ICL_APPENDINT32(logp,
2212                     (afs_int32) (tv.tv_sec & 0x3ff) * 1000000 + tv.tv_usec);
2213
2214     if (t1) {
2215         /* marshall parameter 1 now */
2216         if (t1 == ICL_TYPE_STRING) {
2217             afs_icl_AppendString(logp, (char *)p1);
2218         } else if (t1 == ICL_TYPE_HYPER) {
2219             ICL_APPENDINT32(logp,
2220                             (afs_int32) ((struct afs_hyper_t *)p1)->high);
2221             ICL_APPENDINT32(logp,
2222                             (afs_int32) ((struct afs_hyper_t *)p1)->low);
2223         } else if (t1 == ICL_TYPE_INT64) {
2224 #ifdef AFSLITTLE_ENDIAN
2225 #ifdef AFS_64BIT_CLIENT
2226             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[1]);
2227             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[0]);
2228 #else /* AFS_64BIT_CLIENT */
2229             ICL_APPENDINT32(logp, (afs_int32) p1);
2230             ICL_APPENDINT32(logp, (afs_int32) 0);
2231 #endif /* AFS_64BIT_CLIENT */
2232 #else /* AFSLITTLE_ENDIAN */
2233 #ifdef AFS_64BIT_CLIENT
2234             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[0]);
2235             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[1]);
2236 #else /* AFS_64BIT_CLIENT */
2237             ICL_APPENDINT32(logp, (afs_int32) 0);
2238             ICL_APPENDINT32(logp, (afs_int32) p1);
2239 #endif /* AFS_64BIT_CLIENT */
2240 #endif /* AFSLITTLE_ENDIAN */
2241         } else if (t1 == ICL_TYPE_FID) {
2242             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[0]);
2243             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[1]);
2244             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[2]);
2245             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[3]);
2246         }
2247 #if defined(AFS_ALPHA_ENV) || (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG==64)) || (defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL))
2248         else if (t1 == ICL_TYPE_INT32)
2249             ICL_APPENDINT32(logp, (afs_int32) p1);
2250 #endif /* AFS_ALPHA_ENV */
2251         else
2252             ICL_APPENDLONG(logp, p1);
2253     }
2254     if (t2) {
2255         /* marshall parameter 2 now */
2256         if (t2 == ICL_TYPE_STRING)
2257             afs_icl_AppendString(logp, (char *)p2);
2258         else if (t2 == ICL_TYPE_HYPER) {
2259             ICL_APPENDINT32(logp,
2260                             (afs_int32) ((struct afs_hyper_t *)p2)->high);
2261             ICL_APPENDINT32(logp,
2262                             (afs_int32) ((struct afs_hyper_t *)p2)->low);
2263         } else if (t2 == ICL_TYPE_INT64) {
2264 #ifdef AFSLITTLE_ENDIAN
2265 #ifdef AFS_64BIT_CLIENT
2266             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[1]);
2267             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[0]);
2268 #else /* AFS_64BIT_CLIENT */
2269             ICL_APPENDINT32(logp, (afs_int32) p2);
2270             ICL_APPENDINT32(logp, (afs_int32) 0);
2271 #endif /* AFS_64BIT_CLIENT */
2272 #else /* AFSLITTLE_ENDIAN */
2273 #ifdef AFS_64BIT_CLIENT
2274             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[0]);
2275             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[1]);
2276 #else /* AFS_64BIT_CLIENT */
2277             ICL_APPENDINT32(logp, (afs_int32) 0);
2278             ICL_APPENDINT32(logp, (afs_int32) p2);
2279 #endif /* AFS_64BIT_CLIENT */
2280 #endif /* AFSLITTLE_ENDIAN */
2281         } else if (t2 == ICL_TYPE_FID) {
2282             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[0]);
2283             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[1]);
2284             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[2]);
2285             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[3]);
2286         }
2287 #if defined(AFS_ALPHA_ENV) || (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG==64)) || (defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL))
2288         else if (t2 == ICL_TYPE_INT32)
2289             ICL_APPENDINT32(logp, (afs_int32) p2);
2290 #endif /* AFS_ALPHA_ENV */
2291         else
2292             ICL_APPENDLONG(logp, p2);
2293     }
2294     if (t3) {
2295         /* marshall parameter 3 now */
2296         if (t3 == ICL_TYPE_STRING)
2297             afs_icl_AppendString(logp, (char *)p3);
2298         else if (t3 == ICL_TYPE_HYPER) {
2299             ICL_APPENDINT32(logp,
2300                             (afs_int32) ((struct afs_hyper_t *)p3)->high);
2301             ICL_APPENDINT32(logp,
2302                             (afs_int32) ((struct afs_hyper_t *)p3)->low);
2303         } else if (t3 == ICL_TYPE_INT64) {
2304 #ifdef AFSLITTLE_ENDIAN
2305 #ifdef AFS_64BIT_CLIENT
2306             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[1]);
2307             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[0]);
2308 #else /* AFS_64BIT_CLIENT */
2309             ICL_APPENDINT32(logp, (afs_int32) p3);
2310             ICL_APPENDINT32(logp, (afs_int32) 0);
2311 #endif /* AFS_64BIT_CLIENT */
2312 #else /* AFSLITTLE_ENDIAN */
2313 #ifdef AFS_64BIT_CLIENT
2314             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[0]);
2315             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[1]);
2316 #else /* AFS_64BIT_CLIENT */
2317             ICL_APPENDINT32(logp, (afs_int32) 0);
2318             ICL_APPENDINT32(logp, (afs_int32) p3);
2319 #endif /* AFS_64BIT_CLIENT */
2320 #endif /* AFSLITTLE_ENDIAN */
2321         } else if (t3 == ICL_TYPE_FID) {
2322             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[0]);
2323             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[1]);
2324             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[2]);
2325             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[3]);
2326         }
2327 #if defined(AFS_ALPHA_ENV) || (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG==64)) || (defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL))
2328         else if (t3 == ICL_TYPE_INT32)
2329             ICL_APPENDINT32(logp, (afs_int32) p3);
2330 #endif /* AFS_ALPHA_ENV */
2331         else
2332             ICL_APPENDLONG(logp, p3);
2333     }
2334     if (t4) {
2335         /* marshall parameter 4 now */
2336         if (t4 == ICL_TYPE_STRING)
2337             afs_icl_AppendString(logp, (char *)p4);
2338         else if (t4 == ICL_TYPE_HYPER) {
2339             ICL_APPENDINT32(logp,
2340                             (afs_int32) ((struct afs_hyper_t *)p4)->high);
2341             ICL_APPENDINT32(logp,
2342                             (afs_int32) ((struct afs_hyper_t *)p4)->low);
2343         } else if (t4 == ICL_TYPE_INT64) {
2344 #ifdef AFSLITTLE_ENDIAN
2345 #ifdef AFS_64BIT_CLIENT
2346             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[1]);
2347             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[0]);
2348 #else /* AFS_64BIT_CLIENT */
2349             ICL_APPENDINT32(logp, (afs_int32) p4);
2350             ICL_APPENDINT32(logp, (afs_int32) 0);
2351 #endif /* AFS_64BIT_CLIENT */
2352 #else /* AFSLITTLE_ENDIAN */
2353 #ifdef AFS_64BIT_CLIENT
2354             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[0]);
2355             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[1]);
2356 #else /* AFS_64BIT_CLIENT */
2357             ICL_APPENDINT32(logp, (afs_int32) 0);
2358             ICL_APPENDINT32(logp, (afs_int32) p4);
2359 #endif /* AFS_64BIT_CLIENT */
2360 #endif /* AFSLITTLE_ENDIAN */
2361         } else if (t4 == ICL_TYPE_FID) {
2362             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[0]);
2363             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[1]);
2364             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[2]);
2365             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[3]);
2366         }
2367 #if defined(AFS_ALPHA_ENV) || (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG==64)) || (defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL))
2368         else if (t4 == ICL_TYPE_INT32)
2369             ICL_APPENDINT32(logp, (afs_int32) p4);
2370 #endif /* AFS_ALPHA_ENV */
2371         else
2372             ICL_APPENDLONG(logp, p4);
2373     }
2374     ReleaseWriteLock(&logp->lock);
2375 }
2376
2377 /* create a log with size logSize; return it in *outLogpp and tag
2378  * it with name "name."
2379  */
2380 int
2381 afs_icl_CreateLog(char *name, afs_int32 logSize,
2382                   struct afs_icl_log **outLogpp)
2383 {
2384     return afs_icl_CreateLogWithFlags(name, logSize, /*flags */ 0, outLogpp);
2385 }
2386
2387 /* create a log with size logSize; return it in *outLogpp and tag
2388  * it with name "name."  'flags' can be set to make the log unclearable.
2389  */
2390 int
2391 afs_icl_CreateLogWithFlags(char *name, afs_int32 logSize, afs_uint32 flags,
2392                            struct afs_icl_log **outLogpp)
2393 {
2394     register struct afs_icl_log *logp;
2395
2396     /* add into global list under lock */
2397     ObtainWriteLock(&afs_icl_lock, 183);
2398     if (!afs_icl_inited)
2399         afs_icl_Init();
2400
2401     for (logp = afs_icl_allLogs; logp; logp = logp->nextp) {
2402         if (strcmp(logp->name, name) == 0) {
2403             /* found it already created, just return it */
2404             logp->refCount++;
2405             *outLogpp = logp;
2406             if (flags & ICL_CRLOG_FLAG_PERSISTENT) {
2407                 ObtainWriteLock(&logp->lock, 184);
2408                 logp->states |= ICL_LOGF_PERSISTENT;
2409                 ReleaseWriteLock(&logp->lock);
2410             }
2411             ReleaseWriteLock(&afs_icl_lock);
2412             return 0;
2413         }
2414     }
2415
2416     logp = (struct afs_icl_log *)
2417         osi_AllocSmallSpace(sizeof(struct afs_icl_log));
2418     memset((caddr_t) logp, 0, sizeof(*logp));
2419
2420     logp->refCount = 1;
2421     logp->name = osi_AllocSmallSpace(strlen(name) + 1);
2422     strcpy(logp->name, name);
2423     LOCK_INIT(&logp->lock, "logp lock");
2424     logp->logSize = logSize;
2425     logp->datap = NULL;         /* don't allocate it until we need it */
2426
2427     if (flags & ICL_CRLOG_FLAG_PERSISTENT)
2428         logp->states |= ICL_LOGF_PERSISTENT;
2429
2430     logp->nextp = afs_icl_allLogs;
2431     afs_icl_allLogs = logp;
2432     ReleaseWriteLock(&afs_icl_lock);
2433
2434     *outLogpp = logp;
2435     return 0;
2436 }
2437
2438 /* called with a log, a pointer to a buffer, the size of the buffer
2439  * (in *bufSizep), the starting cookie (in *cookiep, use 0 at the start)
2440  * and returns data in the provided buffer, and returns output flags
2441  * in *flagsp.  The flag ICL_COPYOUTF_MISSEDSOME is set if we can't
2442  * find the record with cookie value cookie.
2443  */
2444 int
2445 afs_icl_CopyOut(register struct afs_icl_log *logp, afs_int32 * bufferp,
2446                 afs_int32 * bufSizep, afs_uint32 * cookiep,
2447                 afs_int32 * flagsp)
2448 {
2449     afs_int32 nwords;           /* number of words to copy out */
2450     afs_uint32 startCookie;     /* first cookie to use */
2451     afs_int32 outWords;         /* words we've copied out */
2452     afs_int32 inWords;          /* max words to copy out */
2453     afs_int32 code;             /* return code */
2454     afs_int32 ix;               /* index we're copying from */
2455     afs_int32 outFlags;         /* return flags */
2456     afs_int32 inFlags;          /* flags passed in */
2457     afs_int32 end;
2458
2459     inWords = *bufSizep;        /* max to copy out */
2460     outWords = 0;               /* amount copied out */
2461     startCookie = *cookiep;
2462     outFlags = 0;
2463     inFlags = *flagsp;
2464     code = 0;
2465
2466     ObtainWriteLock(&logp->lock, 185);
2467     if (!logp->datap) {
2468         ReleaseWriteLock(&logp->lock);
2469         goto done;
2470     }
2471
2472     /* first, compute the index of the start cookie we've been passed */
2473     while (1) {
2474         /* (re-)compute where we should start */
2475         if (startCookie < logp->baseCookie) {
2476             if (startCookie)    /* missed some output */
2477                 outFlags |= ICL_COPYOUTF_MISSEDSOME;
2478             /* skip to the first available record */
2479             startCookie = logp->baseCookie;
2480             *cookiep = startCookie;
2481         }
2482
2483         /* compute where we find the first element to copy out */
2484         ix = logp->firstUsed + startCookie - logp->baseCookie;
2485         if (ix >= logp->logSize)
2486             ix -= logp->logSize;
2487
2488         /* if have some data now, break out and process it */
2489         if (startCookie - logp->baseCookie < logp->logElements)
2490             break;
2491
2492         /* At end of log, so clear it if we need to */
2493         if (inFlags & ICL_COPYOUTF_CLRAFTERREAD) {
2494             logp->firstUsed = logp->firstFree = 0;
2495             logp->logElements = 0;
2496         }
2497         /* otherwise, either wait for the data to arrive, or return */
2498         if (!(inFlags & ICL_COPYOUTF_WAITIO)) {
2499             ReleaseWriteLock(&logp->lock);
2500             code = 0;
2501             goto done;
2502         }
2503         logp->states |= ICL_LOGF_WAITING;
2504         ReleaseWriteLock(&logp->lock);
2505         afs_osi_Sleep(&logp->lock);
2506         ObtainWriteLock(&logp->lock, 186);
2507     }
2508     /* copy out data from ix to logSize or firstFree, depending
2509      * upon whether firstUsed <= firstFree (no wrap) or otherwise.
2510      * be careful not to copy out more than nwords.
2511      */
2512     if (ix >= logp->firstUsed) {
2513         if (logp->firstUsed <= logp->firstFree)
2514             /* no wrapping */
2515             end = logp->firstFree;      /* first element not to copy */
2516         else
2517             end = logp->logSize;
2518         nwords = inWords;       /* don't copy more than this */
2519         if (end - ix < nwords)
2520             nwords = end - ix;
2521         if (nwords > 0) {
2522             memcpy((char *)bufferp, (char *)&logp->datap[ix],
2523                    sizeof(afs_int32) * nwords);
2524             outWords += nwords;
2525             inWords -= nwords;
2526             bufferp += nwords;
2527         }
2528         /* if we're going to copy more out below, we'll start here */
2529         ix = 0;
2530     }
2531     /* now, if active part of the log has wrapped, there's more stuff
2532      * starting at the head of the log.  Copy out more from there.
2533      */
2534     if (logp->firstUsed > logp->firstFree && ix < logp->firstFree
2535         && inWords > 0) {
2536         /* (more to) copy out from the wrapped section at the
2537          * start of the log.  May get here even if didn't copy any
2538          * above, if the cookie points directly into the wrapped section.
2539          */
2540         nwords = inWords;
2541         if (logp->firstFree - ix < nwords)
2542             nwords = logp->firstFree - ix;
2543         memcpy((char *)bufferp, (char *)&logp->datap[ix],
2544                sizeof(afs_int32) * nwords);
2545         outWords += nwords;
2546         inWords -= nwords;
2547         bufferp += nwords;
2548     }
2549
2550     ReleaseWriteLock(&logp->lock);
2551
2552   done:
2553     if (code == 0) {
2554         *bufSizep = outWords;
2555         *flagsp = outFlags;
2556     }
2557     return code;
2558 }
2559
2560 /* return basic parameter information about a log */
2561 int
2562 afs_icl_GetLogParms(struct afs_icl_log *logp, afs_int32 * maxSizep,
2563                     afs_int32 * curSizep)
2564 {
2565     ObtainReadLock(&logp->lock);
2566     *maxSizep = logp->logSize;
2567     *curSizep = logp->logElements;
2568     ReleaseReadLock(&logp->lock);
2569     return 0;
2570 }
2571
2572
2573 /* hold and release logs */
2574 int
2575 afs_icl_LogHold(register struct afs_icl_log *logp)
2576 {
2577     ObtainWriteLock(&afs_icl_lock, 187);
2578     logp->refCount++;
2579     ReleaseWriteLock(&afs_icl_lock);
2580     return 0;
2581 }
2582
2583 /* hold and release logs, called with lock already held */
2584 int
2585 afs_icl_LogHoldNL(register struct afs_icl_log *logp)
2586 {
2587     logp->refCount++;
2588     return 0;
2589 }
2590
2591 /* keep track of how many sets believe the log itself is allocated */
2592 int
2593 afs_icl_LogUse(register struct afs_icl_log *logp)
2594 {
2595     ObtainWriteLock(&logp->lock, 188);
2596     if (logp->setCount == 0) {
2597         /* this is the first set actually using the log -- allocate it */
2598         if (logp->logSize == 0) {
2599             /* we weren't passed in a hint and it wasn't set */
2600             logp->logSize = ICL_DEFAULT_LOGSIZE;
2601         }
2602         logp->datap =
2603             (afs_int32 *) afs_osi_Alloc(sizeof(afs_int32) * logp->logSize);
2604 #ifdef  KERNEL_HAVE_PIN
2605         pin((char *)logp->datap, sizeof(afs_int32) * logp->logSize);
2606 #endif
2607     }
2608     logp->setCount++;
2609     ReleaseWriteLock(&logp->lock);
2610     return 0;
2611 }
2612
2613 /* decrement the number of real users of the log, free if possible */
2614 int
2615 afs_icl_LogFreeUse(register struct afs_icl_log *logp)
2616 {
2617     ObtainWriteLock(&logp->lock, 189);
2618     if (--logp->setCount == 0) {
2619         /* no more users -- free it (but keep log structure around) */
2620 #ifdef  KERNEL_HAVE_PIN
2621         unpin((char *)logp->datap, sizeof(afs_int32) * logp->logSize);
2622 #endif
2623         afs_osi_Free(logp->datap, sizeof(afs_int32) * logp->logSize);
2624         logp->firstUsed = logp->firstFree = 0;
2625         logp->logElements = 0;
2626         logp->datap = NULL;
2627     }
2628     ReleaseWriteLock(&logp->lock);
2629     return 0;
2630 }
2631
2632 /* set the size of the log to 'logSize' */
2633 int
2634 afs_icl_LogSetSize(register struct afs_icl_log *logp, afs_int32 logSize)
2635 {
2636     ObtainWriteLock(&logp->lock, 190);
2637     if (!logp->datap) {
2638         /* nothing to worry about since it's not allocated */
2639         logp->logSize = logSize;
2640     } else {
2641         /* reset log */
2642         logp->firstUsed = logp->firstFree = 0;
2643         logp->logElements = 0;
2644
2645         /* free and allocate a new one */
2646 #ifdef  KERNEL_HAVE_PIN
2647         unpin((char *)logp->datap, sizeof(afs_int32) * logp->logSize);
2648 #endif
2649         afs_osi_Free(logp->datap, sizeof(afs_int32) * logp->logSize);
2650         logp->datap =
2651             (afs_int32 *) afs_osi_Alloc(sizeof(afs_int32) * logSize);
2652 #ifdef  KERNEL_HAVE_PIN
2653         pin((char *)logp->datap, sizeof(afs_int32) * logSize);
2654 #endif
2655         logp->logSize = logSize;
2656     }
2657     ReleaseWriteLock(&logp->lock);
2658
2659     return 0;
2660 }
2661
2662 /* free a log.  Called with afs_icl_lock locked. */
2663 int
2664 afs_icl_ZapLog(register struct afs_icl_log *logp)
2665 {
2666     register struct afs_icl_log **lpp, *tp;
2667
2668     for (lpp = &afs_icl_allLogs, tp = *lpp; tp; lpp = &tp->nextp, tp = *lpp) {
2669         if (tp == logp) {
2670             /* found the dude we want to remove */
2671             *lpp = logp->nextp;
2672             osi_FreeSmallSpace(logp->name);
2673 #ifdef KERNEL_HAVE_PIN
2674             unpin((char *)logp->datap, sizeof(afs_int32) * logp->logSize);
2675 #endif
2676             afs_osi_Free(logp->datap, sizeof(afs_int32) * logp->logSize);
2677             osi_FreeSmallSpace(logp);
2678             break;              /* won't find it twice */
2679         }
2680     }
2681     return 0;
2682 }
2683
2684 /* do the release, watching for deleted entries */
2685 int
2686 afs_icl_LogRele(register struct afs_icl_log *logp)
2687 {
2688     ObtainWriteLock(&afs_icl_lock, 191);
2689     if (--logp->refCount == 0 && (logp->states & ICL_LOGF_DELETED)) {
2690         afs_icl_ZapLog(logp);   /* destroys logp's lock! */
2691     }
2692     ReleaseWriteLock(&afs_icl_lock);
2693     return 0;
2694 }
2695
2696 /* do the release, watching for deleted entries, log already held */
2697 int
2698 afs_icl_LogReleNL(register struct afs_icl_log *logp)
2699 {
2700     if (--logp->refCount == 0 && (logp->states & ICL_LOGF_DELETED)) {
2701         afs_icl_ZapLog(logp);   /* destroys logp's lock! */
2702     }
2703     return 0;
2704 }
2705
2706 /* zero out the log */
2707 int
2708 afs_icl_ZeroLog(register struct afs_icl_log *logp)
2709 {
2710     ObtainWriteLock(&logp->lock, 192);
2711     logp->firstUsed = logp->firstFree = 0;
2712     logp->logElements = 0;
2713     logp->baseCookie = 0;
2714     ReleaseWriteLock(&logp->lock);
2715     return 0;
2716 }
2717
2718 /* free a log entry, and drop its reference count */
2719 int
2720 afs_icl_LogFree(register struct afs_icl_log *logp)
2721 {
2722     ObtainWriteLock(&logp->lock, 193);
2723     logp->states |= ICL_LOGF_DELETED;
2724     ReleaseWriteLock(&logp->lock);
2725     afs_icl_LogRele(logp);
2726     return 0;
2727 }
2728
2729 /* find a log by name, returning it held */
2730 struct afs_icl_log *
2731 afs_icl_FindLog(char *name)
2732 {
2733     register struct afs_icl_log *tp;
2734     ObtainWriteLock(&afs_icl_lock, 194);
2735     for (tp = afs_icl_allLogs; tp; tp = tp->nextp) {
2736         if (strcmp(tp->name, name) == 0) {
2737             /* this is the dude we want */
2738             tp->refCount++;
2739             break;
2740         }
2741     }
2742     ReleaseWriteLock(&afs_icl_lock);
2743     return tp;
2744 }
2745
2746 int
2747 afs_icl_EnumerateLogs(int (*aproc)
2748                         (char *name, char *arock, struct afs_icl_log * tp),
2749                       char *arock)
2750 {
2751     register struct afs_icl_log *tp;
2752     register afs_int32 code;
2753
2754     code = 0;
2755     ObtainWriteLock(&afs_icl_lock, 195);
2756     for (tp = afs_icl_allLogs; tp; tp = tp->nextp) {
2757         tp->refCount++;         /* hold this guy */
2758         ReleaseWriteLock(&afs_icl_lock);
2759         ObtainReadLock(&tp->lock);
2760         code = (*aproc) (tp->name, arock, tp);
2761         ReleaseReadLock(&tp->lock);
2762         ObtainWriteLock(&afs_icl_lock, 196);
2763         if (--tp->refCount == 0)
2764             afs_icl_ZapLog(tp);
2765         if (code)
2766             break;
2767     }
2768     ReleaseWriteLock(&afs_icl_lock);
2769     return code;
2770 }
2771
2772 struct afs_icl_set *afs_icl_allSets = 0;
2773
2774 int
2775 afs_icl_CreateSet(char *name, struct afs_icl_log *baseLogp,
2776                   struct afs_icl_log *fatalLogp,
2777                   struct afs_icl_set **outSetpp)
2778 {
2779     return afs_icl_CreateSetWithFlags(name, baseLogp, fatalLogp,
2780                                       /*flags */ 0, outSetpp);
2781 }
2782
2783 /* create a set, given pointers to base and fatal logs, if any.
2784  * Logs are unlocked, but referenced, and *outSetpp is returned
2785  * referenced.  Function bumps reference count on logs, since it
2786  * addds references from the new afs_icl_set.  When the set is destroyed,
2787  * those references will be released.
2788  */
2789 int
2790 afs_icl_CreateSetWithFlags(char *name, struct afs_icl_log *baseLogp,
2791                            struct afs_icl_log *fatalLogp, afs_uint32 flags,
2792                            struct afs_icl_set **outSetpp)
2793 {
2794     register struct afs_icl_set *setp;
2795     register int i;
2796     afs_int32 states = ICL_DEFAULT_SET_STATES;
2797
2798     ObtainWriteLock(&afs_icl_lock, 197);
2799     if (!afs_icl_inited)
2800         afs_icl_Init();
2801
2802     for (setp = afs_icl_allSets; setp; setp = setp->nextp) {
2803         if (strcmp(setp->name, name) == 0) {
2804             setp->refCount++;
2805             *outSetpp = setp;
2806             if (flags & ICL_CRSET_FLAG_PERSISTENT) {
2807                 ObtainWriteLock(&setp->lock, 198);
2808                 setp->states |= ICL_SETF_PERSISTENT;
2809                 ReleaseWriteLock(&setp->lock);
2810             }
2811             ReleaseWriteLock(&afs_icl_lock);
2812             return 0;
2813         }
2814     }
2815
2816     /* determine initial state */
2817     if (flags & ICL_CRSET_FLAG_DEFAULT_ON)
2818         states = ICL_SETF_ACTIVE;
2819     else if (flags & ICL_CRSET_FLAG_DEFAULT_OFF)
2820         states = ICL_SETF_FREED;
2821     if (flags & ICL_CRSET_FLAG_PERSISTENT)
2822         states |= ICL_SETF_PERSISTENT;
2823
2824     setp = (struct afs_icl_set *)afs_osi_Alloc(sizeof(struct afs_icl_set));
2825     memset((caddr_t) setp, 0, sizeof(*setp));
2826     setp->refCount = 1;
2827     if (states & ICL_SETF_FREED)
2828         states &= ~ICL_SETF_ACTIVE;     /* if freed, can't be active */
2829     setp->states = states;
2830
2831     LOCK_INIT(&setp->lock, "setp lock");
2832     /* next lock is obtained in wrong order, hierarchy-wise, but
2833      * it doesn't matter, since no one can find this lock yet, since
2834      * the afs_icl_lock is still held, and thus the obtain can't block.
2835      */
2836     ObtainWriteLock(&setp->lock, 199);
2837     setp->name = osi_AllocSmallSpace(strlen(name) + 1);
2838     strcpy(setp->name, name);
2839     setp->nevents = ICL_DEFAULTEVENTS;
2840     setp->eventFlags = afs_osi_Alloc(ICL_DEFAULTEVENTS);
2841 #ifdef  KERNEL_HAVE_PIN
2842     pin((char *)setp->eventFlags, ICL_DEFAULTEVENTS);
2843 #endif
2844     for (i = 0; i < ICL_DEFAULTEVENTS; i++)
2845         setp->eventFlags[i] = 0xff;     /* default to enabled */
2846
2847     /* update this global info under the afs_icl_lock */
2848     setp->nextp = afs_icl_allSets;
2849     afs_icl_allSets = setp;
2850     ReleaseWriteLock(&afs_icl_lock);
2851
2852     /* set's basic lock is still held, so we can finish init */
2853     if (baseLogp) {
2854         setp->logs[0] = baseLogp;
2855         afs_icl_LogHold(baseLogp);
2856         if (!(setp->states & ICL_SETF_FREED))
2857             afs_icl_LogUse(baseLogp);   /* log is actually being used */
2858     }
2859     if (fatalLogp) {
2860         setp->logs[1] = fatalLogp;
2861         afs_icl_LogHold(fatalLogp);
2862         if (!(setp->states & ICL_SETF_FREED))
2863             afs_icl_LogUse(fatalLogp);  /* log is actually being used */
2864     }
2865     ReleaseWriteLock(&setp->lock);
2866
2867     *outSetpp = setp;
2868     return 0;
2869 }
2870
2871 /* function to change event enabling information for a particular set */
2872 int
2873 afs_icl_SetEnable(struct afs_icl_set *setp, afs_int32 eventID, int setValue)
2874 {
2875     char *tp;
2876
2877     ObtainWriteLock(&setp->lock, 200);
2878     if (!ICL_EVENTOK(setp, eventID)) {
2879         ReleaseWriteLock(&setp->lock);
2880         return -1;
2881     }
2882     tp = &setp->eventFlags[ICL_EVENTBYTE(eventID)];
2883     if (setValue)
2884         *tp |= ICL_EVENTMASK(eventID);
2885     else
2886         *tp &= ~(ICL_EVENTMASK(eventID));
2887     ReleaseWriteLock(&setp->lock);
2888     return 0;
2889 }
2890
2891 /* return indication of whether a particular event ID is enabled
2892  * for tracing.  If *getValuep is set to 0, the event is disabled,
2893  * otherwise it is enabled.  All events start out enabled by default.
2894  */
2895 int
2896 afs_icl_GetEnable(struct afs_icl_set *setp, afs_int32 eventID, int *getValuep)
2897 {
2898     ObtainReadLock(&setp->lock);
2899     if (!ICL_EVENTOK(setp, eventID)) {
2900         ReleaseWriteLock(&setp->lock);
2901         return -1;
2902     }
2903     if (setp->eventFlags[ICL_EVENTBYTE(eventID)] & ICL_EVENTMASK(eventID))
2904         *getValuep = 1;
2905     else
2906         *getValuep = 0;
2907     ReleaseReadLock(&setp->lock);
2908     return 0;
2909 }
2910
2911 /* hold and release event sets */
2912 int
2913 afs_icl_SetHold(register struct afs_icl_set *setp)
2914 {
2915     ObtainWriteLock(&afs_icl_lock, 201);
2916     setp->refCount++;
2917     ReleaseWriteLock(&afs_icl_lock);
2918     return 0;
2919 }
2920
2921 /* free a set.  Called with afs_icl_lock locked */
2922 int
2923 afs_icl_ZapSet(register struct afs_icl_set *setp)
2924 {
2925     register struct afs_icl_set **lpp, *tp;
2926     int i;
2927     register struct afs_icl_log *tlp;
2928
2929     for (lpp = &afs_icl_allSets, tp = *lpp; tp; lpp = &tp->nextp, tp = *lpp) {
2930         if (tp == setp) {
2931             /* found the dude we want to remove */
2932             *lpp = setp->nextp;
2933             osi_FreeSmallSpace(setp->name);
2934 #ifdef  KERNEL_HAVE_PIN
2935             unpin((char *)setp->eventFlags, ICL_DEFAULTEVENTS);
2936 #endif
2937             afs_osi_Free(setp->eventFlags, ICL_DEFAULTEVENTS);
2938             for (i = 0; i < ICL_LOGSPERSET; i++) {
2939                 if ((tlp = setp->logs[i]))
2940                     afs_icl_LogReleNL(tlp);
2941             }
2942             osi_FreeSmallSpace(setp);
2943             break;              /* won't find it twice */
2944         }
2945     }
2946     return 0;
2947 }
2948
2949 /* do the release, watching for deleted entries */
2950 int
2951 afs_icl_SetRele(register struct afs_icl_set *setp)
2952 {
2953     ObtainWriteLock(&afs_icl_lock, 202);
2954     if (--setp->refCount == 0 && (setp->states & ICL_SETF_DELETED)) {
2955         afs_icl_ZapSet(setp);   /* destroys setp's lock! */
2956     }
2957     ReleaseWriteLock(&afs_icl_lock);
2958     return 0;
2959 }
2960
2961 /* free a set entry, dropping its reference count */
2962 int
2963 afs_icl_SetFree(register struct afs_icl_set *setp)
2964 {
2965     ObtainWriteLock(&setp->lock, 203);
2966     setp->states |= ICL_SETF_DELETED;
2967     ReleaseWriteLock(&setp->lock);
2968     afs_icl_SetRele(setp);
2969     return 0;
2970 }
2971
2972 /* find a set by name, returning it held */
2973 struct afs_icl_set *
2974 afs_icl_FindSet(char *name)
2975 {
2976     register struct afs_icl_set *tp;
2977     ObtainWriteLock(&afs_icl_lock, 204);
2978     for (tp = afs_icl_allSets; tp; tp = tp->nextp) {
2979         if (strcmp(tp->name, name) == 0) {
2980             /* this is the dude we want */
2981             tp->refCount++;
2982             break;
2983         }
2984     }
2985     ReleaseWriteLock(&afs_icl_lock);
2986     return tp;
2987 }
2988
2989 /* zero out all the logs in the set */
2990 int
2991 afs_icl_ZeroSet(struct afs_icl_set *setp)
2992 {
2993     register int i;
2994     int code = 0;
2995     int tcode;
2996     struct afs_icl_log *logp;
2997
2998     ObtainReadLock(&setp->lock);
2999     for (i = 0; i < ICL_LOGSPERSET; i++) {
3000         logp = setp->logs[i];
3001         if (logp) {
3002             afs_icl_LogHold(logp);
3003             tcode = afs_icl_ZeroLog(logp);
3004             if (tcode != 0)
3005                 code = tcode;   /* save the last bad one */
3006             afs_icl_LogRele(logp);
3007         }
3008     }
3009     ReleaseReadLock(&setp->lock);
3010     return code;
3011 }
3012
3013 int
3014 afs_icl_EnumerateSets(int (*aproc)
3015                         (char *name, char *arock, struct afs_icl_log * tp),
3016                       char *arock)
3017 {
3018     register struct afs_icl_set *tp, *np;
3019     register afs_int32 code;
3020
3021     code = 0;
3022     ObtainWriteLock(&afs_icl_lock, 205);
3023     for (tp = afs_icl_allSets; tp; tp = np) {
3024         tp->refCount++;         /* hold this guy */
3025         ReleaseWriteLock(&afs_icl_lock);
3026         code = (*aproc) (tp->name, arock, (struct afs_icl_log *)tp);
3027         ObtainWriteLock(&afs_icl_lock, 206);
3028         np = tp->nextp;         /* tp may disappear next, but not np */
3029         if (--tp->refCount == 0 && (tp->states & ICL_SETF_DELETED))
3030             afs_icl_ZapSet(tp);
3031         if (code)
3032             break;
3033     }
3034     ReleaseWriteLock(&afs_icl_lock);
3035     return code;
3036 }
3037
3038 int
3039 afs_icl_AddLogToSet(struct afs_icl_set *setp, struct afs_icl_log *newlogp)
3040 {
3041     register int i;
3042     int code = -1;
3043
3044     ObtainWriteLock(&setp->lock, 207);
3045     for (i = 0; i < ICL_LOGSPERSET; i++) {
3046         if (!setp->logs[i]) {
3047             setp->logs[i] = newlogp;
3048             code = i;
3049             afs_icl_LogHold(newlogp);
3050             if (!(setp->states & ICL_SETF_FREED)) {
3051                 /* bump up the number of sets using the log */
3052                 afs_icl_LogUse(newlogp);
3053             }
3054             break;
3055         }
3056     }
3057     ReleaseWriteLock(&setp->lock);
3058     return code;
3059 }
3060
3061 int
3062 afs_icl_SetSetStat(struct afs_icl_set *setp, int op)
3063 {
3064     int i;
3065     afs_int32 code;
3066     struct afs_icl_log *logp;
3067
3068     ObtainWriteLock(&setp->lock, 208);
3069     switch (op) {
3070     case ICL_OP_SS_ACTIVATE:    /* activate a log */
3071         /*
3072          * If we are not already active, see if we have released
3073          * our demand that the log be allocated (FREED set).  If
3074          * we have, reassert our desire.
3075          */
3076         if (!(setp->states & ICL_SETF_ACTIVE)) {
3077             if (setp->states & ICL_SETF_FREED) {
3078                 /* have to reassert desire for logs */
3079                 for (i = 0; i < ICL_LOGSPERSET; i++) {
3080                     logp = setp->logs[i];
3081                     if (logp) {
3082                         afs_icl_LogHold(logp);
3083                         afs_icl_LogUse(logp);
3084                         afs_icl_LogRele(logp);
3085                     }
3086                 }
3087                 setp->states &= ~ICL_SETF_FREED;
3088             }
3089             setp->states |= ICL_SETF_ACTIVE;
3090         }
3091         code = 0;
3092         break;
3093
3094     case ICL_OP_SS_DEACTIVATE:  /* deactivate a log */
3095         /* this doesn't require anything beyond clearing the ACTIVE flag */
3096         setp->states &= ~ICL_SETF_ACTIVE;
3097         code = 0;
3098         break;
3099
3100     case ICL_OP_SS_FREE:        /* deassert design for log */
3101         /* 
3102          * if we are already in this state, do nothing; otherwise
3103          * deassert desire for log
3104          */
3105         if (setp->states & ICL_SETF_ACTIVE)
3106             code = EINVAL;
3107         else {
3108             if (!(setp->states & ICL_SETF_FREED)) {
3109                 for (i = 0; i < ICL_LOGSPERSET; i++) {
3110                     logp = setp->logs[i];
3111                     if (logp) {
3112                         afs_icl_LogHold(logp);
3113                         afs_icl_LogFreeUse(logp);
3114                         afs_icl_LogRele(logp);
3115                     }
3116                 }
3117                 setp->states |= ICL_SETF_FREED;
3118             }
3119             code = 0;
3120         }
3121         break;
3122
3123     default:
3124         code = EINVAL;
3125     }
3126     ReleaseWriteLock(&setp->lock);
3127     return code;
3128 }