免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 3340 | 回复: 11
打印 上一主题 下一主题

对文件系统的相关结构的一个疑惑 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-12-17 10:34 |只看该作者 |倒序浏览
大家好
我在学习毛德操先生的《情景分析》的时候,发现2.4.0的内核中的struct super_block中有s_mounts这条,可以用它来链接挂载的vfsmount结构。
但是现在我在2.4.20中发现struct super_block已经没有这项了,但我现在只得到了super_block对象,我怎么样才能通过这个对象得到挂载的vfsmount结构呢?

PS:我觉得这个问题应该有人问过,特别是内核方面的,但是我在搜索引擎google,baidu中就是找不到,可能是我搜索的技能太差了,“渔”的能力不强,想问各位高手,你们一般在哪搜索问题?

BR
Thanks

[ 本帖最后由 youmin0 于 2008-12-17 10:36 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2008-12-17 11:30 |只看该作者

论坛徽章:
0
3 [报告]
发表于 2008-12-17 13:15 |只看该作者

回复 #1 youmin0 的帖子

进入从源码开始阅读、呵呵

论坛徽章:
0
4 [报告]
发表于 2008-12-17 20:29 |只看该作者
2.4的代码没看过,不过2.6里边是没有的。
   其实从语义上来说不需要从super_block找到vfs_mount,vfs_mount表示的是已经挂载的文件系统,只需要由vfs_mount找到super_block就可以。而vfs_mount结构里是记录了super_block的。
   如果一定要找的话,遍历vfs_mount的树也可以找到。:wink:
    并且一个文件系统是可以mount多次的,即一个super_block可以对应对个vfs_mount结构,这样的话从super_block找vfs_mount,语义上不太好讲!

[ 本帖最后由 willus 于 2008-12-17 22:07 编辑 ]

论坛徽章:
0
5 [报告]
发表于 2008-12-18 09:42 |只看该作者
感谢各位的回复!
楼上所说的vfs_mount的树是什么?我在2.4里面找不到(应该有,但偶没找到

其实我的目的很简单,就是已知文件系统的名字,例如ext3,想得到使用了这个文件系统的挂载点。

[root@localhost /]# df -T
文件系统      类型     1K-块        已用     可用 已用% 挂载点
/dev/sda2     ext3    14349976   7850180   5770848  58% /
/dev/sda1     ext3      101089     11497     84373  12% /boot
none         tmpfs      256900         0    256900   0% /dev/shm
.host:/     vmhgfs    48769408  17406528  31362880  36% /mnt/hgfs

我想得到的就是"/"和"/boot"。

在super_block中有s_mounts的情况下很好办,只需要用ext3找到对应的file_sys_type,然后找到对应的super_block,然后找到对应的vfsmount,然后找到挂载点的dentry。

在下初学内核,所以思路有些不成熟,不知道是否有更好的方法达到这个目的。谢谢!

论坛徽章:
0
6 [报告]
发表于 2008-12-18 11:24 |只看该作者

回复 #5 youmin0 的帖子

一个文件系统是可以被挂载多次的,那你应该找到哪个vfs_mount结构呢?所以df -T 应该不是从super_block找vfs_mount的,而是反过来从vfs_mount找super_block的(我猜的)。我说的vfs_mount树是指vfs_mount结构是被组织成一颗树来管理的。

论坛徽章:
0
7 [报告]
发表于 2008-12-18 11:27 |只看该作者

回复 #5 youmin0 的帖子

另外,不知道你为什么还在看2.4的内核。2.6内核可以参考《深入理解linux内核》第三版,这本书确实不错。

论坛徽章:
0
8 [报告]
发表于 2008-12-18 11:36 |只看该作者
2.6里vfsmount结构是这样的,不知道2.4里边是怎么样的?
struct vfsmount {
        struct list_head mnt_hash;
        struct vfsmount *mnt_parent;        /* fs we are mounted on */
        struct dentry *mnt_mountpoint;        /* dentry of mountpoint */
        struct dentry *mnt_root;        /* root of the mounted tree */
        struct super_block *mnt_sb;        /* pointer to superblock */
        struct list_head mnt_mounts;        /* list of children, anchored here */
        struct list_head mnt_child;        /* and going through their mnt_child */
        int mnt_flags;
        /* 4 bytes hole on 64bits arches */
        char *mnt_devname;                /* Name of device e.g. /dev/dsk/hda1 */
        struct list_head mnt_list;
        struct list_head mnt_expire;        /* link in fs-specific expiry list */
        struct list_head mnt_share;        /* circular list of shared mounts */
        struct list_head mnt_slave_list;/* list of slave mounts */
        struct list_head mnt_slave;        /* slave list entry */
        struct vfsmount *mnt_master;        /* slave is on master->mnt_slave_list */
        struct mnt_namespace *mnt_ns;        /* containing namespace */
        /*
         * We put mnt_count & mnt_expiry_mark at the end of struct vfsmount
         * to let these frequently modified fields in a separate cache line
         * (so that reads of mnt_flags wont ping-pong on SMP machines)
         */
        atomic_t mnt_count;
        int mnt_expiry_mark;                /* true if marked for expiry */
        int mnt_pinned;
};

论坛徽章:
0
9 [报告]
发表于 2008-12-18 11:48 |只看该作者
感谢楼上的热情回复

2.4内核中是这样定义的

  1. struct vfsmount
  2. {
  3.         struct list_head mnt_hash;
  4.         struct vfsmount *mnt_parent;        /* fs we are mounted on */
  5.         struct dentry *mnt_mountpoint;        /* dentry of mountpoint */
  6.         struct dentry *mnt_root;        /* root of the mounted tree */
  7.         struct super_block *mnt_sb;        /* pointer to superblock */
  8.         struct list_head mnt_mounts;        /* list of children, anchored here */
  9.         struct list_head mnt_child;        /* and going through their mnt_child */
  10.         atomic_t mnt_count;
  11.         int mnt_flags;
  12.         char *mnt_devname;                /* Name of device e.g. /dev/dsk/hda1 */
  13.         struct list_head mnt_list;
  14. };
复制代码


用2.4是因为我一直是参考的毛先生的《情景分析》做的,而现在做的这个小项目是帮一个同学,需要的也是2.4的内核,呵呵:wink:

我也查看了df的源码,发现里面用了一个函数listmntent,可以读出所有的挂载点的vfsmount信息,但偶死活是找不到listmntent的源码,很是郁闷的说。

开始怀疑我的方法和思路有问题

论坛徽章:
0
10 [报告]
发表于 2008-12-18 11:50 |只看该作者
我想要的就是vfsmount中的mnt_mountpoint
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP