56b2bdd457a91855d1580c585d4ab01ef3f62e50
[openafs.git] / src / afs / SOLARIS / 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  * Solaris 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
18 #ifndef _OSI_MACHDEP_H_
19 #define _OSI_MACHDEP_H_
20
21 #ifdef AFS_SUN57_64BIT_ENV
22 #include <sys/model.h>          /* for get_udatamodel() */
23 #endif
24
25 #define getpid()                curproc->p_pid
26
27 /**
28   * The location of the NFSSRV module
29   * Used in osi_vfsops.c when checking to see if the nfssrv module is
30   * loaded
31   */
32 #define NFSSRV          "/kernel/misc/nfssrv"
33 #define NFSSRV_V9       "/kernel/misc/sparcv9/nfssrv"
34
35 typedef struct cred afs_ucred_t;
36 typedef struct proc afs_proc_t;
37
38 /* 
39  * Time related macros
40  */
41 #define afs_hz      hz
42 #ifdef AFS_SUN59_ENV
43 #define osi_Time() local_osi_Time()
44 extern void gethrestime(timespec_t *);
45 static int
46 local_osi_Time()
47 {
48     timespec_t start;
49     gethrestime(&start);
50     return start.tv_sec;
51 }
52 #else
53 #define osi_Time() (hrestime.tv_sec)
54 #endif
55
56 #undef afs_osi_Alloc_NoSleep
57 extern void *afs_osi_Alloc_NoSleep(size_t size);
58
59 #define osi_vnhold(avc, r)  do { VN_HOLD(AFSTOV(avc)); } while(0)
60 #define gop_rdwr(rw,gp,base,len,offset,segflg,ioflag,ulimit,cr,aresid) \
61   vn_rdwr((rw),(gp),(base),(len),(offset),(segflg),(ioflag),(ulimit),(cr),(aresid))
62 #define gop_lookupname(fnamep,segflg,followlink,compvpp) \
63   lookupname((fnamep),(segflg),(followlink),NULL,(compvpp))
64 #define gop_lookupname_user(fnamep,segflg,followlink,compvpp) \
65   lookupname((fnamep),(segflg),(followlink),NULL,(compvpp))
66
67
68 #if defined(AFS_SUN510_ENV)
69 #define afs_suser(x)        afs_osi_suser(x)
70 #else
71 #define afs_suser(x)        suser(x)
72 #endif
73
74 #ifdef KERNEL
75 /*
76  * Global lock support. 
77  */
78 #include <sys/mutex.h>
79 extern kmutex_t afs_global_lock;
80
81 #define AFS_GLOCK()     mutex_enter(&afs_global_lock);
82 #define AFS_GUNLOCK()   mutex_exit(&afs_global_lock);
83 #define ISAFS_GLOCK()   mutex_owned(&afs_global_lock)
84 #endif
85
86
87 /* Associate the Berkley signal equivalent lock types to System V's */
88 #define LOCK_SH 1               /* F_RDLCK */
89 #define LOCK_EX 2               /* F_WRLCK */
90 #define LOCK_NB 4               /* XXX */
91 #define LOCK_UN 8               /* F_UNLCK */
92
93 #ifndef IO_APPEND
94 #define IO_APPEND       FAPPEND
95 #endif
96
97 #ifndef IO_SYNC
98 #define IO_SYNC         FSYNC
99 #endif
100
101 #if     defined(AFS_SUN56_ENV)
102 /*
103 ** Macro returns 1 if file is larger than 2GB; else returns 0 
104 */
105 #undef AfsLargeFileUio
106 #define AfsLargeFileUio(uio)       ( (uio)->_uio_offset._p._u ? 1 : 0 )
107 #undef AfsLargeFileSize
108 #define AfsLargeFileSize(pos, off) ( ((offset_t)(pos)+(offset_t)(off) > (offset_t)0x7fffffff)?1:0)
109 #endif
110
111 #if defined(AFS_SUN510_ENV)
112 #include "h/sunddi.h"
113 extern ddi_taskq_t *afs_taskq;
114 extern krwlock_t afsifinfo_lock;
115
116 /* this should be in rx/SOLARIS/rx_knet.c accessed via accessor functions,
117    eventually */
118 #include "net/if.h"
119 /* Global interface info struct */
120 struct afs_ifinfo {
121   char        ifname[LIFNAMSIZ];
122   ipaddr_t    ipaddr;
123   ipaddr_t    netmask;
124   uint_t      mtu;
125   uint64_t    flags;
126   int         metric;
127   ipaddr_t    dstaddr;
128 };
129 #endif
130 #endif /* _OSI_MACHDEP_H_ */