viced-check-all-malloc-returns-20030208
[openafs.git] / src / viced / host.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("$Header$");
14
15 #include <stdio.h>
16 #include <errno.h>
17 #ifdef AFS_NT40_ENV
18 #include <fcntl.h>
19 #include <winsock2.h>
20 #else
21 #include <sys/file.h>
22 #include <netdb.h>
23 #include <netinet/in.h>
24 #endif
25
26 #ifdef HAVE_STRING_H
27 #include <string.h>
28 #else
29 #ifdef HAVE_STRINGS_H
30 #include <strings.h>
31 #endif
32 #endif
33
34 #include <afs/stds.h>
35 #include <rx/xdr.h>
36 #include <afs/assert.h>
37 #include <lwp.h>
38 #include <lock.h>
39 #include <afs/afsint.h>
40 #include <afs/rxgen_consts.h>
41 #include <afs/nfs.h>
42 #include <afs/errors.h>
43 #include <afs/ihandle.h>
44 #include <afs/vnode.h>
45 #include <afs/volume.h>
46 #ifdef AFS_ATHENA_STDENV
47 #include <krb.h>
48 #endif
49 #include <afs/acl.h>
50 #include <afs/ptclient.h>
51 #include <afs/prs_fs.h>
52 #include <afs/auth.h>
53 #include <afs/afsutil.h>
54 #include <rx/rx.h>
55 #include <afs/cellconfig.h>
56 #include <stdlib.h>
57 #include "viced_prototypes.h"
58 #include "viced.h"
59 #include "host.h"
60
61
62 #ifdef AFS_PTHREAD_ENV
63 pthread_mutex_t host_glock_mutex;
64 #endif /* AFS_PTHREAD_ENV */
65
66 extern  int     Console;
67 extern  int     CurrentConnections;
68 extern  int     SystemId;
69 extern  int     AnonymousID;
70 extern  prlist  AnonCPS;
71 extern  int     LogLevel;
72 extern  struct afsconf_dir *confDir; /* config dir object */
73 extern  int     lwps;   /* the max number of server threads */
74 extern  afsUUID FS_HostUUID;
75
76 int     CEs = 0;            /* active clients */
77 int     CEBlocks = 0;       /* number of blocks of CEs */
78 struct  client *CEFree = 0; /* first free client */
79 struct  host *hostList = 0; /* linked list of all hosts */
80 int     hostCount = 0;      /* number of hosts in hostList */
81 int     rxcon_ident_key;
82 int     rxcon_client_key;
83
84 #define CESPERBLOCK 73
85 struct CEBlock              /* block of CESPERBLOCK file entries */
86 {
87     struct client entry[CESPERBLOCK];
88 };
89
90 /*
91  * Make sure the subnet macros have been defined.
92  */
93 #ifndef IN_SUBNETA
94 #define IN_SUBNETA(i)           ((((afs_int32)(i))&0x80800000)==0x00800000)
95 #endif
96
97 #ifndef IN_CLASSA_SUBNET
98 #define IN_CLASSA_SUBNET        0xffff0000
99 #endif
100
101 #ifndef IN_SUBNETB
102 #define IN_SUBNETB(i)           ((((afs_int32)(i))&0xc0008000)==0x80008000)
103 #endif
104
105 #ifndef IN_CLASSB_SUBNET
106 #define IN_CLASSB_SUBNET        0xffffff00
107 #endif
108
109 #define rxr_GetEpoch(aconn) (((struct rx_connection *)(aconn))->epoch)
110
111 #define rxr_CidOf(aconn) (((struct rx_connection *)(aconn))->cid)
112
113 #define rxr_PortOf(aconn) \
114     rx_PortOf(rx_PeerOf(((struct rx_connection *)(aconn))))
115
116 #define rxr_HostOf(aconn) \
117     rx_HostOf(rx_PeerOf((struct rx_connection *)(aconn)))
118
119
120 /* get a new block of CEs and chain it on CEFree */
121 static void GetCEBlock()
122 {
123     register struct CEBlock *block;
124     register int i;
125
126     block = (struct CEBlock *)malloc(sizeof(struct CEBlock));
127     if (!block) {
128         ViceLog(0, ("Failed malloc in GetCEBlock\n"));
129         ShutDownAndCore(PANIC);
130     }
131
132     for(i = 0; i < (CESPERBLOCK -1); i++) {
133         Lock_Init(&block->entry[i].lock);
134         block->entry[i].next = &(block->entry[i+1]);
135     }
136     block->entry[CESPERBLOCK-1].next = 0;
137     Lock_Init(&block->entry[CESPERBLOCK-1].lock);
138     CEFree = (struct client *)block;
139     CEBlocks++;
140
141 } /*GetCEBlock*/
142
143
144 /* get the next available CE */
145 static struct client *GetCE()
146 {
147     register struct client *entry;
148
149     if (CEFree == 0)
150         GetCEBlock();
151     if (CEFree == 0) {
152         ViceLog(0, ("CEFree NULL in GetCE\n"));
153         ShutDownAndCore(PANIC);
154     }
155
156     entry = CEFree;
157     CEFree = entry->next;
158     CEs++;
159     memset((char *)entry, 0, CLIENT_TO_ZERO(entry));
160     return(entry);
161
162 } /*GetCE*/
163
164
165 /* return an entry to the free list */
166 static void FreeCE(register struct client *entry)
167 {
168     entry->next = CEFree;
169     CEFree = entry;
170     CEs--;
171
172 } /*FreeCE*/
173
174 /*
175  * The HTs and HTBlocks variables were formerly static, but they are
176  * now referenced elsewhere in the FileServer.
177  */
178 int HTs = 0;                            /* active file entries */
179 int HTBlocks = 0;                       /* number of blocks of HTs */
180 static struct host *HTFree = 0;         /* first free file entry */
181
182 /*
183  * Hash tables of host pointers. We need two tables, one
184  * to map IP addresses onto host pointers, and another
185  * to map host UUIDs onto host pointers.
186  */
187 static struct h_hashChain *hostHashTable[h_HASHENTRIES];
188 static struct h_hashChain *hostUuidHashTable[h_HASHENTRIES];
189 #define h_HashIndex(hostip) ((hostip) & (h_HASHENTRIES-1))
190 #define h_UuidHashIndex(uuidp) (((int)(afs_uuid_hash(uuidp))) & (h_HASHENTRIES-1))
191
192 struct HTBlock          /* block of HTSPERBLOCK file entries */
193 {
194     struct host entry[h_HTSPERBLOCK];
195 };
196
197
198 /* get a new block of HTs and chain it on HTFree */
199 static void GetHTBlock()
200 {
201     register struct HTBlock *block;
202     register int i;
203     static int index = 0;
204
205     block = (struct HTBlock *)malloc(sizeof(struct HTBlock));
206     if (!block) {
207         ViceLog(0, ("Failed malloc in GetHTBlock\n"));
208         ShutDownAndCore(PANIC);
209     }
210
211 #ifdef AFS_PTHREAD_ENV
212     for(i=0; i < (h_HTSPERBLOCK); i++)
213         assert(pthread_cond_init(&block->entry[i].cond, NULL) == 0);
214 #endif /* AFS_PTHREAD_ENV */
215     for(i=0; i < (h_HTSPERBLOCK); i++)
216         Lock_Init(&block->entry[i].lock);
217     for(i=0; i < (h_HTSPERBLOCK -1); i++)
218         block->entry[i].next = &(block->entry[i+1]);
219     for (i=0; i< (h_HTSPERBLOCK); i++)
220         block->entry[i].index = index++;
221     block->entry[h_HTSPERBLOCK-1].next = 0;
222     HTFree = (struct host *)block;
223     hosttableptrs[HTBlocks++] = block->entry;
224
225 } /*GetHTBlock*/
226
227
228 /* get the next available HT */
229 static struct host *GetHT()
230 {
231     register struct host *entry;
232
233     if (HTFree == 0)
234         GetHTBlock();
235     assert(HTFree != 0);
236     entry = HTFree;
237     HTFree = entry->next;
238     HTs++;
239     memset((char *)entry, 0, HOST_TO_ZERO(entry));
240     return(entry);
241
242 } /*GetHT*/
243
244
245 /* return an entry to the free list */
246 static void FreeHT(register struct host *entry)
247 {
248     entry->next = HTFree;
249     HTFree = entry;
250     HTs--;
251
252 } /*FreeHT*/
253
254
255 static short consolePort = 0;
256
257 int h_Release(register struct host *host)
258 {
259     H_LOCK
260     h_Release_r(host);
261     H_UNLOCK
262     return 0;
263 }
264
265 /**
266  * If this thread does not have a hold on this host AND
267  * if other threads also dont have any holds on this host AND
268  * If either the HOSTDELETED or CLIENTDELETED flags are set
269  * then toss the host
270  */
271 int h_Release_r(register struct host *host)
272 {       
273     
274     if (!((host)->holds[h_holdSlot()] & ~h_holdbit()) ) {
275         if (! h_OtherHolds_r(host) ) {
276             /* must avoid masking this until after h_OtherHolds_r runs
277                but it should be run before h_TossStuff_r */
278             (host)->holds[h_holdSlot()] &= ~h_holdbit();
279             if ( (host->hostFlags & HOSTDELETED) || 
280                 (host->hostFlags & CLIENTDELETED) ) {
281                 h_TossStuff_r(host);
282             }           
283         } else 
284             (host)->holds[h_holdSlot()] &= ~h_holdbit();
285     } else 
286       (host)->holds[h_holdSlot()] &= ~h_holdbit();
287
288     return 0;
289 }
290
291 int h_OtherHolds_r(register struct host *host)
292 {
293     register int i, bit, slot;
294     bit = h_holdbit();
295     slot = h_holdSlot();
296     for (i = 0 ; i < h_maxSlots ; i++) {
297         if (host->holds[i] != ((i == slot) ? bit : 0)) {
298             return 1;
299         }
300     }
301     return 0;
302 }
303
304 int h_Lock_r(register struct host *host)
305 {
306     H_UNLOCK
307     h_Lock(host);
308     H_LOCK
309     return 0;
310 }
311
312 /**
313   * Non-blocking lock
314   * returns 1 if already locked
315   * else returns locks and returns 0
316   */
317
318 int h_NBLock_r(register struct host *host)
319 {
320     struct Lock *hostLock = &host->lock;
321     int locked = 0;
322
323     H_UNLOCK
324     LOCK_LOCK(hostLock)
325     if ( !(hostLock->excl_locked) && !(hostLock->readers_reading) )
326         hostLock->excl_locked = WRITE_LOCK;
327     else
328         locked = 1;
329
330     LOCK_UNLOCK(hostLock)
331     H_LOCK
332     if ( locked )
333         return 1;
334     else
335         return 0;
336 }
337
338
339 #if FS_STATS_DETAILED
340 /*------------------------------------------------------------------------
341  * PRIVATE h_AddrInSameNetwork
342  *
343  * Description:
344  *      Given a target IP address and a candidate IP address (both
345  *      in host byte order), return a non-zero value (1) if the
346  *      candidate address is in a different network from the target
347  *      address.
348  *
349  * Arguments:
350  *      a_targetAddr       : Target address.
351  *      a_candAddr         : Candidate address.
352  *
353  * Returns:
354  *      1 if the candidate address is in the same net as the target,
355  *      0 otherwise.
356  *
357  * Environment:
358  *      The target and candidate addresses are both in host byte
359  *      order, NOT network byte order, when passed in.  We return
360  *      our value as a character, since that's the type of field in
361  *      the host structure, where this info will be stored.
362  *
363  * Side Effects:
364  *      As advertised.
365  *------------------------------------------------------------------------*/
366
367 static char h_AddrInSameNetwork(afs_uint32 a_targetAddr, afs_uint32 a_candAddr)
368 { /*h_AddrInSameNetwork*/
369
370     afs_uint32 targetNet;
371     afs_uint32 candNet;
372
373     /*
374      * Pull out the network and subnetwork numbers from the target
375      * and candidate addresses.  We can short-circuit this whole
376      * affair if the target and candidate addresses are not of the
377      * same class.
378      */
379     if (IN_CLASSA(a_targetAddr)) {
380         if (!(IN_CLASSA(a_candAddr))) {
381             return(0);
382         }
383         targetNet = a_targetAddr & IN_CLASSA_NET;
384         candNet   = a_candAddr   & IN_CLASSA_NET;
385     }
386     else
387         if (IN_CLASSB(a_targetAddr)) {
388             if (!(IN_CLASSB(a_candAddr))) {
389                 return(0);
390             }
391             targetNet = a_targetAddr & IN_CLASSB_NET;
392             candNet   = a_candAddr   & IN_CLASSB_NET;
393         } /*Class B target*/
394         else
395             if (IN_CLASSC(a_targetAddr)) {
396                 if (!(IN_CLASSC(a_candAddr))) {
397                     return(0);
398                 }
399                 targetNet = a_targetAddr & IN_CLASSC_NET;
400                 candNet   = a_candAddr   & IN_CLASSC_NET;
401             } /*Class C target*/
402             else {
403                 targetNet = a_targetAddr;
404                 candNet = a_candAddr;
405             } /*Class D address*/
406     
407     /*
408      * Now, simply compare the extracted net values for the two addresses
409      * (which at this point are known to be of the same class)
410      */
411     if (targetNet == candNet)
412         return(1);
413     else
414         return(0);
415
416 } /*h_AddrInSameNetwork*/
417 #endif /* FS_STATS_DETAILED */
418
419
420
421 void
422 h_gethostcps_r(register struct host *host, register afs_int32 now)
423 {
424     register int code;
425     int  slept=0, held;
426
427     /* at this point, the host might not be locked, nor held */
428     /* make sure that we do not disappear behind the RPC     */
429     if ( !(held = h_Held_r(host)) )
430                 h_Hold_r(host);
431
432         /* wait if somebody else is already doing the getCPS call */
433     while ( host->hostFlags & HCPS_INPROGRESS ) 
434     {
435         slept = 1;              /* I did sleep */
436         host->hostFlags |= HCPS_WAITING; /* I am sleeping now */
437 #ifdef AFS_PTHREAD_ENV
438         pthread_cond_wait(&host->cond, &host_glock_mutex);
439 #else /* AFS_PTHREAD_ENV */
440         if (( code = LWP_WaitProcess( &(host->hostFlags ))) != LWP_SUCCESS)
441                 ViceLog(0, ("LWP_WaitProcess returned %d\n", code));
442 #endif /* AFS_PTHREAD_ENV */
443     }
444
445
446     host->hostFlags |= HCPS_INPROGRESS; /* mark as CPSCall in progress */
447     if (host->hcps.prlist_val)
448         free(host->hcps.prlist_val);    /* this is for hostaclRefresh */
449     host->hcps.prlist_val = NULL;
450     host->hcps.prlist_len = 0;
451     slept? (host->cpsCall = FT_ApproxTime()): (host->cpsCall = now );
452
453     H_UNLOCK
454     code = pr_GetHostCPS(htonl(host->host), &host->hcps);
455     H_LOCK
456     if (code) {
457         /*
458          * Although ubik_Call (called by pr_GetHostCPS) traverses thru all protection servers
459          * and reevaluates things if no sync server or quorum is found we could still end up
460          * with one of these errors. In such case we would like to reevaluate the rpc call to
461          * find if there's cps for this guy. We treat other errors (except network failures
462          * ones - i.e. code < 0) as an indication that there is no CPS for this host. Ideally
463          * we could like to deal this problem the other way around (i.e. if code == NOCPS 
464          * ignore else retry next time) but the problem is that there're other errors (i.e.
465          * EPERM) for which we don't want to retry and we don't know the whole code list!
466          */
467         if (code < 0 || code == UNOQUORUM || code == UNOTSYNC) {
468             /* 
469              * We would have preferred to use a while loop and try again since ops in protected
470              * acls for this host will fail now but they'll be reevaluated on any subsequent
471              * call. The attempt to wait for a quorum/sync site or network error won't work
472              * since this problems really should only occurs during a complete fileserver 
473              * restart. Since the fileserver will start before the ptservers (and thus before
474              * quorums are complete) clients will be utilizing all the fileserver's lwps!!
475              */
476             host->hcpsfailed = 1;
477             ViceLog(0, ("Warning:  GetHostCPS failed (%d) for %x; will retry\n", code, host->host));
478         } else {
479             host->hcpsfailed = 0;
480             ViceLog(1, ("gethost:  GetHostCPS failed (%d) for %x; ignored\n", code, host->host));
481         }
482         if (host->hcps.prlist_val)
483             free(host->hcps.prlist_val);
484         host->hcps.prlist_val = NULL;
485         host->hcps.prlist_len = 0;      /* Make sure it's zero */
486     } else
487         host->hcpsfailed = 0;
488
489     host->hostFlags &=  ~HCPS_INPROGRESS;
490                                         /* signal all who are waiting */
491     if ( host->hostFlags & HCPS_WAITING) /* somebody is waiting */
492     {
493         host->hostFlags &= ~HCPS_WAITING;
494 #ifdef AFS_PTHREAD_ENV
495         assert(pthread_cond_broadcast(&host->cond) == 0);
496 #else /* AFS_PTHREAD_ENV */
497         if ( (code = LWP_NoYieldSignal( &(host->hostFlags) )) != LWP_SUCCESS )
498                 ViceLog(0, ("LWP_NoYieldSignal returns %d\n", code));
499 #endif /* AFS_PTHREAD_ENV */
500     }
501
502     /* if we had held the  host, release it now */
503     if ( !held ) 
504         h_Release_r(host);
505 }
506
507 void h_flushhostcps(hostaddr, hport)
508     register afs_uint32  hostaddr, hport;  /* net byte order */
509 {
510     register struct host *host;
511     int held;
512     
513     H_LOCK
514     host = h_Lookup_r(hostaddr, hport, &held);
515     if (host) {
516       host->hcpsfailed = 1;
517     }
518     if (!held)
519       h_Release_r(host);
520     H_UNLOCK
521
522 return;
523 }
524
525
526 /*
527  * Allocate a host.  It will be identified by the peer (ip,port) info in the
528  * rx connection provided.  The host is returned held and locked
529  */
530 #define DEF_ROPCONS 2115
531
532 struct host *h_Alloc_r(register struct rx_connection *r_con)
533 {
534     register int code;
535     struct servent *serverentry;
536     register index = h_HashIndex(rxr_HostOf(r_con));
537     register struct host *host;
538     static struct rx_securityClass *sc = 0;
539     afs_int32   now;
540     struct h_hashChain* h_hashChain;
541 #if FS_STATS_DETAILED
542     afs_uint32 newHostAddr_HBO; /*New host IP addr, in host byte order*/
543 #endif /* FS_STATS_DETAILED */
544
545     host = GetHT();
546
547     h_hashChain = (struct h_hashChain*) malloc(sizeof(struct h_hashChain));
548     if (!h_hashChain) {
549         ViceLog(0, ("Failed malloc in h_Alloc_r\n"));
550         assert(0);
551     }
552     h_hashChain->hostPtr = host;
553     h_hashChain->addr = rxr_HostOf(r_con);
554     h_hashChain->next = hostHashTable[index];
555     hostHashTable[index] = h_hashChain;
556
557     host->host = rxr_HostOf(r_con);
558     host->port = rxr_PortOf(r_con);
559     if(consolePort == 0 ) { /* find the portal number for console */
560 #if     defined(AFS_OSF_ENV)
561         serverentry = getservbyname("ropcons", "");
562 #else
563         serverentry = getservbyname("ropcons", 0);
564 #endif 
565         if (serverentry)
566             consolePort = serverentry->s_port;
567         else
568             consolePort = DEF_ROPCONS;  /* Use a default */
569     }
570     if (host->port == consolePort) host->Console = 1;
571     /* Make a callback channel even for the console, on the off chance that it
572        makes a request that causes a break call back.  It shouldn't. */
573     {
574         if (!sc)
575             sc = rxnull_NewClientSecurityObject();
576         host->callback_rxcon = rx_NewConnection (host->host, host->port,
577                                                  1, sc, 0);
578         rx_SetConnDeadTime(host->callback_rxcon, 50);
579         rx_SetConnHardDeadTime(host->callback_rxcon, AFS_HARDDEADTIME);
580     }
581     now = host->LastCall = host->cpsCall = host->ActiveCall = FT_ApproxTime();
582     host->hostFlags = 0;
583     host->hcps.prlist_val = NULL;
584     host->hcps.prlist_len = 0;
585     host->hcps.prlist_val = NULL;
586     host->interface = 0;
587 #ifdef undef
588     host->hcpsfailed = 0;       /* save cycles */
589     h_gethostcps(host);      /* do this under host lock */
590 #endif
591     host->FirstClient = 0;      
592     h_Hold_r(host);
593     h_Lock_r(host);
594     h_InsertList_r(host);       /* update global host List */
595 #if FS_STATS_DETAILED
596     /*
597      * Compare the new host's IP address (in host byte order) with ours
598      * (the File Server's), remembering if they are in the same network.
599      */
600     newHostAddr_HBO = (afs_uint32)ntohl(host->host);
601     host->InSameNetwork = h_AddrInSameNetwork(FS_HostAddr_HBO,
602                                               newHostAddr_HBO);
603 #endif /* FS_STATS_DETAILED */
604     return host;
605
606 } /*h_Alloc_r*/
607
608
609 /* Lookup a host given an IP address and UDP port number. */
610 /* hostaddr and hport are in network order */
611 /* Note: host should be released by caller if 0 == *heldp and non-null */
612 /* hostaddr and hport are in network order */
613 struct host *h_Lookup_r(afs_uint32 hostaddr, afs_uint32 hport, int *heldp)
614 {
615     register afs_int32 now;
616     register struct host *host=0;
617     register struct h_hashChain* chain;
618     register index = h_HashIndex(hostaddr);
619     extern int hostaclRefresh;
620
621 restart:
622     for (chain=hostHashTable[index]; chain; chain=chain->next) {
623         host = chain->hostPtr;
624         assert(host);
625         if (!(host->hostFlags & HOSTDELETED) && chain->addr == hostaddr
626             && host->port == hport) {
627             *heldp = h_Held_r(host);
628             if (!*heldp)
629                 h_Hold_r(host);
630             h_Lock_r(host);
631             if (host->hostFlags & HOSTDELETED) {
632                 h_Unlock_r(host);
633                 if (!*heldp)
634                     h_Release_r(host);
635                 goto restart;
636             }
637             h_Unlock_r(host);
638             now = FT_ApproxTime();              /* always evaluate "now" */
639             if (host->hcpsfailed || (host->cpsCall+hostaclRefresh < now )) {
640                 /*
641                  * Every hostaclRefresh period (def 2 hrs) get the new
642                  * membership list for the host.  Note this could be the
643                  * first time that the host is added to a group.  Also
644                  * here we also retry on previous legitimate hcps failures.
645                  */
646                 h_gethostcps_r(host,now);
647             }
648             break;
649         }
650         host = NULL;
651     }
652     return host;
653
654 } /*h_Lookup*/
655
656 /* Lookup a host given its UUID. */
657 struct host *h_LookupUuid_r(afsUUID *uuidp)
658 {
659     register struct host *host=0;
660     register struct h_hashChain* chain;
661     register index = h_UuidHashIndex(uuidp);
662
663     for (chain=hostUuidHashTable[index]; chain; chain=chain->next) {
664         host = chain->hostPtr;
665         assert(host);
666         if (!(host->hostFlags & HOSTDELETED) && host->interface
667          && afs_uuid_equal(&host->interface->uuid, uuidp)) {
668             break;
669         }
670         host = NULL;
671     }
672     return host;
673
674 } /*h_Lookup*/
675
676
677 /*
678  * h_Hold_r: Establish a hold by the current LWP on this host--the host
679  * or its clients will not be physically deleted until all holds have
680  * been released.
681  * NOTE: h_Hold_r is a macro defined in host.h.
682  */
683
684 /* h_TossStuff_r:  Toss anything in the host structure (the host or
685  * clients marked for deletion.  Called from r_Release ONLY.
686  * To be called, there must be no holds, and either host->deleted
687  * or host->clientDeleted must be set.
688  */
689 int h_TossStuff_r(register struct host *host)
690 {
691     register struct client **cp, *client;
692     int         i;
693
694     /* if somebody still has this host held */
695     for (i=0; (i<h_maxSlots)&&(!(host)->holds[i]); i++);
696     if  (i!=h_maxSlots)
697         return;
698
699     /* ASSUMPTION: r_FreeConnection() does not yield */
700     for (cp = &host->FirstClient; (client = *cp); ) {
701         if ((host->hostFlags & HOSTDELETED) || client->deleted) {
702             if ((client->ViceId != ANONYMOUSID) && client->CPS.prlist_val) {
703                 free(client->CPS.prlist_val);
704                 client->CPS.prlist_val = NULL;
705             }
706             if (client->tcon) {
707                 rx_SetSpecific(client->tcon, rxcon_client_key, (void *)0);
708             }
709             CurrentConnections--;
710             *cp = client->next;
711             FreeCE(client);
712         } else cp = &client->next;
713     }
714
715     /* We've just cleaned out all the deleted clients; clear the flag */
716     host->hostFlags &= ~CLIENTDELETED;
717
718     if (host->hostFlags & HOSTDELETED) {
719         register struct h_hashChain **hp, *th;
720         register struct rx_connection *rxconn;
721         afsUUID *uuidp;
722         afs_uint32 hostAddr;
723         int i;
724
725         if (host->Console & 1) Console--;
726         if ((rxconn = host->callback_rxcon)) {
727             host->callback_rxcon = (struct rx_connection *)0;
728             /*
729              * If rx_DestroyConnection calls h_FreeConnection we will
730              * deadlock on the host_glock_mutex. Work around the problem
731              * by unhooking the client from the connection before
732              * destroying the connection.
733              */
734             client = rx_GetSpecific(rxconn, rxcon_client_key);
735             if (client && client->tcon == rxconn)
736                 client->tcon = NULL;
737             rx_SetSpecific(rxconn, rxcon_client_key, (void *)0);
738             rx_DestroyConnection(rxconn);
739         }
740         if (host->hcps.prlist_val)
741             free(host->hcps.prlist_val);
742         host->hcps.prlist_val = NULL;
743         host->hcps.prlist_len = 0;
744         DeleteAllCallBacks_r(host, 1);
745         host->hostFlags &= ~RESETDONE;  /* just to be safe */
746
747         /* if alternate addresses do not exist */
748         if ( !(host->interface) )
749         {
750                 for (hp = &hostHashTable[h_HashIndex(host->host)];
751                         (th = *hp); hp = &th->next) 
752                 {
753                         assert(th->hostPtr);
754                         if (th->hostPtr == host) 
755                         {
756                                 *hp = th->next;
757                                 h_DeleteList_r(host); 
758                                 FreeHT(host);
759                                 break;
760                         }               
761                 }
762         }
763         else 
764         {
765             /* delete all hash entries for the UUID */
766             uuidp = &host->interface->uuid;
767             for (hp = &hostUuidHashTable[h_UuidHashIndex(uuidp)];
768                  (th = *hp); hp = &th->next) {
769                 assert(th->hostPtr);
770                 if (th->hostPtr == host)
771                 {
772                     *hp = th->next;
773                     free(th);
774                     break;
775                 }
776             }
777             /* delete all hash entries for alternate addresses */
778             assert(host->interface->numberOfInterfaces > 0 );
779             for ( i=0; i < host->interface->numberOfInterfaces; i++)
780             {
781                 hostAddr = host->interface->addr[i];
782                 for (hp = &hostHashTable[h_HashIndex(hostAddr)];
783                         (th = *hp); hp = &th->next) 
784                 {
785                         assert(th->hostPtr);
786                         if (th->hostPtr == host) 
787                         {
788                                 *hp = th->next;
789                                 free(th);
790                                 break;
791                         }
792                 }
793             }
794             free(host->interface);
795             host->interface = NULL;
796             h_DeleteList_r(host); /* remove host from global host List */
797             FreeHT(host);
798         }                       /* if alternate address exists */
799     } 
800 } /*h_TossStuff_r*/
801
802
803 /* Called by rx when a server connection disappears */
804 int h_FreeConnection(struct rx_connection *tcon)
805 {
806     register struct client *client;
807
808     client = (struct client *) rx_GetSpecific(tcon, rxcon_client_key);
809     if (client) {
810         H_LOCK
811         if (client->tcon == tcon)
812             client->tcon = (struct rx_connection *)0;
813         H_UNLOCK
814     }
815 } /*h_FreeConnection*/
816
817
818 /* h_Enumerate: Calls (*proc)(host, held, param) for at least each host in the
819  * system at the start of the enumeration (perhaps more).  Hosts may be deleted
820  * (have delete flag set); ditto for clients.  (*proc) is always called with
821  * host h_held().  The hold state of the host with respect to this lwp is passed
822  * to (*proc) as the param held.  The proc should return 0 if the host should be
823  * released, 1 if it should be held after enumeration.
824  */
825 void h_Enumerate(int (*proc)(), char *param)
826 {
827     register struct host *host, **list;
828     register int *held;
829     register int i, count;
830     
831     H_LOCK
832     if (hostCount == 0) {
833         H_UNLOCK
834         return;
835     }
836     list = (struct host **)malloc(hostCount * sizeof(struct host *));
837     if (!list) {
838         ViceLog(0, ("Failed malloc in h_Enumerate\n"));
839         assert(0);
840     }
841     held = (int *)malloc(hostCount * sizeof(int));
842     if (!held) {
843         ViceLog(0, ("Failed malloc in h_Enumerate\n"));
844         assert(0);
845     }
846     for (count = 0, host = hostList ; host ; host = host->next, count++) {
847         list[count] = host;
848         if (!(held[count] = h_Held_r(host)))
849             h_Hold_r(host);
850     }
851     assert(count == hostCount);
852     H_UNLOCK
853     for ( i = 0 ; i < count ; i++) {
854         held[i] = (*proc)(list[i], held[i], param);
855         if (!held[i])
856             h_Release(list[i]);/* this might free up the host */
857     }
858     free((void *)list);
859     free((void *)held);
860 } /*h_Enumerate*/
861
862 /* h_Enumerate_r (revised):
863  * Calls (*proc)(host, held, param) for each host in hostList, starting
864  * at enumstart
865  * Hosts may be deleted (have delete flag set); ditto for clients.
866  * (*proc) is always called with
867  * host h_held() and the global host lock (H_LOCK) locked.The hold state of the
868  * host with respect to this lwp is passed to (*proc) as the param held.
869  * The proc should return 0 if the host should be released, 1 if it should
870  * be held after enumeration.
871  */
872 void h_Enumerate_r(int (*proc)(), struct host* enumstart, char *param)
873 {
874     register struct host *host;
875     register int held;
876     
877     if (hostCount == 0) {
878         return;
879     }
880     for (host = enumstart ; host ; host = host->next) {
881         if (!(held = h_Held_r(host)))
882             h_Hold_r(host);
883         held = (*proc)(host, held, param);
884         if (!held)
885             h_Release_r(host);/* this might free up the host */
886     }
887 } /*h_Enumerate_r*/
888
889 /* inserts a new HashChain structure corresponding to this UUID */
890 void hashInsertUuid_r(struct afsUUID *uuid, struct host* host)
891 {
892         int index;
893         struct h_hashChain*     chain;
894
895         /* hash into proper bucket */
896         index = h_UuidHashIndex(uuid);
897
898         /* insert into beginning of list for this bucket */
899         chain = (struct h_hashChain *)malloc(sizeof(struct h_hashChain));
900         if (!chain) {
901             ViceLog(0, ("Failed malloc in hashInsertUuid_r\n"));
902             assert(0);
903         }
904         assert(chain);
905         chain->hostPtr = host;
906         chain->next = hostUuidHashTable[index];
907         hostUuidHashTable[index] = chain;
908 }
909
910 /* Host is returned held */
911 struct host *h_GetHost_r(struct rx_connection *tcon)
912 {
913     struct host *host;
914     struct host *oldHost;
915     int code;
916     int held;
917     struct interfaceAddr interf;
918     int interfValid = 0;
919     struct Identity *identP = NULL;
920     afs_int32 haddr;
921     afs_int32 hport;
922     int i, j, count;
923     char hoststr[16], hoststr2[16];
924
925     haddr = rxr_HostOf(tcon);
926     hport = rxr_PortOf(tcon);
927 retry:
928     code = 0;
929     identP = (struct Identity *)rx_GetSpecific(tcon, rxcon_ident_key);
930     host = h_Lookup_r(haddr, hport, &held);
931     if (host && !identP && !(host->Console&1)) {
932         /* This is a new connection, and we already have a host
933          * structure for this address. Verify that the identity
934          * of the caller matches the identity in the host structure.
935          */
936         h_Lock_r(host);
937         if ( !(host->hostFlags & ALTADDR) )
938         {
939                 /* Another thread is doing initialization */
940                 h_Unlock_r(host);
941                 if ( !held) h_Release_r(host);
942                 ViceLog(125, ("Host %s:%d starting h_Lookup again\n",
943                              afs_inet_ntoa_r(host->host, hoststr), host->port));
944                 goto retry;
945         }
946         host->hostFlags &= ~ALTADDR;
947         H_UNLOCK
948         code = RXAFSCB_WhoAreYou(host->callback_rxcon, &interf);
949         H_LOCK
950         if ( code == RXGEN_OPCODE ) {
951                 identP = (struct Identity *)malloc(sizeof(struct Identity));
952                 if (!identP) {
953                     ViceLog(0, ("Failed malloc in h_GetHost_r\n"));
954                     assert(0);
955                 }
956                 identP->valid = 0;
957                 rx_SetSpecific(tcon, rxcon_ident_key, identP);
958                 /* The host on this connection was unable to respond to 
959                  * the WhoAreYou. We will treat this as a new connection
960                  * from the existing host. The worst that can happen is
961                  * that we maintain some extra callback state information */
962                 if (host->interface) {
963                     ViceLog(0,
964                             ("Host %s:%d used to support WhoAreYou, deleting.\n",
965                             afs_inet_ntoa_r(host->host, hoststr), host->port));
966                     host->hostFlags |= HOSTDELETED;
967                     h_Unlock_r(host);
968                     if (!held) h_Release_r(host);
969                     host = NULL;
970                     goto retry;
971                 }
972         } else if (code == 0) {
973                 interfValid = 1;
974                 identP = (struct Identity *)malloc(sizeof(struct Identity));
975                 if (!identP) {
976                     ViceLog(0, ("Failed malloc in h_GetHost_r\n"));
977                     assert(0);
978                 }
979                 identP->valid = 1;
980                 identP->uuid = interf.uuid;
981                 rx_SetSpecific(tcon, rxcon_ident_key, identP);
982                 /* Check whether the UUID on this connection matches
983                  * the UUID in the host structure. If they don't match
984                  * then this is not the same host as before. */
985                 if ( !host->interface
986                   || !afs_uuid_equal(&interf.uuid, &host->interface->uuid) ) {
987                     ViceLog(25,
988                             ("Host %s:%d has changed its identity, deleting.\n",
989                             afs_inet_ntoa_r(host->host, hoststr), host->port));
990                     host->hostFlags |= HOSTDELETED;
991                     h_Unlock_r(host);
992                     if (!held) h_Release_r(host);
993                     host = NULL;
994                     goto retry;
995                 }
996         } else {
997             afs_inet_ntoa_r(host->host, hoststr);
998             ViceLog(0,("CB: WhoAreYou failed for %s:%d, error %d\n", 
999                        hoststr, ntohs(host->port), code));
1000             host->hostFlags |= VENUSDOWN;
1001         }
1002         host->hostFlags |= ALTADDR;
1003         h_Unlock_r(host);
1004     } else if (host) {
1005         if ( ! (host->hostFlags & ALTADDR) ) 
1006         {
1007                 /* another thread is doing the initialisation */
1008                 ViceLog(125, ("Host %s:%d waiting for host-init to complete\n",
1009                              afs_inet_ntoa_r(host->host, hoststr), host->port));
1010                 h_Lock_r(host);
1011                 h_Unlock_r(host);
1012                 if ( !held) h_Release_r(host);
1013                 ViceLog(125, ("Host %s:%d starting h_Lookup again\n",
1014                              afs_inet_ntoa_r(host->host, hoststr), host->port));
1015                 goto retry;
1016         }
1017         /* We need to check whether the identity in the host structure
1018          * matches the identity on the connection. If they don't match
1019          * then treat this a new host. */
1020         if ( !(host->Console&1)
1021           && ( ( !identP->valid && host->interface )
1022             || ( identP->valid && !host->interface )
1023             || ( identP->valid
1024               && !afs_uuid_equal(&identP->uuid, &host->interface->uuid) ) ) ) 
1025         {
1026             char uuid1[128], uuid2[128];
1027             /* The host in the cache is not the host for this connection */
1028             host->hostFlags |= HOSTDELETED;
1029             h_Unlock_r(host);
1030             if (!held) h_Release_r(host);
1031
1032             if (identP->valid)
1033                 afsUUID_to_string(identP->uuid, uuid1, 127);
1034             if (host->interface)
1035                 afsUUID_to_string(host->interface->uuid, uuid2, 127);
1036             ViceLog(0, 
1037                     ("CB: new identity for host %s:%d, deleting(%x %x %s %s)\n", 
1038                      afs_inet_ntoa_r(host->host, hoststr), host->port, 
1039                      identP->valid, host->interface, identP->valid ? uuid1 : 
1040                      "", host->interface ? uuid2 : ""));
1041             goto retry;
1042         }
1043     } else {
1044         host = h_Alloc_r(tcon); /* returned held and locked */
1045         h_gethostcps_r(host,FT_ApproxTime());
1046         if (!(host->Console&1)) {
1047             if (!identP || !interfValid) {
1048                 H_UNLOCK
1049                 code = RXAFSCB_WhoAreYou(host->callback_rxcon, &interf);
1050                 H_LOCK
1051                 if ( code == RXGEN_OPCODE ) {
1052                     identP = (struct Identity *)malloc(sizeof(struct Identity));
1053                     if (!identP) {
1054                         ViceLog(0, ("Failed malloc in h_GetHost_r\n"));
1055                         assert(0);
1056                     }
1057                     identP->valid = 0;
1058                     rx_SetSpecific(tcon, rxcon_ident_key, identP);
1059                     ViceLog(25,
1060                             ("Host %s:%d does not support WhoAreYou.\n",
1061                             afs_inet_ntoa_r(host->host, hoststr), host->port));
1062                     code = 0;
1063                 } else if (code == 0) {
1064                     interfValid = 1;
1065                     identP = (struct Identity *)malloc(sizeof(struct Identity));
1066                     if (!identP) {
1067                         ViceLog(0, ("Failed malloc in h_GetHost_r\n"));
1068                         assert(0);
1069                     }
1070                     identP->valid = 1;
1071                     identP->uuid = interf.uuid;
1072                     rx_SetSpecific(tcon, rxcon_ident_key, identP);
1073                     ViceLog(25, ("WhoAreYou success on %s:%d\n",
1074                                 afs_inet_ntoa_r(host->host, hoststr), host->port));
1075                 }
1076             }
1077             if (code == 0 && !identP->valid) {
1078                 H_UNLOCK
1079                 code = RXAFSCB_InitCallBackState(host->callback_rxcon);
1080                 H_LOCK
1081             } else if (code == 0) {
1082                 oldHost = h_LookupUuid_r(&identP->uuid);
1083                 if (oldHost) {
1084                     /* This is a new address for an existing host. Update
1085                      * the list of interfaces for the existing host and
1086                      * delete the host structure we just allocated. */
1087                     if (!(held = h_Held_r(oldHost)))
1088                         h_Hold_r(oldHost);
1089                     h_Lock_r(oldHost);
1090                     ViceLog(25, ("CB: new addr %s:%d for old host %s:%d\n",
1091                                 afs_inet_ntoa_r(host->host, hoststr), host->port,
1092                                 afs_inet_ntoa_r(oldHost->host, hoststr2), oldHost->port));
1093                     host->hostFlags |= HOSTDELETED;
1094                     h_Unlock_r(host);
1095                     h_Release_r(host);
1096                     host = oldHost;
1097                     addInterfaceAddr_r(host, haddr);
1098                 } else {
1099                     /* This really is a new host */
1100                     hashInsertUuid_r(&identP->uuid, host);
1101                     H_UNLOCK
1102                     code = RXAFSCB_InitCallBackState3(host->callback_rxcon,
1103                                                       &FS_HostUUID);
1104                     H_LOCK
1105                     if (code == 0) {
1106                         ViceLog(25, ("InitCallBackState3 success on %s:%d\n",
1107                                     afs_inet_ntoa_r(host->host, hoststr), host->port));
1108                         assert(interfValid == 1);
1109                         initInterfaceAddr_r(host, &interf);
1110                     }
1111                 }
1112            }
1113            if (code) {
1114                afs_inet_ntoa_r(host->host, hoststr);
1115                ViceLog(0,("CB: RCallBackConnectBack failed for %s:%d\n", 
1116                           hoststr, ntohs(host->port)));
1117                host->hostFlags |= VENUSDOWN;
1118             }
1119             else
1120                 host->hostFlags |= RESETDONE;
1121
1122         }
1123         host->hostFlags |= ALTADDR;/* host structure iniatilisation complete */
1124         h_Unlock_r(host);
1125     }
1126     return host;
1127
1128 } /*h_GetHost_r*/
1129
1130
1131 static char localcellname[PR_MAXNAMELEN+1];
1132 char local_realm[AFS_REALM_SZ] = "";
1133
1134 /* not reentrant */
1135 void h_InitHostPackage()
1136 {
1137     afsconf_GetLocalCell (confDir, localcellname, PR_MAXNAMELEN);
1138     if (!local_realm[0]) {
1139         if (afs_krb_get_lrealm(local_realm, 0) != 0/*KSUCCESS*/) {
1140             ViceLog(0, ("afs_krb_get_lrealm failed, using %s.\n",localcellname));
1141             strcpy (local_realm, localcellname);
1142         }
1143     }
1144     rxcon_ident_key = rx_KeyCreate((rx_destructor_t)free);
1145     rxcon_client_key = rx_KeyCreate((rx_destructor_t)0);
1146 #ifdef AFS_PTHREAD_ENV
1147     assert(pthread_mutex_init(&host_glock_mutex, NULL) == 0);
1148 #endif /* AFS_PTHREAD_ENV */
1149 }
1150
1151 static int MapName_r(char *aname, char *acell, afs_int32 *aval)
1152 {
1153     namelist lnames;
1154     idlist lids;
1155     afs_int32 code;
1156     afs_int32 anamelen, cnamelen;
1157     int foreign = 0;
1158     char *tname;
1159
1160     anamelen=strlen(aname);
1161     if (anamelen >= PR_MAXNAMELEN)
1162         return -1; /* bad name -- caller interprets this as anonymous, but retries later */
1163
1164     lnames.namelist_len = 1;
1165     lnames.namelist_val = (prname *) aname;  /* don't malloc in the common case */
1166     lids.idlist_len = 0;
1167     lids.idlist_val = NULL;
1168
1169     cnamelen=strlen(acell);
1170     if (cnamelen) {
1171         if (strcasecmp(local_realm, acell) && strcasecmp(localcellname, acell))  {
1172             ViceLog(2, ("MapName: cell is foreign.  cell=%s, localcell=%s, localrealm=%s\n",
1173                         acell, localcellname, local_realm));
1174             if ((anamelen+cnamelen+1) >= PR_MAXNAMELEN) {
1175                 ViceLog(2, ("MapName: Name too long, using AnonymousID for %s@%s\n",
1176                             aname, acell));
1177                 *aval = AnonymousID;
1178                 return 0;
1179             }               
1180             foreign = 1;  /* attempt cross-cell authentication */
1181             tname = (char *) malloc(anamelen+cnamelen+2);
1182             if (!tname) {
1183                 ViceLog(0, ("Failed malloc in MapName_r\n"));
1184                 assert(0);
1185             }
1186             strcpy(tname, aname);
1187             tname[anamelen] = '@';
1188             strcpy(tname+anamelen+1, acell);
1189             lnames.namelist_val = (prname *) tname;
1190         }
1191     }
1192
1193     H_UNLOCK
1194     code = pr_NameToId(&lnames, &lids); 
1195     H_LOCK
1196     if (code == 0) {
1197        if (lids.idlist_val) {
1198           *aval = lids.idlist_val[0];
1199           if (*aval == AnonymousID) {
1200              ViceLog(2, ("MapName: NameToId on %s returns anonymousID\n", lnames.namelist_val));
1201           }
1202           free(lids.idlist_val);  /* return parms are not malloced in stub if server proc aborts */
1203        } else {
1204           ViceLog(0, ("MapName: NameToId on '%s' is unknown\n", lnames.namelist_val));
1205           code = -1;
1206        }
1207     }
1208
1209     if (foreign) {
1210         free(lnames.namelist_val);  /* We allocated this above, so we must free it now. */
1211     }
1212     return code;
1213 }
1214 /*MapName*/
1215
1216
1217 /* NOTE: this returns the client with a Shared lock */
1218 struct client *h_ID2Client(afs_int32 vid)
1219 {
1220     register struct client *client;
1221     register struct host *host;
1222
1223     H_LOCK
1224
1225       for (host=hostList; host; host=host->next) {
1226         if (host->hostFlags & HOSTDELETED)
1227           continue;
1228         for (client = host->FirstClient; client; client = client->next) {
1229           if (!client->deleted && client->ViceId == vid) {
1230             client->refCount++;
1231             H_UNLOCK
1232             ObtainSharedLock(&client->lock);
1233             H_LOCK
1234             client->refCount--;
1235             H_UNLOCK
1236             return client;
1237           }
1238         }
1239       }
1240
1241     H_UNLOCK
1242     return 0;
1243 }
1244
1245 /*
1246  * Called by the server main loop.  Returns a h_Held client, which must be
1247  * released later the main loop.  Allocates a client if the matching one
1248  * isn't around. The client is returned with its reference count incremented
1249  * by one. The caller must call h_ReleaseClient_r when finished with
1250  * the client.
1251  */
1252 struct client *h_FindClient_r(struct rx_connection *tcon)
1253 {
1254     register struct client *client;
1255     register struct host *host;
1256     struct client *oldClient;
1257     afs_int32 viceid;
1258     afs_int32 expTime;
1259     afs_int32 code;
1260     int authClass;
1261 #if (64-MAXKTCNAMELEN)
1262 ticket name length != 64
1263 #endif
1264     char tname[64];
1265     char tinst[64];
1266     char uname[PR_MAXNAMELEN];
1267     char tcell[MAXKTCREALMLEN];
1268     int fail = 0;
1269
1270     client = (struct client *) rx_GetSpecific(tcon, rxcon_client_key);
1271     if (client && !client->deleted) {
1272        client->refCount++;
1273        h_Hold_r(client->host);
1274        if (client->prfail != 2) {  /* Could add shared lock on client here */
1275           /* note that we don't have to lock entry in this path to
1276            * ensure CPS is initialized, since we don't call rxr_SetSpecific
1277            * until initialization is done, and we only get here if
1278            * rx_GetSpecific located the client structure.
1279            */
1280           return client;
1281        }
1282        H_UNLOCK
1283        ObtainWriteLock(&client->lock); /* released at end */
1284        H_LOCK
1285     } else if (client) {
1286        client->refCount++;
1287     }
1288
1289     authClass = rx_SecurityClassOf((struct rx_connection *)tcon);
1290     ViceLog(5,("FindClient: authenticating connection: authClass=%d\n",
1291                authClass));
1292     if (authClass == 1) {
1293        /* A bcrypt tickets, no longer supported */
1294        ViceLog(1, ("FindClient: bcrypt ticket, using AnonymousID\n"));
1295        viceid = AnonymousID;
1296        expTime = 0x7fffffff;
1297     } else if (authClass == 2) {
1298        afs_int32 kvno;
1299
1300        /* kerberos ticket */
1301        code = rxkad_GetServerInfo (tcon, /*level*/0, &expTime,
1302                                    tname, tinst, tcell, &kvno);
1303        if (code) {
1304           ViceLog(1, ("Failed to get rxkad ticket info\n"));
1305           viceid = AnonymousID;
1306           expTime = 0x7fffffff;
1307        } else {
1308           int ilen = strlen(tinst);
1309           ViceLog(5,
1310                   ("FindClient: rxkad conn: name=%s,inst=%s,cell=%s,exp=%d,kvno=%d\n",
1311                    tname, tinst, tcell, expTime, kvno));
1312           strncpy (uname, tname, sizeof(uname));
1313           if (ilen) {
1314              if (strlen(uname) + 1 + ilen >= sizeof(uname))
1315                 goto bad_name;
1316              strcat (uname, ".");
1317              strcat (uname, tinst);
1318           }
1319           /* translate the name to a vice id */
1320           code = MapName_r(uname, tcell, &viceid);
1321           if (code) {
1322           bad_name:
1323              ViceLog(1, ("failed to map name=%s, cell=%s -> code=%d\n",
1324                          uname, tcell, code));
1325              fail = 1;
1326              viceid = AnonymousID;
1327              expTime = 0x7fffffff;
1328           }
1329        }
1330     } else {
1331        viceid = AnonymousID;    /* unknown security class */
1332        expTime = 0x7fffffff;
1333     }
1334
1335     if (!client) {
1336        host = h_GetHost_r(tcon); /* Returns it h_Held */
1337
1338        /* First try to find the client structure */
1339        for (client = host->FirstClient; client; client = client->next) {
1340           if (!client->deleted && (client->sid == rxr_CidOf(tcon)) &&
1341                                   (client->VenusEpoch == rxr_GetEpoch(tcon))) {
1342              if (client->tcon && (client->tcon != tcon)) {
1343                 ViceLog(0, ("*** Vid=%d, sid=%x, tcon=%x, Tcon=%x ***\n", 
1344                             client->ViceId, client->sid, client->tcon, tcon));
1345                 client->tcon = (struct rx_connection *)0;
1346              }
1347              client->refCount++;
1348              H_UNLOCK
1349              ObtainWriteLock(&client->lock);
1350              H_LOCK
1351              break;
1352           }
1353        }
1354
1355        /* Still no client structure - get one */
1356        if (!client) {
1357           client = GetCE();
1358           ObtainWriteLock(&client->lock);
1359           client->host = host;
1360           client->next = host->FirstClient;
1361           host->FirstClient = client;
1362 #if FS_STATS_DETAILED
1363           client->InSameNetwork = host->InSameNetwork;
1364 #endif /* FS_STATS_DETAILED */
1365           client->ViceId = viceid;
1366           client->expTime       = expTime;      /* rx only */
1367           client->authClass = authClass;        /* rx only */
1368           client->sid = rxr_CidOf(tcon);
1369           client->VenusEpoch = rxr_GetEpoch(tcon);
1370           client->CPS.prlist_val = 0;
1371           client->refCount = 1;
1372           CurrentConnections++; /* increment number of connections */
1373        }
1374     }
1375     client->prfail = fail;
1376
1377     if (!(client->CPS.prlist_val) || (viceid != client->ViceId)) {
1378         if (client->CPS.prlist_val && (client->ViceId != ANONYMOUSID)) {
1379            free(client->CPS.prlist_val);
1380         }
1381         client->CPS.prlist_val = NULL;
1382         client->ViceId = viceid;
1383         client->expTime = expTime;
1384
1385         if (viceid == ANONYMOUSID) {
1386           client->CPS.prlist_len = AnonCPS.prlist_len;
1387           client->CPS.prlist_val = AnonCPS.prlist_val;
1388         } else {
1389           H_UNLOCK
1390           code = pr_GetCPS(viceid, &client->CPS);
1391           H_LOCK
1392           if (code) {
1393             char hoststr[16];
1394             ViceLog(0, ("pr_GetCPS failed(%d) for user %d, host %s:%d\n",
1395                        code, viceid,
1396                        afs_inet_ntoa_r(client->host->host, hoststr),
1397                        client->host->port));
1398
1399             /* Although ubik_Call (called by pr_GetCPS) traverses thru
1400              * all protection servers and reevaluates things if no
1401              * sync server or quorum is found we could still end up
1402              * with one of these errors. In such case we would like to
1403              * reevaluate the rpc call to find if there's cps for this
1404              * guy. We treat other errors (except network failures
1405              * ones - i.e. code < 0) as an indication that there is no
1406              * CPS for this host.  Ideally we could like to deal this
1407              * problem the other way around (i.e.  if code == NOCPS
1408              * ignore else retry next time) but the problem is that
1409              * there're other errors (i.e.  EPERM) for which we don't
1410              * want to retry and we don't know the whole code list!
1411              */
1412             if (code < 0 || code == UNOQUORUM || code == UNOTSYNC) 
1413                 client->prfail = 1;
1414           }
1415         }
1416         /* the disabling of system:administrators is so iffy and has so many
1417          * possible failure modes that we will disable it again */
1418         /* Turn off System:Administrator for safety  
1419            if (AL_IsAMember(SystemId, client->CPS) == 0)
1420            assert(AL_DisableGroup(SystemId, client->CPS) == 0); */
1421     }
1422
1423     /* Now, tcon may already be set to a rock, since we blocked with no host
1424      * or client locks set above in pr_GetCPS (XXXX some locking is probably
1425      * required).  So, before setting the RPC's rock, we should disconnect
1426      * the RPC from the other client structure's rock.
1427      */
1428     if ((oldClient = (struct client *) rx_GetSpecific(tcon, rxcon_client_key))) {
1429         oldClient->tcon = (struct rx_connection *) 0;
1430         /* rx_SetSpecific will be done immediately below */
1431     }
1432     client->tcon = tcon;
1433     rx_SetSpecific(tcon, rxcon_client_key, client);
1434     ReleaseWriteLock(&client->lock);
1435
1436     return client;
1437
1438 } /*h_FindClient_r*/
1439
1440 int h_ReleaseClient_r(struct client *client)
1441 {
1442     assert(client->refCount > 0);
1443     client->refCount--;
1444     return 0;
1445 }
1446
1447
1448 /*
1449  * Sigh:  this one is used to get the client AGAIN within the individual
1450  * server routines.  This does not bother h_Holding the host, since
1451  * this is assumed already have been done by the server main loop.
1452  * It does check tokens, since only the server routines can return the
1453  * VICETOKENDEAD error code
1454  */
1455 int GetClient(struct rx_connection * tcon, struct client **cp)
1456 {
1457     register struct client *client;
1458
1459     H_LOCK
1460
1461     *cp = client = (struct client *) rx_GetSpecific(tcon, rxcon_client_key);
1462     if (!(client && client->tcon && rxr_CidOf(client->tcon) == client->sid)) {
1463         if (!client)
1464             ViceLog(0, ("GetClient: no client in conn %x\n", tcon));
1465         else
1466             ViceLog(0, ("GetClient: tcon %x tcon sid %d client sid %d\n", 
1467                         client->tcon, client->tcon ? rxr_CidOf(client->tcon)
1468                         : -1, client->sid));
1469         assert(0);
1470     }
1471     if (client &&
1472         client->LastCall > client->expTime && client->expTime) {
1473         char hoststr[16];
1474         ViceLog(1, ("Token for %s at %s:%d expired %d\n",
1475                 h_UserName(client),
1476                 afs_inet_ntoa_r(client->host->host, hoststr),
1477                 client->host->port, client->expTime));
1478         H_UNLOCK
1479         return VICETOKENDEAD;
1480     }
1481
1482     H_UNLOCK
1483     return 0;
1484
1485 } /*GetClient*/
1486
1487
1488 /* Client user name for short term use.  Note that this is NOT inexpensive */
1489 char *h_UserName(struct client *client)
1490 {
1491     static char User[PR_MAXNAMELEN+1];
1492     namelist lnames;
1493     idlist lids;
1494
1495     lids.idlist_len = 1;
1496     lids.idlist_val = (afs_int32 *)malloc(1*sizeof(afs_int32));
1497     if (!lids.idlist_val) {
1498         ViceLog(0, ("Failed malloc in h_UserName\n"));
1499         assert(0);
1500     }
1501     lnames.namelist_len = 0;
1502     lnames.namelist_val = (prname *)0;
1503     lids.idlist_val[0] = client->ViceId;
1504     if (pr_IdToName(&lids,&lnames)) {
1505         /* We need to free id we alloced above! */
1506         free(lids.idlist_val);
1507         return "*UNKNOWN USER NAME*";
1508     }
1509     strncpy(User,lnames.namelist_val[0],PR_MAXNAMELEN);
1510     free(lids.idlist_val);
1511     free(lnames.namelist_val);
1512     return User;
1513
1514 } /*h_UserName*/
1515
1516
1517 void h_PrintStats()
1518 {
1519     ViceLog(0,
1520             ("Total Client entries = %d, blocks = %d; Host entries = %d, blocks = %d\n",
1521             CEs, CEBlocks, HTs, HTBlocks));
1522
1523 } /*h_PrintStats*/
1524
1525
1526 static int 
1527 h_PrintClient(register struct host *host, int held, StreamHandle_t *file)
1528 {
1529     register struct client *client;
1530     int i;
1531     char tmpStr[256];
1532     char tbuffer[32];
1533     char hoststr[16];
1534
1535     H_LOCK
1536     if (host->hostFlags & HOSTDELETED) {
1537         H_UNLOCK
1538         return held;
1539     }
1540     sprintf(tmpStr,"Host %s:%d down = %d, LastCall %s",
1541             afs_inet_ntoa_r(host->host, hoststr), host->port,
1542             (host->hostFlags & VENUSDOWN),
1543             afs_ctime((time_t *)&host->LastCall, tbuffer, sizeof(tbuffer)));
1544     STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1545     for (client = host->FirstClient; client; client=client->next) {
1546         if (!client->deleted) {
1547             if (client->tcon) {
1548                 sprintf(tmpStr, "    user id=%d,  name=%s, sl=%s till %s",
1549                         client->ViceId, h_UserName(client),
1550                         client->authClass ? "Authenticated" : "Not authenticated",
1551                         client->authClass ?
1552                         afs_ctime((time_t *)&client->expTime, tbuffer, sizeof(tbuffer))
1553                         : "No Limit\n");
1554                 STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1555             }
1556             else {
1557                 sprintf(tmpStr, "    user=%s, no current server connection\n",
1558                         h_UserName(client));
1559                 STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1560             }
1561             sprintf(tmpStr, "      CPS-%d is [", client->CPS.prlist_len);
1562             STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1563             if (client->CPS.prlist_val) {
1564                 for (i=0; i > client->CPS.prlist_len; i++) {
1565                     sprintf(tmpStr, " %d", client->CPS.prlist_val[i]);
1566                     STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1567                 }
1568             }
1569             sprintf(tmpStr, "]\n");         
1570             STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1571         }
1572     }
1573     H_UNLOCK
1574     return held;
1575
1576 } /*h_PrintClient*/
1577
1578
1579
1580 /*
1581  * Print a list of clients, with last security level and token value seen,
1582  * if known
1583  */
1584 void h_PrintClients()
1585 {
1586     time_t now;
1587     char tmpStr[256];
1588     char tbuffer[32];
1589
1590     StreamHandle_t *file = STREAM_OPEN(AFSDIR_SERVER_CLNTDUMP_FILEPATH, "w");
1591
1592     if (file == NULL) {
1593         ViceLog(0, ("Couldn't create client dump file %s\n", AFSDIR_SERVER_CLNTDUMP_FILEPATH));
1594         return;
1595     }
1596     now = FT_ApproxTime();
1597     sprintf(tmpStr, "List of active users at %s\n",
1598             afs_ctime(&now, tbuffer, sizeof(tbuffer)));
1599     STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1600     h_Enumerate(h_PrintClient, (char *)file);
1601     STREAM_REALLYCLOSE(file);
1602     ViceLog(0, ("Created client dump %s\n", AFSDIR_SERVER_CLNTDUMP_FILEPATH));
1603 }
1604
1605
1606
1607
1608 static int 
1609 h_DumpHost(register struct host *host, int held, StreamHandle_t *file)
1610 {
1611     int i;
1612     char tmpStr[256];
1613
1614     H_LOCK
1615     sprintf(tmpStr, "ip:%x port:%d hidx:%d cbid:%d lock:%x last:%u active:%u down:%d del:%d cons:%d cldel:%d\n\t hpfailed:%d hcpsCall:%u hcps [",
1616             host->host, host->port, host->index, host->cblist,
1617             CheckLock(&host->lock), host->LastCall, host->ActiveCall, 
1618             (host->hostFlags & VENUSDOWN), host->hostFlags&HOSTDELETED, 
1619             host->Console, host->hostFlags & CLIENTDELETED, 
1620             host->hcpsfailed, host->cpsCall);
1621     STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1622     if (host->hcps.prlist_val)
1623         for (i=0; i < host->hcps.prlist_len; i++) {
1624             sprintf(tmpStr, " %d", host->hcps.prlist_val[i]);
1625             STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1626         }
1627     sprintf(tmpStr, "] [");
1628     STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1629     if ( host->interface)
1630         for (i=0; i < host->interface->numberOfInterfaces; i++) {
1631             sprintf(tmpStr, " %x", host->interface->addr[i]);
1632             STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1633         }
1634     sprintf(tmpStr, "] holds: ");
1635     STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1636
1637     for (i = 0 ; i < h_maxSlots ; i++) {
1638       sprintf(tmpStr, "%04x", host->holds[i]);
1639       STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1640     }
1641     sprintf(tmpStr, " slot/bit: %d/%d\n", h_holdSlot(), h_holdbit());
1642     STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1643
1644     H_UNLOCK
1645     return held;
1646
1647 } /*h_DumpHost*/
1648
1649
1650 void h_DumpHosts()
1651 {
1652     time_t now;
1653     StreamHandle_t *file = STREAM_OPEN(AFSDIR_SERVER_HOSTDUMP_FILEPATH, "w");
1654     char tmpStr[256];
1655     char tbuffer[32];
1656
1657     if (file == NULL) {
1658         ViceLog(0, ("Couldn't create host dump file %s\n", AFSDIR_SERVER_HOSTDUMP_FILEPATH));
1659         return;
1660     }
1661     now = FT_ApproxTime();
1662     sprintf(tmpStr, "List of active hosts at %s\n",
1663             afs_ctime(&now, tbuffer, sizeof(tbuffer)));
1664     STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
1665     h_Enumerate(h_DumpHost, (char *) file);
1666     STREAM_REALLYCLOSE(file);
1667     ViceLog(0, ("Created host dump %s\n", AFSDIR_SERVER_HOSTDUMP_FILEPATH));
1668
1669 } /*h_DumpHosts*/
1670
1671
1672 /*
1673  * This counts the number of workstations, the number of active workstations,
1674  * and the number of workstations declared "down" (i.e. not heard from
1675  * recently).  An active workstation has received a call since the cutoff
1676  * time argument passed.
1677  */
1678 void 
1679 h_GetWorkStats(int *nump, int *activep, int *delp, afs_int32 cutofftime)
1680 {
1681     register int i;
1682     register struct host *host;
1683     register int num=0, active=0, del=0;
1684
1685     H_LOCK
1686     for (host = hostList; host; host = host->next) {
1687             if (!(host->hostFlags & HOSTDELETED)) {
1688                 num++;
1689                 if (host->ActiveCall > cutofftime)
1690                     active++;
1691                 if (host->hostFlags & VENUSDOWN)
1692                     del++;
1693             }
1694     }
1695     H_UNLOCK
1696     if (nump)
1697         *nump = num;
1698     if (activep)
1699         *activep = active;
1700     if (delp)
1701         *delp = del;
1702
1703 } /*h_GetWorkStats*/
1704
1705
1706 /*------------------------------------------------------------------------
1707  * PRIVATE h_ClassifyAddress
1708  *
1709  * Description:
1710  *      Given a target IP address and a candidate IP address (both
1711  *      in host byte order), classify the candidate into one of three
1712  *      buckets in relation to the target by bumping the counters passed
1713  *      in as parameters.
1714  *
1715  * Arguments:
1716  *      a_targetAddr       : Target address.
1717  *      a_candAddr         : Candidate address.
1718  *      a_sameNetOrSubnetP : Ptr to counter to bump when the two
1719  *                           addresses are either in the same network
1720  *                           or the same subnet.
1721  *      a_diffSubnetP      : ...when the candidate is in a different
1722  *                           subnet.
1723  *      a_diffNetworkP     : ...when the candidate is in a different
1724  *                           network.
1725  *
1726  * Returns:
1727  *      Nothing.
1728  *
1729  * Environment:
1730  *      The target and candidate addresses are both in host byte
1731  *      order, NOT network byte order, when passed in.
1732  *
1733  * Side Effects:
1734  *      As advertised.
1735  *------------------------------------------------------------------------*/
1736
1737 static void h_ClassifyAddress(afs_uint32 a_targetAddr, afs_uint32 a_candAddr,
1738                               afs_int32 *a_sameNetOrSubnetP, 
1739                               afs_int32 *a_diffSubnetP, 
1740                               afs_int32 *a_diffNetworkP)
1741 { /*h_ClassifyAddress*/
1742
1743     register int i;                      /*Iterator thru host hash table*/
1744     register struct host *hostP;         /*Ptr to current host entry*/
1745     register afs_uint32 currHostAddr; /*Current host address*/
1746     afs_uint32 targetNet;
1747     afs_uint32 targetSubnet;
1748     afs_uint32 candNet;
1749     afs_uint32 candSubnet;
1750
1751     /*
1752      * Put bad values into the subnet info to start with.
1753      */
1754     targetSubnet = (afs_uint32) 0;
1755     candSubnet   = (afs_uint32) 0;
1756
1757     /*
1758      * Pull out the network and subnetwork numbers from the target
1759      * and candidate addresses.  We can short-circuit this whole
1760      * affair if the target and candidate addresses are not of the
1761      * same class.
1762      */
1763     if (IN_CLASSA(a_targetAddr)) {
1764         if (!(IN_CLASSA(a_candAddr))) {
1765             (*a_diffNetworkP)++;
1766             return;
1767         }
1768         targetNet = a_targetAddr & IN_CLASSA_NET;
1769         candNet   = a_candAddr   & IN_CLASSA_NET;
1770         if (IN_SUBNETA(a_targetAddr))
1771             targetSubnet = a_targetAddr & IN_CLASSA_SUBNET;
1772         if (IN_SUBNETA(a_candAddr))
1773             candSubnet = a_candAddr & IN_CLASSA_SUBNET;
1774     }
1775     else
1776         if (IN_CLASSB(a_targetAddr)) {
1777             if (!(IN_CLASSB(a_candAddr))) {
1778                 (*a_diffNetworkP)++;
1779                 return;
1780             }
1781             targetNet = a_targetAddr & IN_CLASSB_NET;
1782             candNet   = a_candAddr   & IN_CLASSB_NET;
1783             if (IN_SUBNETB(a_targetAddr))
1784                 targetSubnet = a_targetAddr & IN_CLASSB_SUBNET;
1785             if (IN_SUBNETB(a_candAddr))
1786                 candSubnet = a_candAddr & IN_CLASSB_SUBNET;
1787         } /*Class B target*/
1788         else
1789             if (IN_CLASSC(a_targetAddr)) {
1790                 if (!(IN_CLASSC(a_candAddr))) {
1791                     (*a_diffNetworkP)++;
1792                     return;
1793                 }
1794                 targetNet = a_targetAddr & IN_CLASSC_NET;
1795                 candNet   = a_candAddr   & IN_CLASSC_NET;
1796
1797                 /*
1798                  * Note that class C addresses can't have subnets,
1799                  * so we leave the defaults untouched.
1800                  */
1801             } /*Class C target*/
1802             else {
1803                 targetNet = a_targetAddr;
1804                 candNet = a_candAddr;
1805             } /*Class D address*/
1806     
1807     /*
1808      * Now, simply compare the extracted net and subnet values for
1809      * the two addresses (which at this point are known to be of the
1810      * same class)
1811      */
1812     if (targetNet == candNet) {
1813         if (targetSubnet == candSubnet)
1814             (*a_sameNetOrSubnetP)++;
1815         else
1816             (*a_diffSubnetP)++;
1817     }
1818     else
1819         (*a_diffNetworkP)++;
1820
1821 } /*h_ClassifyAddress*/
1822
1823
1824 /*------------------------------------------------------------------------
1825  * EXPORTED h_GetHostNetStats
1826  *
1827  * Description:
1828  *      Iterate through the host table, and classify each (non-deleted)
1829  *      host entry into ``proximity'' categories (same net or subnet,
1830  *      different subnet, different network).
1831  *
1832  * Arguments:
1833  *      a_numHostsP        : Set to total number of (non-deleted) hosts.
1834  *      a_sameNetOrSubnetP : Set to # hosts on same net/subnet as server.
1835  *      a_diffSubnetP      : Set to # hosts on diff subnet as server.
1836  *      a_diffNetworkP     : Set to # hosts on diff network as server.
1837  *
1838  * Returns:
1839  *      Nothing.
1840  *
1841  * Environment:
1842  *      We only count non-deleted hosts.  The storage pointed to by our
1843  *      parameters is zeroed upon entry.
1844  *
1845  * Side Effects:
1846  *      As advertised.
1847  *------------------------------------------------------------------------*/
1848
1849 void h_GetHostNetStats(afs_int32 *a_numHostsP, afs_int32 *a_sameNetOrSubnetP,
1850                        afs_int32 *a_diffSubnetP, afs_int32 *a_diffNetworkP)
1851 { /*h_GetHostNetStats*/
1852
1853     register struct host *hostP;         /*Ptr to current host entry*/
1854     register afs_uint32 currAddr_HBO; /*Curr host addr, host byte order*/
1855
1856     /*
1857      * Clear out the storage pointed to by our parameters.
1858      */
1859     *a_numHostsP        = (afs_int32) 0;
1860     *a_sameNetOrSubnetP = (afs_int32) 0;
1861     *a_diffSubnetP      = (afs_int32) 0;
1862     *a_diffNetworkP     = (afs_int32) 0;
1863
1864     H_LOCK
1865     for (hostP = hostList; hostP; hostP = hostP->next) {
1866             if (!(hostP->hostFlags & HOSTDELETED)) {
1867                 /*
1868                  * Bump the number of undeleted host entries found.
1869                  * In classifying the current entry's address, make
1870                  * sure to first convert to host byte order.
1871                  */
1872                 (*a_numHostsP)++;
1873                 currAddr_HBO = (afs_uint32)ntohl(hostP->host);
1874                 h_ClassifyAddress(FS_HostAddr_HBO,
1875                                   currAddr_HBO,
1876                                   a_sameNetOrSubnetP,
1877                                   a_diffSubnetP,
1878                                   a_diffNetworkP);
1879             } /*Only look at non-deleted hosts*/
1880     } /*For each host record hashed to this index*/
1881     H_UNLOCK
1882
1883 } /*h_GetHostNetStats*/
1884
1885 static afs_uint32       checktime;
1886 static afs_uint32    clientdeletetime;
1887 static struct AFSFid zerofid;
1888
1889
1890 /*
1891  * XXXX: This routine could use Multi-Rx to avoid serializing the timeouts.
1892  * Since it can serialize them, and pile up, it should be a separate LWP
1893  * from other events.
1894  */
1895 int CheckHost(register struct host *host, int held)
1896 {
1897     register struct client *client;
1898     int code;
1899
1900     /* Host is held by h_Enumerate */
1901     H_LOCK
1902     for (client = host->FirstClient; client; client = client->next) {
1903         if (client->refCount == 0 && client->LastCall < clientdeletetime) {
1904             client->deleted = 1;
1905             host->hostFlags  |= CLIENTDELETED;
1906         }
1907     }
1908     if (host->LastCall < checktime) {
1909         h_Lock_r(host);
1910         if (!(host->hostFlags & HOSTDELETED)) {
1911             if (host->LastCall < clientdeletetime) {
1912                 host->hostFlags |= HOSTDELETED;
1913                 if (!(host->hostFlags & VENUSDOWN)) {
1914                     host->hostFlags &= ~ALTADDR; /* alternate address invalid*/
1915                     if (host->interface) {
1916                         H_UNLOCK
1917                         code = RXAFSCB_InitCallBackState3(host->callback_rxcon,
1918                                                           &FS_HostUUID);
1919                         H_LOCK
1920                     } else {
1921                         H_UNLOCK
1922                         code = RXAFSCB_InitCallBackState(host->callback_rxcon);
1923                         H_LOCK
1924                     }
1925                     host->hostFlags |= ALTADDR; /* alternate addresses valid */
1926                     if ( code )
1927                     {
1928                         char hoststr[16];
1929                         afs_inet_ntoa_r(host->host, hoststr);
1930                         ViceLog(0,
1931                                 ("CB: RCallBackConnectBack (host.c) failed for host %s:%d\n",
1932                                  hoststr, ntohs(host->port)));
1933                         host->hostFlags |= VENUSDOWN;
1934                     }
1935                     /* Note:  it's safe to delete hosts even if they have call
1936                      * back state, because break delayed callbacks (called when a
1937                      * message is received from the workstation) will always send a 
1938                      * break all call backs to the workstation if there is no
1939                      *callback.
1940                      */
1941                 }
1942             }
1943             else {
1944                 if (!(host->hostFlags & VENUSDOWN) && host->cblist) {
1945                     if (host->interface) {
1946                         afsUUID uuid = host->interface->uuid;
1947                         H_UNLOCK
1948                         code = RXAFSCB_ProbeUuid(host->callback_rxcon, &uuid);
1949                         H_LOCK
1950                         if(code) {
1951                             if ( MultiProbeAlternateAddress_r(host) ) {
1952                                 char hoststr[16];
1953                                 afs_inet_ntoa_r(host->host, hoststr);
1954                                 ViceLog(0,
1955                                         ("ProbeUuid failed for host %s:%d\n",
1956                                          hoststr, ntohs(host->port)));
1957                                 host->hostFlags |= VENUSDOWN;
1958                             }
1959                         }
1960                     } else {
1961                         H_UNLOCK
1962                         code = RXAFSCB_Probe(host->callback_rxcon);
1963                         H_LOCK
1964                         if (code) {
1965                             char hoststr[16];
1966                             afs_inet_ntoa_r(host->host, hoststr);
1967                             ViceLog(0, ("ProbeUuid failed for host %s:%d\n",
1968                                         hoststr, ntohs(host->port)));
1969                             host->hostFlags |= VENUSDOWN;
1970                         }
1971                     }
1972                 }
1973             }
1974         }
1975         h_Unlock_r(host);
1976     }
1977     H_UNLOCK
1978     return held;
1979
1980 } /*CheckHost*/
1981
1982
1983 /*
1984  * Set VenusDown for any hosts that have not had a call in 15 minutes and
1985  * don't respond to a probe.  Note that VenusDown can only be cleared if
1986  * a message is received from the host (see ServerLWP in file.c).
1987  * Delete hosts that have not had any calls in 1 hour, clients that
1988  * have not had any calls in 15 minutes.
1989  *
1990  * This routine is called roughly every 5 minutes.
1991  */
1992 void h_CheckHosts() {
1993     afs_uint32 now = FT_ApproxTime();
1994
1995     memset((char *)&zerofid, 0, sizeof(zerofid));
1996     /*
1997      * Send a probe to the workstation if it hasn't been heard from in
1998      * 15 minutes
1999      */
2000     checktime = now - 15*60;
2001     clientdeletetime = now - 120*60;    /* 2 hours ago */
2002     h_Enumerate(CheckHost, NULL);
2003
2004 } /*h_CheckHosts*/
2005
2006 /*
2007  * This is called with host locked and held. At this point, the
2008  * hostHashTable should not be having entries for the alternate
2009  * interfaces. This function has to insert these entries in the
2010  * hostHashTable.
2011  *
2012  * The addresses in the ineterfaceAddr list are in host byte order.
2013  */
2014 int
2015 initInterfaceAddr_r(struct host *host, struct interfaceAddr *interf)
2016 {
2017         int i, j;
2018         int number, count;
2019         afs_int32               myPort, myHost;
2020         int found;
2021         struct Interface *interface;
2022
2023         assert(host);
2024         assert(interf);
2025
2026         ViceLog(125,("initInterfaceAddr : host %x numAddr %d\n",
2027                 host->host, interf->numberOfInterfaces));
2028
2029         number = interf->numberOfInterfaces;
2030         myPort = host->port;
2031         myHost = host->host; /* current interface address */
2032
2033         /* validation checks */
2034         if ( number < 0 || number > AFS_MAX_INTERFACE_ADDR )
2035         {
2036                 ViceLog(0,("Number of alternate addresses returned is %d\n",
2037                          number));
2038                 return  -1;
2039         }
2040
2041         /*
2042          * Convert IP addresses to network byte order, and remove for
2043          * duplicate IP addresses from the interface list.
2044          */
2045         for (i = 0, count = 0, found = 0; i < number; i++)
2046         {
2047             interf->addr_in[i] = htonl(interf->addr_in[i]);
2048             for (j = 0 ; j < count ; j++) {
2049                 if (interf->addr_in[j] == interf->addr_in[i])
2050                     break;
2051             }
2052             if (j == count) {
2053                 interf->addr_in[count] = interf->addr_in[i];
2054                 if (interf->addr_in[count] == myHost)
2055                     found = 1;
2056                 count++;
2057             }
2058         }
2059
2060         /*
2061          * Allocate and initialize an interface structure for this host.
2062          */
2063         if (found) {
2064             interface = (struct Interface *)
2065                         malloc(sizeof(struct Interface) +
2066                                (sizeof(afs_int32) * (count-1)));
2067             if (!interface) {
2068                 ViceLog(0, ("Failed malloc in initInterfaceAddr_r\n"));
2069                 assert(0);
2070             }
2071             interface->numberOfInterfaces = count;
2072         } else {
2073             interface = (struct Interface *)
2074                         malloc(sizeof(struct Interface) +
2075                                (sizeof(afs_int32) * count));
2076             assert(interface);
2077             interface->numberOfInterfaces = count + 1;
2078             interface->addr[count] = myHost;
2079         }
2080         interface->uuid = interf->uuid;
2081         for (i = 0 ; i < count ; i++)
2082             interface->addr[i] = interf->addr_in[i];
2083
2084         assert(!host->interface);
2085         host->interface = interface;
2086
2087         for ( i=0; i < host->interface->numberOfInterfaces; i++)
2088         {
2089                 ViceLog(125,("--- alt address %x\n", host->interface->addr[i]));
2090         }
2091
2092         return 0;
2093 }
2094
2095 /* inserts a new HashChain structure corresponding to this address */
2096 void hashInsert_r(afs_int32 addr, struct host* host)
2097 {
2098         int index;
2099         struct h_hashChain*     chain;
2100
2101         /* hash into proper bucket */
2102         index = h_HashIndex(addr);
2103
2104         /* insert into beginning of list for this bucket */
2105         chain = (struct h_hashChain *)malloc(sizeof(struct h_hashChain));
2106         if (!chain) {
2107             ViceLog(0, ("Failed malloc in hashInsert_r\n"));
2108             assert(0);
2109         }
2110         chain->hostPtr = host;
2111         chain->next = hostHashTable[index];
2112         chain->addr = addr;
2113         hostHashTable[index] = chain;
2114
2115 }
2116
2117 /*
2118  * This is called with host locked and held. At this point, the
2119  * hostHashTable should not be having entries for the alternate
2120  * interfaces. This function has to insert these entries in the
2121  * hostHashTable.
2122  *
2123  * All addresses are in network byte order.
2124  */
2125 int
2126 addInterfaceAddr_r(struct host *host, afs_int32 addr)
2127 {
2128         int i;
2129         int number;
2130         int found;
2131         struct Interface *interface;
2132
2133         assert(host);
2134         assert(host->interface);
2135
2136         ViceLog(125,("addInterfaceAddr : host %x addr %d\n",
2137                 host->host, addr));
2138
2139         /*
2140          * Make sure this address is on the list of known addresses
2141          * for this host.
2142          */
2143         number = host->interface->numberOfInterfaces;
2144         for ( i=0, found=0; i < number && !found; i++)
2145         {
2146             if ( host->interface->addr[i] == addr)
2147                 found = 1;
2148         }
2149         if (!found) {
2150             interface = (struct Interface *)
2151                         malloc(sizeof(struct Interface) +
2152                                (sizeof(afs_int32) * number));
2153             if (!interface) {
2154                 ViceLog(0, ("Failed malloc in addInterfaceAddr_r\n"));
2155                 assert(0);
2156             }
2157             interface->numberOfInterfaces = number + 1;
2158             interface->uuid = host->interface->uuid;
2159             for (i = 0 ; i < number ; i++)
2160                 interface->addr[i] = host->interface->addr[i];
2161             interface->addr[number] = addr;
2162             free(host->interface);
2163             host->interface = interface;
2164         }
2165
2166         /*
2167          * Create a hash table entry for this address
2168          */
2169         hashInsert_r(addr, host);
2170
2171         return 0;
2172 }
2173
2174 /* deleted a HashChain structure for this address and host */
2175 /* returns 1 on success */
2176 int
2177 hashDelete_r(afs_int32 addr, struct host* host)
2178 {
2179         int flag;
2180         int index;
2181         register struct h_hashChain **hp, *th;
2182
2183         for (hp = &hostHashTable[h_HashIndex(addr)]; (th = *hp); )
2184         {
2185                 assert(th->hostPtr);
2186                 if (th->hostPtr == host && th->addr == addr)
2187                 {
2188                         *hp = th->next;
2189                         free(th);
2190                         flag = 1;
2191                         break;
2192                 } else {
2193                         hp = &th->next;
2194                 }
2195         }
2196         return flag;
2197 }
2198
2199
2200 /*
2201 ** prints out all alternate interface address for the host. The 'level'
2202 ** parameter indicates what level of debugging sets this output
2203 */
2204 void
2205 printInterfaceAddr(struct host *host, int level)
2206 {
2207         int i, number;
2208         if ( host-> interface )
2209         {
2210                 /* check alternate addresses */
2211                 number = host->interface->numberOfInterfaces;
2212                 assert( number > 0 );
2213                 for ( i=0; i < number; i++)
2214                         ViceLog(level, ("%x ", host->interface->addr[i]));
2215         }
2216          ViceLog(level, ("\n"));
2217 }
2218