0c8e90d2d0227ce07870fbc8c168ffe85f651132
[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 %d in StartDaemon()\n", 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_MaskSignals();
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 static void
1100 iparam32_to_iparam(const struct iparam32 *src, struct iparam *dst)
1101 {
1102     dst->param1 = src->param1;
1103     dst->param2 = src->param2;
1104     dst->param3 = src->param3;
1105     dst->param4 = src->param4;
1106 }
1107
1108 /*
1109  * If you need to change copyin_iparam(), you may also need to change
1110  * copyin_afs_ioctl().
1111  */
1112
1113 static int
1114 copyin_iparam(caddr_t cmarg, struct iparam *dst)
1115 {
1116     int code;
1117
1118 #if defined(AFS_HPUX_64BIT_ENV)
1119     struct iparam32 dst32;
1120
1121     if (is_32bit(u.u_procp)) {  /* is_32bit() in proc_iface.h */
1122         AFS_COPYIN(cmarg, (caddr_t) & dst32, sizeof dst32, code);
1123         if (!code)
1124             iparam32_to_iparam(&dst32, dst);
1125         return code;
1126     }
1127 #endif /* AFS_HPUX_64BIT_ENV */
1128
1129 #if defined(AFS_SUN57_64BIT_ENV)
1130     struct iparam32 dst32;
1131
1132     if (get_udatamodel() == DATAMODEL_ILP32) {
1133         AFS_COPYIN(cmarg, (caddr_t) & dst32, sizeof dst32, code);
1134         if (!code)
1135             iparam32_to_iparam(&dst32, dst);
1136         return code;
1137     }
1138 #endif /* AFS_SUN57_64BIT_ENV */
1139
1140 #if defined(AFS_LINUX_64BIT_KERNEL) && !defined(AFS_ALPHA_LINUX20_ENV) && !defined(AFS_IA64_LINUX20_ENV) && !defined(AFS_AMD64_LINUX20_ENV)
1141     struct iparam32 dst32;
1142
1143 #ifdef AFS_SPARC64_LINUX24_ENV
1144     if (current->thread.flags & SPARC_FLAG_32BIT)
1145 #elif defined(AFS_SPARC64_LINUX20_ENV)
1146     if (current->tss.flags & SPARC_FLAG_32BIT)
1147 #elif defined(AFS_AMD64_LINUX20_ENV)
1148     if (current->thread.flags & THREAD_IA32)
1149 #elif defined(AFS_PPC64_LINUX20_ENV)
1150     if (current->thread.flags & PPC_FLAG_32BIT) 
1151 #else
1152 #error Not done for this linux version
1153 #endif
1154     {
1155         AFS_COPYIN(cmarg, (caddr_t) & dst32, sizeof dst32, code);
1156         if (!code)
1157             iparam32_to_iparam(&dst32, dst);
1158         return code;
1159     }
1160 #endif /* AFS_LINUX_64BIT_KERNEL */
1161
1162     AFS_COPYIN(cmarg, (caddr_t) dst, sizeof *dst, code);
1163     return code;
1164 }
1165
1166 /* Main entry of all afs system calls */
1167 #ifdef  AFS_SUN5_ENV
1168 extern int afs_sinited;
1169
1170 /** The 32 bit OS expects the members of this structure to be 32 bit
1171  * quantities and the 64 bit OS expects them as 64 bit quanties. Hence
1172  * to accomodate both, *long* is used instead of afs_int32
1173  */
1174
1175 #ifdef AFS_SUN57_ENV
1176 struct afssysa {
1177     long syscall;
1178     long parm1;
1179     long parm2;
1180     long parm3;
1181     long parm4;
1182     long parm5;
1183     long parm6;
1184 };
1185 #else
1186 struct afssysa {
1187     afs_int32 syscall;
1188     afs_int32 parm1;
1189     afs_int32 parm2;
1190     afs_int32 parm3;
1191     afs_int32 parm4;
1192     afs_int32 parm5;
1193     afs_int32 parm6;
1194 };
1195 #endif
1196
1197 Afs_syscall(register struct afssysa *uap, rval_t * rvp)
1198 {
1199     int *retval = &rvp->r_val1;
1200 #else /* AFS_SUN5_ENV */
1201 #if     defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
1202 int
1203 afs3_syscall(p, args, retval)
1204 #ifdef AFS_FBSD50_ENV
1205      struct thread *p;
1206 #else
1207      struct proc *p;
1208 #endif
1209      void *args;
1210      int *retval;
1211 {
1212     register struct a {
1213         long syscall;
1214         long parm1;
1215         long parm2;
1216         long parm3;
1217         long parm4;
1218         long parm5;
1219         long parm6;
1220     } *uap = (struct a *)args;
1221 #else /* AFS_OSF_ENV */
1222 #ifdef AFS_LINUX20_ENV
1223 struct afssysargs {
1224     long syscall;
1225     long parm1;
1226     long parm2;
1227     long parm3;
1228     long parm4;
1229     long parm5;
1230     long parm6;                 /* not actually used - should be removed */
1231 };
1232 /* Linux system calls only set up for 5 arguments. */
1233 asmlinkage long
1234 afs_syscall(long syscall, long parm1, long parm2, long parm3, long parm4)
1235 {
1236     struct afssysargs args, *uap = &args;
1237     long linux_ret = 0;
1238     long *retval = &linux_ret;
1239     long eparm[4];              /* matches AFSCALL_ICL in fstrace.c */
1240 #ifdef AFS_SPARC64_LINUX24_ENV
1241     afs_int32 eparm32[4];
1242 #endif
1243     /* eparm is also used by AFSCALL_CALL in afsd.c */
1244 #else
1245 #if defined(UKERNEL)
1246 Afs_syscall()
1247 {
1248     register struct a {
1249         long syscall;
1250         long parm1;
1251         long parm2;
1252         long parm3;
1253         long parm4;
1254         long parm5;
1255         long parm6;
1256     } *uap = (struct a *)u.u_ap;
1257 #else /* UKERNEL */
1258 int
1259 #if defined(AFS_SUN_ENV) && !defined(AFS_SUN5_ENV)
1260 afs_syscall()
1261 #else
1262 Afs_syscall()
1263 #endif                          /* SUN && !SUN5 */
1264 {
1265     register struct a {
1266         long syscall;
1267         long parm1;
1268         long parm2;
1269         long parm3;
1270         long parm4;
1271         long parm5;
1272         long parm6;
1273     } *uap = (struct a *)u.u_ap;
1274 #endif /* UKERNEL */
1275 #if  defined(AFS_DEC_ENV)
1276     int *retval = &u.u_r.r_val1;
1277 #elif defined(AFS_HPUX_ENV)
1278     long *retval = &u.u_rval1;
1279 #else
1280     int *retval = &u.u_rval1;
1281 #endif
1282 #endif /* AFS_LINUX20_ENV */
1283 #endif /* AFS_OSF_ENV */
1284 #endif /* AFS_SUN5_ENV */
1285     register int code = 0;
1286
1287     AFS_STATCNT(afs_syscall);
1288 #ifdef        AFS_SUN5_ENV
1289     rvp->r_vals = 0;
1290     if (!afs_sinited) {
1291         return (ENODEV);
1292     }
1293 #endif
1294 #ifdef AFS_LINUX20_ENV
1295     lock_kernel();
1296     /* setup uap for use below - pull out the magic decoder ring to know
1297      * which syscalls have folded argument lists.
1298      */
1299     uap->syscall = syscall;
1300     uap->parm1 = parm1;
1301     uap->parm2 = parm2;
1302     uap->parm3 = parm3;
1303     if (syscall == AFSCALL_ICL || syscall == AFSCALL_CALL) {
1304 #ifdef AFS_SPARC64_LINUX24_ENV
1305 /* from arch/sparc64/kernel/sys_sparc32.c */
1306 #define AA(__x)                                \
1307 ({     unsigned long __ret;            \
1308        __asm__ ("srl   %0, 0, %0"      \
1309                 : "=r" (__ret)         \
1310                 : "0" (__x));          \
1311        __ret;                          \
1312 })
1313
1314
1315         if (current->thread.flags & SPARC_FLAG_32BIT) {
1316             AFS_COPYIN((char *)parm4, (char *)eparm32, sizeof(eparm32), code);
1317             eparm[0] = AA(eparm32[0]);
1318             eparm[1] = AA(eparm32[1]);
1319             eparm[2] = AA(eparm32[2]);
1320 #undef AA
1321         } else
1322 #endif
1323             AFS_COPYIN((char *)parm4, (char *)eparm, sizeof(eparm), code);
1324         uap->parm4 = eparm[0];
1325         uap->parm5 = eparm[1];
1326         uap->parm6 = eparm[2];
1327     } else {
1328         uap->parm4 = parm4;
1329         uap->parm5 = 0;
1330         uap->parm6 = 0;
1331     }
1332 #endif
1333
1334 #if defined(AFS_HPUX_ENV)
1335     /*
1336      * There used to be code here (duplicated from osi_Init()) for
1337      * initializing the semaphore used by AFS_GLOCK().  Was the
1338      * duplication to handle the case of a dynamically loaded kernel
1339      * module?
1340      */
1341     osi_InitGlock();
1342 #endif
1343     if (uap->syscall == AFSCALL_CALL) {
1344 #ifdef  AFS_SUN5_ENV
1345         code =
1346             afs_syscall_call(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1347                              uap->parm5, uap->parm6, rvp, CRED());
1348 #else
1349         code =
1350             afs_syscall_call(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1351                              uap->parm5, uap->parm6);
1352 #endif
1353     } else if (uap->syscall == AFSCALL_SETPAG) {
1354 #ifdef  AFS_SUN5_ENV
1355         register proc_t *procp;
1356
1357         procp = ttoproc(curthread);
1358         AFS_GLOCK();
1359         code = afs_setpag(&procp->p_cred);
1360         AFS_GUNLOCK();
1361 #else
1362         AFS_GLOCK();
1363 #if     defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
1364         code = afs_setpag(p, args, retval);
1365 #else /* AFS_OSF_ENV */
1366         code = afs_setpag();
1367 #endif
1368         AFS_GUNLOCK();
1369 #endif
1370     } else if (uap->syscall == AFSCALL_PIOCTL) {
1371         AFS_GLOCK();
1372 #if defined(AFS_SUN5_ENV)
1373         code =
1374             afs_syscall_pioctl(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1375                                rvp, CRED());
1376 #elif defined(AFS_FBSD50_ENV)
1377         code =
1378             afs_syscall_pioctl(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1379                                p->td_ucred);
1380 #elif defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
1381         code =
1382             afs_syscall_pioctl(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1383                                p->p_cred->pc_ucred);
1384 #else
1385         code =
1386             afs_syscall_pioctl(uap->parm1, uap->parm2, uap->parm3,
1387                                uap->parm4);
1388 #endif
1389         AFS_GUNLOCK();
1390     } else if (uap->syscall == AFSCALL_ICREATE) {
1391         struct iparam iparams;
1392
1393         code = copyin_iparam((char *)uap->parm3, &iparams);
1394         if (code) {
1395 #if defined(KERNEL_HAVE_UERROR)
1396             setuerror(code);
1397 #endif
1398         } else
1399 #ifdef  AFS_SUN5_ENV
1400             code =
1401                 afs_syscall_icreate(uap->parm1, uap->parm2, iparams.param1,
1402                                     iparams.param2, iparams.param3,
1403                                     iparams.param4, rvp, CRED());
1404 #else
1405             code =
1406                 afs_syscall_icreate(uap->parm1, uap->parm2, iparams.param1,
1407                                     iparams.param2,
1408 #if defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
1409                                     iparams.param3, iparams.param4, retval);
1410 #else
1411                                     iparams.param3, iparams.param4);
1412 #endif
1413 #endif /* AFS_SUN5_ENV */
1414     } else if (uap->syscall == AFSCALL_IOPEN) {
1415 #ifdef  AFS_SUN5_ENV
1416         code =
1417             afs_syscall_iopen(uap->parm1, uap->parm2, uap->parm3, rvp,
1418                               CRED());
1419 #else
1420 #if defined(AFS_OSF_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
1421         code = afs_syscall_iopen(uap->parm1, uap->parm2, uap->parm3, retval);
1422 #else
1423         code = afs_syscall_iopen(uap->parm1, uap->parm2, uap->parm3);
1424 #endif
1425 #endif /* AFS_SUN5_ENV */
1426     } else if (uap->syscall == AFSCALL_IDEC) {
1427 #ifdef  AFS_SUN5_ENV
1428         code =
1429             afs_syscall_iincdec(uap->parm1, uap->parm2, uap->parm3, -1, rvp,
1430                                 CRED());
1431 #else
1432         code = afs_syscall_iincdec(uap->parm1, uap->parm2, uap->parm3, -1);
1433 #endif /* AFS_SUN5_ENV */
1434     } else if (uap->syscall == AFSCALL_IINC) {
1435 #ifdef  AFS_SUN5_ENV
1436         code =
1437             afs_syscall_iincdec(uap->parm1, uap->parm2, uap->parm3, 1, rvp,
1438                                 CRED());
1439 #else
1440         code = afs_syscall_iincdec(uap->parm1, uap->parm2, uap->parm3, 1);
1441 #endif /* AFS_SUN5_ENV */
1442     } else if (uap->syscall == AFSCALL_ICL) {
1443         AFS_GLOCK();
1444         code =
1445             Afscall_icl(uap->parm1, uap->parm2, uap->parm3, uap->parm4,
1446                         uap->parm5, retval);
1447         AFS_GUNLOCK();
1448 #ifdef AFS_LINUX20_ENV
1449         if (!code) {
1450             /* ICL commands can return values. */
1451             code = -linux_ret;  /* Gets negated again at exit below */
1452         }
1453 #else
1454         if (code) {
1455 #if defined(KERNEL_HAVE_UERROR)
1456             setuerror(code);
1457 #endif
1458         }
1459 #endif /* !AFS_LINUX20_ENV */
1460     } else {
1461 #if defined(KERNEL_HAVE_UERROR)
1462         setuerror(EINVAL);
1463 #else
1464         code = EINVAL;
1465 #endif
1466     }
1467
1468 #ifdef AFS_LINUX20_ENV
1469     code = -code;
1470     unlock_kernel();
1471 #endif
1472     return code;
1473 }
1474 #endif /* AFS_SGI_ENV */
1475 #endif /* !AFS_AIX32_ENV       */
1476
1477 /*
1478  * Initstate in the range 0 < x < 100 are early initialization states.
1479  * Initstate of 100 means a AFSOP_START operation has been done.  After this,
1480  *  the cache may be initialized.
1481  * Initstate of 101 means a AFSOP_GO operation has been done.  This operation
1482  *  is done after all the cache initialization has been done.
1483  * Initstate of 200 means that the volume has been looked up once, possibly
1484  *  incorrectly.
1485  * Initstate of 300 means that the volume has been *successfully* looked up.
1486  */
1487 int
1488 afs_CheckInit(void)
1489 {
1490     register int code = 0;
1491
1492     AFS_STATCNT(afs_CheckInit);
1493     if (afs_initState <= 100)
1494         code = ENXIO;           /* never finished init phase */
1495     else if (afs_initState == 101) {    /* init done, wait for afs_daemon */
1496         while (afs_initState < 200)
1497             afs_osi_Sleep(&afs_initState);
1498     } else if (afs_initState == 200)
1499         code = ETIMEDOUT;       /* didn't find root volume */
1500     return code;
1501 }
1502
1503 int afs_shuttingdown = 0;
1504 void
1505 afs_shutdown(void)
1506 {
1507     extern short afs_brsDaemons;
1508     extern afs_int32 afs_CheckServerDaemonStarted;
1509     extern struct afs_osi_WaitHandle AFS_WaitHandler, AFS_CSWaitHandler;
1510     extern struct osi_file *afs_cacheInodep;
1511
1512     AFS_STATCNT(afs_shutdown);
1513     if (afs_initState == 0) {
1514         afs_warn("AFS not initialized - not shutting down\n");
1515       return;
1516     }
1517
1518     if (afs_shuttingdown)
1519         return;
1520     afs_shuttingdown = 1;
1521     if (afs_cold_shutdown)
1522         afs_warn("COLD ");
1523     else
1524         afs_warn("WARM ");
1525     afs_warn("shutting down of: CB... ");
1526
1527     afs_termState = AFSOP_STOP_RXCALLBACK;
1528     rx_WakeupServerProcs();
1529     /* shutdown_rxkernel(); */
1530     while (afs_termState == AFSOP_STOP_RXCALLBACK)
1531         afs_osi_Sleep(&afs_termState);
1532
1533     afs_warn("afs... ");
1534     while (afs_termState == AFSOP_STOP_AFS) {
1535         afs_osi_CancelWait(&AFS_WaitHandler);
1536         afs_osi_Sleep(&afs_termState);
1537     }
1538     if (afs_CheckServerDaemonStarted) {
1539         while (afs_termState == AFSOP_STOP_CS) {
1540             afs_osi_CancelWait(&AFS_CSWaitHandler);
1541             afs_osi_Sleep(&afs_termState);
1542         }
1543     }
1544     afs_warn("BkG... ");
1545     /* Wake-up afs_brsDaemons so that we don't have to wait for a bkg job! */
1546     while (afs_termState == AFSOP_STOP_BKG) {
1547         afs_osi_Wakeup(&afs_brsDaemons);
1548         afs_osi_Sleep(&afs_termState);
1549     }
1550     afs_warn("CTrunc... ");
1551     /* Cancel cache truncate daemon. */
1552     while (afs_termState == AFSOP_STOP_TRUNCDAEMON) {
1553         afs_osi_Wakeup((char *)&afs_CacheTruncateDaemon);
1554         afs_osi_Sleep(&afs_termState);
1555     }
1556 #ifdef AFS_AFSDB_ENV
1557     afs_warn("AFSDB... ");
1558     afs_StopAFSDB();
1559     while (afs_termState == AFSOP_STOP_AFSDB)
1560         afs_osi_Sleep(&afs_termState);
1561 #endif
1562 #if     defined(AFS_SUN5_ENV) || defined(RXK_LISTENER_ENV)
1563     afs_warn("RxEvent... ");
1564     /* cancel rx event daemon */
1565     while (afs_termState == AFSOP_STOP_RXEVENT)
1566         afs_osi_Sleep(&afs_termState);
1567 #if defined(RXK_LISTENER_ENV)
1568 #ifndef UKERNEL
1569     afs_warn("UnmaskRxkSignals... ");
1570     afs_osi_UnmaskRxkSignals();
1571 #endif
1572     /* cancel rx listener */
1573     afs_warn("RxListener... ");
1574     osi_StopListener();         /* This closes rx_socket. */
1575     while (afs_termState == AFSOP_STOP_RXK_LISTENER) {
1576         afs_warn("Sleep... ");
1577         afs_osi_Sleep(&afs_termState);
1578     }
1579 #endif
1580 #else
1581     afs_termState = AFSOP_STOP_COMPLETE;
1582 #endif
1583     afs_warn("\n");
1584
1585     /* Close file only after daemons which can write to it are stopped. */
1586     if (afs_cacheInodep) {      /* memcache won't set this */
1587         osi_UFSClose(afs_cacheInodep);  /* Since we always leave it open */
1588         afs_cacheInodep = 0;
1589     }
1590     return;                     /* Just kill daemons for now */
1591 #ifdef notdef
1592     shutdown_CB();
1593     shutdown_AFS();
1594     shutdown_rxkernel();
1595     shutdown_rxevent();
1596     shutdown_rx();
1597     afs_shutdown_BKG();
1598     shutdown_bufferpackage();
1599     shutdown_daemons();
1600     shutdown_cache();
1601     shutdown_osi();
1602     shutdown_osinet();
1603     shutdown_osifile();
1604     shutdown_vnodeops();
1605     shutdown_vfsops();
1606     shutdown_exporter();
1607     shutdown_memcache();
1608 #if !defined(AFS_NONFSTRANS) || defined(AFS_AIX_IAUTH_ENV)
1609 #if !defined(AFS_DEC_ENV) && !defined(AFS_OSF_ENV)
1610     /* this routine does not exist in Ultrix systems... 93.01.19 */
1611     shutdown_nfsclnt();
1612 #endif /* AFS_DEC_ENV */
1613 #endif
1614     shutdown_afstest();
1615     /* The following hold the cm stats */
1616 /*
1617     memset(&afs_cmstats, 0, sizeof(struct afs_CMStats));
1618     memset(&afs_stats_cmperf, 0, sizeof(struct afs_stats_CMPerf));
1619     memset(&afs_stats_cmfullperf, 0, sizeof(struct afs_stats_CMFullPerf));
1620 */
1621     afs_warn(" ALL allocated tables\n");
1622     afs_shuttingdown = 0;
1623 #endif
1624 }
1625
1626 void
1627 shutdown_afstest(void)
1628 {
1629     AFS_STATCNT(shutdown_afstest);
1630     afs_initState = afs_termState = afs_setTime = 0;
1631     AFS_Running = afs_CB_Running = 0;
1632     afs_CacheInit_Done = afs_Go_Done = 0;
1633     if (afs_cold_shutdown) {
1634         *afs_rootVolumeName = 0;
1635     }
1636 }
1637
1638
1639 /* In case there is a bunch of dynamically build bkg daemons to free */
1640 void
1641 afs_shutdown_BKG(void)
1642 {
1643     AFS_STATCNT(shutdown_BKG);
1644 }
1645
1646
1647 #if defined(AFS_ALPHA_ENV) || defined(AFS_SGI61_ENV)
1648 /* For SGI 6.2, this can is changed to 1 if it's a 32 bit kernel. */
1649 #if defined(AFS_SGI62_ENV) && defined(KERNEL) && !defined(_K64U64)
1650 int afs_icl_sizeofLong = 1;
1651 #else
1652 int afs_icl_sizeofLong = 2;
1653 #endif /* SGI62 */
1654 #else
1655 #if defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL)
1656 int afs_icl_sizeofLong = 2;
1657 #else
1658 int afs_icl_sizeofLong = 1;
1659 #endif
1660 #endif
1661
1662 int afs_icl_inited = 0;
1663
1664 /* init function, called once, under afs_icl_lock */
1665 int
1666 afs_icl_Init(void)
1667 {
1668     afs_icl_inited = 1;
1669     return 0;
1670 }
1671
1672 extern struct afs_icl_log *afs_icl_FindLog();
1673 extern struct afs_icl_set *afs_icl_FindSet();
1674
1675
1676 static int
1677 Afscall_icl(long opcode, long p1, long p2, long p3, long p4, long *retval)
1678 {
1679     afs_int32 *lp, elts, flags;
1680     register afs_int32 code;
1681     struct afs_icl_log *logp;
1682     struct afs_icl_set *setp;
1683 #if defined(AFS_SGI61_ENV) || defined(AFS_SUN57_ENV) || defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV)
1684     size_t temp;
1685 #else /* AFS_SGI61_ENV */
1686 #if defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL)
1687     afs_uint64 temp;
1688 #else
1689     afs_uint32 temp;
1690 #endif
1691 #endif /* AFS_SGI61_ENV */
1692     char tname[65];
1693     afs_int32 startCookie;
1694     afs_int32 allocated;
1695     struct afs_icl_log *tlp;
1696
1697 #ifdef  AFS_SUN5_ENV
1698     if (!afs_suser(CRED())) {   /* only root can run this code */
1699         return (EACCES);
1700     }
1701 #else
1702     if (!afs_suser(NULL)) {     /* only root can run this code */
1703 #if defined(KERNEL_HAVE_UERROR)
1704         setuerror(EACCES);
1705         return EACCES;
1706 #else
1707         return EPERM;
1708 #endif
1709     }
1710 #endif
1711     switch (opcode) {
1712     case ICL_OP_COPYOUTCLR:     /* copy out data then clear */
1713     case ICL_OP_COPYOUT:        /* copy ouy data */
1714         /* copyout: p1=logname, p2=&buffer, p3=size(words), p4=&cookie
1715          * return flags<<24 + nwords.
1716          * updates cookie to updated start (not end) if we had to
1717          * skip some records.
1718          */
1719         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1720         if (code)
1721             return code;
1722         AFS_COPYIN((char *)p4, (char *)&startCookie, sizeof(afs_int32), code);
1723         if (code)
1724             return code;
1725         logp = afs_icl_FindLog(tname);
1726         if (!logp)
1727             return ENOENT;
1728 #define BUFFERSIZE      AFS_LRALLOCSIZ
1729         lp = (afs_int32 *) osi_AllocLargeSpace(AFS_LRALLOCSIZ);
1730         elts = BUFFERSIZE / sizeof(afs_int32);
1731         if (p3 < elts)
1732             elts = p3;
1733         flags = (opcode == ICL_OP_COPYOUT) ? 0 : ICL_COPYOUTF_CLRAFTERREAD;
1734         code =
1735             afs_icl_CopyOut(logp, lp, &elts, (afs_uint32 *) & startCookie,
1736                             &flags);
1737         if (code) {
1738             osi_FreeLargeSpace((struct osi_buffer *)lp);
1739             break;
1740         }
1741         AFS_COPYOUT((char *)lp, (char *)p2, elts * sizeof(afs_int32), code);
1742         if (code)
1743             goto done;
1744         AFS_COPYOUT((char *)&startCookie, (char *)p4, sizeof(afs_int32),
1745                     code);
1746         if (code)
1747             goto done;
1748 #if defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL)
1749         if (!(IS64U))
1750             *retval = ((long)((flags << 24) | (elts & 0xffffff))) << 32;
1751         else
1752 #endif
1753             *retval = (flags << 24) | (elts & 0xffffff);
1754       done:
1755         afs_icl_LogRele(logp);
1756         osi_FreeLargeSpace((struct osi_buffer *)lp);
1757         break;
1758
1759     case ICL_OP_ENUMLOGS:       /* enumerate logs */
1760         /* enumerate logs: p1=index, p2=&name, p3=sizeof(name), p4=&size.
1761          * return 0 for success, otherwise error.
1762          */
1763         for (tlp = afs_icl_allLogs; tlp; tlp = tlp->nextp) {
1764             if (p1-- == 0)
1765                 break;
1766         }
1767         if (!tlp)
1768             return ENOENT;      /* past the end of file */
1769         temp = strlen(tlp->name) + 1;
1770         if (temp > p3)
1771             return EINVAL;
1772         AFS_COPYOUT(tlp->name, (char *)p2, temp, code);
1773         if (!code)              /* copy out size of log */
1774             AFS_COPYOUT((char *)&tlp->logSize, (char *)p4, sizeof(afs_int32),
1775                         code);
1776         break;
1777
1778     case ICL_OP_ENUMLOGSBYSET:  /* enumerate logs by set name */
1779         /* enumerate logs: p1=setname, p2=index, p3=&name, p4=sizeof(name).
1780          * return 0 for success, otherwise error.
1781          */
1782         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1783         if (code)
1784             return code;
1785         setp = afs_icl_FindSet(tname);
1786         if (!setp)
1787             return ENOENT;
1788         if (p2 > ICL_LOGSPERSET)
1789             return EINVAL;
1790         if (!(tlp = setp->logs[p2]))
1791             return EBADF;
1792         temp = strlen(tlp->name) + 1;
1793         if (temp > p4)
1794             return EINVAL;
1795         AFS_COPYOUT(tlp->name, (char *)p3, temp, code);
1796         break;
1797
1798     case ICL_OP_CLRLOG: /* clear specified log */
1799         /* zero out the specified log: p1=logname */
1800         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1801         if (code)
1802             return code;
1803         logp = afs_icl_FindLog(tname);
1804         if (!logp)
1805             return ENOENT;
1806         code = afs_icl_ZeroLog(logp);
1807         afs_icl_LogRele(logp);
1808         break;
1809
1810     case ICL_OP_CLRSET: /* clear specified set */
1811         /* zero out the specified set: p1=setname */
1812         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1813         if (code)
1814             return code;
1815         setp = afs_icl_FindSet(tname);
1816         if (!setp)
1817             return ENOENT;
1818         code = afs_icl_ZeroSet(setp);
1819         afs_icl_SetRele(setp);
1820         break;
1821
1822     case ICL_OP_CLRALL: /* clear all logs */
1823         /* zero out all logs -- no args */
1824         code = 0;
1825         ObtainWriteLock(&afs_icl_lock, 178);
1826         for (tlp = afs_icl_allLogs; tlp; tlp = tlp->nextp) {
1827             tlp->refCount++;    /* hold this guy */
1828             ReleaseWriteLock(&afs_icl_lock);
1829             /* don't clear persistent logs */
1830             if ((tlp->states & ICL_LOGF_PERSISTENT) == 0)
1831                 code = afs_icl_ZeroLog(tlp);
1832             ObtainWriteLock(&afs_icl_lock, 179);
1833             if (--tlp->refCount == 0)
1834                 afs_icl_ZapLog(tlp);
1835             if (code)
1836                 break;
1837         }
1838         ReleaseWriteLock(&afs_icl_lock);
1839         break;
1840
1841     case ICL_OP_ENUMSETS:       /* enumerate all sets */
1842         /* enumerate sets: p1=index, p2=&name, p3=sizeof(name), p4=&states.
1843          * return 0 for success, otherwise error.
1844          */
1845         for (setp = afs_icl_allSets; setp; setp = setp->nextp) {
1846             if (p1-- == 0)
1847                 break;
1848         }
1849         if (!setp)
1850             return ENOENT;      /* past the end of file */
1851         temp = strlen(setp->name) + 1;
1852         if (temp > p3)
1853             return EINVAL;
1854         AFS_COPYOUT(setp->name, (char *)p2, temp, code);
1855         if (!code)              /* copy out size of log */
1856             AFS_COPYOUT((char *)&setp->states, (char *)p4, sizeof(afs_int32),
1857                         code);
1858         break;
1859
1860     case ICL_OP_SETSTAT:        /* set status on a set */
1861         /* activate the specified set: p1=setname, p2=op */
1862         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1863         if (code)
1864             return code;
1865         setp = afs_icl_FindSet(tname);
1866         if (!setp)
1867             return ENOENT;
1868         code = afs_icl_SetSetStat(setp, p2);
1869         afs_icl_SetRele(setp);
1870         break;
1871
1872     case ICL_OP_SETSTATALL:     /* set status on all sets */
1873         /* activate the specified set: p1=op */
1874         code = 0;
1875         ObtainWriteLock(&afs_icl_lock, 180);
1876         for (setp = afs_icl_allSets; setp; setp = setp->nextp) {
1877             setp->refCount++;   /* hold this guy */
1878             ReleaseWriteLock(&afs_icl_lock);
1879             /* don't set states on persistent sets */
1880             if ((setp->states & ICL_SETF_PERSISTENT) == 0)
1881                 code = afs_icl_SetSetStat(setp, p1);
1882             ObtainWriteLock(&afs_icl_lock, 181);
1883             if (--setp->refCount == 0)
1884                 afs_icl_ZapSet(setp);
1885             if (code)
1886                 break;
1887         }
1888         ReleaseWriteLock(&afs_icl_lock);
1889         break;
1890
1891     case ICL_OP_SETLOGSIZE:     /* set size of log */
1892         /* set the size of the specified log: p1=logname, p2=size (in words) */
1893         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1894         if (code)
1895             return code;
1896         logp = afs_icl_FindLog(tname);
1897         if (!logp)
1898             return ENOENT;
1899         code = afs_icl_LogSetSize(logp, p2);
1900         afs_icl_LogRele(logp);
1901         break;
1902
1903     case ICL_OP_GETLOGINFO:     /* get size of log */
1904         /* zero out the specified log: p1=logname, p2=&logSize, p3=&allocated */
1905         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1906         if (code)
1907             return code;
1908         logp = afs_icl_FindLog(tname);
1909         if (!logp)
1910             return ENOENT;
1911         allocated = !!logp->datap;
1912         AFS_COPYOUT((char *)&logp->logSize, (char *)p2, sizeof(afs_int32),
1913                     code);
1914         if (!code)
1915             AFS_COPYOUT((char *)&allocated, (char *)p3, sizeof(afs_int32),
1916                         code);
1917         afs_icl_LogRele(logp);
1918         break;
1919
1920     case ICL_OP_GETSETINFO:     /* get state of set */
1921         /* zero out the specified set: p1=setname, p2=&state */
1922         AFS_COPYINSTR((char *)p1, tname, sizeof(tname), &temp, code);
1923         if (code)
1924             return code;
1925         setp = afs_icl_FindSet(tname);
1926         if (!setp)
1927             return ENOENT;
1928         AFS_COPYOUT((char *)&setp->states, (char *)p2, sizeof(afs_int32),
1929                     code);
1930         afs_icl_SetRele(setp);
1931         break;
1932
1933     default:
1934         code = EINVAL;
1935     }
1936
1937     return code;
1938 }
1939
1940
1941 afs_lock_t afs_icl_lock;
1942
1943 /* exported routine: a 4 parameter event */
1944 int
1945 afs_icl_Event4(register struct afs_icl_set *setp, afs_int32 eventID,
1946                afs_int32 lAndT, long p1, long p2, long p3, long p4)
1947 {
1948     afs_int32 mask;
1949     register int i;
1950     register afs_int32 tmask;
1951     int ix;
1952
1953     /* If things aren't init'ed yet (or the set is inactive), don't panic */
1954     if (!ICL_SETACTIVE(setp))
1955         return 0;
1956
1957     AFS_ASSERT_GLOCK();
1958     mask = lAndT >> 24 & 0xff;  /* mask of which logs to log to */
1959     ix = ICL_EVENTBYTE(eventID);
1960     ObtainReadLock(&setp->lock);
1961     if (setp->eventFlags[ix] & ICL_EVENTMASK(eventID)) {
1962         for (i = 0, tmask = 1; i < ICL_LOGSPERSET; i++, tmask <<= 1) {
1963             if (mask & tmask) {
1964                 afs_icl_AppendRecord(setp->logs[i], eventID, lAndT & 0xffffff,
1965                                      p1, p2, p3, p4);
1966             }
1967             mask &= ~tmask;
1968             if (mask == 0)
1969                 break;          /* break early */
1970         }
1971     }
1972     ReleaseReadLock(&setp->lock);
1973     return 0;
1974 }
1975
1976 /* Next 4 routines should be implemented via var-args or something.
1977  * Whole purpose is to avoid compiler warnings about parameter # mismatches.
1978  * Otherwise, could call afs_icl_Event4 directly.
1979  */
1980 int
1981 afs_icl_Event3(register struct afs_icl_set *setp, afs_int32 eventID,
1982                afs_int32 lAndT, long p1, long p2, long p3)
1983 {
1984     return afs_icl_Event4(setp, eventID, lAndT, p1, p2, p3, (long)0);
1985 }
1986
1987 int
1988 afs_icl_Event2(register struct afs_icl_set *setp, afs_int32 eventID,
1989                afs_int32 lAndT, long p1, long p2)
1990 {
1991     return afs_icl_Event4(setp, eventID, lAndT, p1, p2, (long)0, (long)0);
1992 }
1993
1994 int
1995 afs_icl_Event1(register struct afs_icl_set *setp, afs_int32 eventID,
1996                afs_int32 lAndT, long p1)
1997 {
1998     return afs_icl_Event4(setp, eventID, lAndT, p1, (long)0, (long)0,
1999                           (long)0);
2000 }
2001
2002 int
2003 afs_icl_Event0(register struct afs_icl_set *setp, afs_int32 eventID,
2004                afs_int32 lAndT)
2005 {
2006     return afs_icl_Event4(setp, eventID, lAndT, (long)0, (long)0, (long)0,
2007                           (long)0);
2008 }
2009
2010 struct afs_icl_log *afs_icl_allLogs = 0;
2011
2012 /* function to purge records from the start of the log, until there
2013  * is at least minSpace long's worth of space available without
2014  * making the head and the tail point to the same word.
2015  *
2016  * Log must be write-locked.
2017  */
2018 static void
2019 afs_icl_GetLogSpace(register struct afs_icl_log *logp, afs_int32 minSpace)
2020 {
2021     register unsigned int tsize;
2022
2023     while (logp->logSize - logp->logElements <= minSpace) {
2024         /* eat a record */
2025         tsize = ((logp->datap[logp->firstUsed]) >> 24) & 0xff;
2026         logp->logElements -= tsize;
2027         logp->firstUsed += tsize;
2028         if (logp->firstUsed >= logp->logSize)
2029             logp->firstUsed -= logp->logSize;
2030         logp->baseCookie += tsize;
2031     }
2032 }
2033
2034 /* append string astr to buffer, including terminating null char.
2035  *
2036  * log must be write-locked.
2037  */
2038 #define ICL_CHARSPERLONG        4
2039 static void
2040 afs_icl_AppendString(struct afs_icl_log *logp, char *astr)
2041 {
2042     char *op;                   /* ptr to char to write */
2043     int tc;
2044     register int bib;           /* bytes in buffer */
2045
2046     bib = 0;
2047     op = (char *)&(logp->datap[logp->firstFree]);
2048     while (1) {
2049         tc = *astr++;
2050         *op++ = tc;
2051         if (++bib >= ICL_CHARSPERLONG) {
2052             /* new word */
2053             bib = 0;
2054             if (++(logp->firstFree) >= logp->logSize) {
2055                 logp->firstFree = 0;
2056                 op = (char *)&(logp->datap[0]);
2057             }
2058             logp->logElements++;
2059         }
2060         if (tc == 0)
2061             break;
2062     }
2063     if (bib > 0) {
2064         /* if we've used this word at all, allocate it */
2065         if (++(logp->firstFree) >= logp->logSize) {
2066             logp->firstFree = 0;
2067         }
2068         logp->logElements++;
2069     }
2070 }
2071
2072 /* add a long to the log, ignoring overflow (checked already) */
2073 #define ICL_APPENDINT32(lp, x) \
2074     MACRO_BEGIN \
2075         (lp)->datap[(lp)->firstFree] = (x); \
2076         if (++((lp)->firstFree) >= (lp)->logSize) { \
2077                 (lp)->firstFree = 0; \
2078         } \
2079         (lp)->logElements++; \
2080     MACRO_END
2081
2082 #if defined(AFS_ALPHA_ENV) || (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG==64)) || (defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL))
2083 #define ICL_APPENDLONG(lp, x) \
2084     MACRO_BEGIN \
2085         ICL_APPENDINT32((lp), ((x) >> 32) & 0xffffffffL); \
2086         ICL_APPENDINT32((lp), (x) & 0xffffffffL); \
2087     MACRO_END
2088
2089 #else /* AFS_ALPHA_ENV */
2090 #define ICL_APPENDLONG(lp, x) ICL_APPENDINT32((lp), (x))
2091 #endif /* AFS_ALPHA_ENV */
2092
2093 /* routine to tell whether we're dealing with the address or the
2094  * object itself
2095  */
2096 int
2097 afs_icl_UseAddr(int type)
2098 {
2099     if (type == ICL_TYPE_HYPER || type == ICL_TYPE_STRING
2100         || type == ICL_TYPE_FID || type == ICL_TYPE_INT64)
2101         return 1;
2102     else
2103         return 0;
2104 }
2105
2106 /* Function to append a record to the log.  Written for speed
2107  * since we know that we're going to have to make this work fast
2108  * pretty soon, anyway.  The log must be unlocked.
2109  */
2110
2111 void
2112 afs_icl_AppendRecord(register struct afs_icl_log *logp, afs_int32 op,
2113                      afs_int32 types, long p1, long p2, long p3, long p4)
2114 {
2115     int rsize;                  /* record size in longs */
2116     register int tsize;         /* temp size */
2117     osi_timeval_t tv;
2118     int t1, t2, t3, t4;
2119
2120     t4 = types & 0x3f;          /* decode types */
2121     types >>= 6;
2122     t3 = types & 0x3f;
2123     types >>= 6;
2124     t2 = types & 0x3f;
2125     types >>= 6;
2126     t1 = types & 0x3f;
2127
2128     osi_GetTime(&tv);           /* It panics for solaris if inside */
2129     ObtainWriteLock(&logp->lock, 182);
2130     if (!logp->datap) {
2131         ReleaseWriteLock(&logp->lock);
2132         return;
2133     }
2134
2135     /* get timestamp as # of microseconds since some time that doesn't
2136      * change that often.  This algorithm ticks over every 20 minutes
2137      * or so (1000 seconds).  Write a timestamp record if it has.
2138      */
2139     if (tv.tv_sec - logp->lastTS > 1024) {
2140         /* the timer has wrapped -- write a timestamp record */
2141         if (logp->logSize - logp->logElements <= 5)
2142             afs_icl_GetLogSpace(logp, 5);
2143
2144         ICL_APPENDINT32(logp,
2145                         (afs_int32) (5 << 24) + (ICL_TYPE_UNIXDATE << 18));
2146         ICL_APPENDINT32(logp, (afs_int32) ICL_INFO_TIMESTAMP);
2147         ICL_APPENDINT32(logp, (afs_int32) 0);   /* use thread ID zero for clocks */
2148         ICL_APPENDINT32(logp,
2149                         (afs_int32) (tv.tv_sec & 0x3ff) * 1000000 +
2150                         tv.tv_usec);
2151         ICL_APPENDINT32(logp, (afs_int32) tv.tv_sec);
2152
2153         logp->lastTS = tv.tv_sec;
2154     }
2155
2156     rsize = 4;                  /* base case */
2157     if (t1) {
2158         /* compute size of parameter p1.  Only tricky case is string.
2159          * In that case, we have to call strlen to get the string length.
2160          */
2161         ICL_SIZEHACK(t1, p1);
2162     }
2163     if (t2) {
2164         /* compute size of parameter p2.  Only tricky case is string.
2165          * In that case, we have to call strlen to get the string length.
2166          */
2167         ICL_SIZEHACK(t2, p2);
2168     }
2169     if (t3) {
2170         /* compute size of parameter p3.  Only tricky case is string.
2171          * In that case, we have to call strlen to get the string length.
2172          */
2173         ICL_SIZEHACK(t3, p3);
2174     }
2175     if (t4) {
2176         /* compute size of parameter p4.  Only tricky case is string.
2177          * In that case, we have to call strlen to get the string length.
2178          */
2179         ICL_SIZEHACK(t4, p4);
2180     }
2181
2182     /* At this point, we've computed all of the parameter sizes, and
2183      * have in rsize the size of the entire record we want to append.
2184      * Next, we check that we actually have room in the log to do this
2185      * work, and then we do the append.
2186      */
2187     if (rsize > 255) {
2188         ReleaseWriteLock(&logp->lock);
2189         return;                 /* log record too big to express */
2190     }
2191
2192     if (logp->logSize - logp->logElements <= rsize)
2193         afs_icl_GetLogSpace(logp, rsize);
2194
2195     ICL_APPENDINT32(logp,
2196                     (afs_int32) (rsize << 24) + (t1 << 18) + (t2 << 12) +
2197                     (t3 << 6) + t4);
2198     ICL_APPENDINT32(logp, (afs_int32) op);
2199     ICL_APPENDINT32(logp, (afs_int32) osi_ThreadUnique());
2200     ICL_APPENDINT32(logp,
2201                     (afs_int32) (tv.tv_sec & 0x3ff) * 1000000 + tv.tv_usec);
2202
2203     if (t1) {
2204         /* marshall parameter 1 now */
2205         if (t1 == ICL_TYPE_STRING) {
2206             afs_icl_AppendString(logp, (char *)p1);
2207         } else if (t1 == ICL_TYPE_HYPER) {
2208             ICL_APPENDINT32(logp,
2209                             (afs_int32) ((struct afs_hyper_t *)p1)->high);
2210             ICL_APPENDINT32(logp,
2211                             (afs_int32) ((struct afs_hyper_t *)p1)->low);
2212         } else if (t1 == ICL_TYPE_INT64) {
2213 #ifdef AFSLITTLE_ENDIAN
2214 #ifdef AFS_64BIT_CLIENT
2215             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[1]);
2216             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[0]);
2217 #else /* AFS_64BIT_CLIENT */
2218             ICL_APPENDINT32(logp, (afs_int32) p1);
2219             ICL_APPENDINT32(logp, (afs_int32) 0);
2220 #endif /* AFS_64BIT_CLIENT */
2221 #else /* AFSLITTLE_ENDIAN */
2222 #ifdef AFS_64BIT_CLIENT
2223             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[0]);
2224             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[1]);
2225 #else /* AFS_64BIT_CLIENT */
2226             ICL_APPENDINT32(logp, (afs_int32) 0);
2227             ICL_APPENDINT32(logp, (afs_int32) p1);
2228 #endif /* AFS_64BIT_CLIENT */
2229 #endif /* AFSLITTLE_ENDIAN */
2230         } else if (t1 == ICL_TYPE_FID) {
2231             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[0]);
2232             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[1]);
2233             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[2]);
2234             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p1)[3]);
2235         }
2236 #if defined(AFS_ALPHA_ENV) || (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG==64)) || (defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL))
2237         else if (t1 == ICL_TYPE_INT32)
2238             ICL_APPENDINT32(logp, (afs_int32) p1);
2239 #endif /* AFS_ALPHA_ENV */
2240         else
2241             ICL_APPENDLONG(logp, p1);
2242     }
2243     if (t2) {
2244         /* marshall parameter 2 now */
2245         if (t2 == ICL_TYPE_STRING)
2246             afs_icl_AppendString(logp, (char *)p2);
2247         else if (t2 == ICL_TYPE_HYPER) {
2248             ICL_APPENDINT32(logp,
2249                             (afs_int32) ((struct afs_hyper_t *)p2)->high);
2250             ICL_APPENDINT32(logp,
2251                             (afs_int32) ((struct afs_hyper_t *)p2)->low);
2252         } else if (t2 == ICL_TYPE_INT64) {
2253 #ifdef AFSLITTLE_ENDIAN
2254 #ifdef AFS_64BIT_CLIENT
2255             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[1]);
2256             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[0]);
2257 #else /* AFS_64BIT_CLIENT */
2258             ICL_APPENDINT32(logp, (afs_int32) p2);
2259             ICL_APPENDINT32(logp, (afs_int32) 0);
2260 #endif /* AFS_64BIT_CLIENT */
2261 #else /* AFSLITTLE_ENDIAN */
2262 #ifdef AFS_64BIT_CLIENT
2263             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[0]);
2264             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[1]);
2265 #else /* AFS_64BIT_CLIENT */
2266             ICL_APPENDINT32(logp, (afs_int32) 0);
2267             ICL_APPENDINT32(logp, (afs_int32) p2);
2268 #endif /* AFS_64BIT_CLIENT */
2269 #endif /* AFSLITTLE_ENDIAN */
2270         } else if (t2 == ICL_TYPE_FID) {
2271             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[0]);
2272             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[1]);
2273             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[2]);
2274             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p2)[3]);
2275         }
2276 #if defined(AFS_ALPHA_ENV) || (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG==64)) || (defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL))
2277         else if (t2 == ICL_TYPE_INT32)
2278             ICL_APPENDINT32(logp, (afs_int32) p2);
2279 #endif /* AFS_ALPHA_ENV */
2280         else
2281             ICL_APPENDLONG(logp, p2);
2282     }
2283     if (t3) {
2284         /* marshall parameter 3 now */
2285         if (t3 == ICL_TYPE_STRING)
2286             afs_icl_AppendString(logp, (char *)p3);
2287         else if (t3 == ICL_TYPE_HYPER) {
2288             ICL_APPENDINT32(logp,
2289                             (afs_int32) ((struct afs_hyper_t *)p3)->high);
2290             ICL_APPENDINT32(logp,
2291                             (afs_int32) ((struct afs_hyper_t *)p3)->low);
2292         } else if (t3 == ICL_TYPE_INT64) {
2293 #ifdef AFSLITTLE_ENDIAN
2294 #ifdef AFS_64BIT_CLIENT
2295             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[1]);
2296             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[0]);
2297 #else /* AFS_64BIT_CLIENT */
2298             ICL_APPENDINT32(logp, (afs_int32) p3);
2299             ICL_APPENDINT32(logp, (afs_int32) 0);
2300 #endif /* AFS_64BIT_CLIENT */
2301 #else /* AFSLITTLE_ENDIAN */
2302 #ifdef AFS_64BIT_CLIENT
2303             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[0]);
2304             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[1]);
2305 #else /* AFS_64BIT_CLIENT */
2306             ICL_APPENDINT32(logp, (afs_int32) 0);
2307             ICL_APPENDINT32(logp, (afs_int32) p3);
2308 #endif /* AFS_64BIT_CLIENT */
2309 #endif /* AFSLITTLE_ENDIAN */
2310         } else if (t3 == ICL_TYPE_FID) {
2311             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[0]);
2312             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[1]);
2313             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[2]);
2314             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p3)[3]);
2315         }
2316 #if defined(AFS_ALPHA_ENV) || (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG==64)) || (defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL))
2317         else if (t3 == ICL_TYPE_INT32)
2318             ICL_APPENDINT32(logp, (afs_int32) p3);
2319 #endif /* AFS_ALPHA_ENV */
2320         else
2321             ICL_APPENDLONG(logp, p3);
2322     }
2323     if (t4) {
2324         /* marshall parameter 4 now */
2325         if (t4 == ICL_TYPE_STRING)
2326             afs_icl_AppendString(logp, (char *)p4);
2327         else if (t4 == ICL_TYPE_HYPER) {
2328             ICL_APPENDINT32(logp,
2329                             (afs_int32) ((struct afs_hyper_t *)p4)->high);
2330             ICL_APPENDINT32(logp,
2331                             (afs_int32) ((struct afs_hyper_t *)p4)->low);
2332         } else if (t4 == ICL_TYPE_INT64) {
2333 #ifdef AFSLITTLE_ENDIAN
2334 #ifdef AFS_64BIT_CLIENT
2335             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[1]);
2336             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[0]);
2337 #else /* AFS_64BIT_CLIENT */
2338             ICL_APPENDINT32(logp, (afs_int32) p4);
2339             ICL_APPENDINT32(logp, (afs_int32) 0);
2340 #endif /* AFS_64BIT_CLIENT */
2341 #else /* AFSLITTLE_ENDIAN */
2342 #ifdef AFS_64BIT_CLIENT
2343             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[0]);
2344             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[1]);
2345 #else /* AFS_64BIT_CLIENT */
2346             ICL_APPENDINT32(logp, (afs_int32) 0);
2347             ICL_APPENDINT32(logp, (afs_int32) p4);
2348 #endif /* AFS_64BIT_CLIENT */
2349 #endif /* AFSLITTLE_ENDIAN */
2350         } else if (t4 == ICL_TYPE_FID) {
2351             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[0]);
2352             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[1]);
2353             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[2]);
2354             ICL_APPENDINT32(logp, (afs_int32) ((afs_int32 *) p4)[3]);
2355         }
2356 #if defined(AFS_ALPHA_ENV) || (defined(AFS_SGI61_ENV) && (_MIPS_SZLONG==64)) || (defined(AFS_AIX51_ENV) && defined(AFS_64BIT_KERNEL))
2357         else if (t4 == ICL_TYPE_INT32)
2358             ICL_APPENDINT32(logp, (afs_int32) p4);
2359 #endif /* AFS_ALPHA_ENV */
2360         else
2361             ICL_APPENDLONG(logp, p4);
2362     }
2363     ReleaseWriteLock(&logp->lock);
2364 }
2365
2366 /* create a log with size logSize; return it in *outLogpp and tag
2367  * it with name "name."
2368  */
2369 int
2370 afs_icl_CreateLog(char *name, afs_int32 logSize,
2371                   struct afs_icl_log **outLogpp)
2372 {
2373     return afs_icl_CreateLogWithFlags(name, logSize, /*flags */ 0, outLogpp);
2374 }
2375
2376 /* create a log with size logSize; return it in *outLogpp and tag
2377  * it with name "name."  'flags' can be set to make the log unclearable.
2378  */
2379 int
2380 afs_icl_CreateLogWithFlags(char *name, afs_int32 logSize, afs_uint32 flags,
2381                            struct afs_icl_log **outLogpp)
2382 {
2383     register struct afs_icl_log *logp;
2384
2385     /* add into global list under lock */
2386     ObtainWriteLock(&afs_icl_lock, 183);
2387     if (!afs_icl_inited)
2388         afs_icl_Init();
2389
2390     for (logp = afs_icl_allLogs; logp; logp = logp->nextp) {
2391         if (strcmp(logp->name, name) == 0) {
2392             /* found it already created, just return it */
2393             logp->refCount++;
2394             *outLogpp = logp;
2395             if (flags & ICL_CRLOG_FLAG_PERSISTENT) {
2396                 ObtainWriteLock(&logp->lock, 184);
2397                 logp->states |= ICL_LOGF_PERSISTENT;
2398                 ReleaseWriteLock(&logp->lock);
2399             }
2400             ReleaseWriteLock(&afs_icl_lock);
2401             return 0;
2402         }
2403     }
2404
2405     logp = (struct afs_icl_log *)
2406         osi_AllocSmallSpace(sizeof(struct afs_icl_log));
2407     memset((caddr_t) logp, 0, sizeof(*logp));
2408
2409     logp->refCount = 1;
2410     logp->name = osi_AllocSmallSpace(strlen(name) + 1);
2411     strcpy(logp->name, name);
2412     LOCK_INIT(&logp->lock, "logp lock");
2413     logp->logSize = logSize;
2414     logp->datap = NULL;         /* don't allocate it until we need it */
2415
2416     if (flags & ICL_CRLOG_FLAG_PERSISTENT)
2417         logp->states |= ICL_LOGF_PERSISTENT;
2418
2419     logp->nextp = afs_icl_allLogs;
2420     afs_icl_allLogs = logp;
2421     ReleaseWriteLock(&afs_icl_lock);
2422
2423     *outLogpp = logp;
2424     return 0;
2425 }
2426
2427 /* called with a log, a pointer to a buffer, the size of the buffer
2428  * (in *bufSizep), the starting cookie (in *cookiep, use 0 at the start)
2429  * and returns data in the provided buffer, and returns output flags
2430  * in *flagsp.  The flag ICL_COPYOUTF_MISSEDSOME is set if we can't
2431  * find the record with cookie value cookie.
2432  */
2433 int
2434 afs_icl_CopyOut(register struct afs_icl_log *logp, afs_int32 * bufferp,
2435                 afs_int32 * bufSizep, afs_uint32 * cookiep,
2436                 afs_int32 * flagsp)
2437 {
2438     afs_int32 nwords;           /* number of words to copy out */
2439     afs_uint32 startCookie;     /* first cookie to use */
2440     afs_int32 outWords;         /* words we've copied out */
2441     afs_int32 inWords;          /* max words to copy out */
2442     afs_int32 code;             /* return code */
2443     afs_int32 ix;               /* index we're copying from */
2444     afs_int32 outFlags;         /* return flags */
2445     afs_int32 inFlags;          /* flags passed in */
2446     afs_int32 end;
2447
2448     inWords = *bufSizep;        /* max to copy out */
2449     outWords = 0;               /* amount copied out */
2450     startCookie = *cookiep;
2451     outFlags = 0;
2452     inFlags = *flagsp;
2453     code = 0;
2454
2455     ObtainWriteLock(&logp->lock, 185);
2456     if (!logp->datap) {
2457         ReleaseWriteLock(&logp->lock);
2458         goto done;
2459     }
2460
2461     /* first, compute the index of the start cookie we've been passed */
2462     while (1) {
2463         /* (re-)compute where we should start */
2464         if (startCookie < logp->baseCookie) {
2465             if (startCookie)    /* missed some output */
2466                 outFlags |= ICL_COPYOUTF_MISSEDSOME;
2467             /* skip to the first available record */
2468             startCookie = logp->baseCookie;
2469             *cookiep = startCookie;
2470         }
2471
2472         /* compute where we find the first element to copy out */
2473         ix = logp->firstUsed + startCookie - logp->baseCookie;
2474         if (ix >= logp->logSize)
2475             ix -= logp->logSize;
2476
2477         /* if have some data now, break out and process it */
2478         if (startCookie - logp->baseCookie < logp->logElements)
2479             break;
2480
2481         /* At end of log, so clear it if we need to */
2482         if (inFlags & ICL_COPYOUTF_CLRAFTERREAD) {
2483             logp->firstUsed = logp->firstFree = 0;
2484             logp->logElements = 0;
2485         }
2486         /* otherwise, either wait for the data to arrive, or return */
2487         if (!(inFlags & ICL_COPYOUTF_WAITIO)) {
2488             ReleaseWriteLock(&logp->lock);
2489             code = 0;
2490             goto done;
2491         }
2492         logp->states |= ICL_LOGF_WAITING;
2493         ReleaseWriteLock(&logp->lock);
2494         afs_osi_Sleep(&logp->lock);
2495         ObtainWriteLock(&logp->lock, 186);
2496     }
2497     /* copy out data from ix to logSize or firstFree, depending
2498      * upon whether firstUsed <= firstFree (no wrap) or otherwise.
2499      * be careful not to copy out more than nwords.
2500      */
2501     if (ix >= logp->firstUsed) {
2502         if (logp->firstUsed <= logp->firstFree)
2503             /* no wrapping */
2504             end = logp->firstFree;      /* first element not to copy */
2505         else
2506             end = logp->logSize;
2507         nwords = inWords;       /* don't copy more than this */
2508         if (end - ix < nwords)
2509             nwords = end - ix;
2510         if (nwords > 0) {
2511             memcpy((char *)bufferp, (char *)&logp->datap[ix],
2512                    sizeof(afs_int32) * nwords);
2513             outWords += nwords;
2514             inWords -= nwords;
2515             bufferp += nwords;
2516         }
2517         /* if we're going to copy more out below, we'll start here */
2518         ix = 0;
2519     }
2520     /* now, if active part of the log has wrapped, there's more stuff
2521      * starting at the head of the log.  Copy out more from there.
2522      */
2523     if (logp->firstUsed > logp->firstFree && ix < logp->firstFree
2524         && inWords > 0) {
2525         /* (more to) copy out from the wrapped section at the
2526          * start of the log.  May get here even if didn't copy any
2527          * above, if the cookie points directly into the wrapped section.
2528          */
2529         nwords = inWords;
2530         if (logp->firstFree - ix < nwords)
2531             nwords = logp->firstFree - ix;
2532         memcpy((char *)bufferp, (char *)&logp->datap[ix],
2533                sizeof(afs_int32) * nwords);
2534         outWords += nwords;
2535         inWords -= nwords;
2536         bufferp += nwords;
2537     }
2538
2539     ReleaseWriteLock(&logp->lock);
2540
2541   done:
2542     if (code == 0) {
2543         *bufSizep = outWords;
2544         *flagsp = outFlags;
2545     }
2546     return code;
2547 }
2548
2549 /* return basic parameter information about a log */
2550 int
2551 afs_icl_GetLogParms(struct afs_icl_log *logp, afs_int32 * maxSizep,
2552                     afs_int32 * curSizep)
2553 {
2554     ObtainReadLock(&logp->lock);
2555     *maxSizep = logp->logSize;
2556     *curSizep = logp->logElements;
2557     ReleaseReadLock(&logp->lock);
2558     return 0;
2559 }
2560
2561
2562 /* hold and release logs */
2563 int
2564 afs_icl_LogHold(register struct afs_icl_log *logp)
2565 {
2566     ObtainWriteLock(&afs_icl_lock, 187);
2567     logp->refCount++;
2568     ReleaseWriteLock(&afs_icl_lock);
2569     return 0;
2570 }
2571
2572 /* hold and release logs, called with lock already held */
2573 int
2574 afs_icl_LogHoldNL(register struct afs_icl_log *logp)
2575 {
2576     logp->refCount++;
2577     return 0;
2578 }
2579
2580 /* keep track of how many sets believe the log itself is allocated */
2581 int
2582 afs_icl_LogUse(register struct afs_icl_log *logp)
2583 {
2584     ObtainWriteLock(&logp->lock, 188);
2585     if (logp->setCount == 0) {
2586         /* this is the first set actually using the log -- allocate it */
2587         if (logp->logSize == 0) {
2588             /* we weren't passed in a hint and it wasn't set */
2589             logp->logSize = ICL_DEFAULT_LOGSIZE;
2590         }
2591         logp->datap =
2592             (afs_int32 *) afs_osi_Alloc(sizeof(afs_int32) * logp->logSize);
2593 #ifdef  KERNEL_HAVE_PIN
2594         pin((char *)logp->datap, sizeof(afs_int32) * logp->logSize);
2595 #endif
2596     }
2597     logp->setCount++;
2598     ReleaseWriteLock(&logp->lock);
2599     return 0;
2600 }
2601
2602 /* decrement the number of real users of the log, free if possible */
2603 int
2604 afs_icl_LogFreeUse(register struct afs_icl_log *logp)
2605 {
2606     ObtainWriteLock(&logp->lock, 189);
2607     if (--logp->setCount == 0) {
2608         /* no more users -- free it (but keep log structure around) */
2609         afs_osi_Free(logp->datap, sizeof(afs_int32) * logp->logSize);
2610 #ifdef  KERNEL_HAVE_PIN
2611         unpin((char *)logp->datap, sizeof(afs_int32) * logp->logSize);
2612 #endif
2613         logp->firstUsed = logp->firstFree = 0;
2614         logp->logElements = 0;
2615         logp->datap = NULL;
2616     }
2617     ReleaseWriteLock(&logp->lock);
2618     return 0;
2619 }
2620
2621 /* set the size of the log to 'logSize' */
2622 int
2623 afs_icl_LogSetSize(register struct afs_icl_log *logp, afs_int32 logSize)
2624 {
2625     ObtainWriteLock(&logp->lock, 190);
2626     if (!logp->datap) {
2627         /* nothing to worry about since it's not allocated */
2628         logp->logSize = logSize;
2629     } else {
2630         /* reset log */
2631         logp->firstUsed = logp->firstFree = 0;
2632         logp->logElements = 0;
2633
2634         /* free and allocate a new one */
2635         afs_osi_Free(logp->datap, sizeof(afs_int32) * logp->logSize);
2636 #ifdef  KERNEL_HAVE_PIN
2637         unpin((char *)logp->datap, sizeof(afs_int32) * logp->logSize);
2638 #endif
2639         logp->datap =
2640             (afs_int32 *) afs_osi_Alloc(sizeof(afs_int32) * logSize);
2641 #ifdef  KERNEL_HAVE_PIN
2642         pin((char *)logp->datap, sizeof(afs_int32) * logSize);
2643 #endif
2644         logp->logSize = logSize;
2645     }
2646     ReleaseWriteLock(&logp->lock);
2647
2648     return 0;
2649 }
2650
2651 /* free a log.  Called with afs_icl_lock locked. */
2652 int
2653 afs_icl_ZapLog(register struct afs_icl_log *logp)
2654 {
2655     register struct afs_icl_log **lpp, *tp;
2656
2657     for (lpp = &afs_icl_allLogs, tp = *lpp; tp; lpp = &tp->nextp, tp = *lpp) {
2658         if (tp == logp) {
2659             /* found the dude we want to remove */
2660             *lpp = logp->nextp;
2661             osi_FreeSmallSpace(logp->name);
2662             osi_FreeSmallSpace(logp->datap);
2663             osi_FreeSmallSpace(logp);
2664             break;              /* won't find it twice */
2665         }
2666     }
2667     return 0;
2668 }
2669
2670 /* do the release, watching for deleted entries */
2671 int
2672 afs_icl_LogRele(register struct afs_icl_log *logp)
2673 {
2674     ObtainWriteLock(&afs_icl_lock, 191);
2675     if (--logp->refCount == 0 && (logp->states & ICL_LOGF_DELETED)) {
2676         afs_icl_ZapLog(logp);   /* destroys logp's lock! */
2677     }
2678     ReleaseWriteLock(&afs_icl_lock);
2679     return 0;
2680 }
2681
2682 /* do the release, watching for deleted entries, log already held */
2683 int
2684 afs_icl_LogReleNL(register struct afs_icl_log *logp)
2685 {
2686     if (--logp->refCount == 0 && (logp->states & ICL_LOGF_DELETED)) {
2687         afs_icl_ZapLog(logp);   /* destroys logp's lock! */
2688     }
2689     return 0;
2690 }
2691
2692 /* zero out the log */
2693 int
2694 afs_icl_ZeroLog(register struct afs_icl_log *logp)
2695 {
2696     ObtainWriteLock(&logp->lock, 192);
2697     logp->firstUsed = logp->firstFree = 0;
2698     logp->logElements = 0;
2699     logp->baseCookie = 0;
2700     ReleaseWriteLock(&logp->lock);
2701     return 0;
2702 }
2703
2704 /* free a log entry, and drop its reference count */
2705 int
2706 afs_icl_LogFree(register struct afs_icl_log *logp)
2707 {
2708     ObtainWriteLock(&logp->lock, 193);
2709     logp->states |= ICL_LOGF_DELETED;
2710     ReleaseWriteLock(&logp->lock);
2711     afs_icl_LogRele(logp);
2712     return 0;
2713 }
2714
2715 /* find a log by name, returning it held */
2716 struct afs_icl_log *
2717 afs_icl_FindLog(char *name)
2718 {
2719     register struct afs_icl_log *tp;
2720     ObtainWriteLock(&afs_icl_lock, 194);
2721     for (tp = afs_icl_allLogs; tp; tp = tp->nextp) {
2722         if (strcmp(tp->name, name) == 0) {
2723             /* this is the dude we want */
2724             tp->refCount++;
2725             break;
2726         }
2727     }
2728     ReleaseWriteLock(&afs_icl_lock);
2729     return tp;
2730 }
2731
2732 int
2733 afs_icl_EnumerateLogs(int (*aproc)
2734                         (char *name, char *arock, struct afs_icl_log * tp),
2735                       char *arock)
2736 {
2737     register struct afs_icl_log *tp;
2738     register afs_int32 code;
2739
2740     code = 0;
2741     ObtainWriteLock(&afs_icl_lock, 195);
2742     for (tp = afs_icl_allLogs; tp; tp = tp->nextp) {
2743         tp->refCount++;         /* hold this guy */
2744         ReleaseWriteLock(&afs_icl_lock);
2745         ObtainReadLock(&tp->lock);
2746         code = (*aproc) (tp->name, arock, tp);
2747         ReleaseReadLock(&tp->lock);
2748         ObtainWriteLock(&afs_icl_lock, 196);
2749         if (--tp->refCount == 0)
2750             afs_icl_ZapLog(tp);
2751         if (code)
2752             break;
2753     }
2754     ReleaseWriteLock(&afs_icl_lock);
2755     return code;
2756 }
2757
2758 struct afs_icl_set *afs_icl_allSets = 0;
2759
2760 int
2761 afs_icl_CreateSet(char *name, struct afs_icl_log *baseLogp,
2762                   struct afs_icl_log *fatalLogp,
2763                   struct afs_icl_set **outSetpp)
2764 {
2765     return afs_icl_CreateSetWithFlags(name, baseLogp, fatalLogp,
2766                                       /*flags */ 0, outSetpp);
2767 }
2768
2769 /* create a set, given pointers to base and fatal logs, if any.
2770  * Logs are unlocked, but referenced, and *outSetpp is returned
2771  * referenced.  Function bumps reference count on logs, since it
2772  * addds references from the new afs_icl_set.  When the set is destroyed,
2773  * those references will be released.
2774  */
2775 int
2776 afs_icl_CreateSetWithFlags(char *name, struct afs_icl_log *baseLogp,
2777                            struct afs_icl_log *fatalLogp, afs_uint32 flags,
2778                            struct afs_icl_set **outSetpp)
2779 {
2780     register struct afs_icl_set *setp;
2781     register int i;
2782     afs_int32 states = ICL_DEFAULT_SET_STATES;
2783
2784     ObtainWriteLock(&afs_icl_lock, 197);
2785     if (!afs_icl_inited)
2786         afs_icl_Init();
2787
2788     for (setp = afs_icl_allSets; setp; setp = setp->nextp) {
2789         if (strcmp(setp->name, name) == 0) {
2790             setp->refCount++;
2791             *outSetpp = setp;
2792             if (flags & ICL_CRSET_FLAG_PERSISTENT) {
2793                 ObtainWriteLock(&setp->lock, 198);
2794                 setp->states |= ICL_SETF_PERSISTENT;
2795                 ReleaseWriteLock(&setp->lock);
2796             }
2797             ReleaseWriteLock(&afs_icl_lock);
2798             return 0;
2799         }
2800     }
2801
2802     /* determine initial state */
2803     if (flags & ICL_CRSET_FLAG_DEFAULT_ON)
2804         states = ICL_SETF_ACTIVE;
2805     else if (flags & ICL_CRSET_FLAG_DEFAULT_OFF)
2806         states = ICL_SETF_FREED;
2807     if (flags & ICL_CRSET_FLAG_PERSISTENT)
2808         states |= ICL_SETF_PERSISTENT;
2809
2810     setp = (struct afs_icl_set *)afs_osi_Alloc(sizeof(struct afs_icl_set));
2811     memset((caddr_t) setp, 0, sizeof(*setp));
2812     setp->refCount = 1;
2813     if (states & ICL_SETF_FREED)
2814         states &= ~ICL_SETF_ACTIVE;     /* if freed, can't be active */
2815     setp->states = states;
2816
2817     LOCK_INIT(&setp->lock, "setp lock");
2818     /* next lock is obtained in wrong order, hierarchy-wise, but
2819      * it doesn't matter, since no one can find this lock yet, since
2820      * the afs_icl_lock is still held, and thus the obtain can't block.
2821      */
2822     ObtainWriteLock(&setp->lock, 199);
2823     setp->name = osi_AllocSmallSpace(strlen(name) + 1);
2824     strcpy(setp->name, name);
2825     setp->nevents = ICL_DEFAULTEVENTS;
2826     setp->eventFlags = afs_osi_Alloc(ICL_DEFAULTEVENTS);
2827 #ifdef  KERNEL_HAVE_PIN
2828     pin((char *)setp->eventFlags, ICL_DEFAULTEVENTS);
2829 #endif
2830     for (i = 0; i < ICL_DEFAULTEVENTS; i++)
2831         setp->eventFlags[i] = 0xff;     /* default to enabled */
2832
2833     /* update this global info under the afs_icl_lock */
2834     setp->nextp = afs_icl_allSets;
2835     afs_icl_allSets = setp;
2836     ReleaseWriteLock(&afs_icl_lock);
2837
2838     /* set's basic lock is still held, so we can finish init */
2839     if (baseLogp) {
2840         setp->logs[0] = baseLogp;
2841         afs_icl_LogHold(baseLogp);
2842         if (!(setp->states & ICL_SETF_FREED))
2843             afs_icl_LogUse(baseLogp);   /* log is actually being used */
2844     }
2845     if (fatalLogp) {
2846         setp->logs[1] = fatalLogp;
2847         afs_icl_LogHold(fatalLogp);
2848         if (!(setp->states & ICL_SETF_FREED))
2849             afs_icl_LogUse(fatalLogp);  /* log is actually being used */
2850     }
2851     ReleaseWriteLock(&setp->lock);
2852
2853     *outSetpp = setp;
2854     return 0;
2855 }
2856
2857 /* function to change event enabling information for a particular set */
2858 int
2859 afs_icl_SetEnable(struct afs_icl_set *setp, afs_int32 eventID, int setValue)
2860 {
2861     char *tp;
2862
2863     ObtainWriteLock(&setp->lock, 200);
2864     if (!ICL_EVENTOK(setp, eventID)) {
2865         ReleaseWriteLock(&setp->lock);
2866         return -1;
2867     }
2868     tp = &setp->eventFlags[ICL_EVENTBYTE(eventID)];
2869     if (setValue)
2870         *tp |= ICL_EVENTMASK(eventID);
2871     else
2872         *tp &= ~(ICL_EVENTMASK(eventID));
2873     ReleaseWriteLock(&setp->lock);
2874     return 0;
2875 }
2876
2877 /* return indication of whether a particular event ID is enabled
2878  * for tracing.  If *getValuep is set to 0, the event is disabled,
2879  * otherwise it is enabled.  All events start out enabled by default.
2880  */
2881 int
2882 afs_icl_GetEnable(struct afs_icl_set *setp, afs_int32 eventID, int *getValuep)
2883 {
2884     ObtainReadLock(&setp->lock);
2885     if (!ICL_EVENTOK(setp, eventID)) {
2886         ReleaseWriteLock(&setp->lock);
2887         return -1;
2888     }
2889     if (setp->eventFlags[ICL_EVENTBYTE(eventID)] & ICL_EVENTMASK(eventID))
2890         *getValuep = 1;
2891     else
2892         *getValuep = 0;
2893     ReleaseReadLock(&setp->lock);
2894     return 0;
2895 }
2896
2897 /* hold and release event sets */
2898 int
2899 afs_icl_SetHold(register struct afs_icl_set *setp)
2900 {
2901     ObtainWriteLock(&afs_icl_lock, 201);
2902     setp->refCount++;
2903     ReleaseWriteLock(&afs_icl_lock);
2904     return 0;
2905 }
2906
2907 /* free a set.  Called with afs_icl_lock locked */
2908 int
2909 afs_icl_ZapSet(register struct afs_icl_set *setp)
2910 {
2911     register struct afs_icl_set **lpp, *tp;
2912     int i;
2913     register struct afs_icl_log *tlp;
2914
2915     for (lpp = &afs_icl_allSets, tp = *lpp; tp; lpp = &tp->nextp, tp = *lpp) {
2916         if (tp == setp) {
2917             /* found the dude we want to remove */
2918             *lpp = setp->nextp;
2919             osi_FreeSmallSpace(setp->name);
2920             afs_osi_Free(setp->eventFlags, ICL_DEFAULTEVENTS);
2921 #ifdef  KERNEL_HAVE_PIN
2922             unpin((char *)setp->eventFlags, ICL_DEFAULTEVENTS);
2923 #endif
2924             for (i = 0; i < ICL_LOGSPERSET; i++) {
2925                 if ((tlp = setp->logs[i]))
2926                     afs_icl_LogReleNL(tlp);
2927             }
2928             osi_FreeSmallSpace(setp);
2929             break;              /* won't find it twice */
2930         }
2931     }
2932     return 0;
2933 }
2934
2935 /* do the release, watching for deleted entries */
2936 int
2937 afs_icl_SetRele(register struct afs_icl_set *setp)
2938 {
2939     ObtainWriteLock(&afs_icl_lock, 202);
2940     if (--setp->refCount == 0 && (setp->states & ICL_SETF_DELETED)) {
2941         afs_icl_ZapSet(setp);   /* destroys setp's lock! */
2942     }
2943     ReleaseWriteLock(&afs_icl_lock);
2944     return 0;
2945 }
2946
2947 /* free a set entry, dropping its reference count */
2948 int
2949 afs_icl_SetFree(register struct afs_icl_set *setp)
2950 {
2951     ObtainWriteLock(&setp->lock, 203);
2952     setp->states |= ICL_SETF_DELETED;
2953     ReleaseWriteLock(&setp->lock);
2954     afs_icl_SetRele(setp);
2955     return 0;
2956 }
2957
2958 /* find a set by name, returning it held */
2959 struct afs_icl_set *
2960 afs_icl_FindSet(char *name)
2961 {
2962     register struct afs_icl_set *tp;
2963     ObtainWriteLock(&afs_icl_lock, 204);
2964     for (tp = afs_icl_allSets; tp; tp = tp->nextp) {
2965         if (strcmp(tp->name, name) == 0) {
2966             /* this is the dude we want */
2967             tp->refCount++;
2968             break;
2969         }
2970     }
2971     ReleaseWriteLock(&afs_icl_lock);
2972     return tp;
2973 }
2974
2975 /* zero out all the logs in the set */
2976 int
2977 afs_icl_ZeroSet(struct afs_icl_set *setp)
2978 {
2979     register int i;
2980     int code = 0;
2981     int tcode;
2982     struct afs_icl_log *logp;
2983
2984     ObtainReadLock(&setp->lock);
2985     for (i = 0; i < ICL_LOGSPERSET; i++) {
2986         logp = setp->logs[i];
2987         if (logp) {
2988             afs_icl_LogHold(logp);
2989             tcode = afs_icl_ZeroLog(logp);
2990             if (tcode != 0)
2991                 code = tcode;   /* save the last bad one */
2992             afs_icl_LogRele(logp);
2993         }
2994     }
2995     ReleaseReadLock(&setp->lock);
2996     return code;
2997 }
2998
2999 int
3000 afs_icl_EnumerateSets(int (*aproc)
3001                         (char *name, char *arock, struct afs_icl_log * tp),
3002                       char *arock)
3003 {
3004     register struct afs_icl_set *tp, *np;
3005     register afs_int32 code;
3006
3007     code = 0;
3008     ObtainWriteLock(&afs_icl_lock, 205);
3009     for (tp = afs_icl_allSets; tp; tp = np) {
3010         tp->refCount++;         /* hold this guy */
3011         ReleaseWriteLock(&afs_icl_lock);
3012         code = (*aproc) (tp->name, arock, tp);
3013         ObtainWriteLock(&afs_icl_lock, 206);
3014         np = tp->nextp;         /* tp may disappear next, but not np */
3015         if (--tp->refCount == 0 && (tp->states & ICL_SETF_DELETED))
3016             afs_icl_ZapSet(tp);
3017         if (code)
3018             break;
3019     }
3020     ReleaseWriteLock(&afs_icl_lock);
3021     return code;
3022 }
3023
3024 int
3025 afs_icl_AddLogToSet(struct afs_icl_set *setp, struct afs_icl_log *newlogp)
3026 {
3027     register int i;
3028     int code = -1;
3029
3030     ObtainWriteLock(&setp->lock, 207);
3031     for (i = 0; i < ICL_LOGSPERSET; i++) {
3032         if (!setp->logs[i]) {
3033             setp->logs[i] = newlogp;
3034             code = i;
3035             afs_icl_LogHold(newlogp);
3036             if (!(setp->states & ICL_SETF_FREED)) {
3037                 /* bump up the number of sets using the log */
3038                 afs_icl_LogUse(newlogp);
3039             }
3040             break;
3041         }
3042     }
3043     ReleaseWriteLock(&setp->lock);
3044     return code;
3045 }
3046
3047 int
3048 afs_icl_SetSetStat(struct afs_icl_set *setp, int op)
3049 {
3050     int i;
3051     afs_int32 code;
3052     struct afs_icl_log *logp;
3053
3054     ObtainWriteLock(&setp->lock, 208);
3055     switch (op) {
3056     case ICL_OP_SS_ACTIVATE:    /* activate a log */
3057         /*
3058          * If we are not already active, see if we have released
3059          * our demand that the log be allocated (FREED set).  If
3060          * we have, reassert our desire.
3061          */
3062         if (!(setp->states & ICL_SETF_ACTIVE)) {
3063             if (setp->states & ICL_SETF_FREED) {
3064                 /* have to reassert desire for logs */
3065                 for (i = 0; i < ICL_LOGSPERSET; i++) {
3066                     logp = setp->logs[i];
3067                     if (logp) {
3068                         afs_icl_LogHold(logp);
3069                         afs_icl_LogUse(logp);
3070                         afs_icl_LogRele(logp);
3071                     }
3072                 }
3073                 setp->states &= ~ICL_SETF_FREED;
3074             }
3075             setp->states |= ICL_SETF_ACTIVE;
3076         }
3077         code = 0;
3078         break;
3079
3080     case ICL_OP_SS_DEACTIVATE:  /* deactivate a log */
3081         /* this doesn't require anything beyond clearing the ACTIVE flag */
3082         setp->states &= ~ICL_SETF_ACTIVE;
3083         code = 0;
3084         break;
3085
3086     case ICL_OP_SS_FREE:        /* deassert design for log */
3087         /* 
3088          * if we are already in this state, do nothing; otherwise
3089          * deassert desire for log
3090          */
3091         if (setp->states & ICL_SETF_ACTIVE)
3092             code = EINVAL;
3093         else {
3094             if (!(setp->states & ICL_SETF_FREED)) {
3095                 for (i = 0; i < ICL_LOGSPERSET; i++) {
3096                     logp = setp->logs[i];
3097                     if (logp) {
3098                         afs_icl_LogHold(logp);
3099                         afs_icl_LogFreeUse(logp);
3100                         afs_icl_LogRele(logp);
3101                     }
3102                 }
3103                 setp->states |= ICL_SETF_FREED;
3104             }
3105             code = 0;
3106         }
3107         break;
3108
3109     default:
3110         code = EINVAL;
3111     }
3112     ReleaseWriteLock(&setp->lock);
3113     return code;
3114 }