Whamcloud - gitweb
b=6274
[fs/lustre-release.git] / lustre / smfs / super.c
index b146001..f2ab435 100644 (file)
-/*
- *  snap_current
+/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
+ * vim:expandtab:shiftwidth=8:tabstop=8:
  *
- *  Copyright (C) 1998 Peter J. Braam
- *  Copyright (C) 2000 Stelias Computing, Inc.
- *  Copyright (C) 2000 Red Hat, Inc.
- *  Copyright (C) 2000 Mountain View Data, Inc.
+ *  lustre/smfs/super.c
+ *  Lustre filesystem abstraction routines
  *
- *  Author: Peter J. Braam <braam@mountainviewdata.com>
+ *  Copyright (C) 2004 Cluster File Systems, Inc.
+ *
+ *   This file is part of Lustre, http://www.lustre.org.
+ *
+ *   Lustre is free software; you can redistribute it and/or
+ *   modify it under the terms of version 2 of the GNU General Public
+ *   License as published by the Free Software Foundation.
+ *
+ *   Lustre is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with Lustre; if not, write to the Free Software
+ *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
-#define DEBUG_SUBSYSTEM S_SNAP
 
+#define DEBUG_SUBSYSTEM S_SM
+
+#include <linux/config.h>
 #include <linux/module.h>
 #include <linux/kmod.h>
 #include <linux/init.h>
 #include <linux/fs.h>
-#include <linux/slab.h>
 #include <linux/string.h>
+#include <linux/mm.h>
+#include <linux/utime.h>
+#include <linux/file.h>
+#include <linux/slab.h>
+#include <linux/dcache.h>
 #include <linux/loop.h>
-//#include <linux/jbd.h>
-//#include <linux/ext3_fs.h>
 #include <linux/errno.h>
-#include "smfs_internal.h" 
+#include <linux/obd_class.h>
+#include <linux/obd_support.h>
+#include <linux/lustre_lib.h>
+#include <linux/lustre_idl.h>
+#include <linux/lustre_fsfilt.h>
+#include <linux/lustre_smfs.h>
+#include "smfs_internal.h"
 
-/* Find the options for the clone. These consist of a cache device
-   and an index in the snaptable associated with that device. 
-*/
-static char *smfs_options(char *options, char **devstr, char **namestr)
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
+static struct super_block *smfs_read_super(struct super_block *sb, 
+                                           void *data, int silent)
 {
-       struct option *opt_value = NULL;
-       char *pos;
-       
-       while (!(get_opt(&opt_value, &pos))) {                  
-               if (!strcmp(opt_value->opt, "dev")) {
-                       if (devstr != NULL)
-                               *devstr = opt_value->value;
-               } else if (!strcmp(opt_value->opt, "type")) {
-                       if (namestr != NULL)
-                               *namestr = opt_value->value;
-               } else {
-                       break;
-               }
-       }
-       return pos;
+        int err;
+
+        err = smfs_fill_super(sb, data, silent);
+        if (err)
+                return NULL;
+
+        return sb;
 }
-extern struct super_operations smfs_super_ops;
 
-static struct super_block *sm_mount_cache(struct super_block *sb, 
-                                         char *devstr,
-                                         char *typestr)
+static struct file_system_type smfs_type = {
+        .owner       = THIS_MODULE,
+        .name        = "smfs",
+        .read_super  = smfs_read_super,
+};
+#else
+struct super_block *smfs_get_super(struct file_system_type *fs_type,
+                                   int flags, const char *dev_name,
+                                   void *data)
 {
-       return NULL;    
+        return get_sb_nodev(fs_type, flags, data, smfs_fill_super);
 }
 
