当前位置:   article > 正文

Linux虚拟文件系统及其实例XORFS

使用linux虚拟文件系统中的open、read、close接口对某一文件进行读取操作,将操作

用户视角下的文件系统

    “一切皆是文件”,是UNIX和Linux的基本哲学之一。Linux对于文件I/O操作,实现了POSIX.1和Single UNIX Specification中的接口,包括open()、read()、write()、lseek()和close()等方法。正是由于Linux所实现的虚拟文件系统对具体文件系统进行了抽象,使得Linux可以方便地实现文件I/O操作接口。用户视角下的文件系统,就是一组系统调用接口,其与VFS的关系如下:

clip_image002

    每个进程在用户空间内都有一张file description table,用于描述已打开的文件。当open()成功返回时,将返回文件描述符(file description),被插入到file description table中。

clip_image004

    如下图所示,当用户进程调用write()方法读取文件时,将调用VFS的sys_write()方法,而在sys_write()方法中调用文件系统接口的具体方法进行硬盘读取。在Linux2.6.25以后,sys_write()为vfs_write()所替代。

clip_image006

    vfs_write()源代码如下:

clip_image008

    由此可见,write的调用过程为:→write()→vfs_write()→file->f_op->write(),由文件系统提供的VFS API进行实际的存取操作。

硬盘视角下的文件系统

    Linux在硬盘上的文件系统与逻辑上的文件系统VFS完全不同。UFS(UNIX File System)基于Berkeley fast file system,如下:

clip_image010

    UFS由许多分区构成,可以允许分区之间采取不同的文件系统,但同一个分区之内必须为同一文件系统。上图启动块(Boot Block)大小确定,为1KB,由PC标准规定,用来存储磁盘分区信息和启动信息,任何文件系统都不能使用启动块。UFS文件系统将整个分区划分成超级块(Super Block,除块组0之外的Super Block都为备份)、块描述符表、i-node位图、块位图、i-node表、data数据块。

    超级块包含了关于该硬盘或分区文件系统的整体信息,如文件系统大小等。索引结点,包含了针对某一具体文件几乎的全部信息,如文件存取权限、所有者、大小、建立时间以及对应的目录块和数据块等。数据块是真正存储文件内容的位置,但索引结点中不包括文件名,文件名存于目录块。目录块里包含文件名以及文件索引结点编号。

clip_image012

    上图中,位于数据块中存储目录数据的directory entry均指向同一个i-node,而i-node中包括三个data block。

内核虚拟文件系统VFS

内核文件系统主要的四个数据结构为:

    superblock,代表一个具体的已挂载的文件系统;

    inode,代表一个具体的文件;

    dentry,代表一个目录项,如/home/icanth,home和icanth都是一个目录项;

    file,代表一个进程已经打开的文件。

clip_image014

图 super_block、file、dentry和inode的关系

    每个file结构体都指向一个file_operations结构体,这个结构体的成员都是函数指针,指向实现各种文件操作的内核函数。比如在用户程序中read一个文件描述符,read通过系统调用进入内核,然后找到这个文件描述符所指向的file结构体,找到file结构体所指向的file_operations结构体,调用它的read成员所指向的内核函数以完成用户请求。在用户程序中调用lseek、read、write、ioctl、open等函数,最终都由内核调用file_operations的各成员所指向的内核函数完成用户请求。file_operations结构体中的release成员用于完成用户程序的close请求,之所以叫release而不叫close是因为它不一定真的关闭文件,而是减少引用计数,只有引用计数减到0才关闭文件。对于同一个文件系统上打开的常规文件来说,read、write等文件操作的步骤和方法应该是一样的,调用的函数应该是相同的,所以图中的三个打开文件的file结构体指向同一个file_operations结构体。如果打开一个字符设备文件,那么它的read、write操作肯定和常规文件不一样,不是读写磁盘的数据块而是读写硬件设备,所以file结构体应该指向不同的file_operations结构体,其中的各种文件操作函数由该设备的驱动程序实现。

    每个file结构体都有一个指向dentry结构体的指针,“dentry”是directory entry(目录项)的缩写。我们传给open、stat等函数的参数的是一个路径,例如/home/akaedu/a,需要根据路径找到文件的inode。为了减少读盘次数,内核缓存了目录的树状结构,称为dentry cache,其中每个节点是一个dentry结构体,只要沿着路径各部分的dentry搜索即可,从根目录/找到home目录,然后找到akaedu目录,然后找到文件a。dentry cache只保存最近访问过的目录项,如果要找的目录项在cache中没有,就要从磁盘读到内存中。

    每个dentry结构体都有一个指针指向inode结构体。inode结构体保存着从磁盘inode读上来的信息。在上图的例子中,有两个dentry,分别表示/home/akaedu/a和/home/akaedu/b,它们都指向同一个inode,说明这两个文件互为硬链接。inode结构体中保存着从磁盘分区的inode读上来信息,例如所有者、文件大小、文件类型和权限位等。每个inode结构体都有一个指向inode_operations结构体的指针,后者也是一组函数指针指向一些完成文件目录操作的内核函数。和file_operations不同,inode_operations所指向的不是针对某一个文件进行操作的函数,而是影响文件和目录布局的函数,例如添加删除文件和目录、跟踪符号链接等等,属于同一文件系统的各inode结构体可以指向同一个inode_operations结构体。

    inode结构体有一个指向super_block结构体的指针。super_block结构体保存着从磁盘分区的超级块读取的信息,例如文件系统类型、块大小等。super_block结构体的s_root成员是一个指向dentry的指针,表示这个文件系统的根目录被mount到哪里,在上图的例子中这个分区被mount到/home目录下。

