openbsd-20021018
[openafs.git] / src / afs / afs_util.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 /*
11  * afs_util.c - miscellaneous AFS client utility functions
12  *
13  * Implements:
14  */
15 #include <afsconfig.h>
16 #include "afs/param.h"
17
18 RCSID("$Header$");
19
20 #include "afs/stds.h"
21 #include "afs/sysincludes.h"    /* Standard vendor system headers */
22
23 #if !defined(UKERNEL)
24 #include <net/if.h>
25 #include <netinet/in.h>
26
27 #ifdef AFS_SGI62_ENV
28 #include "h/hashing.h"
29 #endif
30 #if !defined(AFS_HPUX110_ENV) && !defined(AFS_LINUX20_ENV) && !defined(AFS_DARWIN60_ENV)
31 #include <netinet/in_var.h>
32 #endif /* ! AFS_HPUX110_ENV */
33 #endif /* !defined(UKERNEL) */
34
35 #include "afsincludes.h"        /* Afs-based standard headers */
36 #include "afs/afs_stats.h"   /* afs statistics */
37
38 #if     defined(AFS_SUN56_ENV)
39 #include <inet/led.h>
40 #include <inet/common.h>
41 #if     defined(AFS_SUN58_ENV)
42 #include <netinet/ip6.h>
43 #endif
44 #include <inet/ip.h>
45 #endif
46
47 #if     defined(AFS_AIX_ENV)
48 #include <sys/fp_io.h>
49 #endif
50
51 char *afs_cv2string(char *ttp, afs_uint32 aval)
52 {
53     register char *tp = ttp;
54     register int  i;
55     int any;
56     
57     AFS_STATCNT(afs_cv2string);
58     any = 0;
59     *(--tp) = 0;
60     while (aval != 0) {
61         i = aval % 10;
62         *(--tp) = '0' + i;
63         aval /= 10;
64         any = 1;
65     }
66     if (!any)
67         *(--tp) = '0';
68     return tp;
69
70 } /*afs_cv2string*/
71
72 int afs_strcasecmp(char *s1, char *s2)
73 {
74     while (*s1 && *s2) {
75         char c1, c2;
76
77         c1 = *s1++;
78         c2 = *s2++;
79         if (c1 >= 'A' && c1 <= 'Z') c1 += 0x20;
80         if (c2 >= 'A' && c2 <= 'Z') c2 += 0x20;
81         if (c1 != c2)
82             return c1-c2;
83     }
84
85     return *s1 - *s2;
86 }
87
88 char *afs_strcat(char *s1, char *s2)
89 {
90     char *os1;
91
92     os1 = s1;
93     while (*s1++)
94         ;
95     --s1;
96     while ((*s1++ = *s2++))
97         ;
98     return (os1);
99 }
100
101 char *afs_strchr(char *s, int c)
102 {
103     char *p;
104
105     for (p = s; *p; p++)
106         if (*p == c)
107             return p;
108     return NULL;
109 }
110
111 char *afs_strdup(char *s)
112 {
113     char *n;
114     int cc;
115
116     cc = strlen(s) + 1;
117     n = (char *) afs_osi_Alloc(cc);
118     if (n)
119         memcpy(n, s, cc);
120
121     return n;
122 }
123
124 void print_internet_address(char *preamble, struct srvAddr *sa,
125                             char *postamble, int flag)
126 {
127     register struct server *aserver = sa->server;
128     char *ptr = "\n";
129     afs_uint32 address;
130     
131     AFS_STATCNT(print_internet_address);
132     address = ntohl(sa->sa_ip);
133     if (aserver->flags & SRVR_MULTIHOMED) {
134         if (flag == 1) {        /* server down mesg */
135             if (!(aserver->flags & SRVR_ISDOWN))
136                 ptr = " (multi-homed address; other same-host interfaces maybe up)\n";
137             else
138                 ptr = " (all multi-homed ip addresses down for the server)\n";
139         } else if (flag == 2) { /* server up mesg */
140             ptr = " (multi-homed address; other same-host interfaces may still be down)\n";
141         }
142     }
143     afs_warn("%s%d.%d.%d.%d in cell %s%s%s",
144            preamble, (address >> 24), (address >> 16) & 0xff, (address >> 8) & 0xff, (address) & 0xff,
145            aserver->cell->cellName, postamble, ptr);
146     afs_warnuser("%s%d.%d.%d.%d in cell %s%s%s",
147             preamble, (address >> 24), (address >> 16) & 0xff, (address >> 8) & 0xff, (address) & 0xff,
148             aserver->cell->cellName, postamble, ptr);
149
150 } /*print_internet_address*/
151
152
153
154 /* * * * * * *
155  * this code badly needs to be cleaned up...  too many ugly ifdefs.
156  * XXX
157  */
158 #if 0
159 void afs_warn(char *a, long b, long c, long d, long e, long f, 
160         long g, long h, long i, long j)
161 #else
162 void afs_warn(a,b,c,d,e,f,g,h,i,j)
163 char *a;
164 long b,c,d,e,f,g,h,i,j;
165 #endif
166 {
167     AFS_STATCNT(afs_warn);
168     
169     if (afs_showflags & GAGCONSOLE)
170     {
171 #if defined(AFS_AIX_ENV)
172         struct file *fd;
173
174         /* cf. console_printf() in oncplus/kernext/nfs/serv/shared.c */
175         if (fp_open("/dev/console",O_WRONLY|O_NOCTTY|O_NDELAY,
176                     0666,0,FP_SYS,&fd) == 0) {
177             char buf[1024];
178             ssize_t len;
179             ssize_t count;
180
181             sprintf(buf, a,b,c,d,e,f,g,h,i,j);
182             len = strlen(buf);
183             fp_write(fd, buf, len, 0, UIO_SYSSPACE, &count);
184             fp_close(fd);
185         }
186 #else
187         printf(a,b,c,d,e,f,g,h,i,j);
188 #endif
189     }
190 }
191
192 #if 0
193 void afs_warnuser(char *a, long b, long c, long d, long e, long f, 
194         long g, long h, long i, long j)
195 #else
196 void afs_warnuser(a,b,c,d,e,f,g,h,i,j)
197 char *a;
198 long b,c,d,e,f,g,h,i,j;
199 #endif
200 {
201     AFS_STATCNT(afs_warnuser);
202     if (afs_showflags & GAGUSER)
203     {
204 #ifdef AFS_GLOBAL_SUNLOCK
205         int haveGlock = ISAFS_GLOCK();
206         if (haveGlock)
207             AFS_GUNLOCK();
208 #endif /* AFS_GLOBAL_SUNLOCK */
209
210         uprintf(a,b,c,d,e,f,g,h,i,j);
211
212 #ifdef AFS_GLOBAL_SUNLOCK
213         if (haveGlock)
214             AFS_GLOCK();
215 #endif /* AFS_GLOBAL_SUNLOCK */
216     }
217 }
218
219
220 /* run everywhere, checking locks */
221 void afs_CheckLocks(void)
222 {
223     register int i;
224
225     afs_warn("Looking for locked data structures.\n");
226     afs_warn("conn %x, volume %x, user %x, cell %x, server %x\n",
227             afs_xconn, afs_xvolume, afs_xuser, afs_xcell, afs_xserver);
228     {
229         register struct vcache *tvc;
230         AFS_STATCNT(afs_CheckLocks);
231
232         for(i=0;i<VCSIZE;i++) {
233             for(tvc = afs_vhashT[i]; tvc; tvc=tvc->hnext) {
234 #ifdef  AFS_OSF_ENV
235                 if (VREFCOUNT(tvc) > 1)
236 #else   /* AFS_OSF_ENV */
237                 if (VREFCOUNT(tvc))
238 #endif
239                     afs_warn("Stat cache entry at %x is held\n", tvc);
240                 if (CheckLock(&tvc->lock))
241                     afs_warn("Stat entry at %x is locked\n", tvc);
242             }
243         }
244     }
245     {
246         register struct dcache *tdc;
247         for (i=0;i<afs_cacheFiles;i++) {
248             tdc = afs_indexTable[i];
249             if (tdc) {
250                 if (tdc->refCount)
251                     afs_warn("Disk entry %d at %x is held\n", i, tdc);
252             }
253             if (afs_indexFlags[i] & IFDataMod)
254                 afs_warn("Disk entry %d at %x has IFDataMod flag set.\n", i, tdc);
255         }
256     }
257     {
258        struct srvAddr *sa;
259        struct server *ts;
260        struct conn *tc;
261         for (i=0;i<NSERVERS;i++) {
262             for (ts = afs_servers[i]; ts; ts=ts->next) {
263                 if (ts->flags & SRVR_ISDOWN)
264                     printf("Server entry %x is marked down\n", ts);
265                 for (sa = ts->addr; sa; sa = sa->next_sa) {     
266                     for (tc = sa->conns; tc; tc=tc->next) {
267                        if (tc->refCount)
268                           afs_warn("conn at %x (server %x) is held\n", tc, sa->sa_ip);
269                     }
270                 }
271             }
272         }
273     }
274     {
275        struct volume *tv;
276         for (i=0;i<NVOLS;i++) {
277             for (tv = afs_volumes[i]; tv; tv=tv->next) {
278                 if (CheckLock(&tv->lock))
279                     afs_warn("volume at %x is locked\n", tv);
280                 if (tv->refCount)
281                     afs_warn("volume at %x is held\n", tv);
282             }
283         }
284     }
285     {
286        struct unixuser *tu;
287
288         for (i=0;i<NUSERS;i++) {
289             for (tu = afs_users[i]; tu; tu=tu->next) {
290                 if (tu->refCount) printf("user at %x is held\n", tu);
291             }
292         }
293     }
294     afs_warn("Done.\n");
295 }
296
297
298 int afs_noop(void)
299 {
300     AFS_STATCNT(afs_noop);
301 #ifdef  AFS_OSF30_ENV
302     return (EOPNOTSUPP);
303 #else
304     return EINVAL;
305 #endif
306 }
307
308 int afs_badop(void)
309 {
310     AFS_STATCNT(afs_badop);
311     osi_Panic("afs bad vnode op");
312     return 0;
313 }
314
315 /*
316  * afs_data_pointer_to_int32() - returns least significant afs_int32 of the
317  * given data pointer, without triggering "cast truncates pointer"
318  * warnings.  We use this where we explicitly don't care whether a
319  * pointer is truncated -- it loses information where a pointer is
320  * larger than an afs_int32.
321  */
322
323 afs_int32 afs_data_pointer_to_int32(const void *p)
324 {
325         union {
326                 afs_int32  i32[sizeof(void *)/sizeof(afs_int32)];
327                 const void *p;
328         } ip;
329
330         int i32_sub;    /* subscript of least significant afs_int32 in ip.i32[] */
331
332         /* set i32_sub */
333
334         {
335                 /* used to determine the byte order of the system */
336
337                 union {
338                         char c[sizeof(int)/sizeof(char)];
339                         int  i;
340                 } ci;
341
342                 ci.i = 1;
343                 if (ci.c[0] == 1) {
344                         /* little-endian system */
345                         i32_sub = 0;
346                 } else {
347                         /* big-endian system */
348                         i32_sub = (sizeof ip.i32 / sizeof ip.i32[0]) - 1;
349                 }
350         }
351
352         ip.p = p;
353         return ip.i32[i32_sub];
354 }