no-copy-libafs-builds-20021015
[openafs.git] / src / afs / LINUX / 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  * Linux implementation.
12  *
13  */
14
15 #ifndef OSI_MACHDEP_H_
16 #define OSI_MACHDEP_H_
17
18 /* Only needed for xdr.h in glibc 2.1.x */
19 #ifndef quad_t
20 #define quad_t __quad_t
21 #define u_quad_t __u_quad_t
22 #endif
23
24 #undef getuerror
25
26 #define getpid() current->pid
27 #define getppid() current->p_opptr->pid
28
29
30 #define afs_hz HZ
31 #include "h/sched.h"
32 #define osi_Time() (xtime.tv_sec)
33 #if  (CPU == sparc64)
34 #define osi_GetTime(V) do { (*(V)).tv_sec = xtime.tv_sec; (*(V)).tv_usec = xtime.tv_usec; } while (0)
35 #else
36 #define osi_GetTime(V) (*(V)=xtime)
37 #endif
38
39 #undef gop_lookupname
40 #define gop_lookupname osi_lookupname
41
42 #define osi_vnhold(v, n)  VN_HOLD(v)
43
44 #define osi_AllocSmall afs_osi_Alloc
45 #define osi_FreeSmall afs_osi_Free
46
47 #define afs_suser suser
48 #define wakeup afs_osi_Wakeup
49
50 #undef vType
51 #define vType(V) ((( vnode_t *)V)->v_type & S_IFMT)
52
53 /* IsAfsVnode relies on the fast that there is only one vnodeop table for AFS.
54  * Use the same type of test as other OS's for compatibility.
55  */
56 #undef IsAfsVnode
57 extern struct vnodeops afs_dir_iops, afs_symlink_iops;
58 #define IsAfsVnode(vc) (((vc)->v_op == afs_ops) ? 1 : \
59                         ((vc)->v_op == &afs_dir_iops) ? 1 : \
60                         ((vc)->v_op == &afs_symlink_iops))
61
62 #if 0
63 /* bcopy is in stds.h, just so fcrypt.c can pick it up. */
64 #define bzero(D,C)   memset((D), 0, (C))
65 #define bcmp(A,B,C)  memcmp((A), (B), (C))
66 #endif
67
68 /* We often need to pretend we're in user space to get memory transfers
69  * right for the kernel calls we use.
70  */
71 #ifdef KERNEL_SPACE_DECL
72 #undef KERNEL_SPACE_DECL
73 #undef TO_USER_SPACE
74 #undef TO_KERNEL_SPACE
75 #endif
76 #define KERNEL_SPACE_DECL mm_segment_t _fs_space_decl
77 #define TO_USER_SPACE() { _fs_space_decl = get_fs(); set_fs(get_ds()); }
78 #define TO_KERNEL_SPACE() set_fs(_fs_space_decl)
79
80 /* Backwards compatibilty macros - copyin/copyout are redone because macro
81  * inside parentheses is not evalutated.
82  */
83 #define memcpy_fromfs copy_from_user
84 #define memcpy_tofs copy_to_user
85 #define copyin(F, T, C)  (copy_from_user ((char*)(T), (char*)(F), (C)), 0)
86 #define copyinstr(F, T, C, L) (copyin(F, T, C), *(L)=strlen(T), 0)
87 #define copyout(F, T, C) (copy_to_user ((char*)(T), (char*)(F), (C)), 0)
88
89 /* kernel print statements */
90 #define printf printk
91 #define uprintf printk
92
93
94 #define PAGESIZE PAGE_SIZE
95
96 /* cred struct */
97 typedef struct cred {           /* maps to task field: */
98 #if (CPU == sparc64)
99     long cr_ref;
100 #else
101     int cr_ref;
102 #endif
103     uid_t cr_uid;       /* euid */
104     uid_t cr_ruid;      /* uid */
105     gid_t cr_gid;       /* egid */
106     gid_t cr_rgid;      /* gid */
107     gid_t cr_groups[NGROUPS];   /* 32 groups - empty set to NOGROUP */
108     int cr_ngroups;
109 } cred_t;
110 #define AFS_UCRED cred
111 #define AFS_PROC struct task_struct
112 #define crhold(c) (c)->cr_ref++
113
114 /* UIO manipulation */
115 typedef enum { AFS_UIOSYS, AFS_UIOUSER } uio_seg_t;
116 typedef enum { UIO_READ, UIO_WRITE } uio_flag_t;
117 typedef struct uio {
118     struct      iovec *uio_iov;
119     int         uio_iovcnt;
120     afs_offs_t  uio_offset;
121     uio_seg_t   uio_seg;
122     int         uio_resid;
123     uio_flag_t  uio_flag;
124 } uio_t;
125 #define afsio_iov       uio_iov
126 #define afsio_iovcnt    uio_iovcnt
127 #define afsio_offset    uio_offset
128 #define afsio_seg       uio_segflg
129 #define afsio_fmode     uio_fmode
130 #define afsio_resid     uio_resid
131
132 /* Get/set the inode in the osifile struct. */
133 #define FILE_INODE(F) (F)->f_dentry->d_inode
134
135
136 /* page offset is obtained and stored here during module initialization 
137  * We need a variable to do this because, the PAGE_OFFSET macro defined in
138  * include/asm/page.h can change from kernel to kernel and we cannot use
139  * the hardcoded version.
140  */
141 extern unsigned long afs_linux_page_offset;
142
143 /* some more functions to help with the page offset stuff */
144 #define AFS_LINUX_MAP_NR(addr) ((((unsigned long)addr) - afs_linux_page_offset)  >> PAGE_SHIFT)
145
146 #define afs_linux_page_address(page) (afs_linux_page_offset + PAGE_SIZE * (page - mem_map))
147
148 #if defined(__KERNEL__) && defined(CONFIG_SMP)
149 #include "linux/wait.h"
150
151 extern struct semaphore afs_global_lock;
152 extern int afs_global_owner;
153
154 #define AFS_GLOCK() \
155 do { \
156          down(&afs_global_lock); \
157          if (afs_global_owner) \
158              osi_Panic("afs_global_lock already held by pid %d", \
159                        afs_global_owner); \
160          afs_global_owner = current->pid; \
161 } while (0)
162
163 #define ISAFS_GLOCK() (afs_global_owner == current->pid)
164
165 #define AFS_GUNLOCK() \
166 do { \
167     if (!ISAFS_GLOCK()) \
168         osi_Panic("afs global lock not held at %s:%d", __FILE__, __LINE__); \
169     afs_global_owner = 0; \
170     up(&afs_global_lock); \
171 } while (0)
172
173
174 #else
175 #define AFS_GLOCK()
176 #define AFS_GUNLOCK()
177 #define ISAFS_GLOCK() 1
178 #define AFS_ASSERT_GLOCK()
179 #define AFS_ASSERT_RXGLOCK()
180 #endif
181
182 #define AFS_RXGLOCK()
183 #define AFS_RXGUNLOCK()
184 #define ISAFS_RXGLOCK() 1
185 #endif /* OSI_MACHDEP_H_ */