Linux虚拟文件系统(节点路径搜索)

字体大小: 中小 标准 ->行高大小: 标准

前面(见 http://www.linuxidc.com/Linux/2012-02/53694.htm )对linux虚拟文件系统的架构以及设计到的数据结构有了一个整体的认识,这里看看linux内核怎么根据给定的文件路径名在内存中找到和建立代表着目标文件或目录的dentry结构和inode结构。文件路径的搜索是文件系统中最基本也是最重要的一部分之一,后面我们会看到,文件的打开、关闭等等操作都将涉及到文件路径的搜索。下面我们看看linux内核中时怎么实现的。

一、搜索中所用数据结构

[cpp]
  1. /*这个数据结构是临时的,只在路径搜索的过程中返回搜索的结果。  */  
  2. struct nameidata {       struct path path;/*将目录结构和mount结构封装在path结构中*/  
  3.     struct qstr last;       struct path root;  
  4.     unsigned int    flags;/*对应搜索的标志*/       int     last_type;  
  5.     unsigned    depth;       char *saved_names[MAX_NESTED_LINKS + 1];  
  6.        /* Intent data */  
  7.     union {           struct open_intent open;  
  8.     } intent;   };  
[cpp]
  1. /*用来存放路径名中当前节点的杂凑值以及节点名的长度*/   struct qstr {  
  2.     unsigned int hash;       unsigned int len;  
  3.     const unsigned char *name;   };  

二、搜索

[cpp]
  1. /*name指向在用户空间的路径名;  flag为一些标志位,nd为搜索返回值 
  2. */   int path_lookup(const char *name, unsigned int flags,  
  3.             struct nameidata *nd)   {  
  4.     return do_path_lookup(AT_FDCWD, name, flags, nd);   }  

实际工作都是由上面的do_path_lookup()函数实现的,在这里我们就他进行分析。

[cpp]
  1. /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */   static int do_path_lookup(int dfd, const char *name,  
  2.                 unsigned int flags, struct nameidata *nd)   {   /*找到搜索的起点,保存在nd中*/  
  3.     int retval = path_init(dfd, name, flags, nd);       if (!retval)  
  4.             /*一旦找到了搜索的起点,从起点开始路径的搜索          其中nd用来返回搜索结果*/  
  5.         retval = path_walk(name, nd);       if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&  
  6.                 nd->path.dentry->d_inode))           audit_inode(name, nd->path.dentry);  
  7.     if (nd->root.mnt) {           path_put(&nd->root);  
  8.         nd->root.mnt = NULL;       }  
  9.     return retval;   }  

2.1 初始化阶段

初始化阶段是由函数path_init()函数实现

[cpp]
  1. /*path_init主要是初始化查询,设置nd结构指向查询开始处的文件,这里分两种情况:      a,绝对路径(以/开始),获得根目录的dentry。它存储在task_struct中fs指向的fs_struct结构中。 
  2.     b,相对路径,直接从当前进程task_struct结构中的获得指针fs,它指向的一个fs_struct,      fs_struct中有一个指向“当前工作目录”的dentry。 
  3. */   static int path_init(int dfd, const char *name, unsigned int flags, struct nameidata *nd)  
  4. {       int retval = 0;  
  5.     int fput_needed;       struct file *file;  
  6.     /*在搜索的过程中,这个字段的值会随着路径名当前搜索结果而变;      例如,如果成功找到目标文件,那么这个字段的值就变成了LAST_NORM 
  7.     而如果最后停留在了一个.上,则变成LAST_DOT(*/       nd->last_type = LAST_ROOT; /* if there are only slashes... */  
  8.     nd->flags = flags;       nd->depth = 0;  
  9.     nd->root.mnt = NULL;     
  10.     if (*name=='/') {/*路径名以'/'开头*/           set_root(nd);/*设置nd的root为当前进程fs的root*/  
  11.         nd->path = nd->root;/*保存根目录*/           path_get(&nd->root);/*递增引用计数*/  
  12.     } else if (dfd == AT_FDCWD) {/*相对路径*/           struct fs_struct *fs = current->fs;  
  13.         read_lock(&fs->lock);           nd->path = fs->pwd;/*保存当前路径*/  
  14.         path_get(&fs->pwd);/*递增引用计数*/           read_unlock(&fs->lock);  
  15.     } else {/*???*/           struct dentry *dentry;  
  16.          /*fget_light在当前进程的struct files_struct中根据所谓的用户空间          文件描述符fd来获取文件描述符。另外,根据当前fs_struct 
  17.         是否被多各进程共享来判断是否需要对文件描述符进行加           锁,并将加锁结果存到一个int中返回 
  18.         */           file = fget_light(dfd, &fput_needed);  
  19.         retval = -EBADF;           if (!file)  
  20.             goto out_fail;     
  21.         dentry = file->f_path.dentry;     
  22.         retval = -ENOTDIR;           if (!S_ISDIR(dentry->d_inode->i_mode))  
  23.             goto fput_fail;           /*权限检查*/  
  24.         retval = file_permission(file, MAY_EXEC);           if (retval)  
  25.             goto fput_fail;           /*获得path*/  
  26.         nd->path = file->f_path;           path_get(&file->f_path);  
  27.         /*解锁*/           fput_light(file, fput_needed);  
  28.     }       return 0;  
  29.    fput_fail:  
  30.     fput_light(file, fput_needed);   out_fail:  
  31.     return retval;   }  

