Remove pre-Linux 2.6 support
[openafs.git] / src / afs / LINUX / osi_module.c
index 3ac8fe0..8cf1e50 100644 (file)
  * Linux module support routines.
  *
  */
-#include "../afs/param.h"
 #include <afsconfig.h>
+#include "afs/param.h"
 
-RCSID("$Header$");
 
-#include "../afs/sysincludes.h"
-#include "../afs/afsincludes.h"
-#include "../h/unistd.h" /* For syscall numbers. */
-#include "../h/mm.h"
+#include <linux/module.h> /* early to avoid printf->printk mapping */
+#include "afs/sysincludes.h"
+#include "afsincludes.h"
+#include "h/unistd.h"          /* For syscall numbers. */
+#include "h/mm.h"
 
-#include <linux/module.h>
-
-
-#ifdef AFS_SPARC64_LINUX24_ENV
-#define __NR_setgroups32      82 /* This number is not exported for some bizarre reason. */
+#ifdef AFS_AMD64_LINUX20_ENV
+#include <asm/ia32_unistd.h>
 #endif
-
-asmlinkage int (*sys_settimeofdayp)(struct timeval *tv, struct timezone *tz);
-#if !defined(AFS_ALPHA_LINUX20_ENV)
-asmlinkage int (*sys_socketcallp)(int call, long *args);
-#endif /* no socketcall on alpha */
-asmlinkage int (*sys_killp)(int pid, int signal);
-asmlinkage int (*sys_setgroupsp)(int gidsetsize, gid_t *grouplist);
-
 #ifdef AFS_SPARC64_LINUX20_ENV
-extern unsigned int sys_call_table[];  /* changed to uint because SPARC64 has syscaltable of 32bit items */
-#else
-extern void * sys_call_table[]; /* safer for other linuces */
+#include <linux/ioctl32.h>
 #endif
-extern struct file_system_type afs_file_system;
 
-static long get_page_offset(void);
+#include <linux/proc_fs.h>
+#include <linux/slab.h>
+#include <linux/init.h>
+#include <linux/sched.h>
+#include <linux/kernel.h>
 
-#if defined(AFS_LINUX24_ENV)
-DECLARE_MUTEX(afs_global_lock);
-#else
-struct semaphore afs_global_lock = MUTEX;
-#endif
-int afs_global_owner = 0;
-unsigned long afs_linux_page_offset = 0; /* contains the PAGE_OFFSET value */
+#include "osi_pagecopy.h"
 
-/* Since sys_ni_syscall is not exported, I need to cache it in order to restore
- * it.
- */
-#ifdef AFS_SPARC64_LINUX20_ENV
-static unsigned int afs_ni_syscall = 0;
+extern struct file_system_type afs_fs_type;
+
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
+DEFINE_MUTEX(afs_global_lock);
 #else
-static void* afs_ni_syscall = 0;
-#endif
-#ifdef AFS_SPARC64_LINUX20_ENV
-static unsigned int afs_ni_syscall32 = 0;
-asmlinkage int (*sys32_setgroupsp)(int gidsetsize, __kernel_gid_t32 *grouplist);
-#if defined(__NR_setgroups32)
-asmlinkage int (*sys32_setgroups32p)(int gidsetsize, __kernel_gid_t32 *grouplist);
+DECLARE_MUTEX(afs_global_lock);
 #endif
-extern unsigned int sys_call_table32[];
+int afs_global_owner = 0;
 
