2 * Copyright 2000, International Business Machines Corporation and others.
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
11 * Linux module support routines.
14 #include "../afs/param.h"
15 #include "../afs/sysincludes.h"
16 #include "../afs/afsincludes.h"
17 #include "../h/unistd.h" /* For syscall numbers. */
20 #include <linux/module.h>
24 asmlinkage int (*sys_settimeofdayp)(struct timeval *tv, struct timezone *tz);
25 #if !defined(AFS_ALPHA_LINUX20_ENV)
26 asmlinkage int (*sys_socketcallp)(int call, long *args);
27 #endif /* no socketcall on alpha */
28 asmlinkage int (*sys_killp)(int pid, int signal);
29 asmlinkage int (*sys_setgroupsp)(int gidsetsize, gid_t *grouplist);
31 #ifdef AFS_SPARC64_LINUX20_ENV
32 extern unsigned int sys_call_table[]; /* changed to uint because SPARC64 has syscaltable of 32bit items */
34 extern void * sys_call_table[]; /* safer for other linuces */
36 extern struct file_system_type afs_file_system;
38 static long get_page_offset(void);
40 #if defined(AFS_LINUX24_ENV)
41 DECLARE_MUTEX(afs_global_lock);
43 struct semaphore afs_global_lock = MUTEX;
45 int afs_global_owner = 0;
46 unsigned long afs_linux_page_offset = 0; /* contains the PAGE_OFFSET value */
48 /* Since sys_ni_syscall is not exported, I need to cache it in order to restore
51 #ifdef AFS_SPARC64_LINUX20_ENV
52 static unsigned int afs_ni_syscall = 0;
54 static void* afs_ni_syscall = 0;
57 #ifdef AFS_SPARC64_LINUX20_ENV
58 static unsigned int afs_ni_syscall32 = 0;
59 asmlinkage int (*sys_setgroupsp32)(int gidsetsize, __kernel_gid_t32 *grouplist);
60 extern unsigned int sys_call_table32[];
62 asmlinkage int afs_syscall32(long syscall, long parm1, long parm2, long parm3,
63 long parm4, long parm5)
65 __asm__ __volatile__ ("
76 #if defined(AFS_LINUX24_ENV)
77 asmlinkage int (*sys_setgroups32p)(int gidsetsize, __kernel_gid32_t *grouplist);
80 #ifdef AFS_SPARC64_LINUX20_ENV
81 #define POINTER2SYSCALL (unsigned int)(unsigned long)
82 #define SYSCALL2POINTER (void *)(long)
84 #define POINTER2SYSCALL (void *)
85 #define SYSCALL2POINTER (void *)
90 extern int afs_syscall();
91 extern int afs_xsetgroups();
92 #if defined(AFS_SPARC64_LINUX20_ENV) || defined(AFS_LINUX24_ENV)
93 extern int afs_xsetgroups32();
96 /* obtain PAGE_OFFSET value */
97 afs_linux_page_offset = get_page_offset();
99 #ifndef AFS_S390_LINUX22_ENV
100 if (afs_linux_page_offset == 0) {
101 /* couldn't obtain page offset so can't continue */
102 printf("afs: Unable to obtain PAGE_OFFSET. Exiting..");
107 /* Initialize pointers to kernel syscalls. */
108 sys_settimeofdayp = SYSCALL2POINTER sys_call_table[__NR_settimeofday];
109 #if !defined(AFS_ALPHA_LINUX20_ENV)
110 sys_socketcallp = SYSCALL2POINTER sys_call_table[__NR_socketcall];
111 #endif /* no socketcall on alpha */
112 sys_killp = SYSCALL2POINTER sys_call_table[__NR_kill];
114 /* setup AFS entry point. */
115 if (SYSCALL2POINTER sys_call_table[__NR_afs_syscall] == afs_syscall) {
116 printf("AFS syscall entry point already in use!\n");
121 afs_ni_syscall = sys_call_table[__NR_afs_syscall];
122 sys_call_table[__NR_afs_syscall] = POINTER2SYSCALL afs_syscall;
123 #ifdef AFS_SPARC64_LINUX20_ENV
124 afs_ni_syscall32 = sys_call_table32[__NR_afs_syscall];
125 sys_call_table32[__NR_afs_syscall] = POINTER2SYSCALL afs_syscall32;
129 register_filesystem(&afs_file_system);
131 /* Intercept setgroups calls */
132 sys_setgroupsp = SYSCALL2POINTER sys_call_table[__NR_setgroups];
133 sys_call_table[__NR_setgroups] = POINTER2SYSCALL afs_xsetgroups;
134 #ifdef AFS_SPARC64_LINUX20_ENV
135 sys_setgroupsp32 = SYSCALL2POINTER sys_call_table32[__NR_setgroups];
136 sys_call_table32[__NR_setgroups] = POINTER2SYSCALL afs_xsetgroups32;
138 #if defined(AFS_LINUX24_ENV)
139 sys_setgroups32p = SYSCALL2POINTER sys_call_table[__NR_setgroups32];
140 sys_call_table[__NR_setgroups32] = POINTER2SYSCALL afs_xsetgroups32;
146 void cleanup_module(void)
148 struct task_struct *t;
150 sys_call_table[__NR_setgroups] = POINTER2SYSCALL sys_setgroupsp;
151 sys_call_table[__NR_afs_syscall] = afs_ni_syscall;
152 #ifdef AFS_SPARC64_LINUX20_ENV
153 sys_call_table32[__NR_setgroups] = POINTER2SYSCALL sys_setgroupsp32;
154 sys_call_table32[__NR_afs_syscall] = afs_ni_syscall32;
156 #if defined(AFS_LINUX24_ENV)
157 sys_call_table[__NR_setgroups32] = POINTER2SYSCALL sys_setgroups32p;
159 unregister_filesystem(&afs_file_system);
161 osi_linux_free_inode_pages(); /* Invalidate all pages using AFS inodes. */
162 osi_linux_free_afs_memory();
167 static long get_page_offset(void)
169 #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)
172 struct task_struct *p;
174 /* search backward thru the circular list */
175 for(p = current; p; p = p->prev_task)
177 return p->addr_limit.seg;