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