clip_image015

超级块对象superblock

    superblock是在<linux/fs.h>在下定义的结构体super_block.

struct super_block { //超级块数据结构
        struct list_head s_list;                /*指向超级块链表的指针*/
        ……
        struct file_system_type  *s_type;       /*文件系统类型*/
       struct super_operations  *s_op;         /*超级块方法*/
        ……

struct list_head s_instances; /*该类型文件系统*/

        ……
};
 
struct super_operations { //超级块方法
        ……
        //该函数在给定的超级块下创建并初始化一个新的索引节点对象
        struct inode *(*alloc_inode)(struct super_block *sb);
       ……
        //该函数从磁盘上读取索引节点,并动态填充内存中对应的索引节点对象的剩余部分

void (*read_inode) (struct inode *);

       ……
};

索引结点对象inode

    索引节点对象存储了文件的相关信息,代表了存储设备上的一个实际的物理文件。当一个 文件首次被访问时,内核会在内存中组装相应的索引节点对象,以便向内核提供对一个文件进行操 作时所必需的全部信息;这些信息一部分存储在磁盘特定位置,另外一部分是在加载时动态填充的。

struct inode {//索引节点结构
      ……
      struct inode_operations  *i_op;     /*索引节点操作表*/
     struct file_operations   *i_fop;     /*该索引节点对应文件的文件操作集*/
     struct super_block       *i_sb;     /*相关的超级块*/
     ……
};
 
struct inode_operations { //索引节点方法
     ……
     //该函数为dentry对象所对应的文件创建一个新的索引节点,主要是由open()系统调用来调用
     int (*create) (struct inode *,struct dentry *,int, struct nameidata *);
 
     //在特定目录中寻找dentry对象所对应的索引节点
     struct dentry * (*lookup) (struct inode *,struct dentry *, struct nameidata *);
     ……
};

目录项对象dentry

    引入目录项的概念主要是出于方便查找文件的目的。一个路径的各个组成部分,不管是目录还是 普通的文件,都是一个目录项对象。如,在路径/home/source/test.c中,目录 /, home, source和文件 test.c都对应一个目录项对象。不同于前面的两个对象,目录项对象没有对应的磁盘数据结构,VFS在遍 历路径名的过程中现场将它们逐个地解析成目录项对象。

struct dentry {//目录项结构
     ……
     struct inode *d_inode;           /*相关的索引节点*/
    struct dentry *d_parent;         /*父目录的目录项对象*/
    struct qstr d_name;              /*目录项的名字*/
    ……
     struct list_head d_subdirs;      /*子目录*/
    ……
     struct dentry_operations *d_op;  /*目录项操作表*/
    struct super_block *d_sb;        /*文件超级块*/
    ……
};
 
struct dentry_operations {
    //判断目录项是否有效;
    int (*d_revalidate)(struct dentry *, struct nameidata *);
    //为目录项生成散列值;
    int (*d_hash) (struct dentry *, struct qstr *);
    ……
};

文件对象file

