darwin-updates-20020821
[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 "../afs/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 void print_internet_address(char *preamble, struct srvAddr *sa,
73                             char *postamble, int flag)
74 {
75     register struct server *aserver = sa->server;
76     char *ptr = "\n";
77     afs_uint32 address;
78     
79     AFS_STATCNT(print_internet_address);
80     address = ntohl(sa->sa_ip);
81     if (aserver->flags & SRVR_MULTIHOMED) {
82         if (flag == 1) {        /* server down mesg */
83             if (!(aserver->flags & SRVR_ISDOWN))
84                 ptr = " (multi-homed address; other same-host interfaces maybe up)\n";
85             else
86                 ptr = " (all multi-homed ip addresses down for the server)\n";
87         } else if (flag == 2) { /* server up mesg */
88             ptr = " (multi-homed address; other same-host interfaces may still be down)\n";
89         }
90     }
91     afs_warn("%s%d.%d.%d.%d in cell %s%s%s",
92            preamble, (address >> 24), (address >> 16) & 0xff, (address >> 8) & 0xff, (address) & 0xff,
93            aserver->cell->cellName, postamble, ptr);
94     afs_warnuser("%s%d.%d.%d.%d in cell %s%s%s",
95             preamble, (address >> 24), (address >> 16) & 0xff, (address >> 8) & 0xff, (address) & 0xff,
96             aserver->cell->cellName, postamble, ptr);
97
98 } /*print_internet_address*/
99
100
101
102 /* * * * * * *
103  * this code badly needs to be cleaned up...  too many ugly ifdefs.
104  * XXX
105  */
106 #if 0
107 void afs_warn(char *a, long b, long c, long d, long e, long f, 
108         long g, long h, long i, long j)
109 #else
110 void afs_warn(a,b,c,d,e,f,g,h,i,j)
111 char *a;
112 long b,c,d,e,f,g,h,i,j;
113 #endif
114 {
115     AFS_STATCNT(afs_warn);
116     
117     if (afs_showflags & GAGCONSOLE)
118     {
119 #if defined(AFS_AIX_ENV)
120         struct file *fd;
121
122         /* cf. console_printf() in oncplus/kernext/nfs/serv/shared.c */
123         if (fp_open("/dev/console",O_WRONLY|O_NOCTTY|O_NDELAY,
124                     0666,0,FP_SYS,&fd) == 0) {
125             char buf[1024];
126             ssize_t len;
127             ssize_t count;
128
129             sprintf(buf, a,b,c,d,e,f,g,h,i,j);
130             len = strlen(buf);
131             fp_write(fd, buf, len, 0, UIO_SYSSPACE, &count);
132             fp_close(fd);
133         }
134 #else
135         printf(a,b,c,d,e,f,g,h,i,j);
136 #endif
137     }
138 }
139
140 #if 0
141 void afs_warnuser(char *a, long b, long c, long d, long e, long f, 
142         long g, long h, long i, long j)
143 #else
144 void afs_warnuser(a,b,c,d,e,f,g,h,i,j)
145 char *a;
146 long b,c,d,e,f,g,h,i,j;
147 #endif
148 {
149     AFS_STATCNT(afs_warnuser);
150     if (afs_showflags & GAGUSER)
151     {
152 #ifdef AFS_GLOBAL_SUNLOCK
153         int haveGlock = ISAFS_GLOCK();
154         if (haveGlock)
155             AFS_GUNLOCK();
156 #endif /* AFS_GLOBAL_SUNLOCK */
157
158         uprintf(a,b,c,d,e,f,g,h,i,j);
159
160 #ifdef AFS_GLOBAL_SUNLOCK
161         if (haveGlock)
162             AFS_GLOCK();
163 #endif /* AFS_GLOBAL_SUNLOCK */
164     }
165 }
166
167
168 /* run everywhere, checking locks */
169 void afs_CheckLocks(void)
170 {
171     register int i;
172
173     afs_warn("Looking for locked data structures.\n");
174     afs_warn("conn %x, volume %x, user %x, cell %x, server %x\n",
175             afs_xconn, afs_xvolume, afs_xuser, afs_xcell, afs_xserver);
176     {
177         register struct vcache *tvc;
178         AFS_STATCNT(afs_CheckLocks);
179
180         for(i=0;i<VCSIZE;i++) {
181             for(tvc = afs_vhashT[i]; tvc; tvc=tvc->hnext) {
182 #ifdef  AFS_OSF_ENV
183                 if (VREFCOUNT(tvc) > 1)
184 #else   /* AFS_OSF_ENV */
185                 if (VREFCOUNT(tvc))
186 #endif
187                     afs_warn("Stat cache entry at %x is held\n", tvc);
188                 if (CheckLock(&tvc->lock))
189                     afs_warn("Stat entry at %x is locked\n", tvc);
190             }
191         }
192     }
193     {
194         register struct dcache *tdc;
195         for (i=0;i<afs_cacheFiles;i++) {
196             tdc = afs_indexTable[i];
197             if (tdc) {
198                 if (tdc->refCount)
199                     afs_warn("Disk entry %d at %x is held\n", i, tdc);
200             }
201             if (afs_indexFlags[i] & IFDataMod)
202                 afs_warn("Disk entry %d at %x has IFDataMod flag set.\n", i, tdc);
203         }
204     }
205     {
206        struct srvAddr *sa;
207        struct server *ts;
208        struct conn *tc;
209         for (i=0;i<NSERVERS;i++) {
210             for (ts = afs_servers[i]; ts; ts=ts->next) {
211                 if (ts->flags & SRVR_ISDOWN)
212                     printf("Server entry %x is marked down\n", ts);
213                 for (sa = ts->addr; sa; sa = sa->next_sa) {     
214                     for (tc = sa->conns; tc; tc=tc->next) {
215                        if (tc->refCount)
216                           afs_warn("conn at %x (server %x) is held\n", tc, sa->sa_ip);
217                     }
218                 }
219             }
220         }
221     }
222     {
223        struct volume *tv;
224         for (i=0;i<NVOLS;i++) {
225             for (tv = afs_volumes[i]; tv; tv=tv->next) {
226                 if (CheckLock(&tv->lock))
227                     afs_warn("volume at %x is locked\n", tv);
228                 if (tv->refCount)
229                     afs_warn("volume at %x is held\n", tv);
230             }
231         }
232     }
233     {
234        struct unixuser *tu;
235
236         for (i=0;i<NUSERS;i++) {
237             for (tu = afs_users[i]; tu; tu=tu->next) {
238                 if (tu->refCount) printf("user at %x is held\n", tu);
239             }
240         }
241     }
242     afs_warn("Done.\n");
243 }
244
245
246 int afs_noop(void)
247 {
248     AFS_STATCNT(afs_noop);
249 #ifdef  AFS_OSF30_ENV
250     return (EOPNOTSUPP);
251 #else
252     return EINVAL;
253 #endif
254 }
255
256 int afs_badop(void)
257 {
258     AFS_STATCNT(afs_badop);
259     osi_Panic("afs bad vnode op");
260     return 0;
261 }
262
263 /*
264  * afs_data_pointer_to_int32() - returns least significant afs_int32 of the
265  * given data pointer, without triggering "cast truncates pointer"
266  * warnings.  We use this where we explicitly don't care whether a
267  * pointer is truncated -- it loses information where a pointer is
268  * larger than an afs_int32.
269  */
270
271 afs_int32 afs_data_pointer_to_int32(const void *p)
272 {
273         union {
274                 afs_int32  i32[sizeof(void *)/sizeof(afs_int32)];
275                 const void *p;
276         } ip;
277
278         int i32_sub;    /* subscript of least significant afs_int32 in ip.i32[] */
279
280         /* set i32_sub */
281
282         {
283                 /* used to determine the byte order of the system */
284
285                 union {
286                         char c[sizeof(int)/sizeof(char)];
287                         int  i;
288                 } ci;
289
290                 ci.i = 1;
291                 if (ci.c[0] == 1) {
292                         /* little-endian system */
293                         i32_sub = 0;
294                 } else {
295                         /* big-endian system */
296                         i32_sub = (sizeof ip.i32 / sizeof ip.i32[0]) - 1;
297                 }
298         }
299
300         ip.p = p;
301         return ip.i32[i32_sub];
302 }