namei.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:48k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/namei.c
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds
  5.  */
  6. /*
  7.  * Some corrections by tytso.
  8.  */
  9. /* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
  10.  * lookup logic.
  11.  */
  12. /* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
  13.  */
  14. #include <linux/init.h>
  15. #include <linux/slab.h>
  16. #include <linux/fs.h>
  17. #include <linux/quotaops.h>
  18. #include <linux/pagemap.h>
  19. #include <linux/dnotify.h>
  20. #include <linux/smp_lock.h>
  21. #include <linux/personality.h>
  22. #include <asm/namei.h>
  23. #include <asm/uaccess.h>
  24. #define ACC_MODE(x) ("00040206"[(x)&O_ACCMODE])
  25. /* [Feb-1997 T. Schoebel-Theuer]
  26.  * Fundamental changes in the pathname lookup mechanisms (namei)
  27.  * were necessary because of omirr.  The reason is that omirr needs
  28.  * to know the _real_ pathname, not the user-supplied one, in case
  29.  * of symlinks (and also when transname replacements occur).
  30.  *
  31.  * The new code replaces the old recursive symlink resolution with
  32.  * an iterative one (in case of non-nested symlink chains).  It does
  33.  * this with calls to <fs>_follow_link().
  34.  * As a side effect, dir_namei(), _namei() and follow_link() are now 
  35.  * replaced with a single function lookup_dentry() that can handle all 
  36.  * the special cases of the former code.
  37.  *
  38.  * With the new dcache, the pathname is stored at each inode, at least as
  39.  * long as the refcount of the inode is positive.  As a side effect, the
  40.  * size of the dcache depends on the inode cache and thus is dynamic.
  41.  *
  42.  * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
  43.  * resolution to correspond with current state of the code.
  44.  *
  45.  * Note that the symlink resolution is not *completely* iterative.
  46.  * There is still a significant amount of tail- and mid- recursion in
  47.  * the algorithm.  Also, note that <fs>_readlink() is not used in
  48.  * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
  49.  * may return different results than <fs>_follow_link().  Many virtual
  50.  * filesystems (including /proc) exhibit this behavior.
  51.  */
  52. /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
  53.  * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
  54.  * and the name already exists in form of a symlink, try to create the new
  55.  * name indicated by the symlink. The old code always complained that the
  56.  * name already exists, due to not following the symlink even if its target
  57.  * is nonexistent.  The new semantics affects also mknod() and link() when
  58.  * the name is a symlink pointing to a non-existant name.
  59.  *
  60.  * I don't know which semantics is the right one, since I have no access
  61.  * to standards. But I found by trial that HP-UX 9.0 has the full "new"
  62.  * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
  63.  * "old" one. Personally, I think the new semantics is much more logical.
  64.  * Note that "ln old new" where "new" is a symlink pointing to a non-existing
  65.  * file does succeed in both HP-UX and SunOs, but not in Solaris
  66.  * and in the old Linux semantics.
  67.  */
  68. /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
  69.  * semantics.  See the comments in "open_namei" and "do_link" below.
  70.  *
  71.  * [10-Sep-98 Alan Modra] Another symlink change.
  72.  */
  73. /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
  74.  * inside the path - always follow.
  75.  * in the last component in creation/removal/renaming - never follow.
  76.  * if LOOKUP_FOLLOW passed - follow.
  77.  * if the pathname has trailing slashes - follow.
  78.  * otherwise - don't follow.
  79.  * (applied in that order).
  80.  *
  81.  * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
  82.  * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
  83.  * During the 2.4 we need to fix the userland stuff depending on it -
  84.  * hopefully we will be able to get rid of that wart in 2.5. So far only
  85.  * XEmacs seems to be relying on it...
  86.  */
  87. /* In order to reduce some races, while at the same time doing additional
  88.  * checking and hopefully speeding things up, we copy filenames to the
  89.  * kernel data space before using them..
  90.  *
  91.  * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
  92.  * PATH_MAX includes the nul terminator --RR.
  93.  */
  94. static inline int do_getname(const char *filename, char *page)
  95. {
  96. int retval;
  97. unsigned long len = PATH_MAX;
  98. if ((unsigned long) filename >= TASK_SIZE) {
  99. if (!segment_eq(get_fs(), KERNEL_DS))
  100. return -EFAULT;
  101. } else if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
  102. len = TASK_SIZE - (unsigned long) filename;
  103. retval = strncpy_from_user((char *)page, filename, len);
  104. if (retval > 0) {
  105. if (retval < len)
  106. return 0;
  107. return -ENAMETOOLONG;
  108. } else if (!retval)
  109. retval = -ENOENT;
  110. return retval;
  111. }
  112. char * getname(const char * filename)
  113. {
  114. char *tmp, *result;
  115. result = ERR_PTR(-ENOMEM);
  116. tmp = __getname();
  117. if (tmp)  {
  118. int retval = do_getname(filename, tmp);
  119. result = tmp;
  120. if (retval < 0) {
  121. putname(tmp);
  122. result = ERR_PTR(retval);
  123. }
  124. }
  125. return result;
  126. }
  127. /*
  128.  * vfs_permission()
  129.  *
  130.  * is used to check for read/write/execute permissions on a file.
  131.  * We use "fsuid" for this, letting us set arbitrary permissions
  132.  * for filesystem access without changing the "normal" uids which
  133.  * are used for other things..
  134.  */
  135. int vfs_permission(struct inode * inode, int mask)
  136. {
  137. umode_t mode = inode->i_mode;
  138. if (mask & MAY_WRITE) {
  139. /*
  140.  * Nobody gets write access to a read-only fs.
  141.  */
  142. if (IS_RDONLY(inode) &&
  143.     (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
  144. return -EROFS;
  145. /*
  146.  * Nobody gets write access to an immutable file.
  147.  */
  148. if (IS_IMMUTABLE(inode))
  149. return -EACCES;
  150. }
  151. if (current->fsuid == inode->i_uid)
  152. mode >>= 6;
  153. else if (in_group_p(inode->i_gid))
  154. mode >>= 3;
  155. /*
  156.  * If the DACs are ok we don't need any capability check.
  157.  */
  158. if (((mode & mask & (MAY_READ|MAY_WRITE|MAY_EXEC)) == mask))
  159. return 0;
  160. /*
  161.  * Read/write DACs are always overridable.
  162.  * Executable DACs are overridable if at least one exec bit is set.
  163.  */
  164. if ((mask & (MAY_READ|MAY_WRITE)) || (inode->i_mode & S_IXUGO))
  165. if (capable(CAP_DAC_OVERRIDE))
  166. return 0;
  167. /*
  168.  * Searching includes executable on directories, else just read.
  169.  */
  170. if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
  171. if (capable(CAP_DAC_READ_SEARCH))
  172. return 0;
  173. return -EACCES;
  174. }
  175. int permission(struct inode * inode,int mask)
  176. {
  177. if (inode->i_op && inode->i_op->permission) {
  178. int retval;
  179. lock_kernel();
  180. retval = inode->i_op->permission(inode, mask);
  181. unlock_kernel();
  182. return retval;
  183. }
  184. return vfs_permission(inode, mask);
  185. }
  186. /*
  187.  * get_write_access() gets write permission for a file.
  188.  * put_write_access() releases this write permission.
  189.  * This is used for regular files.
  190.  * We cannot support write (and maybe mmap read-write shared) accesses and
  191.  * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
  192.  * can have the following values:
  193.  * 0: no writers, no VM_DENYWRITE mappings
  194.  * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
  195.  * > 0: (i_writecount) users are writing to the file.
  196.  *
  197.  * Normally we operate on that counter with atomic_{inc,dec} and it's safe
  198.  * except for the cases where we don't hold i_writecount yet. Then we need to
  199.  * use {get,deny}_write_access() - these functions check the sign and refuse
  200.  * to do the change if sign is wrong. Exclusion between them is provided by
  201.  * spinlock (arbitration_lock) and I'll rip the second arsehole to the first
  202.  * who will try to move it in struct inode - just leave it here.
  203.  */
  204. static spinlock_t arbitration_lock = SPIN_LOCK_UNLOCKED;
  205. int get_write_access(struct inode * inode)
  206. {
  207. spin_lock(&arbitration_lock);
  208. if (atomic_read(&inode->i_writecount) < 0) {
  209. spin_unlock(&arbitration_lock);
  210. return -ETXTBSY;
  211. }
  212. atomic_inc(&inode->i_writecount);
  213. spin_unlock(&arbitration_lock);
  214. return 0;
  215. }
  216. int deny_write_access(struct file * file)
  217. {
  218. spin_lock(&arbitration_lock);
  219. if (atomic_read(&file->f_dentry->d_inode->i_writecount) > 0) {
  220. spin_unlock(&arbitration_lock);
  221. return -ETXTBSY;
  222. }
  223. atomic_dec(&file->f_dentry->d_inode->i_writecount);
  224. spin_unlock(&arbitration_lock);
  225. return 0;
  226. }
  227. void path_release(struct nameidata *nd)
  228. {
  229. dput(nd->dentry);
  230. mntput(nd->mnt);
  231. }
  232. /*
  233.  * Internal lookup() using the new generic dcache.
  234.  * SMP-safe
  235.  */
  236. static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, int flags)
  237. {
  238. struct dentry * dentry = d_lookup(parent, name);
  239. if (dentry && dentry->d_op && dentry->d_op->d_revalidate) {
  240. if (!dentry->d_op->d_revalidate(dentry, flags) && !d_invalidate(dentry)) {
  241. dput(dentry);
  242. dentry = NULL;
  243. }
  244. }
  245. return dentry;
  246. }
  247. /*
  248.  * This is called when everything else fails, and we actually have
  249.  * to go to the low-level filesystem to find out what we should do..
  250.  *
  251.  * We get the directory semaphore, and after getting that we also
  252.  * make sure that nobody added the entry to the dcache in the meantime..
  253.  * SMP-safe
  254.  */
  255. static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, int flags)
  256. {
  257. struct dentry * result;
  258. struct inode *dir = parent->d_inode;
  259. down(&dir->i_sem);
  260. /*
  261.  * First re-do the cached lookup just in case it was created
  262.  * while we waited for the directory semaphore..
  263.  *
  264.  * FIXME! This could use version numbering or similar to
  265.  * avoid unnecessary cache lookups.
  266.  */
  267. result = d_lookup(parent, name);
  268. if (!result) {
  269. struct dentry * dentry = d_alloc(parent, name);
  270. result = ERR_PTR(-ENOMEM);
  271. if (dentry) {
  272. lock_kernel();
  273. result = dir->i_op->lookup(dir, dentry);
  274. unlock_kernel();
  275. if (result)
  276. dput(dentry);
  277. else
  278. result = dentry;
  279. }
  280. up(&dir->i_sem);
  281. return result;
  282. }
  283. /*
  284.  * Uhhuh! Nasty case: the cache was re-populated while
  285.  * we waited on the semaphore. Need to revalidate.
  286.  */
  287. up(&dir->i_sem);
  288. if (result->d_op && result->d_op->d_revalidate) {
  289. if (!result->d_op->d_revalidate(result, flags) && !d_invalidate(result)) {
  290. dput(result);
  291. result = ERR_PTR(-ENOENT);
  292. }
  293. }
  294. return result;
  295. }
  296. /*
  297.  * This limits recursive symlink follows to 8, while
  298.  * limiting consecutive symlinks to 40.
  299.  *
  300.  * Without that kind of total limit, nasty chains of consecutive
  301.  * symlinks can cause almost arbitrarily long lookups. 
  302.  */
  303. static inline int do_follow_link(struct dentry *dentry, struct nameidata *nd)
  304. {
  305. int err;
  306. if (current->link_count >= 5)
  307. goto loop;
  308. if (current->total_link_count >= 40)
  309. goto loop;
  310. if (current->need_resched) {
  311. current->state = TASK_RUNNING;
  312. schedule();
  313. }
  314. current->link_count++;
  315. current->total_link_count++;
  316. UPDATE_ATIME(dentry->d_inode);
  317. err = dentry->d_inode->i_op->follow_link(dentry, nd);
  318. current->link_count--;
  319. return err;
  320. loop:
  321. path_release(nd);
  322. return -ELOOP;
  323. }
  324. static inline int __follow_up(struct vfsmount **mnt, struct dentry **base)
  325. {
  326. struct vfsmount *parent;
  327. struct dentry *dentry;
  328. spin_lock(&dcache_lock);
  329. parent=(*mnt)->mnt_parent;
  330. if (parent == *mnt) {
  331. spin_unlock(&dcache_lock);
  332. return 0;
  333. }
  334. mntget(parent);
  335. dentry=dget((*mnt)->mnt_mountpoint);
  336. spin_unlock(&dcache_lock);
  337. dput(*base);
  338. *base = dentry;
  339. mntput(*mnt);
  340. *mnt = parent;
  341. return 1;
  342. }
  343. int follow_up(struct vfsmount **mnt, struct dentry **dentry)
  344. {
  345. return __follow_up(mnt, dentry);
  346. }
  347. static inline int __follow_down(struct vfsmount **mnt, struct dentry **dentry)
  348. {
  349. struct vfsmount *mounted;
  350. spin_lock(&dcache_lock);
  351. mounted = lookup_mnt(*mnt, *dentry);
  352. if (mounted) {
  353. *mnt = mntget(mounted);
  354. spin_unlock(&dcache_lock);
  355. dput(*dentry);
  356. mntput(mounted->mnt_parent);
  357. *dentry = dget(mounted->mnt_root);
  358. return 1;
  359. }
  360. spin_unlock(&dcache_lock);
  361. return 0;
  362. }
  363. int follow_down(struct vfsmount **mnt, struct dentry **dentry)
  364. {
  365. return __follow_down(mnt,dentry);
  366. }
  367.  
  368. static inline void follow_dotdot(struct nameidata *nd)
  369. {
  370. while(1) {
  371. struct vfsmount *parent;
  372. struct dentry *dentry;
  373. read_lock(&current->fs->lock);
  374. if (nd->dentry == current->fs->root &&
  375.     nd->mnt == current->fs->rootmnt)  {
  376. read_unlock(&current->fs->lock);
  377. break;
  378. }
  379. read_unlock(&current->fs->lock);
  380. spin_lock(&dcache_lock);
  381. if (nd->dentry != nd->mnt->mnt_root) {
  382. dentry = dget(nd->dentry->d_parent);
  383. spin_unlock(&dcache_lock);
  384. dput(nd->dentry);
  385. nd->dentry = dentry;
  386. break;
  387. }
  388. parent=nd->mnt->mnt_parent;
  389. if (parent == nd->mnt) {
  390. spin_unlock(&dcache_lock);
  391. break;
  392. }
  393. mntget(parent);
  394. dentry=dget(nd->mnt->mnt_mountpoint);
  395. spin_unlock(&dcache_lock);
  396. dput(nd->dentry);
  397. nd->dentry = dentry;
  398. mntput(nd->mnt);
  399. nd->mnt = parent;
  400. }
  401. }
  402. /*
  403.  * Name resolution.
  404.  *
  405.  * This is the basic name resolution function, turning a pathname
  406.  * into the final dentry.
  407.  *
  408.  * We expect 'base' to be positive and a directory.
  409.  */
  410. int link_path_walk(const char * name, struct nameidata *nd)
  411. {
  412. struct dentry *dentry;
  413. struct inode *inode;
  414. int err;
  415. unsigned int lookup_flags = nd->flags;
  416. while (*name=='/')
  417. name++;
  418. if (!*name)
  419. goto return_base;
  420. inode = nd->dentry->d_inode;
  421. if (current->link_count)
  422. lookup_flags = LOOKUP_FOLLOW;
  423. /* At this point we know we have a real path component. */
  424. for(;;) {
  425. unsigned long hash;
  426. struct qstr this;
  427. unsigned int c;
  428. err = permission(inode, MAY_EXEC);
  429. dentry = ERR_PTR(err);
  430.   if (err)
  431. break;
  432. this.name = name;
  433. c = *(const unsigned char *)name;
  434. hash = init_name_hash();
  435. do {
  436. name++;
  437. hash = partial_name_hash(c, hash);
  438. c = *(const unsigned char *)name;
  439. } while (c && (c != '/'));
  440. this.len = name - (const char *) this.name;
  441. this.hash = end_name_hash(hash);
  442. /* remove trailing slashes? */
  443. if (!c)
  444. goto last_component;
  445. while (*++name == '/');
  446. if (!*name)
  447. goto last_with_slashes;
  448. /*
  449.  * "." and ".." are special - ".." especially so because it has
  450.  * to be able to know about the current root directory and
  451.  * parent relationships.
  452.  */
  453. if (this.name[0] == '.') switch (this.len) {
  454. default:
  455. break;
  456. case 2:
  457. if (this.name[1] != '.')
  458. break;
  459. follow_dotdot(nd);
  460. inode = nd->dentry->d_inode;
  461. /* fallthrough */
  462. case 1:
  463. continue;
  464. }
  465. /*
  466.  * See if the low-level filesystem might want
  467.  * to use its own hash..
  468.  */
  469. if (nd->dentry->d_op && nd->dentry->d_op->d_hash) {
  470. err = nd->dentry->d_op->d_hash(nd->dentry, &this);
  471. if (err < 0)
  472. break;
  473. }
  474. /* This does the actual lookups.. */
  475. dentry = cached_lookup(nd->dentry, &this, LOOKUP_CONTINUE);
  476. if (!dentry) {
  477. dentry = real_lookup(nd->dentry, &this, LOOKUP_CONTINUE);
  478. err = PTR_ERR(dentry);
  479. if (IS_ERR(dentry))
  480. break;
  481. }
  482. /* Check mountpoints.. */
  483. while (d_mountpoint(dentry) && __follow_down(&nd->mnt, &dentry))
  484. ;
  485. err = -ENOENT;
  486. inode = dentry->d_inode;
  487. if (!inode)
  488. goto out_dput;
  489. err = -ENOTDIR; 
  490. if (!inode->i_op)
  491. goto out_dput;
  492. if (inode->i_op->follow_link) {
  493. err = do_follow_link(dentry, nd);
  494. dput(dentry);
  495. if (err)
  496. goto return_err;
  497. err = -ENOENT;
  498. inode = nd->dentry->d_inode;
  499. if (!inode)
  500. break;
  501. err = -ENOTDIR; 
  502. if (!inode->i_op)
  503. break;
  504. } else {
  505. dput(nd->dentry);
  506. nd->dentry = dentry;
  507. }
  508. err = -ENOTDIR; 
  509. if (!inode->i_op->lookup)
  510. break;
  511. continue;
  512. /* here ends the main loop */
  513. last_with_slashes:
  514. lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
  515. last_component:
  516. if (lookup_flags & LOOKUP_PARENT)
  517. goto lookup_parent;
  518. if (this.name[0] == '.') switch (this.len) {
  519. default:
  520. break;
  521. case 2:
  522. if (this.name[1] != '.')
  523. break;
  524. follow_dotdot(nd);
  525. inode = nd->dentry->d_inode;
  526. /* fallthrough */
  527. case 1:
  528. goto return_base;
  529. }
  530. if (nd->dentry->d_op && nd->dentry->d_op->d_hash) {
  531. err = nd->dentry->d_op->d_hash(nd->dentry, &this);
  532. if (err < 0)
  533. break;
  534. }
  535. dentry = cached_lookup(nd->dentry, &this, 0);
  536. if (!dentry) {
  537. dentry = real_lookup(nd->dentry, &this, 0);
  538. err = PTR_ERR(dentry);
  539. if (IS_ERR(dentry))
  540. break;
  541. }
  542. while (d_mountpoint(dentry) && __follow_down(&nd->mnt, &dentry))
  543. ;
  544. inode = dentry->d_inode;
  545. if ((lookup_flags & LOOKUP_FOLLOW)
  546.     && inode && inode->i_op && inode->i_op->follow_link) {
  547. err = do_follow_link(dentry, nd);
  548. dput(dentry);
  549. if (err)
  550. goto return_err;
  551. inode = nd->dentry->d_inode;
  552. } else {
  553. dput(nd->dentry);
  554. nd->dentry = dentry;
  555. }
  556. err = -ENOENT;
  557. if (!inode)
  558. goto no_inode;
  559. if (lookup_flags & LOOKUP_DIRECTORY) {
  560. err = -ENOTDIR; 
  561. if (!inode->i_op || !inode->i_op->lookup)
  562. break;
  563. }
  564. goto return_base;
  565. no_inode:
  566. err = -ENOENT;
  567. if (lookup_flags & (LOOKUP_POSITIVE|LOOKUP_DIRECTORY))
  568. break;
  569. goto return_base;
  570. lookup_parent:
  571. nd->last = this;
  572. nd->last_type = LAST_NORM;
  573. if (this.name[0] != '.')
  574. goto return_base;
  575. if (this.len == 1)
  576. nd->last_type = LAST_DOT;
  577. else if (this.len == 2 && this.name[1] == '.')
  578. nd->last_type = LAST_DOTDOT;
  579. return_base:
  580. return 0;
  581. out_dput:
  582. dput(dentry);
  583. break;
  584. }
  585. path_release(nd);
  586. return_err:
  587. return err;
  588. }
  589. int path_walk(const char * name, struct nameidata *nd)
  590. {
  591. current->total_link_count = 0;
  592. return link_path_walk(name, nd);
  593. }
  594. /* SMP-safe */
  595. /* returns 1 if everything is done */
  596. static int __emul_lookup_dentry(const char *name, struct nameidata *nd)
  597. {
  598. if (path_walk(name, nd))
  599. return 0; /* something went wrong... */
  600. if (!nd->dentry->d_inode || S_ISDIR(nd->dentry->d_inode->i_mode)) {
  601. struct nameidata nd_root;
  602. /*
  603.  * NAME was not found in alternate root or it's a directory.  Try to find
  604.  * it in the normal root:
  605.  */
  606. nd_root.last_type = LAST_ROOT;
  607. nd_root.flags = nd->flags;
  608. read_lock(&current->fs->lock);
  609. nd_root.mnt = mntget(current->fs->rootmnt);
  610. nd_root.dentry = dget(current->fs->root);
  611. read_unlock(&current->fs->lock);
  612. if (path_walk(name, &nd_root))
  613. return 1;
  614. if (nd_root.dentry->d_inode) {
  615. path_release(nd);
  616. nd->dentry = nd_root.dentry;
  617. nd->mnt = nd_root.mnt;
  618. nd->last = nd_root.last;
  619. return 1;
  620. }
  621. path_release(&nd_root);
  622. }
  623. return 1;
  624. }
  625. void set_fs_altroot(void)
  626. {
  627. char *emul = __emul_prefix();
  628. struct nameidata nd;
  629. struct vfsmount *mnt = NULL, *oldmnt;
  630. struct dentry *dentry = NULL, *olddentry;
  631. if (emul) {
  632. read_lock(&current->fs->lock);
  633. nd.mnt = mntget(current->fs->rootmnt);
  634. nd.dentry = dget(current->fs->root);
  635. read_unlock(&current->fs->lock);
  636. nd.flags = LOOKUP_FOLLOW|LOOKUP_DIRECTORY|LOOKUP_POSITIVE;
  637. if (path_walk(emul,&nd) == 0) {
  638. mnt = nd.mnt;
  639. dentry = nd.dentry;
  640. }
  641. }
  642. write_lock(&current->fs->lock);
  643. oldmnt = current->fs->altrootmnt;
  644. olddentry = current->fs->altroot;
  645. current->fs->altrootmnt = mnt;
  646. current->fs->altroot = dentry;
  647. write_unlock(&current->fs->lock);
  648. if (olddentry) {
  649. dput(olddentry);
  650. mntput(oldmnt);
  651. }
  652. }
  653. /* SMP-safe */
  654. static inline int
  655. walk_init_root(const char *name, struct nameidata *nd)
  656. {
  657. read_lock(&current->fs->lock);
  658. if (current->fs->altroot && !(nd->flags & LOOKUP_NOALT)) {
  659. nd->mnt = mntget(current->fs->altrootmnt);
  660. nd->dentry = dget(current->fs->altroot);
  661. read_unlock(&current->fs->lock);
  662. if (__emul_lookup_dentry(name,nd))
  663. return 0;
  664. read_lock(&current->fs->lock);
  665. }
  666. nd->mnt = mntget(current->fs->rootmnt);
  667. nd->dentry = dget(current->fs->root);
  668. read_unlock(&current->fs->lock);
  669. return 1;
  670. }
  671. /* SMP-safe */
  672. int path_init(const char *name, unsigned int flags, struct nameidata *nd)
  673. {
  674. nd->last_type = LAST_ROOT; /* if there are only slashes... */
  675. nd->flags = flags;
  676. if (*name=='/')
  677. return walk_init_root(name,nd);
  678. read_lock(&current->fs->lock);
  679. nd->mnt = mntget(current->fs->pwdmnt);
  680. nd->dentry = dget(current->fs->pwd);
  681. read_unlock(&current->fs->lock);
  682. return 1;
  683. }
  684. /*
  685.  * Restricted form of lookup. Doesn't follow links, single-component only,
  686.  * needs parent already locked. Doesn't follow mounts.
  687.  * SMP-safe.
  688.  */
  689. struct dentry * lookup_hash(struct qstr *name, struct dentry * base)
  690. {
  691. struct dentry * dentry;
  692. struct inode *inode;
  693. int err;
  694. inode = base->d_inode;
  695. err = permission(inode, MAY_EXEC);
  696. dentry = ERR_PTR(err);
  697. if (err)
  698. goto out;
  699. /*
  700.  * See if the low-level filesystem might want
  701.  * to use its own hash..
  702.  */
  703. if (base->d_op && base->d_op->d_hash) {
  704. err = base->d_op->d_hash(base, name);
  705. dentry = ERR_PTR(err);
  706. if (err < 0)
  707. goto out;
  708. }
  709. dentry = cached_lookup(base, name, 0);
  710. if (!dentry) {
  711. struct dentry *new = d_alloc(base, name);
  712. dentry = ERR_PTR(-ENOMEM);
  713. if (!new)
  714. goto out;
  715. lock_kernel();
  716. dentry = inode->i_op->lookup(inode, new);
  717. unlock_kernel();
  718. if (!dentry)
  719. dentry = new;
  720. else
  721. dput(new);
  722. }
  723. out:
  724. return dentry;
  725. }
  726. /* SMP-safe */
  727. struct dentry * lookup_one_len(const char * name, struct dentry * base, int len)
  728. {
  729. unsigned long hash;
  730. struct qstr this;
  731. unsigned int c;
  732. this.name = name;
  733. this.len = len;
  734. if (!len)
  735. goto access;
  736. hash = init_name_hash();
  737. while (len--) {
  738. c = *(const unsigned char *)name++;
  739. if (c == '/' || c == '')
  740. goto access;
  741. hash = partial_name_hash(c, hash);
  742. }
  743. this.hash = end_name_hash(hash);
  744. return lookup_hash(&this, base);
  745. access:
  746. return ERR_PTR(-EACCES);
  747. }
  748. /*
  749.  * namei()
  750.  *
  751.  * is used by most simple commands to get the inode of a specified name.
  752.  * Open, link etc use their own routines, but this is enough for things
  753.  * like 'chmod' etc.
  754.  *
  755.  * namei exists in two versions: namei/lnamei. The only difference is
  756.  * that namei follows links, while lnamei does not.
  757.  * SMP-safe
  758.  */
  759. int __user_walk(const char *name, unsigned flags, struct nameidata *nd)
  760. {
  761. char *tmp;
  762. int err;
  763. tmp = getname(name);
  764. err = PTR_ERR(tmp);
  765. if (!IS_ERR(tmp)) {
  766. err = 0;
  767. if (path_init(tmp, flags, nd))
  768. err = path_walk(tmp, nd);
  769. putname(tmp);
  770. }
  771. return err;
  772. }
  773. /*
  774.  * It's inline, so penalty for filesystems that don't use sticky bit is
  775.  * minimal.
  776.  */
  777. static inline int check_sticky(struct inode *dir, struct inode *inode)
  778. {
  779. if (!(dir->i_mode & S_ISVTX))
  780. return 0;
  781. if (inode->i_uid == current->fsuid)
  782. return 0;
  783. if (dir->i_uid == current->fsuid)
  784. return 0;
  785. return !capable(CAP_FOWNER);
  786. }
  787. /*
  788.  * Check whether we can remove a link victim from directory dir, check
  789.  *  whether the type of victim is right.
  790.  *  1. We can't do it if dir is read-only (done in permission())
  791.  *  2. We should have write and exec permissions on dir
  792.  *  3. We can't remove anything from append-only dir
  793.  *  4. We can't do anything with immutable dir (done in permission())
  794.  *  5. If the sticky bit on dir is set we should either
  795.  * a. be owner of dir, or
  796.  * b. be owner of victim, or
  797.  * c. have CAP_FOWNER capability
  798.  *  6. If the victim is append-only or immutable we can't do antyhing with
  799.  *     links pointing to it.
  800.  *  7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
  801.  *  8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
  802.  *  9. We can't remove a root or mountpoint.
  803.  */
  804. static inline int may_delete(struct inode *dir,struct dentry *victim, int isdir)
  805. {
  806. int error;
  807. if (!victim->d_inode || victim->d_parent->d_inode != dir)
  808. return -ENOENT;
  809. error = permission(dir,MAY_WRITE | MAY_EXEC);
  810. if (error)
  811. return error;
  812. if (IS_APPEND(dir))
  813. return -EPERM;
  814. if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
  815.     IS_IMMUTABLE(victim->d_inode))
  816. return -EPERM;
  817. if (isdir) {
  818. if (!S_ISDIR(victim->d_inode->i_mode))
  819. return -ENOTDIR;
  820. if (IS_ROOT(victim))
  821. return -EBUSY;
  822. } else if (S_ISDIR(victim->d_inode->i_mode))
  823. return -EISDIR;
  824. return 0;
  825. }
  826. /* Check whether we can create an object with dentry child in directory
  827.  *  dir.
  828.  *  1. We can't do it if child already exists (open has special treatment for
  829.  *     this case, but since we are inlined it's OK)
  830.  *  2. We can't do it if dir is read-only (done in permission())
  831.  *  3. We should have write and exec permissions on dir
  832.  *  4. We can't do it if dir is immutable (done in permission())
  833.  */
  834. static inline int may_create(struct inode *dir, struct dentry *child) {
  835. if (child->d_inode)
  836. return -EEXIST;
  837. if (IS_DEADDIR(dir))
  838. return -ENOENT;
  839. return permission(dir,MAY_WRITE | MAY_EXEC);
  840. }
  841. /* 
  842.  * Special case: O_CREAT|O_EXCL implies O_NOFOLLOW for security
  843.  * reasons.
  844.  *
  845.  * O_DIRECTORY translates into forcing a directory lookup.
  846.  */
  847. static inline int lookup_flags(unsigned int f)
  848. {
  849. unsigned long retval = LOOKUP_FOLLOW;
  850. if (f & O_NOFOLLOW)
  851. retval &= ~LOOKUP_FOLLOW;
  852. if ((f & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL))
  853. retval &= ~LOOKUP_FOLLOW;
  854. if (f & O_DIRECTORY)
  855. retval |= LOOKUP_DIRECTORY;
  856. return retval;
  857. }
  858. int vfs_create(struct inode *dir, struct dentry *dentry, int mode)
  859. {
  860. int error;
  861. mode &= S_IALLUGO;
  862. mode |= S_IFREG;
  863. down(&dir->i_zombie);
  864. error = may_create(dir, dentry);
  865. if (error)
  866. goto exit_lock;
  867. error = -EACCES; /* shouldn't it be ENOSYS? */
  868. if (!dir->i_op || !dir->i_op->create)
  869. goto exit_lock;
  870. DQUOT_INIT(dir);
  871. lock_kernel();
  872. error = dir->i_op->create(dir, dentry, mode);
  873. unlock_kernel();
  874. exit_lock:
  875. up(&dir->i_zombie);
  876. if (!error)
  877. inode_dir_notify(dir, DN_CREATE);
  878. return error;
  879. }
  880. /*
  881.  * open_namei()
  882.  *
  883.  * namei for open - this is in fact almost the whole open-routine.
  884.  *
  885.  * Note that the low bits of "flag" aren't the same as in the open
  886.  * system call - they are 00 - no permissions needed
  887.  *   01 - read permission needed
  888.  *   10 - write permission needed
  889.  *   11 - read/write permissions needed
  890.  * which is a lot more logical, and also allows the "no perm" needed
  891.  * for symlinks (where the permissions are checked later).
  892.  * SMP-safe
  893.  */
  894. int open_namei(const char * pathname, int flag, int mode, struct nameidata *nd)
  895. {
  896. int acc_mode, error = 0;
  897. struct inode *inode;
  898. struct dentry *dentry;
  899. struct dentry *dir;
  900. int count = 0;
  901. acc_mode = ACC_MODE(flag);
  902. /*
  903.  * The simplest case - just a plain lookup.
  904.  */
  905. if (!(flag & O_CREAT)) {
  906. if (path_init(pathname, lookup_flags(flag), nd))
  907. error = path_walk(pathname, nd);
  908. if (error)
  909. return error;
  910. dentry = nd->dentry;
  911. goto ok;
  912. }
  913. /*
  914.  * Create - we need to know the parent.
  915.  */
  916. if (path_init(pathname, LOOKUP_PARENT, nd))
  917. error = path_walk(pathname, nd);
  918. if (error)
  919. return error;
  920. /*
  921.  * We have the parent and last component. First of all, check
  922.  * that we are not asked to creat(2) an obvious directory - that
  923.  * will not do.
  924.  */
  925. error = -EISDIR;
  926. if (nd->last_type != LAST_NORM || nd->last.name[nd->last.len])
  927. goto exit;
  928. dir = nd->dentry;
  929. down(&dir->d_inode->i_sem);
  930. dentry = lookup_hash(&nd->last, nd->dentry);
  931. do_last:
  932. error = PTR_ERR(dentry);
  933. if (IS_ERR(dentry)) {
  934. up(&dir->d_inode->i_sem);
  935. goto exit;
  936. }
  937. /* Negative dentry, just create the file */
  938. if (!dentry->d_inode) {
  939. error = vfs_create(dir->d_inode, dentry,
  940.    mode & ~current->fs->umask);
  941. up(&dir->d_inode->i_sem);
  942. dput(nd->dentry);
  943. nd->dentry = dentry;
  944. if (error)
  945. goto exit;
  946. /* Don't check for write permission, don't truncate */
  947. acc_mode = 0;
  948. flag &= ~O_TRUNC;
  949. goto ok;
  950. }
  951. /*
  952.  * It already exists.
  953.  */
  954. up(&dir->d_inode->i_sem);
  955. error = -EEXIST;
  956. if (flag & O_EXCL)
  957. goto exit_dput;
  958. if (d_mountpoint(dentry)) {
  959. error = -ELOOP;
  960. if (flag & O_NOFOLLOW)
  961. goto exit_dput;
  962. while (__follow_down(&nd->mnt,&dentry) && d_mountpoint(dentry));
  963. }
  964. error = -ENOENT;
  965. if (!dentry->d_inode)
  966. goto exit_dput;
  967. if (dentry->d_inode->i_op && dentry->d_inode->i_op->follow_link)
  968. goto do_link;
  969. dput(nd->dentry);
  970. nd->dentry = dentry;
  971. error = -EISDIR;
  972. if (dentry->d_inode && S_ISDIR(dentry->d_inode->i_mode))
  973. goto exit;
  974. ok:
  975. error = -ENOENT;
  976. inode = dentry->d_inode;
  977. if (!inode)
  978. goto exit;
  979. error = -ELOOP;
  980. if (S_ISLNK(inode->i_mode))
  981. goto exit;
  982. error = -EISDIR;
  983. if (S_ISDIR(inode->i_mode) && (flag & FMODE_WRITE))
  984. goto exit;
  985. error = permission(inode,acc_mode);
  986. if (error)
  987. goto exit;
  988. /*
  989.  * FIFO's, sockets and device files are special: they don't
  990.  * actually live on the filesystem itself, and as such you
  991.  * can write to them even if the filesystem is read-only.
  992.  */
  993. if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
  994.      flag &= ~O_TRUNC;
  995. } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) {
  996. error = -EACCES;
  997. if (nd->mnt->mnt_flags & MNT_NODEV)
  998. goto exit;
  999. flag &= ~O_TRUNC;
  1000. } else {
  1001. error = -EROFS;
  1002. if (IS_RDONLY(inode) && (flag & 2))
  1003. goto exit;
  1004. }
  1005. /*
  1006.  * An append-only file must be opened in append mode for writing.
  1007.  */
  1008. error = -EPERM;
  1009. if (IS_APPEND(inode)) {
  1010. if  ((flag & FMODE_WRITE) && !(flag & O_APPEND))
  1011. goto exit;
  1012. if (flag & O_TRUNC)
  1013. goto exit;
  1014. }
  1015. /*
  1016.  * Ensure there are no outstanding leases on the file.
  1017.  */
  1018. error = get_lease(inode, flag);
  1019. if (error)
  1020. goto exit;
  1021. if (flag & O_TRUNC) {
  1022. error = get_write_access(inode);
  1023. if (error)
  1024. goto exit;
  1025. /*
  1026.  * Refuse to truncate files with mandatory locks held on them.
  1027.  */
  1028. error = locks_verify_locked(inode);
  1029. if (!error) {
  1030. DQUOT_INIT(inode);
  1031. error = do_truncate(dentry, 0);
  1032. }
  1033. put_write_access(inode);
  1034. if (error)
  1035. goto exit;
  1036. } else
  1037. if (flag & FMODE_WRITE)
  1038. DQUOT_INIT(inode);
  1039. return 0;
  1040. exit_dput:
  1041. dput(dentry);
  1042. exit:
  1043. path_release(nd);
  1044. return error;
  1045. do_link:
  1046. error = -ELOOP;
  1047. if (flag & O_NOFOLLOW)
  1048. goto exit_dput;
  1049. /*
  1050.  * This is subtle. Instead of calling do_follow_link() we do the
  1051.  * thing by hands. The reason is that this way we have zero link_count
  1052.  * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
  1053.  * After that we have the parent and last component, i.e.
  1054.  * we are in the same situation as after the first path_walk().
  1055.  * Well, almost - if the last component is normal we get its copy
  1056.  * stored in nd->last.name and we will have to putname() it when we
  1057.  * are done. Procfs-like symlinks just set LAST_BIND.
  1058.  */
  1059. UPDATE_ATIME(dentry->d_inode);
  1060. error = dentry->d_inode->i_op->follow_link(dentry, nd);
  1061. dput(dentry);
  1062. if (error)
  1063. return error;
  1064. if (nd->last_type == LAST_BIND) {
  1065. dentry = nd->dentry;
  1066. goto ok;
  1067. }
  1068. error = -EISDIR;
  1069. if (nd->last_type != LAST_NORM)
  1070. goto exit;
  1071. if (nd->last.name[nd->last.len]) {
  1072. putname(nd->last.name);
  1073. goto exit;
  1074. }
  1075. error = -ELOOP;
  1076. if (count++==32) {
  1077. putname(nd->last.name);
  1078. goto exit;
  1079. }
  1080. dir = nd->dentry;
  1081. down(&dir->d_inode->i_sem);
  1082. dentry = lookup_hash(&nd->last, nd->dentry);
  1083. putname(nd->last.name);
  1084. goto do_last;
  1085. }
  1086. /* SMP-safe */
  1087. static struct dentry *lookup_create(struct nameidata *nd, int is_dir)
  1088. {
  1089. struct dentry *dentry;
  1090. down(&nd->dentry->d_inode->i_sem);
  1091. dentry = ERR_PTR(-EEXIST);
  1092. if (nd->last_type != LAST_NORM)
  1093. goto fail;
  1094. dentry = lookup_hash(&nd->last, nd->dentry);
  1095. if (IS_ERR(dentry))
  1096. goto fail;
  1097. if (!is_dir && nd->last.name[nd->last.len] && !dentry->d_inode)
  1098. goto enoent;
  1099. return dentry;
  1100. enoent:
  1101. dput(dentry);
  1102. dentry = ERR_PTR(-ENOENT);
  1103. fail:
  1104. return dentry;
  1105. }
  1106. int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
  1107. {
  1108. int error = -EPERM;
  1109. down(&dir->i_zombie);
  1110. if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
  1111. goto exit_lock;
  1112. error = may_create(dir, dentry);
  1113. if (error)
  1114. goto exit_lock;
  1115. error = -EPERM;
  1116. if (!dir->i_op || !dir->i_op->mknod)
  1117. goto exit_lock;
  1118. DQUOT_INIT(dir);
  1119. lock_kernel();
  1120. error = dir->i_op->mknod(dir, dentry, mode, dev);
  1121. unlock_kernel();
  1122. exit_lock:
  1123. up(&dir->i_zombie);
  1124. if (!error)
  1125. inode_dir_notify(dir, DN_CREATE);
  1126. return error;
  1127. }
  1128. asmlinkage long sys_mknod(const char * filename, int mode, dev_t dev)
  1129. {
  1130. int error = 0;
  1131. char * tmp;
  1132. struct dentry * dentry;
  1133. struct nameidata nd;
  1134. if (S_ISDIR(mode))
  1135. return -EPERM;
  1136. tmp = getname(filename);
  1137. if (IS_ERR(tmp))
  1138. return PTR_ERR(tmp);
  1139. if (path_init(tmp, LOOKUP_PARENT, &nd))
  1140. error = path_walk(tmp, &nd);
  1141. if (error)
  1142. goto out;
  1143. dentry = lookup_create(&nd, 0);
  1144. error = PTR_ERR(dentry);
  1145. mode &= ~current->fs->umask;
  1146. if (!IS_ERR(dentry)) {
  1147. switch (mode & S_IFMT) {
  1148. case 0: case S_IFREG:
  1149. error = vfs_create(nd.dentry->d_inode,dentry,mode);
  1150. break;
  1151. case S_IFCHR: case S_IFBLK: case S_IFIFO: case S_IFSOCK:
  1152. error = vfs_mknod(nd.dentry->d_inode,dentry,mode,dev);
  1153. break;
  1154. case S_IFDIR:
  1155. error = -EPERM;
  1156. break;
  1157. default:
  1158. error = -EINVAL;
  1159. }
  1160. dput(dentry);
  1161. }
  1162. up(&nd.dentry->d_inode->i_sem);
  1163. path_release(&nd);
  1164. out:
  1165. putname(tmp);
  1166. return error;
  1167. }
  1168. int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
  1169. {
  1170. int error;
  1171. down(&dir->i_zombie);
  1172. error = may_create(dir, dentry);
  1173. if (error)
  1174. goto exit_lock;
  1175. error = -EPERM;
  1176. if (!dir->i_op || !dir->i_op->mkdir)
  1177. goto exit_lock;
  1178. DQUOT_INIT(dir);
  1179. mode &= (S_IRWXUGO|S_ISVTX);
  1180. lock_kernel();
  1181. error = dir->i_op->mkdir(dir, dentry, mode);
  1182. unlock_kernel();
  1183. exit_lock:
  1184. up(&dir->i_zombie);
  1185. if (!error)
  1186. inode_dir_notify(dir, DN_CREATE);
  1187. return error;
  1188. }
  1189. asmlinkage long sys_mkdir(const char * pathname, int mode)
  1190. {
  1191. int error = 0;
  1192. char * tmp;
  1193. tmp = getname(pathname);
  1194. error = PTR_ERR(tmp);
  1195. if (!IS_ERR(tmp)) {
  1196. struct dentry *dentry;
  1197. struct nameidata nd;
  1198. if (path_init(tmp, LOOKUP_PARENT, &nd))
  1199. error = path_walk(tmp, &nd);
  1200. if (error)
  1201. goto out;
  1202. dentry = lookup_create(&nd, 1);
  1203. error = PTR_ERR(dentry);
  1204. if (!IS_ERR(dentry)) {
  1205. error = vfs_mkdir(nd.dentry->d_inode, dentry,
  1206.   mode & ~current->fs->umask);
  1207. dput(dentry);
  1208. }
  1209. up(&nd.dentry->d_inode->i_sem);
  1210. path_release(&nd);
  1211. out:
  1212. putname(tmp);
  1213. }
  1214. return error;
  1215. }
  1216. /*
  1217.  * We try to drop the dentry early: we should have
  1218.  * a usage count of 2 if we're the only user of this
  1219.  * dentry, and if that is true (possibly after pruning
  1220.  * the dcache), then we drop the dentry now.
  1221.  *
  1222.  * A low-level filesystem can, if it choses, legally
  1223.  * do a
  1224.  *
  1225.  * if (!d_unhashed(dentry))
  1226.  * return -EBUSY;
  1227.  *
  1228.  * if it cannot handle the case of removing a directory
  1229.  * that is still in use by something else..
  1230.  */
  1231. static void d_unhash(struct dentry *dentry)
  1232. {
  1233. dget(dentry);
  1234. switch (atomic_read(&dentry->d_count)) {
  1235. default:
  1236. shrink_dcache_parent(dentry);
  1237. if (atomic_read(&dentry->d_count) != 2)
  1238. break;
  1239. case 2:
  1240. d_drop(dentry);
  1241. }
  1242. }
  1243. int vfs_rmdir(struct inode *dir, struct dentry *dentry)
  1244. {
  1245. int error;
  1246. error = may_delete(dir, dentry, 1);
  1247. if (error)
  1248. return error;
  1249. if (!dir->i_op || !dir->i_op->rmdir)
  1250. return -EPERM;
  1251. DQUOT_INIT(dir);
  1252. double_down(&dir->i_zombie, &dentry->d_inode->i_zombie);
  1253. d_unhash(dentry);
  1254. if (IS_DEADDIR(dir))
  1255. error = -ENOENT;
  1256. else if (d_mountpoint(dentry))
  1257. error = -EBUSY;
  1258. else {
  1259. lock_kernel();
  1260. error = dir->i_op->rmdir(dir, dentry);
  1261. unlock_kernel();
  1262. if (!error)
  1263. dentry->d_inode->i_flags |= S_DEAD;
  1264. }
  1265. double_up(&dir->i_zombie, &dentry->d_inode->i_zombie);
  1266. if (!error) {
  1267. inode_dir_notify(dir, DN_DELETE);
  1268. d_delete(dentry);
  1269. }
  1270. dput(dentry);
  1271. return error;
  1272. }
  1273. asmlinkage long sys_rmdir(const char * pathname)
  1274. {
  1275. int error = 0;
  1276. char * name;
  1277. struct dentry *dentry;
  1278. struct nameidata nd;
  1279. name = getname(pathname);
  1280. if(IS_ERR(name))
  1281. return PTR_ERR(name);
  1282. if (path_init(name, LOOKUP_PARENT, &nd))
  1283. error = path_walk(name, &nd);
  1284. if (error)
  1285. goto exit;
  1286. switch(nd.last_type) {
  1287. case LAST_DOTDOT:
  1288. error = -ENOTEMPTY;
  1289. goto exit1;
  1290. case LAST_DOT:
  1291. error = -EINVAL;
  1292. goto exit1;
  1293. case LAST_ROOT:
  1294. error = -EBUSY;
  1295. goto exit1;
  1296. }
  1297. down(&nd.dentry->d_inode->i_sem);
  1298. dentry = lookup_hash(&nd.last, nd.dentry);
  1299. error = PTR_ERR(dentry);
  1300. if (!IS_ERR(dentry)) {
  1301. error = vfs_rmdir(nd.dentry->d_inode, dentry);
  1302. dput(dentry);
  1303. }
  1304. up(&nd.dentry->d_inode->i_sem);
  1305. exit1:
  1306. path_release(&nd);
  1307. exit:
  1308. putname(name);
  1309. return error;
  1310. }
  1311. int vfs_unlink(struct inode *dir, struct dentry *dentry)
  1312. {
  1313. int error;
  1314. down(&dir->i_zombie);
  1315. error = may_delete(dir, dentry, 0);
  1316. if (!error) {
  1317. error = -EPERM;
  1318. if (dir->i_op && dir->i_op->unlink) {
  1319. DQUOT_INIT(dir);
  1320. if (d_mountpoint(dentry))
  1321. error = -EBUSY;
  1322. else {
  1323. lock_kernel();
  1324. error = dir->i_op->unlink(dir, dentry);
  1325. unlock_kernel();
  1326. if (!error)
  1327. d_delete(dentry);
  1328. }
  1329. }
  1330. }
  1331. up(&dir->i_zombie);
  1332. if (!error)
  1333. inode_dir_notify(dir, DN_DELETE);
  1334. return error;
  1335. }
  1336. asmlinkage long sys_unlink(const char * pathname)
  1337. {
  1338. int error = 0;
  1339. char * name;
  1340. struct dentry *dentry;
  1341. struct nameidata nd;
  1342. name = getname(pathname);
  1343. if(IS_ERR(name))
  1344. return PTR_ERR(name);
  1345. if (path_init(name, LOOKUP_PARENT, &nd))
  1346. error = path_walk(name, &nd);
  1347. if (error)
  1348. goto exit;
  1349. error = -EISDIR;
  1350. if (nd.last_type != LAST_NORM)
  1351. goto exit1;
  1352. down(&nd.dentry->d_inode->i_sem);
  1353. dentry = lookup_hash(&nd.last, nd.dentry);
  1354. error = PTR_ERR(dentry);
  1355. if (!IS_ERR(dentry)) {
  1356. /* Why not before? Because we want correct error value */
  1357. if (nd.last.name[nd.last.len])
  1358. goto slashes;
  1359. error = vfs_unlink(nd.dentry->d_inode, dentry);
  1360. exit2:
  1361. dput(dentry);
  1362. }
  1363. up(&nd.dentry->d_inode->i_sem);
  1364. exit1:
  1365. path_release(&nd);
  1366. exit:
  1367. putname(name);
  1368. return error;
  1369. slashes:
  1370. error = !dentry->d_inode ? -ENOENT :
  1371. S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
  1372. goto exit2;
  1373. }
  1374. int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
  1375. {
  1376. int error;
  1377. down(&dir->i_zombie);
  1378. error = may_create(dir, dentry);
  1379. if (error)
  1380. goto exit_lock;
  1381. error = -EPERM;
  1382. if (!dir->i_op || !dir->i_op->symlink)
  1383. goto exit_lock;
  1384. DQUOT_INIT(dir);
  1385. lock_kernel();
  1386. error = dir->i_op->symlink(dir, dentry, oldname);
  1387. unlock_kernel();
  1388. exit_lock:
  1389. up(&dir->i_zombie);
  1390. if (!error)
  1391. inode_dir_notify(dir, DN_CREATE);
  1392. return error;
  1393. }
  1394. asmlinkage long sys_symlink(const char * oldname, const char * newname)
  1395. {
  1396. int error = 0;
  1397. char * from;
  1398. char * to;
  1399. from = getname(oldname);
  1400. if(IS_ERR(from))
  1401. return PTR_ERR(from);
  1402. to = getname(newname);
  1403. error = PTR_ERR(to);
  1404. if (!IS_ERR(to)) {
  1405. struct dentry *dentry;
  1406. struct nameidata nd;
  1407. if (path_init(to, LOOKUP_PARENT, &nd))
  1408. error = path_walk(to, &nd);
  1409. if (error)
  1410. goto out;
  1411. dentry = lookup_create(&nd, 0);
  1412. error = PTR_ERR(dentry);
  1413. if (!IS_ERR(dentry)) {
  1414. error = vfs_symlink(nd.dentry->d_inode, dentry, from);
  1415. dput(dentry);
  1416. }
  1417. up(&nd.dentry->d_inode->i_sem);
  1418. path_release(&nd);
  1419. out:
  1420. putname(to);
  1421. }
  1422. putname(from);
  1423. return error;
  1424. }
  1425. int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
  1426. {
  1427. struct inode *inode;
  1428. int error;
  1429. down(&dir->i_zombie);
  1430. error = -ENOENT;
  1431. inode = old_dentry->d_inode;
  1432. if (!inode)
  1433. goto exit_lock;
  1434. error = may_create(dir, new_dentry);
  1435. if (error)
  1436. goto exit_lock;
  1437. error = -EXDEV;
  1438. if (dir->i_dev != inode->i_dev)
  1439. goto exit_lock;
  1440. /*
  1441.  * A link to an append-only or immutable file cannot be created.
  1442.  */
  1443. error = -EPERM;
  1444. if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
  1445. goto exit_lock;
  1446. if (!dir->i_op || !dir->i_op->link)
  1447. goto exit_lock;
  1448. DQUOT_INIT(dir);
  1449. lock_kernel();
  1450. error = dir->i_op->link(old_dentry, dir, new_dentry);
  1451. unlock_kernel();
  1452. exit_lock:
  1453. up(&dir->i_zombie);
  1454. if (!error)
  1455. inode_dir_notify(dir, DN_CREATE);
  1456. return error;
  1457. }
  1458. /*
  1459.  * Hardlinks are often used in delicate situations.  We avoid
  1460.  * security-related surprises by not following symlinks on the
  1461.  * newname.  --KAB
  1462.  *
  1463.  * We don't follow them on the oldname either to be compatible
  1464.  * with linux 2.0, and to avoid hard-linking to directories
  1465.  * and other special files.  --ADM
  1466.  */
  1467. asmlinkage long sys_link(const char * oldname, const char * newname)
  1468. {
  1469. int error;
  1470. char * from;
  1471. char * to;
  1472. from = getname(oldname);
  1473. if(IS_ERR(from))
  1474. return PTR_ERR(from);
  1475. to = getname(newname);
  1476. error = PTR_ERR(to);
  1477. if (!IS_ERR(to)) {
  1478. struct dentry *new_dentry;
  1479. struct nameidata nd, old_nd;
  1480. error = 0;
  1481. if (path_init(from, LOOKUP_POSITIVE, &old_nd))
  1482. error = path_walk(from, &old_nd);
  1483. if (error)
  1484. goto exit;
  1485. if (path_init(to, LOOKUP_PARENT, &nd))
  1486. error = path_walk(to, &nd);
  1487. if (error)
  1488. goto out;
  1489. error = -EXDEV;
  1490. if (old_nd.mnt != nd.mnt)
  1491. goto out_release;
  1492. new_dentry = lookup_create(&nd, 0);
  1493. error = PTR_ERR(new_dentry);
  1494. if (!IS_ERR(new_dentry)) {
  1495. error = vfs_link(old_nd.dentry, nd.dentry->d_inode, new_dentry);
  1496. dput(new_dentry);
  1497. }
  1498. up(&nd.dentry->d_inode->i_sem);
  1499. out_release:
  1500. path_release(&nd);
  1501. out:
  1502. path_release(&old_nd);
  1503. exit:
  1504. putname(to);
  1505. }
  1506. putname(from);
  1507. return error;
  1508. }
  1509. /*
  1510.  * The worst of all namespace operations - renaming directory. "Perverted"
  1511.  * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
  1512.  * Problems:
  1513.  * a) we can get into loop creation. Check is done in is_subdir().
  1514.  * b) race potential - two innocent renames can create a loop together.
  1515.  *    That's where 4.4 screws up. Current fix: serialization on
  1516.  *    sb->s_vfs_rename_sem. We might be more accurate, but that's another
  1517.  *    story.
  1518.  * c) we have to lock _three_ objects - parents and victim (if it exists).
  1519.  *    And that - after we got ->i_sem on parents (until then we don't know
  1520.  *    whether the target exists at all, let alone whether it is a directory
  1521.  *    or not). Solution: ->i_zombie. Taken only after ->i_sem. Always taken
  1522.  *    on link creation/removal of any kind. And taken (without ->i_sem) on
  1523.  *    directory that will be removed (both in rmdir() and here).
  1524.  * d) some filesystems don't support opened-but-unlinked directories,
  1525.  *    either because of layout or because they are not ready to deal with
  1526.  *    all cases correctly. The latter will be fixed (taking this sort of
  1527.  *    stuff into VFS), but the former is not going away. Solution: the same
  1528.  *    trick as in rmdir().
  1529.  * e) conversion from fhandle to dentry may come in the wrong moment - when
  1530.  *    we are removing the target. Solution: we will have to grab ->i_zombie
  1531.  *    in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
  1532.  *    ->i_sem on parents, which works but leads to some truely excessive
  1533.  *    locking].
  1534.  */
  1535. int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
  1536.        struct inode *new_dir, struct dentry *new_dentry)
  1537. {
  1538. int error;
  1539. struct inode *target;
  1540. if (old_dentry->d_inode == new_dentry->d_inode)
  1541. return 0;
  1542. error = may_delete(old_dir, old_dentry, 1);
  1543. if (error)
  1544. return error;
  1545. if (new_dir->i_dev != old_dir->i_dev)
  1546. return -EXDEV;
  1547. if (!new_dentry->d_inode)
  1548. error = may_create(new_dir, new_dentry);
  1549. else
  1550. error = may_delete(new_dir, new_dentry, 1);
  1551. if (error)
  1552. return error;
  1553. if (!old_dir->i_op || !old_dir->i_op->rename)
  1554. return -EPERM;
  1555. /*
  1556.  * If we are going to change the parent - check write permissions,
  1557.  * we'll need to flip '..'.
  1558.  */
  1559. if (new_dir != old_dir) {
  1560. error = permission(old_dentry->d_inode, MAY_WRITE);
  1561. }
  1562. if (error)
  1563. return error;
  1564. DQUOT_INIT(old_dir);
  1565. DQUOT_INIT(new_dir);
  1566. down(&old_dir->i_sb->s_vfs_rename_sem);
  1567. error = -EINVAL;
  1568. if (is_subdir(new_dentry, old_dentry))
  1569. goto out_unlock;
  1570. /* Don't eat your daddy, dear... */
  1571. /* This also avoids locking issues */
  1572. if (old_dentry->d_parent == new_dentry)
  1573. goto out_unlock;
  1574. target = new_dentry->d_inode;
  1575. if (target) { /* Hastur! Hastur! Hastur! */
  1576. triple_down(&old_dir->i_zombie,
  1577.     &new_dir->i_zombie,
  1578.     &target->i_zombie);
  1579. d_unhash(new_dentry);
  1580. } else
  1581. double_down(&old_dir->i_zombie,
  1582.     &new_dir->i_zombie);
  1583. if (IS_DEADDIR(old_dir)||IS_DEADDIR(new_dir))
  1584. error = -ENOENT;
  1585. else if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
  1586. error = -EBUSY;
  1587. else 
  1588. error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
  1589. if (target) {
  1590. if (!error)
  1591. target->i_flags |= S_DEAD;
  1592. triple_up(&old_dir->i_zombie,
  1593.   &new_dir->i_zombie,
  1594.   &target->i_zombie);
  1595. if (d_unhashed(new_dentry))
  1596. d_rehash(new_dentry);
  1597. dput(new_dentry);
  1598. } else
  1599. double_up(&old_dir->i_zombie,
  1600.   &new_dir->i_zombie);
  1601. if (!error)
  1602. d_move(old_dentry,new_dentry);
  1603. out_unlock:
  1604. up(&old_dir->i_sb->s_vfs_rename_sem);
  1605. return error;
  1606. }
  1607. int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
  1608.        struct inode *new_dir, struct dentry *new_dentry)
  1609. {
  1610. int error;
  1611. if (old_dentry->d_inode == new_dentry->d_inode)
  1612. return 0;
  1613. error = may_delete(old_dir, old_dentry, 0);
  1614. if (error)
  1615. return error;
  1616. if (new_dir->i_dev != old_dir->i_dev)
  1617. return -EXDEV;
  1618. if (!new_dentry->d_inode)
  1619. error = may_create(new_dir, new_dentry);
  1620. else
  1621. error = may_delete(new_dir, new_dentry, 0);
  1622. if (error)
  1623. return error;
  1624. if (!old_dir->i_op || !old_dir->i_op->rename)
  1625. return -EPERM;
  1626. DQUOT_INIT(old_dir);
  1627. DQUOT_INIT(new_dir);
  1628. double_down(&old_dir->i_zombie, &new_dir->i_zombie);
  1629. if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
  1630. error = -EBUSY;
  1631. else
  1632. error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
  1633. double_up(&old_dir->i_zombie, &new_dir->i_zombie);
  1634. if (error)
  1635. return error;
  1636. /* The following d_move() should become unconditional */
  1637. if (!(old_dir->i_sb->s_type->fs_flags & FS_ODD_RENAME)) {
  1638. d_move(old_dentry, new_dentry);
  1639. }
  1640. return 0;
  1641. }
  1642. int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
  1643.        struct inode *new_dir, struct dentry *new_dentry)
  1644. {
  1645. int error;
  1646. if (S_ISDIR(old_dentry->d_inode->i_mode))
  1647. error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
  1648. else
  1649. error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
  1650. if (!error) {
  1651. if (old_dir == new_dir)
  1652. inode_dir_notify(old_dir, DN_RENAME);
  1653. else {
  1654. inode_dir_notify(old_dir, DN_DELETE);
  1655. inode_dir_notify(new_dir, DN_CREATE);
  1656. }
  1657. }
  1658. return error;
  1659. }
  1660. static inline int do_rename(const char * oldname, const char * newname)
  1661. {
  1662. int error = 0;
  1663. struct dentry * old_dir, * new_dir;
  1664. struct dentry * old_dentry, *new_dentry;
  1665. struct nameidata oldnd, newnd;
  1666. if (path_init(oldname, LOOKUP_PARENT, &oldnd))
  1667. error = path_walk(oldname, &oldnd);
  1668. if (error)
  1669. goto exit;
  1670. if (path_init(newname, LOOKUP_PARENT, &newnd))
  1671. error = path_walk(newname, &newnd);
  1672. if (error)
  1673. goto exit1;
  1674. error = -EXDEV;
  1675. if (oldnd.mnt != newnd.mnt)
  1676. goto exit2;
  1677. old_dir = oldnd.dentry;
  1678. error = -EBUSY;
  1679. if (oldnd.last_type != LAST_NORM)
  1680. goto exit2;
  1681. new_dir = newnd.dentry;
  1682. if (newnd.last_type != LAST_NORM)
  1683. goto exit2;
  1684. double_lock(new_dir, old_dir);
  1685. old_dentry = lookup_hash(&oldnd.last, old_dir);
  1686. error = PTR_ERR(old_dentry);
  1687. if (IS_ERR(old_dentry))
  1688. goto exit3;
  1689. /* source must exist */
  1690. error = -ENOENT;
  1691. if (!old_dentry->d_inode)
  1692. goto exit4;
  1693. /* unless the source is a directory trailing slashes give -ENOTDIR */
  1694. if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
  1695. error = -ENOTDIR;
  1696. if (oldnd.last.name[oldnd.last.len])
  1697. goto exit4;
  1698. if (newnd.last.name[newnd.last.len])
  1699. goto exit4;
  1700. }
  1701. new_dentry = lookup_hash(&newnd.last, new_dir);
  1702. error = PTR_ERR(new_dentry);
  1703. if (IS_ERR(new_dentry))
  1704. goto exit4;
  1705. lock_kernel();
  1706. error = vfs_rename(old_dir->d_inode, old_dentry,
  1707.    new_dir->d_inode, new_dentry);
  1708. unlock_kernel();
  1709. dput(new_dentry);
  1710. exit4:
  1711. dput(old_dentry);
  1712. exit3:
  1713. double_up(&new_dir->d_inode->i_sem, &old_dir->d_inode->i_sem);
  1714. exit2:
  1715. path_release(&newnd);
  1716. exit1:
  1717. path_release(&oldnd);
  1718. exit:
  1719. return error;
  1720. }
  1721. asmlinkage long sys_rename(const char * oldname, const char * newname)
  1722. {
  1723. int error;
  1724. char * from;
  1725. char * to;
  1726. from = getname(oldname);
  1727. if(IS_ERR(from))
  1728. return PTR_ERR(from);
  1729. to = getname(newname);
  1730. error = PTR_ERR(to);
  1731. if (!IS_ERR(to)) {
  1732. error = do_rename(from,to);
  1733. putname(to);
  1734. }
  1735. putname(from);
  1736. return error;
  1737. }
  1738. int vfs_readlink(struct dentry *dentry, char *buffer, int buflen, const char *link)
  1739. {
  1740. int len;
  1741. len = PTR_ERR(link);
  1742. if (IS_ERR(link))
  1743. goto out;
  1744. len = strlen(link);
  1745. if (len > (unsigned) buflen)
  1746. len = buflen;
  1747. if (copy_to_user(buffer, link, len))
  1748. len = -EFAULT;
  1749. out:
  1750. return len;
  1751. }
  1752. static inline int
  1753. __vfs_follow_link(struct nameidata *nd, const char *link)
  1754. {
  1755. int res = 0;
  1756. char *name;
  1757. if (IS_ERR(link))
  1758. goto fail;
  1759. if (*link == '/') {
  1760. path_release(nd);
  1761. if (!walk_init_root(link, nd))
  1762. /* weird __emul_prefix() stuff did it */
  1763. goto out;
  1764. }
  1765. res = link_path_walk(link, nd);
  1766. out:
  1767. if (current->link_count || res || nd->last_type!=LAST_NORM)
  1768. return res;
  1769. /*
  1770.  * If it is an iterative symlinks resolution in open_namei() we
  1771.  * have to copy the last component. And all that crap because of
  1772.  * bloody create() on broken symlinks. Furrfu...
  1773.  */
  1774. name = __getname();
  1775. if (!name)
  1776. return -ENOMEM;
  1777. strcpy(name, nd->last.name);
  1778. nd->last.name = name;
  1779. return 0;
  1780. fail:
  1781. path_release(nd);
  1782. return PTR_ERR(link);
  1783. }
  1784. int vfs_follow_link(struct nameidata *nd, const char *link)
  1785. {
  1786. return __vfs_follow_link(nd, link);
  1787. }
  1788. /* get the link contents into pagecache */
  1789. static char *page_getlink(struct dentry * dentry, struct page **ppage)
  1790. {
  1791. struct page * page;
  1792. struct address_space *mapping = dentry->d_inode->i_mapping;
  1793. page = read_cache_page(mapping, 0, (filler_t *)mapping->a_ops->readpage,
  1794. NULL);
  1795. if (IS_ERR(page))
  1796. goto sync_fail;
  1797. wait_on_page(page);
  1798. if (!Page_Uptodate(page))
  1799. goto async_fail;
  1800. *ppage = page;
  1801. return kmap(page);
  1802. async_fail:
  1803. page_cache_release(page);
  1804. return ERR_PTR(-EIO);
  1805. sync_fail:
  1806. return (char*)page;
  1807. }
  1808. int page_readlink(struct dentry *dentry, char *buffer, int buflen)
  1809. {
  1810. struct page *page = NULL;
  1811. char *s = page_getlink(dentry, &page);
  1812. int res = vfs_readlink(dentry,buffer,buflen,s);
  1813. if (page) {
  1814. kunmap(page);
  1815. page_cache_release(page);
  1816. }
  1817. return res;
  1818. }
  1819. int page_follow_link(struct dentry *dentry, struct nameidata *nd)
  1820. {
  1821. struct page *page = NULL;
  1822. char *s = page_getlink(dentry, &page);
  1823. int res = __vfs_follow_link(nd, s);
  1824. if (page) {
  1825. kunmap(page);
  1826. page_cache_release(page);
  1827. }
  1828. return res;
  1829. }
  1830. struct inode_operations page_symlink_inode_operations = {
  1831. readlink: page_readlink,
  1832. follow_link: page_follow_link,
  1833. };