struct file {
    ……
     struct list_head        f_list;        /*文件对象链表*/
    struct dentry          *f_dentry;       /*相关目录项对象*/
    struct vfsmount        *f_vfsmnt;       /*相关的安装文件系统*/
    struct file_operations *f_op;           /*文件操作表*/
    ……
};
 
struct file_operations {
    ……
    //文件读操作
    ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
    ……
    //文件写操作
    ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
    ……
    int (*readdir) (struct file *, void *, filldir_t);
    ……
    //文件打开操作
    int (*open) (struct inode *, struct file *);
    ……
};

文件系统对象

    根据文件系统所在的物理介质和数据在物理介质上的组织方式来区分不同的文件系统类型的。 file_system_type结构用于描述具体的文件系统的类型信息。被Linux支持的文件系统,都有且仅有一 个file_system_type结构而不管它有零个或多个实例被安装到系统中。而与此对应的是每当一个文件系统被实际安装,就有一个vfsmount结构体被创建,这个结构体对应一个安装点。

struct file_system_type {
        const char *name;                /*文件系统的名字*/
        struct subsystem subsys;         /*sysfs子系统对象*/
        int fs_flags;                    /*文件系统类型标志*/
 
        /*在文件系统被安装时,从磁盘中读取超级块,在内存中组装超级块对象*/
        struct super_block *(*get_sb) (struct file_system_type*, 
                                        int, const char*, void *);
           
        void (*kill_sb) (struct super_block *);  /*终止访问超级块*/            
        struct module *owner;                    /*文件系统模块*/
        struct file_system_type * next;          /*链表中的下一个文件系统类型*/
        struct list_head fs_supers;              /*具有同一种文件系统类型的超级块对象链表*/
};
 
struct vfsmount
{
        struct list_head mnt_hash;               /*散列表*/
        struct vfsmount *mnt_parent;             /*父文件系统*/
        struct dentry *mnt_mountpoint;           /*安装点的目录项对象*/
        struct dentry *mnt_root;                 /*该文件系统的根目录项对象*/
        struct super_block *mnt_sb;              /*该文件系统的超级块*/
        struct list_head mnt_mounts;             /*子文件系统链表*/
        struct list_head mnt_child;              /*子文件系统链表*/
        atomic_t mnt_count;                      /*使用计数*/
        int mnt_flags;                           /*安装标志*/
        char *mnt_devname;                       /*设备文件名*/
        struct list_head mnt_list;               /*描述符链表*/
        struct list_head mnt_fslink;             /*具体文件系统的到期列表*/
        struct namespace *mnt_namespace;         /*相关的名字空间*/
};

打开文件的流程

clip_image017

    由于sys_open()的代码量大,函数调用关系复杂,以下主要是对该函数做整体的解析;而对其中的一些关键点,则列出其关键代码。

a. 从sys_open()的函数调用关系图可以看到,sys_open()在做了一些简单的参数检验后,就把接力棒传给do_sys_open():

    1)首先,get_unused_fd()得到一个可用的文件描述符;通过该函数,可知文件描述符实质是进程打开文件列表中对应某个文件对象的索引值;

    2)接着,do_filp_open()打开文件,返回一个file对象,代表由该进程打开的一个文件;进程通过这样的一个数据结构对物理文件进行读写操作。

    3)最后,fd_install()建立文件描述符与file对象的联系,以后进程对文件的读写都是通过操纵该文件描述符而进行。

b. do_filp_open()用于打开文件,返回一个file对象;而打开之前需要先找到该文件:

    1)open_namei()用于根据文件路径名查找文件,借助一个持有路径信息的数据结构nameidata而进行;

    2)查找结束后将填充有路径信息的nameidata返回给接下来的函数nameidata_to_filp()从而得到最终的file对象;当达到目的后,nameidata这个数据结构将会马上被释放。