-asmlinkage int afs_syscall32(long syscall, long parm1, long parm2, long parm3,
-                            long parm4, long parm5)
+int __init
+afs_init(void)
 {
-__asm__ __volatile__ ("
-       srl %o4, 0, %o4
-       mov %o7, %i7
-       call afs_syscall
-       srl %o5, 0, %o5
-       ret
-       nop
-");
-}
-#endif
-
-#ifdef AFS_LINUX24_ENV
-asmlinkage int (*sys_setgroups32p)(int gidsetsize, __kernel_gid32_t *grouplist);
-#endif 
+    int err;
+    AFS_RWLOCK_INIT(&afs_xosi, "afs_xosi");
 
-#ifdef AFS_SPARC64_LINUX20_ENV
-#define POINTER2SYSCALL (unsigned int)(unsigned long)
-#define SYSCALL2POINTER (void *)(long)
-#else
-#define POINTER2SYSCALL (void *)
-#define SYSCALL2POINTER (void *)
+    osi_Init();
+#if !defined(AFS_NONFSTRANS)
+    osi_linux_nfssrv_init();
 #endif
 
-int init_module(void)
-{
-    extern int afs_syscall();
-    extern int afs_xsetgroups();
-#if defined(__NR_setgroups32)
-    extern int afs_xsetgroups32();
-#endif
-#ifdef AFS_SPARC64_LINUX20_ENV
-    extern int afs32_xsetgroups();
-#if defined(__NR_setgroups32)
-    extern int afs32_xsetgroups32();
+#ifndef LINUX_KEYRING_SUPPORT
+    err = osi_syscall_init();
+    if (err)
+       return err;
 #endif
+    err = afs_init_inodecache();
+    if (err) {
+#ifndef LINUX_KEYRING_SUPPORT
+       osi_syscall_clean();
 #endif
-
-    /* obtain PAGE_OFFSET value */
-    afs_linux_page_offset = get_page_offset();
-
-#ifndef AFS_S390_LINUX22_ENV
-    if (afs_linux_page_offset == 0) {
-        /* couldn't obtain page offset so can't continue */
-        printf("afs: Unable to obtain PAGE_OFFSET. Exiting..");
-        return -EIO;
+       return err;
     }
+    err = register_filesystem(&afs_fs_type);
+    if (err) {
+       afs_destroy_inodecache();
+#ifndef LINUX_KEYRING_SUPPORT
+       osi_syscall_clean();
 #endif
-
-    /* Initialize pointers to kernel syscalls. */
-    sys_settimeofdayp = SYSCALL2POINTER sys_call_table[__NR_settimeofday];
-#if !defined(AFS_ALPHA_LINUX20_ENV)
-    sys_socketcallp = SYSCALL2POINTER sys_call_table[__NR_socketcall];
-#endif /* no socketcall on alpha */
-    sys_killp = SYSCALL2POINTER sys_call_table[__NR_kill];
-
-    /* setup AFS entry point. */
-    if (SYSCALL2POINTER sys_call_table[__NR_afs_syscall] == afs_syscall) {
-       printf("AFS syscall entry point already in use!\n");
-       return -EBUSY;
+       return err;
     }
 
-
-    afs_ni_syscall = sys_call_table[__NR_afs_syscall];
-    sys_call_table[__NR_afs_syscall] = POINTER2SYSCALL afs_syscall;
-#ifdef AFS_SPARC64_LINUX20_ENV
-    afs_ni_syscall32 = sys_call_table32[__NR_afs_syscall];
-    sys_call_table32[__NR_afs_syscall] = POINTER2SYSCALL afs_syscall32;
-#endif
-
-    osi_Init();
-    register_filesystem(&afs_file_system);
-
-    /* Intercept setgroups calls */
-    sys_setgroupsp = SYSCALL2POINTER sys_call_table[__NR_setgroups];
-    sys_call_table[__NR_setgroups] = POINTER2SYSCALL afs_xsetgroups;
-#ifdef AFS_SPARC64_LINUX20_ENV
-    sys32_setgroupsp = SYSCALL2POINTER sys_call_table32[__NR_setgroups];
-    sys_call_table32[__NR_setgroups] = POINTER2SYSCALL afs32_xsetgroups;
-#endif
-#if defined(__NR_setgroups32)
-    sys_setgroups32p = SYSCALL2POINTER sys_call_table[__NR_setgroups32];
-    sys_call_table[__NR_setgroups32] = POINTER2SYSCALL afs_xsetgroups32;
-#ifdef AFS_SPARC64_LINUX20_ENV
-    sys32_setgroups32p = SYSCALL2POINTER sys_call_table32[__NR_setgroups32];
-    sys_call_table32[__NR_setgroups32] = POINTER2SYSCALL afs32_xsetgroups32;
+    osi_sysctl_init();
+#ifdef LINUX_KEYRING_SUPPORT
+    osi_keyring_init();
 #endif
+    osi_proc_init();
+    osi_ioctl_init();
+#if defined(AFS_CACHE_BYPASS)
+    afs_warn("Cache bypass patched libafs module init.\n");
 #endif
+    afs_init_pagecopy();
 
     return 0;
 }
 
-void cleanup_module(void)
+void __exit
+afs_cleanup(void)
 {
-    struct task_struct *t;
-
-    sys_call_table[__NR_setgroups] = POINTER2SYSCALL sys_setgroupsp;
-    sys_call_table[__NR_afs_syscall] = afs_ni_syscall;
-#ifdef AFS_SPARC64_LINUX20_ENV
-    sys_call_table32[__NR_setgroups] = POINTER2SYSCALL sys32_setgroupsp;
-    sys_call_table32[__NR_afs_syscall] = afs_ni_syscall32;
+#if defined(AFS_CACHE_BYPASS)
+    afs_warn("Cache bypass patched libafs module cleaning up.\n");
 #endif
-#if defined(__NR_setgroups32)
-    sys_call_table[__NR_setgroups32] = POINTER2SYSCALL sys_setgroups32p;
-#ifdef AFS_SPARC64_LINUX20_ENV
-    sys_call_table32[__NR_setgroups32] = POINTER2SYSCALL sys32_setgroups32p;
+
+    afs_shutdown_pagecopy();
+
+#ifdef LINUX_KEYRING_SUPPORT
+    osi_keyring_shutdown();
 #endif
+    osi_sysctl_clean();
+#ifndef LINUX_KEYRING_SUPPORT
+    osi_syscall_clean();
 #endif
-    unregister_filesystem(&afs_file_system);
+    unregister_filesystem(&afs_fs_type);
 
-    osi_linux_free_inode_pages(); /* Invalidate all pages using AFS inodes. */
+    afs_destroy_inodecache();
+#if !defined(AFS_NONFSTRANS)
+    osi_linux_nfssrv_shutdown();
+#endif
     osi_linux_free_afs_memory();
 
+    osi_ioctl_clean();
+    osi_proc_clean();
+
     return;
 }
 
-static long get_page_offset(void)
-{
-#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)
-    return PAGE_OFFSET;
-#else
-    struct task_struct *p;
-
-    /* search backward thru the circular list */
-    for(p = current; p; p = p->prev_task)
-       if (p->pid == 1)
-           return p->addr_limit.seg;
+MODULE_LICENSE("http://www.openafs.org/dl/license10.html");
+module_init(afs_init);
+module_exit(afs_cleanup);
 
-    return 0;
-#endif
-}