linux-afs-translator-xen-20060731
[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     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     osi_linux_nfssrv_init();
87 #endif
88
89     err = osi_syscall_init();
90     if (err)
91         return err;
92     err = afs_init_inodecache();
93     if (err)
94         return err;
95     register_filesystem(&afs_fs_type);
96     osi_sysctl_init();
97 #ifdef AFS_LINUX24_ENV
98     osi_proc_init();
99     osi_ioctl_init();
100 #endif
101
102     return 0;
103 }
104
105 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
106 void __exit
107 afs_cleanup(void)
108 #else
109 void
110 cleanup_module(void)
111 #endif
112 {
113     osi_sysctl_clean();
114     osi_syscall_clean();
115     unregister_filesystem(&afs_fs_type);
116
117     afs_destroy_inodecache();
118 #ifdef AFS_LINUX26_ENV
119     osi_linux_nfssrv_shutdown();
120 #endif
121     osi_linux_free_afs_memory();
122
123 #ifdef AFS_LINUX24_ENV
124     osi_ioctl_clean();
125     osi_proc_clean();
126 #endif
127     return;
128 }
129
130 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
131 MODULE_LICENSE("http://www.openafs.org/dl/license10.html");
132 module_init(afs_init);
133 module_exit(afs_cleanup);
134 #endif
135
136
137 #if !defined(AFS_LINUX24_ENV)
138 static long
139 get_page_offset(void)
140 {
141 #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)
142     return PAGE_OFFSET;
143 #else
144     struct task_struct *p, *q;
145
146     /* search backward thru the circular list */
147 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
148     read_lock(&tasklist_lock);
149 #endif
150     /* search backward thru the circular list */
151 #ifdef DEFINED_PREV_TASK
152     for (q = current; p = q; q = prev_task(p)) {
153 #else
154     for (p = current; p; p = p->prev_task) {
155 #endif
156         if (p->pid == 1) {
157 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
158             read_unlock(&tasklist_lock);
159 #endif
160             return p->addr_limit.seg;
161         }
162     }
163
164 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
165     read_unlock(&tasklist_lock);
166 #endif
167     return 0;
168 #endif
169 }
170 #endif /* !AFS_LINUX24_ENV */