c.open_namei()用于查找一个文件:

    1)path_lookup_open()实现文件的查找功能;要打开的文件若不存在,还需要有一个新建的过程,则调用path_lookup_create(),后者和前者封装的是同一个实际的路径查找函数,只是参数不一样,使它们在处理细节上有所偏差;

    2)当是以新建文件的方式打开文件时,即设置了O_CREAT标识时需要创建一个新的索引节点,代表创建一个文件。在vfs_create()里的一句核心语句dir->i_op->create(dir, dentry, mode, nd)可知它调用了具体的文件系统所提供的创建索引节点的方法。注意:这边的索引节点的概念,还只是位于内存之中,它和磁盘上的物理的索引节点的关系就像位于内存中和位于磁盘中的文件一样。此时新建的索引节点还不能完全标志一个物理文件的成功创建,只有当把索引节点回写到磁盘上才是一个物理文件的真正创建。想想我们以新建的方式打开一个文件,对其读写但最终没有保存而关闭,则位于内存中的索引节点会经历从新建到消失的过程,而磁盘却始终不知道有人曾经想过创建一个文件,这是因为索引节点没有回写的缘故。

    3)path_to_nameidata()填充nameidata数据结构;

    4)may_open()检查是否可以打开该文件;一些文件如链接文件和只有写权限的目录是不能被打开的,先检查nd->dentry->inode所指的文件是否是这一类文件,是的话则错误返回。还有一些文件是不能以TRUNC的方式打开的,若nd->dentry->inode所指的文件属于这一类,则显式地关闭TRUNC标志位。接着如果有以TRUNC方式打开文件的,则更新nd->dentry->inode的信息。

在Linux3.2中,do_file_open->do_sys_open->do_filp_open->path_openat(nameidata)->link_path_work(pathname, nd), file = do_last

    查找路径的过程定义在link_path_work中,主要传入nameidata对象

  1. struct nameidata {
  2. struct path path;
  3. struct qstr last;
  4. struct path root;
  5. struct inode *inode; /* path.dentry.d_inode */
  6. unsigned int flags;
  7. unsigned seq;
  8. int last_type;
  9. unsigned depth;
  10. char *saved_names[MAX_NESTED_LINKS + 1];
  11. /* Intent data */
  12. union {
  13. struct open_intent open;
  14. } intent;
  15. };
  16. /*
  17. * Name resolution.
  18. * This is the basic name resolution function, turning a pathname into
  19. * the final dentry. We expect 'base' to be positive and a directory.
  20. *
  21. * Returns 0 and nd will have valid dentry and mnt on success.
  22. * Returns error and drops reference to input namei data on failure.
  23. */
  24. static int link_path_walk(const char *name, struct nameidata *nd)
  25. {
  26. struct path next;
  27. int err;
  28. while (*name=='/')
  29. name++;
  30. if (!*name)
  31. return 0;
  32. /* At this point we know we have a real path component. */
  33. for(;;) {
  34. unsigned long hash;
  35. struct qstr this;
  36. unsigned int c;
  37. int type;
  38. err = may_lookup(nd);
  39. if (err)
  40. break;
  41. this.name = name;
  42. c = *(const unsigned char *)name;
  43. hash = init_name_hash();
  44. do {
  45. name++;
  46. hash = partial_name_hash(c, hash);
  47. c = *(const unsigned char *)name;
  48. } while (c && (c != '/'));
  49. this.len = name - (const char *) this.name;
  50. this.hash = end_name_hash(hash);
  51. type = LAST_NORM;
  52. if (this.name[0] == '.') switch (this.len) {
  53. case 2:
  54. if (this.name[1] == '.') {
  55. type = LAST_DOTDOT;
  56. nd->flags |= LOOKUP_JUMPED;
  57. }
  58. break;
  59. case 1:
  60. type = LAST_DOT;
  61. }
  62. if (likely(type == LAST_NORM)) {
  63. struct dentry *parent = nd->path.dentry;
  64. nd->flags &= ~LOOKUP_JUMPED;
  65. if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
  66. err = parent->d_op->d_hash(parent, nd->inode,
  67. &this);
  68. if (err < 0)
  69. break;
  70. }
  71. }
  72. /* remove trailing slashes? */
  73. if (!c)
  74. goto last_component;
  75. while (*++name == '/');
  76. if (!*name)
  77. goto last_component;
  78. err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
  79. if (err < 0)
  80. return err;
  81. if (err) {
  82. err = nested_symlink(&next, nd);
  83. if (err)
  84. return err;
  85. }
  86. if (can_lookup(nd->inode))
  87. continue;
  88. err = -ENOTDIR;
  89. break;
  90. /* here ends the main loop */
  91. last_component:
  92. nd->last = this;
  93. nd->last_type = type;
  94. return 0;
  95. }
  96. terminate_walk(nd);
  97. return err;
  98. }
