rx-rw-locking-20081024
[openafs.git] / src / afs / LINUX / osi_module.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  * Linux module support routines.
12  *
13  */
14 #include <afsconfig.h>
15 #include "afs/param.h"
16
17 RCSID
18     ("$Header$");
19
20 #include <linux/module.h> /* early to avoid printf->printk mapping */
21 #include "afs/sysincludes.h"
22 #include "afsincludes.h"
23 #include "h/unistd.h"           /* For syscall numbers. */
24 #include "h/mm.h"
25
26 #ifdef AFS_AMD64_LINUX20_ENV
27 #include <asm/ia32_unistd.h>
28 #endif
29 #ifdef AFS_SPARC64_LINUX20_ENV
30 #include <linux/ioctl32.h>
31 #endif
32
33 #include <linux/proc_fs.h>
34 #include <linux/slab.h>
35 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
36 #include <linux/init.h>
37 #include <linux/sched.h>
38 #include <linux/kernel.h>
39 #endif
40
41 extern struct file_system_type afs_fs_type;
42
43 #if !defined(AFS_LINUX24_ENV)
44 static long get_page_offset(void);
45 #endif
46
47 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
48 DEFINE_MUTEX(afs_global_lock);
49 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
50 DECLARE_MUTEX(afs_global_lock);
51 #else
52 struct semaphore afs_global_lock = MUTEX;
53 #endif
54 int afs_global_owner = 0;
55 #if !defined(AFS_LINUX24_ENV)
56 unsigned long afs_linux_page_offset = 0;        /* contains the PAGE_OFFSET value */
57 #endif
58
59
60 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
61 int __init
62 afs_init(void)
63 #else
64 int
65 init_module(void)
66 #endif
67 {
68     int err;
69     AFS_RWLOCK_INIT(&afs_xosi, "afs_xosi");
70
71 #if !defined(AFS_LINUX24_ENV)
72     /* obtain PAGE_OFFSET value */
73     afs_linux_page_offset = get_page_offset();
74
75 #ifndef AFS_S390_LINUX22_ENV
76     if (afs_linux_page_offset == 0) {
77         /* couldn't obtain page offset so can't continue */
78         printf("afs: Unable to obtain PAGE_OFFSET. Exiting..");
79         return -EIO;
80     }
81 #endif /* AFS_S390_LINUX22_ENV */
82 #endif /* !defined(AFS_LINUX24_ENV) */
83
84     osi_Init();
85 #ifdef AFS_LINUX26_ENV
86 #if !defined(AFS_NONFSTRANS)
87     osi_linux_nfssrv_init();
88 #endif
89 #endif
90
91 #ifndef LINUX_KEYRING_SUPPORT
92     err = osi_syscall_init();
93     if (err)
94         return err;
95 #endif
96     err = afs_init_inodecache();
97     if (err) {
98 #ifndef LINUX_KEYRING_SUPPORT
99         osi_syscall_clean();
100 #endif
101         return err;
102     }
103     err = register_filesystem(&afs_fs_type);
104     if (err) {
105         afs_destroy_inodecache();
106 #ifndef LINUX_KEYRING_SUPPORT
107         osi_syscall_clean();
108 #endif
109         return err;
110     }
111
112     osi_sysctl_init();
113 #ifdef LINUX_KEYRING_SUPPORT
114     osi_keyring_init();
115 #endif
116 #ifdef AFS_LINUX24_ENV
117     osi_proc_init();
118     osi_ioctl_init();
119 #endif
120 #if defined(AFS_CACHE_BYPASS)
121     afs_warn("Cache bypass patched libafs module init.\n");
122 #endif
123     return 0;
124 }
125
126 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
127 void __exit
128 afs_cleanup(void)
129 #else
130 void
131 cleanup_module(void)
132 #endif
133 {
134 #if defined(AFS_CACHE_BYPASS)
135     afs_warn("Cache bypass patched libafs module cleaning up.\n");
136 #endif
137 #ifdef LINUX_KEYRING_SUPPORT
138     osi_keyring_shutdown();
139 #endif
140     osi_sysctl_clean();
141 #ifndef LINUX_KEYRING_SUPPORT
142     osi_syscall_clean();
143 #endif
144     unregister_filesystem(&afs_fs_type);
145
146     afs_destroy_inodecache();
147 #ifdef AFS_LINUX26_ENV
148 #if !defined(AFS_NONFSTRANS)
149     osi_linux_nfssrv_shutdown();
150 #endif
151 #endif
152     osi_linux_free_afs_memory();
153
154 #ifdef AFS_LINUX24_ENV
155     osi_ioctl_clean();
156     osi_proc_clean();
157 #endif
158     return;
159 }
160
161 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
162 MODULE_LICENSE("http://www.openafs.org/dl/license10.html");
163 module_init(afs_init);
164 module_exit(afs_cleanup);
165 #endif
166
167
168 #if !defined(AFS_LINUX24_ENV)
169 static long
170 get_page_offset(void)
171 {
172 #if defined(AFS_PPC_LINUX22_ENV) || defined(AFS_SPARC64_LINUX20_ENV) || defined(AFS_SPARC_LINUX20_ENV) || defined(AFS_ALPHA_LINUX20_ENV) || defined(AFS_S390_LINUX22_ENV) || defined(AFS_IA64_LINUX20_ENV) || defined(AFS_PARISC_LINUX24_ENV) || defined(AFS_AMD64_LINUX20_ENV) || defined(AFS_PPC64_LINUX20_ENV)
173     return PAGE_OFFSET;
174 #else
175     struct task_struct *p, *q;
176
177     /* search backward thru the circular list */
178 #if defined(EXPORTED_TASKLIST_LOCK) 
179     read_lock(&tasklist_lock);
180 #endif
181     /* search backward thru the circular list */
182 #ifdef DEFINED_PREV_TASK
183     for (q = current; p = q; q = prev_task(p)) {
184 #else
185     for (p = current; p; p = p->prev_task) {
186 #endif
187         if (p->pid == 1) {
188 #if defined(EXPORTED_TASKLIST_LOCK) 
189             read_unlock(&tasklist_lock);
190 #endif
191             return p->addr_limit.seg;
192         }
193     }
194
195 #if defined(EXPORTED_TASKLIST_LOCK) 
196     read_unlock(&tasklist_lock);
197 #endif
198     return 0;
199 #endif
200 }
201 #endif /* !AFS_LINUX24_ENV */