2.2 实际搜索操作

[cpp]
  1. static int path_walk(const char *name, struct nameidata *nd)   {  
  2.     current->total_link_count = 0;       return link_path_walk(name, nd);  
  3. }  
[cpp]
  1. /*   * Wrapper to retry pathname resolution whenever the underlying 
  2.  * file system returns an ESTALE.   * 
  3.  * Retry the whole path once, forcing real lookup requests   * instead of relying on the dcache. 
  4.  */   static __always_inline int link_path_walk(const char *name, struct nameidata *nd)  
  5. {       struct path save = nd->path;  
  6.     int result;     
  7.     /* make sure the stuff we saved doesn't go away */       path_get(&save);/*递增path的引用计数*/  
  8.     /*实际的工作*/       result = __link_path_walk(name, nd);  
  9.     if (result == -ESTALE) {           /* nd->path had been dropped */  
  10.         nd->path = save;           path_get(&nd->path);  
  11.         nd->flags |= LOOKUP_REVAL;           result = __link_path_walk(name, nd);  
  12.     }     
  13.     path_put(&save);     
  14.     return result;   }  
[cpp]
  1. /*   * Name resolution. 
  2.  * This is the basic name resolution function, turning a pathname into   * the final dentry. We expect 'base' to be positive and a directory. 
  3.  *   * Returns 0 and nd will have valid dentry and mnt on success. 
  4.  * Returns error and drops reference to input namei data on failure.   */  
  5. static int __link_path_walk(const char *name, struct nameidata *nd)   {  
  6.     struct path next;       struct inode *inode;  
  7.     int err;       unsigned int lookup_flags = nd->flags;  
  8.     /*如果路径名以'/'开头,就把他跳过去,因为在这种情况下nd中      path已经指向本进程的根目录了,注意,这里多个连续的'/'与一个 
  9.     ‘/’是等价的,如果路径名中仅仅包含有'/'字符的话,那么其      目标就是根目录,所以任务完成,不然需要继续搜索*/  
  10.     while (*name=='/')           name++;  
  11.     if (!*name)           goto return_reval;  
  12.     /*作为path_walk起点的节点必定是一个目录,一定有相应的索引节点      存在,所以指针inode一定是有效的,而不可能是空指针*/  
  13.     inode = nd->path.dentry->d_inode;       /*进程的task_struct结构中有个计数器link_count.在搜索过程中有可能 
  14.     碰到一个节点(目录项)只是指向另一个节点的链接,此时就用这个计数器来对      链的长度进行计数,这样,当链的长度达到某一个值时就可以终止搜索而失败 
  15.     返回,以防陷入循环。另一方面,当顺着符号链接进入另一个设备上的文件系统      时,有可能会递归地调用path_walk。所以,进入path_walk后,如果发现这个 
  16.     计数器值非0,就表示正在顺着符号链接递归调用path_walk往前搜索过程中,      此时不管怎样都把LOOKUP_FOLLOW标志位设成1.*/  
  17.     if (nd->depth)           lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);  
  18.        /* At this point we know we have a real path component. */  
  19.     for(;;) {           unsigned long hash;  
  20.                    struct qstr this;  
  21.         unsigned int c;     
  22.         nd->flags |= LOOKUP_CONTINUE;           /*检查当前进程对当前节点的访问权限,这里所检查的是相对路径中 
  23.         的各层目录(而不是目标文件)的访问权限。注意,对于中间节点所需          的权限为执行权,即MAY_EXEC*/  
  24.              err = exec_permission_lite(inode);           if (err)  
  25.             break;     
  26.         this.name = name;           c = *(const unsigned char *)name;  
  27.            hash = init_name_hash();  
  28.         do {               name++;  
  29.             hash = partial_name_hash(c, hash);               c = *(const unsigned char *)name;  
  30.         } while (c && (c != '/'));/*路径名中的节点定以‘/’字符分开的,*/           this.len = name - (const char *) this.name;  
  31.         this.hash = end_name_hash(hash);     
  32.         /* remove trailing slashes? */           if (!c)/*最后一个字符为'\0',就是说当前节点已经是路径名中的最后一节*/  
  33.             goto last_component;/*跳转*/           /*循环跳过'/'*/  
  34.         while (*++name == '/');           /*当前节点实际上已经是路径名的最后一个节点,只不过在此后面又多添加了 
  35.         若干个'/'字符,这种情况常常发生在用户界面上,特别是在shell的命令中          当然这种情况要求最后的节点必须是个目录*/  
  36.         if (!*name)               goto last_with_slashes;/*跳转*/  
  37.                /*运行到这里,表示当前节点为中间节点,所以'/'字符后面还有其他字符*/  
  38.         /*           * "." and ".." are special - ".." especially so because it has 
  39.          * to be able to know about the current root directory and           * parent relationships. 
  40.          */            /*以'.'开头表示这是个隐藏的文件,而对于代表着目录的节点则只有在两种 
  41.          情况下才是允许的。一种是节点名为'.',表示当前目录,另一种是'..',表示           当前目录的父目录*/  
  42.         if (this.name[0] == '.'switch (this.len) {               default:  
  43.                 break;               case 2:   
  44.                 if (this.name[1] != '.')                       break;  
  45.                 follow_dotdot(nd);/*为'..',到父目录中去*/                   inode = nd->path.dentry->d_inode;  
  46.                 /* fallthrough */               /*2中没有break语句,也就是所继续执行1中的语句, 
  47.             将会跳到for语句的开头处理路径中的下一个节点*/               case 1:  
  48.                 continue;           }  
  49.         /*           * See if the low-level filesystem might want 
  50.          * to use its own hash..           */  
  51.          /*特定文件系统提供他自己专用的杂凑函数,所以在这种情况下就通过这个           函数再计算一遍当前节点的杂凑值*/  
  52.         if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {               err = nd->path.dentry->d_op->d_hash(nd->path.dentry,  
  53.                                 &this);               if (err < 0)  
  54.                 break;           }  
  55.         /* This does the actual lookups.. */           /*实际的搜索工作*/  
  56.              err = do_lookup(nd, &this, &next);           if (err)  
  57.             break;     
  58.         err = -ENOENT;           inode = next.dentry->d_inode;  
  59.         if (!inode)               goto out_dput;  
  60.         /*涉及到具体文件系统的相关操作*/           if (inode->i_op->follow_link) {  
  61.             err = do_follow_link(&next, nd);               if (err)  
  62.                 goto return_err;               err = -ENOENT;  
  63.             inode = nd->path.dentry->d_inode;               if (!inode)  
  64.                 break;           } else/*将path中的相关内容转化到nd中*/  
  65.             path_to_nameidata(&next, nd);           err = -ENOTDIR;   
  66.         if (!inode->i_op->lookup)               break;  
  67.         continue;           /* here ends the main loop */  
  68.    last_with_slashes:  
  69.         lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;   last_component:  
  70.         /* Clear LOOKUP_CONTINUE iff it was previously unset */           nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;  
  71.         if (lookup_flags & LOOKUP_PARENT)/*要寻找的不是路径终点,而是他的上一层*/               goto lookup_parent;  
  72.         if (this.name[0] == '.'switch (this.len) {               default:  
  73.                 break;               case 2:   
  74.                 if (this.name[1] != '.')                       break;  
  75.                 follow_dotdot(nd);/*向上层移动*/                   inode = nd->path.dentry->d_inode;  
  76.                 /* fallthrough */               case 1:  
  77.                 goto return_reval;           }  
  78.         /*具体文件系统的操作*/           if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {  
  79.             err = nd->path.dentry->d_op->d_hash(nd->path.dentry,                                   &this);  
  80.             if (err < 0)                   break;  
  81.         }/*顺次查找路径节点,下一个存放在next中*/           err = do_lookup(nd, &this, &next);  
  82.         if (err)               break;  
  83.         inode = next.dentry->d_inode;           if ((lookup_flags & LOOKUP_FOLLOW)/*当终点为符号链接时*/  
  84.             && inode && inode->i_op->follow_link) {               err = do_follow_link(&next, nd);  
  85.             if (err)                   goto return_err;  
  86.             inode = nd->path.dentry->d_inode;           } else  
  87.             /*path转化为nd*/               path_to_nameidata(&next, nd);  
  88.         err = -ENOENT;           if (!inode)  
  89.             break;           if (lookup_flags & LOOKUP_DIRECTORY) {  
  90.             err = -ENOTDIR;                if (!inode->i_op->lookup)  
  91.                 break;           }  
  92.         goto return_base;   lookup_parent:  
  93.         nd->last = this;           nd->last_type = LAST_NORM;/*根据终点节点名设置*/  
  94.         if (this.name[0] != '.')               goto return_base;  
  95.         if (this.len == 1)               nd->last_type = LAST_DOT;  
  96.         else if (this.len == 2 && this.name[1] == '.')               nd->last_type = LAST_DOTDOT;  
  97.         else               goto return_base;  
  98. return_reval:           /* 
  99.          * We bypassed the ordinary revalidation routines.           * We may need to check the cached dentry for staleness. 
  100.          */           if (nd->path.dentry && nd->path.dentry->d_sb &&  
  101.             (nd->path.dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) {               err = -ESTALE;  
  102.             /* Note: we do not d_invalidate() */               if (!nd->path.dentry->d_op->d_revalidate(  
  103.                     nd->path.dentry, nd))                   break;  
  104.         }   return_base:  
  105.         return 0;   out_dput:  
  106.         path_put_conditional(&next, nd);           break;  
  107.     }       path_put(&nd->path);  
  108. return_err:       return err;  
  109. }  

此文章由 http://www.ositren.com 收集整理 ,地址为: http://www.ositren.com/htmls/57854.html