一个简单的文件系统实现——XORFS

    xorfs.c

  1. #include <linux/kernel.h>
  2. #include <linux/init.h>
  3. #include <linux/module.h>
  4. #include <linux/pagemap.h> /* PAGE_CACHE_SIZE */
  5. #include <linux/fs.h> /* This is where libfs stuff is declared */
  6. #include <asm/atomic.h>
  7. #include <asm/uaccess.h> /* copy_to_user */
  8. #include <linux/pagemap.h>
  9. #include <linux/buffer_head.h>
  10. /*
  11. * Wen Hui.
  12. * Just for linux 2.6
  13. *
  14. * desp:
  15. * innux 3.2, get_sb --> mount,
  16. * get_sb_single --> mount_single.
  17. */
  18. MODULE_LICENSE("GPL");
  19. MODULE_AUTHOR("Wen Hui");
  20. #define XORFS_MAGIC 0x20120418
  21. #define FILE_INODE_NUMBER 2
  22. /**
  23. * system_file_type
  24. */
  25. /* get_sb */
  26. static struct super_block *
  27. xorfs_get_sb(struct file_system_type *fs_type, int flags, const char *devname, void *data, struct vfsmount* mnt);
  28. /* kill_sb */
  29. static void
  30. xorfs_kill_sb(struct super_block *super);
  31. static int
  32. xorfs_fill_super(struct super_block* sb, void *data, int silent);
  33. /**
  34. * super_operations
  35. */
  36. static int
  37. xorfs_super_write_inode(struct inode *inode, struct writeback_control *wbc);
  38. /*static void
  39. xorfs_super_read_inode(struct inode *inode);*/
  40. /**
  41. * inode_operations
  42. */
  43. /* lookup */
  44. static struct dentry*
  45. xorfs_inode_lookup(struct inode*, struct dentry *, struct nameidata *);
  46. static struct inode*
  47. xorfs_iget(struct super_block *sp, unsigned long ino);
  48. /**
  49. * file_operations
  50. */
  51. static int
  52. xorfs_file_open(struct inode *inode, struct file *file);
  53. static int
  54. xorfs_file_readdir(struct file *file, void *dirent, filldir_t filldir);
  55. static int
  56. xorfs_file_release(struct inode* ino, struct file *file);
  57. static ssize_t
  58. xorfs_file_read(struct file *file, char *buf, size_t max, loff_t* offset);
  59. static ssize_t
  60. xorfs_file_write(struct file *file, const char *buf, size_t max, loff_t* offset);
  61. /**
  62. * address_space_operations
  63. */
  64. /* readpage
  65. * old version: ->prepare_write(),->commit_write(),
  66. * ->sync_page(),and ->readpage()
  67. * new version (LSF'08'): try use vm_operations
  68. * instead of address_space_operations,
  69. * and a small/dummpy ->readpage is still needed because
  70. * ->generic_file_mmap, still check
  71. * for the existence of the ->readpage method.
  72. */
  73. static int
  74. xorfs_readpage(struct file *file, struct page *page);
  75. /* write page */
  76. static int
  77. xorfs_writepage(struct page *page, struct writeback_control *wbc);
  78. /* write_beign */
  79. static int
  80. xorfs_write_begin(struct file *file, struct address_space *mapping, loff_t pos, unsigned len, unsigned flags, struct page **pagep, void **fsdata);
  81. /* write_end */
  82. static int
  83. xorfs_write_end(struct file *file, struct address_space *mapping, loff_t pos, unsigned len, unsigned copied, struct page *page, void *fsdata);
  84. /*
  85. * Data declarations
  86. */
  87. static struct super_operations xorfs_sops =
  88. {
  89. // .read_inode = xorfs_super_read_inode
  90. .statfs = simple_statfs,
  91. .write_inode = &xorfs_super_write_inode
  92. }; // struct xorfs_sops
  93. static struct inode_operations xorfs_iops =
  94. {
  95. .lookup = xorfs_inode_lookup
  96. }; // struct xorfs_iops
  97. static struct file_operations xorfs_fops =
  98. {
  99. .open = xorfs_file_open,
  100. .read = &xorfs_file_read,
  101. .readdir = &xorfs_file_readdir,
  102. .write = &xorfs_file_write,
  103. .release = &xorfs_file_release,
  104. .fsync = &generic_file_fsync
  105. }; // struct xorfs_fops
  106. static struct file_system_type xorfs = {
  107. name : "xorfs",
  108. get_sb : xorfs_get_sb,
  109. kill_sb : xorfs_kill_sb,
  110. owner : THIS_MODULE
  111. }; // struct file_system_type
  112. static struct address_space_operations xorfs_aops =
  113. {
  114. .readpage = xorfs_readpage,
  115. .writepage = xorfs_writepage,
  116. .write_begin = xorfs_write_begin,
  117. .write_end = xorfs_write_end
  118. }; // struct xorfs_aops
  119. static struct inode *xorfs_root_inode;
  120. static char file_buf[PAGE_SIZE] = "Hello World\n";
  121. static int file_size = 12;
  122. /**
  123. * system_file_type
  124. */
  125. static struct super_block *
  126. xorfs_get_sb(struct file_system_type *fs_type,
  127. int flags, const char *devname, void *data, struct vfsmount* mnt)
  128. {
  129. printk("XORFS:xorfs_get_sb\n");
  130. return get_sb_single(fs_type, flags, data, &xorfs_fill_super, mnt);
  131. } // xorfs_get_sb
  132. static void
  133. xorfs_kill_sb(struct super_block *super)
  134. {
  135. printk("XORFS: xorfs_kill_sb\n");
  136. kill_anon_super(super);
  137. } // xorfs_kill_sb
  138. /* call the get_sb_single(), and callback the fn() */
  139. static int
  140. xorfs_fill_super(struct super_block* sb, void *data, int silent)
  141. {
  142. printk("XORFS: xorfs_fill_super\n");
  143. sb->s_blocksize = 1024;
  144. sb->s_blocksize_bits = 10;
  145. sb->s_magic = XORFS_MAGIC;
  146. sb->s_op = &xorfs_sops; // super block operation
  147. sb->s_type = &xorfs; // file_system_type
  148. // xorfs_root_inode = iget_locked(sb, 1); // allocate 1 node
  149. xorfs_root_inode = xorfs_iget(sb, 1); // allocate 1 node
  150. xorfs_root_inode->i_op = &xorfs_iops; // set the inode ops
  151. xorfs_root_inode->i_mode = S_IFDIR | S_IRWXU;
  152. xorfs_root_inode->i_fop = &xorfs_fops; // set the inode file operations
  153. // xorfs_root_inode->i_mapping->a_ops = &xorfs_aops;
  154. if(!(sb->s_root = d_alloc_root(xorfs_root_inode)))
  155. {
  156. iput( xorfs_root_inode );
  157. return -ENOMEM;
  158. } // if
  159. return 0;
  160. } // xorfs_fill_super
  161. /**
  162. * super_operations
  163. */
  164. static int
  165. xorfs_super_write_inode(struct inode *inode, struct writeback_control *wbc)
  166. {
  167. printk("XORFS: xorfs_super_write_inode (i_ino=%d) = %d\n",
  168. (int) inode->i_ino,
  169. (int) i_size_read(inode));
  170. if(inode->i_ino == FILE_INODE_NUMBER)
  171. {
  172. file_size = i_size_read(inode);
  173. }
  174. return 0;
  175. } // xorfs_super_write_inode
  176. /**
  177. static void*
  178. xorfs_super_read_inode(struct super_block *sp, struct inode *inode)
  179. {
  180. inode->i_mapping->a_ops = &xorfs_aops;
  181. } // xorfs_super_read_inode
  182. */
  183. /**
  184. * inode_operations
  185. */
  186. static char filename[] = "hello.txt";
  187. static int filename_len = sizeof(filename) - 1;
  188. static struct dentry*
  189. xorfs_inode_lookup(struct inode* parent_inode, struct dentry *dentry, struct nameidata *nameidata)
  190. {
  191. struct inode *file_inode;
  192. printk("XORFS: xorfs_inode_lookup\n");
  193. if(parent_inode->i_ino != xorfs_root_inode->i_ino ||
  194. dentry->d_name.len != filename_len ||
  195. strncmp(dentry->d_name.name, filename, dentry->d_name.len))
  196. {
  197. d_add(dentry, NULL);
  198. return NULL;
  199. } // if
  200. file_inode = xorfs_iget(parent_inode->i_sb, FILE_INODE_NUMBER);
  201. if(!file_inode)
  202. return ERR_PTR(-EACCES);
  203. file_inode->i_size = file_size;
  204. file_inode->i_mode = S_IFREG | S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
  205. file_inode->i_fop = &xorfs_fops;
  206. d_add(dentry, file_inode);
  207. return NULL;
  208. } // xorfs_inode_lookup
  209. static struct inode*
  210. xorfs_iget(struct super_block *sb, unsigned long ino)
  211. {
  212. struct inode *inode;
  213. int ret;
  214. printk("XORFS: xorfs_iget\n");
  215. inode = iget_locked(sb, ino);
  216. if(!inode)
  217. return ERR_PTR(-ENOMEM);
  218. if(!(inode->i_state & I_NEW))
  219. return inode;
  220. inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
  221. inode->i_mapping->a_ops = &xorfs_aops;
  222. unlock_new_inode(inode);
  223. return inode;
  224. } // xorfs_iget
  225. /**
  226. * file_operations
  227. */
  228. static int
  229. xorfs_file_open(struct inode *inode, struct file *file)
  230. {
  231. printk("XORFS: @xorfs_file_open max_readahead = %d (size = %d)\n",
  232. (int) file->f_ra.ra_pages, file_size);
  233. file->f_ra.ra_pages = 0; /* No read-ahead */
  234. return generic_file_open(inode, file);
  235. } // xorfs_file_open
  236. static ssize_t
  237. xorfs_file_write(struct file *file, const char *buf, size_t maxlen, loff_t* offset)
  238. {
  239. int count;
  240. if(*offset > 0)
  241. {
  242. printk("XORFS: @xorfs_file_write Positive offset %d\n", *offset);
  243. return 0;
  244. } // if
  245. count = maxlen > sizeof(file_buf) ? sizeof(file_buf) : maxlen;
  246. //__generic_copy_from_user(file_buf, buf, count);
  247. copy_from_user(file_buf, buf, maxlen);
  248. printk("XORFS: xorfs_file_write called with maxlen=%d, offset=%d\n", maxlen, *offset);
  249. *offset += count;
  250. if(*offset > file_size)
  251. file_size = *offset;
  252. return count;
  253. } // xorfs_file_write
  254. static ssize_t
  255. xorfs_file_read(struct file *file, char *buf, size_t max, loff_t* offset){
  256. int i;
  257. int buflen;
  258. if(*offset > 0)
  259. return 0;
  260. printk("XORFS: xorfs_file_read called [%d] [%d]\n", max, *offset);
  261. buflen = (file_size > max) ? max : file_size;
  262. copy_to_user(buf, file_buf, buflen);
  263. *offset += buflen;
  264. return buflen;
  265. } // xorfs_file_read
  266. static int
  267. xorfs_file_readdir(struct file *file, void *dirent, filldir_t filldir)
  268. {
  269. struct dentry *de = file->f_dentry;
  270. if(file->f_pos > 2)
  271. return 1;
  272. if(filldir(dirent, ".", 1, file->f_pos++, de->d_inode->i_ino, DT_DIR))
  273. return 0;
  274. if(filldir(dirent, "..", 2, file->f_pos++, de->d_inode->i_ino, DT_DIR))
  275. return 0;
  276. if(filldir(dirent, filename, filename_len, file->f_pos++, FILE_INODE_NUMBER, DT_REG))
  277. return 0;
  278. return 1;
  279. } // xorfs_file_readdir
  280. static int
  281. xorfs_file_release(struct inode* ino, struct file *file)
  282. {
  283. struct dentry *dentry;
  284. dentry = file->f_dentry;
  285. return 0;
  286. } // xorfs_file_releasei
  287. /**
  288. * address_space_operations
  289. */
  290. static int
  291. xorfs_readpage(struct file *file, struct page *page)
  292. {
  293. void *page_addr;
  294. printk("XORFS: xorfs_readpage called for page index=[%d]\n",
  295. (int) page->index);
  296. if(page->index > 0)
  297. {
  298. return -ENOSPC;
  299. }
  300. printk("XORFS: Page: [%s] [%s] [%s] [%s]\n",
  301. PageUptodate(page) ? "Uptodate" : "Not Uptodate",
  302. PageDirty(page) ? "Dirty" : "Not Dirty",
  303. PageWriteback(page) ? "PageWriteback Set" : "PageWriteback Cleared",
  304. PageLocked(page) ? "Locked" : "Unlocked");
  305. SetPageUptodate(page);
  306. page_addr = kmap(page);
  307. if(page_addr)
  308. memcpy(page_addr, file_buf, PAGE_SIZE);
  309. if(PageLocked(page))
  310. unlock_page(page);
  311. kunmap(page);
  312. return 0;
  313. } // xorfs_readpage
  314. static int
  315. xorfs_writepage(struct page *page, struct writeback_control *wbc)
  316. {
  317. void *page_addr = kmap(page);
  318. printk("[XORFS] xorfs_writepage, offset = %d\n", (int) page->index);
  319. printk("XORFS: WritePage: [%s] [%s] [%s] [%s]\n",
  320. PageUptodate(page) ? "Uptodate" : "Not Uptodate",
  321. PageDirty(page) ? "Dirty" : "Not Dirty",
  322. PageWriteback(page) ? "PageWriteback Set" : "PageWriteback Cleared",
  323. PageLocked(page) ? "Locked" : "Unlocked");
  324. memcpy(file_buf, page_addr, PAGE_SIZE);
  325. ClearPageDirty(page);
  326. if(PageLocked(page))
  327. unlock_page(page);
  328. kunmap(page);
  329. return 0;
  330. } // xorfs_writepage
  331. static int
  332. xorfs_write_begin(struct file *file, struct address_space *mapping, loff_t pos, unsigned len, unsigned flags, struct page **pagep, void **fsdata)
  333. {
  334. printk("XORFS: xorfs_write_begin\n");
  335. return 0;
  336. } // xorfs_write_begin
  337. static int
  338. xorfs_write_end(struct file *file, struct address_space *mapping, loff_t pos, unsigned len, unsigned copied, struct page *page, void *fsdata)
  339. {
  340. struct inode *inode = page->mapping->host;
  341. void *page_addr = kmap(page);
  342. loff_t last_pos = pos + copied;
  343. printk("XORFS: xorfs_write_end: [%s] [%s] [%s] \n",
  344. PageUptodate(page) ? "Uptodate" : "Not Uptodate",
  345. PageDirty(page) ? "Dirty" : "Not Dirty",
  346. PageLocked(page) ? "Locked" : "Unlocked");
  347. if(page->index == 0)
  348. {
  349. memcpy(file_buf, page_addr, PAGE_SIZE);
  350. ClearPageDirty(page);
  351. } // if
  352. SetPageUptodate(page);
  353. kunmap(page);
  354. if(last_pos > inode->i_size)
  355. {
  356. i_size_write(inode, last_pos);
  357. mark_inode_dirty(inode);
  358. } // if
  359. return 0;
  360. } // xorfs_write_end
  361. /*
  362. * register module
  363. */
  364. static int __init
  365. xorfs_init_module(void)
  366. {
  367. int err;
  368. printk("XORFS: init_module\n");
  369. err = register_filesystem( &xorfs );
  370. return err;
  371. } // init_module
  372. static void __exit
  373. xorfs_cleanup_module(void)
  374. {
  375. unregister_filesystem(&xorfs);
  376. } // xorfs_cleanup_module
  377. module_init(xorfs_init_module);
  378. module_exit(xorfs_cleanup_module);

