irix-compiler-hates-commas-20061010
[openafs.git] / src / afs / IRIX / osi_machdep.h
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  * IRIX OSI header file. Extends afs_osi.h.
12  *
13  * afs_osi.h includes this file, which is the only way this file should
14  * be included in a source file. This file can redefine macros declared in
15  * afs_osi.h.
16  */
17 #ifndef _OSI_MACHDEP_H_
18 #define _OSI_MACHDEP_H_
19
20 #include <sys/sema.h>
21 #include <sys/pda.h>
22 extern kmutex_t afs_global_lock;
23
24
25 #undef osi_Time
26 extern time_t time;
27 #define osi_Time() (time)
28
29 /* This gets redefined from ucred to cred in osi_vfs.h, just do it right */
30 #define AFS_UCRED       cred
31
32 #define osi_vnhold(avc, r)  do { VN_HOLD(AFSTOV(avc)); } while(0)
33
34 #undef afs_osi_Alloc_NoSleep
35 extern void *afs_osi_Alloc_NoSleep(size_t size);
36
37
38 #ifdef AFS_SGI64_ENV
39 #include <sys/flock.h>
40 extern flid_t osi_flid;
41 #define v_op v_bh.bh_first->bd_ops
42 #define v_data v_bh.bh_first->bd_pdata
43 #define vfs_data vfs_bh.bh_first->bd_pdata
44 #endif /* AFS_SGI64_ENV */
45
46 #define ifnet_flags(x) (x?(x)->if_flags:0)
47
48 /*
49  * Global lock, semaphore, mutex and state vector support.
50  */
51 #define SV_INIT(cv, nm, t, c)   cv_init(cv, nm, t, c)
52 /* Spinlock macros */
53 #define SV_TYPE sv_t
54 #define SV_SIGNAL(cv)           sv_signal(cv)
55 #define SPINLOCK_INIT(l, nm)    spinlock_init((l),(nm))
56 #define SPLOCK(l)               mp_mutex_spinlock(&(l))
57 #define SPUNLOCK(l,s)           mp_mutex_spinunlock(&(l),s)
58 #define SP_WAIT(l, s, cv, p)    mp_sv_wait_sig(cv, p, (void*)(&(l)), s)
59 #ifdef AFS_SGI64_ENV
60 #ifdef AFS_SGI65_ENV
61 /* Add PLTWAIT for afsd's to wait so we don't rack up the load average. */
62 #define AFSD_PRI() ((kt_basepri(curthreadp) == PTIME_SHARE) ? PZERO : (PZERO|PLTWAIT))
63 #undef AFS_MUTEX_ENTER
64 #define AFS_MUTEX_ENTER(mp) \
65   MACRO_BEGIN \
66     register struct kthread *_kthreadP; \
67     while(mutex_tryenter(mp) == 0) { \
68       _kthreadP = (struct kthread*)mutex_owner(mp); \
69       if (_kthreadP != NULL && _kthreadP->k_sonproc == CPU_NONE) { \
70           mutex_lock(mp, AFSD_PRI()); \
71           break; \
72       } \
73     } \
74   MACRO_END
75
76 #else /* AFS_SGI65_ENV */
77 /* Add PLTWAIT for afsd's to wait so we don't rack up the load average. */
78 #define AFSD_PRI() ((curprocp && curprocp->p_rss==0) ? (PZERO|PLTWAIT) : PZERO)
79
80 #define AFS_MUTEX_ENTER(mp) \
81   MACRO_BEGIN \
82     kthread_t *kt; \
83     while(mutex_tryenter(mp) == 0) { \
84         kt = mutex_owner(mp); \
85         if (kt != NULL && kt->k_sonproc == CPU_NONE) { \
86             mutex_lock(mp, AFSD_PRI()); \
87             break; \
88         } \
89     } \
90   MACRO_END
91 #endif /* AFS_SGI65_ENV */
92
93 #define cv_timedwait(cv, l, t)  {                               \
94                                 sv_timedwait(cv, AFSD_PRI(), l, 0, 0, &(t), \
95                                              (struct timespec*)0);      \
96                                 AFS_MUTEX_ENTER(l); \
97                                 }
98 #ifdef cv_wait
99 #undef cv_wait
100 #endif
101 #define cv_wait(cv, l) {                                        \
102                         sv_wait(cv, AFSD_PRI(),  l, 0); \
103                         AFS_MUTEX_ENTER(l); \
104                        }
105 #else /* AFS_SGI64_ENV */
106 #ifdef AFS_SGI62_ENV
107
108 #define AFS_MUTEX_ENTER(mp) \
109   MACRO_BEGIN \
110     register struct proc *_procP; \
111     while(mutex_tryenter(mp) == 0) { \
112         _procP = mutex_owner(mp); \
113         if (_procP != NULL && _procP->p_sonproc == CPU_NONE) { \
114             mutex_enter(mp); \
115             break; \
116         } \
117     } \
118   MACRO_END
119
120 #else /* AFS_SGI62_ENV */
121
122 #define AFS_MUTEX_ENTER(mp)     mutex_enter(mp)
123
124 #endif /* AFS_SGI62_ENV */
125
126 #define cv_timedwait(cv, l, t)  {                               \
127                                   sv_timedwait(cv, l, t);       \
128                                   AFS_GLOCK();                  \
129                                 }
130 #endif /* AFS_SGI64_ENV */
131
132 #if defined(KERNEL)
133 #if defined(MP)
134 #define _MP_NETLOCKS            /* to get sblock to work right */
135
136 /* On SGI mutex_owned doesn't work, so simulate this by remembering the owning
137  * thread explicitly.  This is only used for debugging so could be disabled for
138  * production builds.
139  *
140  * CAUTION -- The ISAFS_(RX)?GLOCK macros are not safe to use when the lock is
141  *     not held if the test may be made at interrupt level as the code may
142  *     appear to be running as the process that is (or last was) running at
143  *     non-interrupt level. Worse yet, the interrupt may occur just as the 
144  *     process is exiting, in which case, the pid may change from the start
145  *     of the interrupt to the end, since the u area has been changed. So,
146  *     at interrupt level, I'm using the base of the current interrupt stack.
147  *     Note that afs_osinet.c also modifies afs_global_owner for osi_Sleep and 
148  *     afs_osi_Wakeup. Changes made here should be reflected there as well.
149  * NOTE - As of 6.2, we can no longer use mutexes in interrupts, so the above
150  *     concern no longer exists.
151  */
152
153 #ifdef AFS_SGI64_ENV
154 #ifdef AFS_SGI65_ENV
155 /* Irix does not check for deadlocks unless it's a debug kernel. */
156 #define AFS_ASSERT_GNOTME() \
157     (!ISAFS_GLOCK() || (panic("afs global lock held be me"), 0))
158 #define AFS_GLOCK() \
159         { AFS_ASSERT_GNOTME(); AFS_MUTEX_ENTER(&afs_global_lock); }
160 #else
161 #define AFS_GLOCK() AFS_MUTEX_ENTER(&afs_global_lock)
162 #endif
163 #define AFS_GUNLOCK()  { AFS_ASSERT_GLOCK(); mutex_exit(&afs_global_lock); }
164 #define ISAFS_GLOCK() mutex_mine(&afs_global_lock)
165 #else
166 extern long afs_global_owner;
167 #define AFS_GLOCK() \
168   MACRO_BEGIN \
169     AFS_MUTEX_ENTER(&afs_global_lock) ; \
170     afs_global_owner = osi_ThreadUnique(); \
171   MACRO_END
172 #define AFS_GUNLOCK() \
173     { AFS_ASSERT_GLOCK(); afs_global_owner = 0; mutex_exit(&afs_global_lock); }
174 #define ISAFS_GLOCK() (osi_ThreadUnique() == afs_global_owner)
175 #endif /* AFS_SGI64_ENV */
176 #else /* MP */
177 #define AFS_GLOCK()
178 #define AFS_GUNLOCK()
179 #define ISAFS_GLOCK() 1
180
181 #define SPLVAR      register int splvar
182 #define NETPRI      splvar=splnet()
183 #define USERPRI     splx(splvar)
184
185
186 #endif /* MP */
187
188 #endif /* KERNEL  */
189
190
191
192 #ifdef AFS_SGI64_ENV
193 #define gop_rdwr(rw,gp,base,len,offset,segflg,ioflag,ulimit,cr,aresid) \
194    vn_rdwr((rw),(gp),(base),(len),(offset),(segflg),(ioflag),(ulimit),(cr),\
195            (int *)(aresid), &osi_flid)
196 #else
197 #define gop_rdwr(rw,gp,base,len,offset,segflg,ioflag,ulimit,cr,aresid) \
198    vn_rdwr((rw),(gp),(base),(len),(offset),(segflg),(ioflag),(ulimit),(cr), \
199            (int *)(aresid))
200 #endif
201
202 #ifdef AFS_SGI64_ENV
203 #undef suser
204 #define suser()         cap_able(CAP_DEVICE_MGT)
205 #endif
206 #define afs_suser(x)    suser()
207
208 #define afs_hz HZ
209
210 #ifdef PAGESIZE
211 #undef PAGESIZE
212 #endif
213 #define PAGESIZE 4096
214
215 #ifdef AFS_SGI64_ENV
216 #undef setuerror
217 #undef getuerror
218 #endif
219
220
221 /* OS independent user structure stuff */
222 /*
223  * OSI_GET_CURRENT_PID
224  */
225 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI64_ENV)
226 #define OSI_GET_CURRENT_PID() (u.u_procp->p_pid)
227 #endif /* AFS_SGI_ENV but not AFS_SGI64_ENV */
228
229 #if defined(AFS_SGI64_ENV) && !defined(AFS_SGI65_ENV)
230 #define OSI_GET_CURRENT_PID() current_pid()
231 #endif /* AFS_SGI64_ENV */
232
233 #if defined(AFS_SGI65_ENV)
234 #define OSI_GET_CURRENT_PID() proc_pid(curproc())
235 #endif
236
237 #define getpid()  OSI_GET_CURRENT_PID()
238
239 /*
240  * OSI_GET_CURRENT_PROCP
241  */
242 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI64_ENV)
243 #define OSI_GET_CURRENT_PROCP() (u.u_procp)
244 #endif /* AFS_SGI_ENV but not AFS_SGI64_ENV */
245
246 #if defined(AFS_SGI64_ENV) && !defined(AFS_SGI65_ENV)
247 #define OSI_GET_CURRENT_PROCP() curprocp
248 #endif /* AFS_SGI64_ENV */
249
250 #if defined(AFS_SGI65_ENV)
251 #define OSI_GET_CURRENT_PROCP() UT_TO_PROC(curuthread)
252 #endif
253
254
255 /*
256  * OSI_GET_LOCKID
257  *
258  * Prior to IRIX 6.4, pid sufficed, now we need kthread.
259  */
260 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI64_ENV)
261 #define OSI_GET_LOCKID() (u.u_procp->p_pid)
262 #define OSI_NO_LOCKID (-1)
263 #endif /* AFS_SGI_ENV but not AFS_SGI64_ENV */
264
265 #if defined(AFS_SGI64_ENV)
266 /* IRIX returns k_id, but this way, we've got the thread address for debugging. */
267 #define OSI_GET_LOCKID() \
268         (private.p_curkthread ? (uint64_t)private.p_curkthread : (uint64_t)0)
269 #define OSI_NO_LOCKID ((uint64_t)-1)
270 #endif /* AFS_SGI64_ENV */
271
272 /*
273  * OSI_GET_CURRENT_CRED
274  */
275 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI64_ENV)
276 #define OSI_GET_CURRENT_CRED() (u.u_cred)
277 #endif /* AFS_SGI_ENV but not AFS_SGI64_ENV */
278
279 #if defined(AFS_SGI64_ENV)
280 #define OSI_GET_CURRENT_CRED() get_current_cred()
281 #endif /* AFS_SGI64_ENV */
282
283 #define osi_curcred()           OSI_GET_CURRENT_CRED()
284
285 /*
286  * OSI_SET_CURRENT_CRED
287  */
288 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI64_ENV)
289 #define OSI_SET_CURRENT_CRED(x) u.u_cred=x
290 #endif /* AFS_SGI_ENV but not AFS_SGI64_ENV */
291
292 #if defined(AFS_SGI64_ENV)
293 #define OSI_SET_CURRENT_CRED(C) set_current_cred((C))
294 #endif /* AFS_SGI64_ENV */
295
296 /*
297  * OSI_GET_CURRENT_ABI
298  */
299 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI64_ENV)
300 #define OSI_GET_CURRENT_ABI() (u.u_procp->p_abi)
301 #endif /* AFS_SGI_ENV but not AFS_SGI64_ENV */
302
303 #if defined(AFS_SGI64_ENV)
304 #define OSI_GET_CURRENT_ABI() get_current_abi()
305 #endif /* AFS_SGI64_ENV */
306
307 /*
308  * OSI_GET_CURRENT_SYSID
309  */
310 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI64_ENV)
311 #define OSI_GET_CURRENT_SYSID() (u.u_procp->p_sysid)
312 #endif /* AFS_SGI_ENV but not AFS_SGI64_ENV */
313
314 #if defined(AFS_SGI64_ENV)
315 #define OSI_GET_CURRENT_SYSID() (curprocp->p_flid.fl_sysid)
316 #endif /* AFS_SGI64_ENV */
317
318 /*
319  * OSI_GET_CURRENT_COMM
320  */
321 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI64_ENV)
322 #define OSI_GET_CURRENT_COMM() (u.u_comm)
323 #endif /* AFS_SGI_ENV but not AFS_SGI64_ENV */
324
325 #if defined(AFS_SGI64_ENV)
326 #define OSI_GET_CURRENT_COMM() (curprocp->p_comm)
327 #endif /* AFS_SGI64_ENV */
328
329 /*
330  * OSI_GET_CURRENT_CDIR
331  */
332 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI64_ENV)
333 #define OSI_GET_CURRENT_CDIR() (u.u_cdir)
334 #endif /* AFS_SGI_ENV but not AFS_SGI64_ENV */
335
336 #if defined(AFS_SGI64_ENV) && !defined(AFS_SGI65_ENV)
337 #define OSI_GET_CURRENT_CDIR() (curprocp->p_cdir)
338 #endif /* AFS_SGI64_ENV */
339
340 #if defined(AFS_SGI65_ENV)
341 #define OSI_GET_CURRENT_CDIR() (curuthread->ut_cdir)
342 #endif /* AFS_SGI65_ENV */
343
344
345 /*
346  * OSI_GET_CURRENT_RDIR
347  */
348 #if defined(AFS_SGI_ENV) && !defined(AFS_SGI64_ENV)
349 #define OSI_GET_CURRENT_RDIR() (u.u_rdir)
350 #endif /* AFS_SGI_ENV but not AFS_SGI64_ENV */
351
352 #if defined(AFS_SGI64_ENV) && !defined(AFS_SGI65_ENV)
353 #define OSI_GET_CURRENT_RDIR() (curprocp->p_rdir)
354 #endif /* AFS_SGI64_ENV */
355
356 #if defined(AFS_SGI65_ENV)
357 #define OSI_GET_CURRENT_RDIR() (curuthread->ut_rdir)
358 #endif /* AFS_SGI65_ENV */
359
360
361
362 /* Macros for vcache/vnode and vfs arguments to vnode and vfs ops.
363  *
364  * Note that the _CONVERT routines get the ";" here so that argument lists
365  * can have arguments after the OSI_x_CONVERT macro is called.
366  */
367 #ifdef AFS_SGI64_ENV
368 #undef OSI_VN_ARG
369 #define OSI_VN_ARG(V) bhv_##V
370 #undef OSI_VN_DECL
371 #define OSI_VN_DECL(V)  bhv_desc_t *bhv_##V
372 #undef OSI_VN_CONVERT
373 #define OSI_VN_CONVERT(V) struct vnode * V = (struct vnode*)BHV_TO_VNODE(bhv_##V)
374 #undef OSI_VC_ARG
375 #define OSI_VC_ARG(V) bhv_##V
376 #undef OSI_VC_DECL
377 #define OSI_VC_DECL(V)  bhv_desc_t *bhv_##V
378 #undef OSI_VC_CONVERT
379 #define OSI_VC_CONVERT(V) struct vcache * V = VTOAFS(BHV_TO_VNODE(bhv_##V))
380 #undef OSI_VFS_ARG
381 #define OSI_VFS_ARG(V) bhv_##V
382 #undef OSI_VFS_DECL
383 #define OSI_VFS_DECL(V)  bhv_desc_t *bhv_##V
384 #undef OSI_VFS_CONVERT
385 #define OSI_VFS_CONVERT(V) struct vfs * V = (struct vfs*)bhvtovfs(bhv_##V)
386 #endif /* AFS_SGI64_ENV */
387
388
389
390
391 #endif /* _OSI_MACHDEP_H_ */