linux-register-fs-deal-with-error-20070709
[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 #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         return err;
99     err = register_filesystem(&afs_fs_type);
100     if (err)
101       return err;
102
103     osi_sysctl_init();
104 #ifdef LINUX_KEYRING_SUPPORT
105     osi_keyring_init();
106 #endif
107 #ifdef AFS_LINUX24_ENV
108     osi_proc_init();
109     osi_ioctl_init();
110 #endif
111
112     return 0;
113 }
114
115 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
116 void __exit
117 afs_cleanup(void)
118 #else
119 void
120 cleanup_module(void)
121 #endif
122 {
123     osi_keyring_shutdown();
124     osi_sysctl_clean();
125     osi_syscall_clean();
126     unregister_filesystem(&afs_fs_type);
127
128     afs_destroy_inodecache();
129 #ifdef AFS_LINUX26_ENV
130 #if !defined(AFS_NONFSTRANS)
131     osi_linux_nfssrv_shutdown();
132 #endif
133 #endif
134     osi_linux_free_afs_memory();
135
136 #ifdef AFS_LINUX24_ENV
137     osi_ioctl_clean();
138     osi_proc_clean();
139 #endif
140     return;
141 }
142
143 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
144 MODULE_LICENSE("http://www.openafs.org/dl/license10.html");
145 module_init(afs_init);
146 module_exit(afs_cleanup);
147 #endif
148
149
150 #if !defined(AFS_LINUX24_ENV)
151 static long
152 get_page_offset(void)
153 {
154 #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)
155     return PAGE_OFFSET;
156 #else
157     struct task_struct *p, *q;
158
159     /* search backward thru the circular list */
160 #if defined(EXPORTED_TASKLIST_LOCK) 
161     read_lock(&tasklist_lock);
162 #endif
163     /* search backward thru the circular list */
164 #ifdef DEFINED_PREV_TASK
165     for (q = current; p = q; q = prev_task(p)) {
166 #else
167     for (p = current; p; p = p->prev_task) {
168 #endif
169         if (p->pid == 1) {
170 #if defined(EXPORTED_TASKLIST_LOCK) 
171             read_unlock(&tasklist_lock);
172 #endif
173             return p->addr_limit.seg;
174         }
175     }
176
177 #if defined(EXPORTED_TASKLIST_LOCK) 
178     read_unlock(&tasklist_lock);
179 #endif
180     return 0;
181 #endif
182 }
183 #endif /* !AFS_LINUX24_ENV */