Makefile文件如下:

ifneq (${KERNELRELEASE},)
obj-m += xorfs.o
else
KERNEL_SOURCE :=/lib/modules/$(shell uname -r)/build
PWD :=$(shell pwd)
export EXTRA_CFLAGS := -std=gnu99
 
default:
    $(MAKE) -C ${KERNEL_SOURCE} SUBDIRS=$(PWD) modules
clean: 
    rm *.o *.ko
endif

1、编译时,运行如下命令:

# make

2、将编译成功的模板安装到文件系统时,运行如下命令:

# insmod xorfs.ko

3、在/mnt下创建挂载点 xorfs,运行命令:

# mkdir /mnt/xorfs

4、将xorfs文件系统装载到/mnt/xorfs下,运行命令:

# mount –t xorfs xorfs /mnt/xorfs

5、若要卸载/mnt/xorfs,运行命令:

# umount /mnt/xorfs

6、注销文件系统xorfs时,(注销前先卸裁)运行命令:

# rmmod xorfs.ko

7、查看printk日志信息,运行命令:

# cat /var/log/messages | tail

   装载xorfs之后,运行效果如下:

clip_image019

clip_image021

clip_image023

源程序打包下载地址:

http://download.csdn.net/detail/ture010love/4235247

 

参考:

http://www.ibm.com/developerworks/cn/linux/l-cn-vfs/

http://www2.comp.ufscar.br/~helio/fs/rkfs.html

posted on 2012-04-18 15:17 我思我能 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/icanth/archive/2012/04/18/2455346.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/250361
推荐阅读
相关标签
  

闽ICP备14008679号