-struct super_block *
-smfs_read_super(
-        struct super_block *sb,
-        void *data,
-        int silent)
+void smfs_kill_super(struct super_block *sb)
 {
-       struct smfs_inode_info *smi;
-       struct smfs_super_info *smb;
-       struct dentry *bottom_root;
-       struct inode *root_inode = NULL;
-       struct super_block *cache_sb;
-       char *devstr = NULL, *typestr = NULL;
-       char *cache_data;
-       ino_t root_ino;
-       int err = 0;
-
-       ENTRY;
-
-       CDEBUG(D_SUPER, "mount opts: %s\n", data ? (char *)data : "(none)");
-       
-       init_option(data);
-       /* read and validate options */
-       cache_data = smfs_options(data, &devstr, &typestr);
-       if (*cache_data) {
-               CERROR("invalid mount option %s\n", (char*)data);
-               GOTO(out_err, err=-EINVAL);
-       }
-       if (!typestr || !devstr) {
-               CERROR("mount options name and dev mandatory\n");
-               GOTO(out_err, err=-EINVAL);
-       }
-       
-       cache_sb = sm_mount_cache(sb, devstr, typestr);
-       if (!cache_sb) {
-               CERROR("Can not mount %s as %s\n", devstr, typestr);
-               GOTO(out_err, err=-EINVAL);
-       }
-       /* set up the super block */
-       smb = S2SMI(sb); 
-       smb->smsi_sb = cache_sb;
-       sb->s_op = &smfs_super_ops;
-
-       bottom_root = dget(cache_sb->s_root);
-       if (!bottom_root) {
-               CERROR("bottom not mounted\n");
-               GOTO(out_err, err=-ENOENT);
-        }
+        kill_anon_super(sb);
+}
+
+static struct file_system_type smfs_type = {
+        .owner       = THIS_MODULE,
+        .name        = "smfs",
+        .get_sb      = smfs_get_super,
+        .kill_sb     = smfs_kill_super,
+};
+#endif
 
-       root_ino = bottom_root->d_inode->i_ino;
-       smi = I2SMI(root_inode);
-       /*FIXME Intialize smi here*/
-       
-       CDEBUG(D_SUPER, "readinode %p, root ino %ld, root inode at %p\n",
-              sb->s_op->read_inode, root_ino, root_inode);
-       
-       sb->s_root = d_alloc_root(bottom_root->d_inode);
-       
-       if (!sb->s_root) {
-               GOTO(out_err, err=-EINVAL);
-       }
-
-       CDEBUG(D_SUPER, "sb %lx, &sb->u.generic_sbp: %lx\n",
-                (ulong) sb, (ulong) &sb->u.generic_sbp);
-       
- out_err:
-       cleanup_option();
-       if (err)
-               return NULL;
-       return sb;
+static int cleanup_smfs(void)
+{
+        int err = 0;
+
+        err = unregister_filesystem(&smfs_type);
+        if (err)
+                CERROR("unregister_filesystem() failed, rc = %d\n", err);
+        return 0;
 }
 
-static DECLARE_FSTYPE(smfs_type, "smfs", smfs_read_super, 0);
+static int init_smfs(void)
+{
+        int err;
+        
+        err = register_filesystem(&smfs_type);
+        if (err)
+                CERROR("register_filesystem() failed, rc = %d\n", err);
+        return err;
+}
 
-int init_smfs(void)
+static int __init smfs_init(void)
 {
-       int err;
+        int err;
+
+        if ( (err = init_smfs_psdev()) ) {
+                printk("Error initializing smfs_psdev, %d\n", err);
+                return -EINVAL;
+        }
 
-       err = register_filesystem(&smfs_type);
-       if (err) {
-               CERROR("smfs: failed in register Storage Management filesystem!\n");
-       }
-       return err;
+        if ( (err = init_smfs()) ) {
+                printk("Error initializing smfs, %d\n", err);
+                return -EINVAL;
+        }
+
+        if ( (err = init_smfs_proc_sys()) ) {
+                printk("Error initializing smfs proc sys, %d\n", err);
+                return -EINVAL;
+        }
+
+        return 0;
 }
 
-int cleanup_smfs(void)
+static void __exit smfs_cleanup(void)
 {
-       int err;
-
-       ENTRY;
-       err = unregister_filesystem(&smfs_type);
-       if (err) {
-               CERROR("smfs: failed to unregister Storage Management filesystem!\n");
-       }
-       return 0;
+        cleanup_smfs();
+        smfs_cleanup_psdev();
 }
+
+MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
+MODULE_DESCRIPTION("Smfs file system filters v0.01");
+MODULE_LICENSE("GPL");
+
+module_init(smfs_init);
+module_exit(smfs_cleanup);