namei.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:48k
源码类别:

Linux/Unix编程

开发平台:

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. while (d_mountpoint(nd->dentry) && __follow_down(&nd->mnt, &nd->dentry))
  402. ;
  403. }
  404. /*
  405.  * Name resolution.
  406.  *
  407.  * This is the basic name resolution function, turning a pathname
  408.  * into the final dentry.
  409.  *
  410.  * We expect 'base' to be positive and a directory.
  411.  */
  412. int link_path_walk(const char * name, struct nameidata *nd)
  413. {
  414. struct dentry *dentry;
  415. struct inode *inode;
  416. int err;
  417. unsigned int lookup_flags = nd->flags;
  418. while (*name=='/')
  419. name++;
  420. if (!*name)
  421. goto return_reval;
  422. inode = nd->dentry->d_inode;
  423. if (current->link_count)
  424. lookup_flags = LOOKUP_FOLLOW;
  425. /* At this point we know we have a real path component. */
  426. for(;;) {
  427. unsigned long hash;
  428. struct qstr this;
  429. unsigned int c;
  430. err = permission(inode, MAY_EXEC);
  431. dentry = ERR_PTR(err);
  432.   if (err)
  433. break;
  434. this.name = name;
  435. c = *(const unsigned char *)name;
  436. hash = init_name_hash();
  437. do {
  438. name++;
  439. hash = partial_name_hash(c, hash);
  440. c = *(const unsigned char *)name;
  441. } while (c && (c != '/'));
  442. this.len = name - (const char *) this.name;
  443. this.hash = end_name_hash(hash);
  444. /* remove trailing slashes? */
  445. if (!c)
  446. goto last_component;
  447. while (*++name == '/');
  448. if (!*name)
  449. goto last_with_slashes;
  450. /*
  451.  * "." and ".." are special - ".." especially so because it has
  452.  * to be able to know about the current root directory and
  453.  * parent relationships.
  454.  */
  455. if (this.name[0] == '.') switch (this.len) {
  456. default:
  457. break;
  458. case 2:
  459. if (this.name[1] != '.')
  460. break;
  461. follow_dotdot(nd);
  462. inode = nd->dentry->d_inode;
  463. /* fallthrough */
  464. case 1:
  465. continue;
  466. }
  467. /*
  468.  * See if the low-level filesystem might want
  469.  * to use its own hash..
  470.  */
  471. if (nd->dentry->d_op && nd->dentry->d_op->d_hash) {
  472. err = nd->dentry->d_op->d_hash(nd->dentry, &this);
  473. if (err < 0)
  474. break;
  475. }
  476. /* This does the actual lookups.. */
  477. dentry = cached_lookup(nd->dentry, &this, LOOKUP_CONTINUE);
  478. if (!dentry) {
  479. dentry = real_lookup(nd->dentry, &this, LOOKUP_CONTINUE);
  480. err = PTR_ERR(dentry);
  481. if (IS_ERR(dentry))
  482. break;
  483. }
  484. /* Check mountpoints.. */
  485. while (d_mountpoint(dentry) && __follow_down(&nd->mnt, &dentry))
  486. ;
  487. err = -ENOENT;
  488. inode = dentry->d_inode;
  489. if (!inode)
  490. goto out_dput;
  491. err = -ENOTDIR; 
  492. if (!inode->i_op)
  493. goto out_dput;
  494. if (inode->i_op->follow_link) {
  495. err = do_follow_link(dentry, nd);
  496. dput(dentry);
  497. if (err)
  498. goto return_err;
  499. err = -ENOENT;
  500. inode = nd->dentry->d_inode;
  501. if (!inode)
  502. break;
  503. err = -ENOTDIR; 
  504. if (!inode->i_op)
  505. break;
  506. } else {
  507. dput(nd->dentry);
  508. nd->dentry = dentry;
  509. }
  510. err = -ENOTDIR; 
  511. if (!inode->i_op->lookup)
  512. break;
  513. continue;
  514. /* here ends the main loop */
  515. last_with_slashes:
  516. lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
  517. last_component:
  518. if (lookup_flags & LOOKUP_PARENT)
  519. goto lookup_parent;
  520. if (this.name[0] == '.') switch (this.len) {
  521. default:
  522. break;
  523. case 2:
  524. if (this.name[1] != '.')
  525. break;
  526. follow_dotdot(nd);
  527. inode = nd->dentry->d_inode;
  528. /* fallthrough */
  529. case 1:
  530. goto return_reval;
  531. }
  532. if (nd->dentry->d_op && nd->dentry->d_op->d_hash) {
  533. err = nd->dentry->d_op->d_hash(nd->dentry, &this);
  534. if (err < 0)
  535. break;
  536. }
  537. dentry = cached_lookup(nd->dentry, &this, 0);
  538. if (!dentry) {
  539. dentry = real_lookup(nd->dentry, &this, 0);
  540. err = PTR_ERR(dentry);
  541. if (IS_ERR(dentry))
  542. break;
  543. }
  544. while (d_mountpoint(dentry) && __follow_down(&nd->mnt, &dentry))
  545. ;
  546. inode = dentry->d_inode;
  547. if ((lookup_flags & LOOKUP_FOLLOW)
  548.     && inode && inode->i_op && inode->i_op->follow_link) {
  549. err = do_follow_link(dentry, nd);
  550. dput(dentry);
  551. if (err)
  552. goto return_err;
  553. inode = nd->dentry->d_inode;
  554. } else {
  555. dput(nd->dentry);
  556. nd->dentry = dentry;
  557. }
  558. err = -ENOENT;
  559. if (!inode)
  560. goto no_inode;
  561. if (lookup_flags & LOOKUP_DIRECTORY) {
  562. err = -ENOTDIR; 
  563. if (!inode->i_op || !inode->i_op->lookup)
  564. break;
  565. }
  566. goto return_base;
  567. no_inode:
  568. err = -ENOENT;
  569. if (lookup_flags & (LOOKUP_POSITIVE|LOOKUP_DIRECTORY))
  570. break;
  571. goto return_base;
  572. lookup_parent:
  573. nd->last = this;
  574. nd->last_type = LAST_NORM;
  575. if (this.name[0] != '.')
  576. goto return_base;
  577. if (this.len == 1)
  578. nd->last_type = LAST_DOT;
  579. else if (this.len == 2 && this.name[1] == '.')
  580. nd->last_type = LAST_DOTDOT;
  581. return_reval:
  582. /*
  583.  * We bypassed the ordinary revalidation routines.
  584.  * Check the cached dentry for staleness.
  585.  */
  586. dentry = nd->dentry;
  587. if (dentry && dentry->d_op && dentry->d_op->d_revalidate) {
  588. err = -ESTALE;
  589. if (!dentry->d_op->d_revalidate(dentry, 0)) {
  590. d_invalidate(dentry);
  591. break;
  592. }
  593. }
  594. return_base:
  595. return 0;
  596. out_dput:
  597. dput(dentry);
  598. break;
  599. }
  600. path_release(nd);
  601. return_err:
  602. return err;
  603. }
  604. int path_walk(const char * name, struct nameidata *nd)
  605. {
  606. current->total_link_count = 0;
  607. return link_path_walk(name, nd);
  608. }
  609. /* SMP-safe */
  610. /* returns 1 if everything is done */
  611. static int __emul_lookup_dentry(const char *name, struct nameidata *nd)
  612. {
  613. if (path_walk(name, nd))
  614. return 0; /* something went wrong... */
  615. if (!nd->dentry->d_inode || S_ISDIR(nd->dentry->d_inode->i_mode)) {
  616. struct nameidata nd_root;
  617. /*
  618.  * NAME was not found in alternate root or it's a directory.  Try to find
  619.  * it in the normal root:
  620.  */
  621. nd_root.last_type = LAST_ROOT;
  622. nd_root.flags = nd->flags;
  623. read_lock(&current->fs->lock);
  624. nd_root.mnt = mntget(current->fs->rootmnt);
  625. nd_root.dentry = dget(current->fs->root);
  626. read_unlock(&current->fs->lock);
  627. if (path_walk(name, &nd_root))
  628. return 1;
  629. if (nd_root.dentry->d_inode) {
  630. path_release(nd);
  631. nd->dentry = nd_root.dentry;
  632. nd->mnt = nd_root.mnt;
  633. nd->last = nd_root.last;
  634. return 1;
  635. }
  636. path_release(&nd_root);
  637. }
  638. return 1;
  639. }
  640. void set_fs_altroot(void)
  641. {
  642. char *emul = __emul_prefix();
  643. struct nameidata nd;
  644. struct vfsmount *mnt = NULL, *oldmnt;
  645. struct dentry *dentry = NULL, *olddentry;
  646. if (emul) {
  647. read_lock(&current->fs->lock);
  648. nd.mnt = mntget(current->fs->rootmnt);
  649. nd.dentry = dget(current->fs->root);
  650. read_unlock(&current->fs->lock);
  651. nd.flags = LOOKUP_FOLLOW|LOOKUP_DIRECTORY|LOOKUP_POSITIVE;
  652. if (path_walk(emul,&nd) == 0) {
  653. mnt = nd.mnt;
  654. dentry = nd.dentry;
  655. }
  656. }
  657. write_lock(&current->fs->lock);
  658. oldmnt = current->fs->altrootmnt;
  659. olddentry = current->fs->altroot;
  660. current->fs->altrootmnt = mnt;
  661. current->fs->altroot = dentry;
  662. write_unlock(&current->fs->lock);
  663. if (olddentry) {
  664. dput(olddentry);
  665. mntput(oldmnt);
  666. }
  667. }
  668. /* SMP-safe */
  669. static inline int
  670. walk_init_root(const char *name, struct nameidata *nd)
  671. {
  672. read_lock(&current->fs->lock);
  673. if (current->fs->altroot && !(nd->flags & LOOKUP_NOALT)) {
  674. nd->mnt = mntget(current->fs->altrootmnt);
  675. nd->dentry = dget(current->fs->altroot);
  676. read_unlock(&current->fs->lock);
  677. if (__emul_lookup_dentry(name,nd))
  678. return 0;
  679. read_lock(&current->fs->lock);
  680. }
  681. nd->mnt = mntget(current->fs->rootmnt);
  682. nd->dentry = dget(current->fs->root);
  683. read_unlock(&current->fs->lock);
  684. return 1;
  685. }
  686. /* SMP-safe */
  687. int path_lookup(const char *path, unsigned flags, struct nameidata *nd)
  688. {
  689. int error = 0;
  690. if (path_init(path, flags, nd))
  691. error = path_walk(path, nd);
  692. return error;
  693. }
  694. /* SMP-safe */
  695. int path_init(const char *name, unsigned int flags, struct nameidata *nd)
  696. {
  697. nd->last_type = LAST_ROOT; /* if there are only slashes... */
  698. nd->flags = flags;
  699. if (*name=='/')
  700. return walk_init_root(name,nd);
  701. read_lock(&current->fs->lock);
  702. nd->mnt = mntget(current->fs->pwdmnt);
  703. nd->dentry = dget(current->fs->pwd);
  704. read_unlock(&current->fs->lock);
  705. return 1;
  706. }
  707. /*
  708.  * Restricted form of lookup. Doesn't follow links, single-component only,
  709.  * needs parent already locked. Doesn't follow mounts.
  710.  * SMP-safe.
  711.  */
  712. struct dentry * lookup_hash(struct qstr *name, struct dentry * base)
  713. {
  714. struct dentry * dentry;
  715. struct inode *inode;
  716. int err;
  717. inode = base->d_inode;
  718. err = permission(inode, MAY_EXEC);
  719. dentry = ERR_PTR(err);
  720. if (err)
  721. goto out;
  722. /*
  723.  * See if the low-level filesystem might want
  724.  * to use its own hash..
  725.  */
  726. if (base->d_op && base->d_op->d_hash) {
  727. err = base->d_op->d_hash(base, name);
  728. dentry = ERR_PTR(err);
  729. if (err < 0)
  730. goto out;
  731. }
  732. dentry = cached_lookup(base, name, 0);
  733. if (!dentry) {
  734. struct dentry *new = d_alloc(base, name);
  735. dentry = ERR_PTR(-ENOMEM);
  736. if (!new)
  737. goto out;
  738. lock_kernel();
  739. dentry = inode->i_op->lookup(inode, new);
  740. unlock_kernel();
  741. if (!dentry)
  742. dentry = new;
  743. else
  744. dput(new);
  745. }
  746. out:
  747. return dentry;
  748. }
  749. /* SMP-safe */
  750. struct dentry * lookup_one_len(const char * name, struct dentry * base, int len)
  751. {
  752. unsigned long hash;
  753. struct qstr this;
  754. unsigned int c;
  755. this.name = name;
  756. this.len = len;
  757. if (!len)
  758. goto access;
  759. hash = init_name_hash();
  760. while (len--) {
  761. c = *(const unsigned char *)name++;
  762. if (c == '/' || c == '')
  763. goto access;
  764. hash = partial_name_hash(c, hash);
  765. }
  766. this.hash = end_name_hash(hash);
  767. return lookup_hash(&this, base);
  768. access:
  769. return ERR_PTR(-EACCES);
  770. }
  771. /*
  772.  * namei()
  773.  *
  774.  * is used by most simple commands to get the inode of a specified name.
  775.  * Open, link etc use their own routines, but this is enough for things
  776.  * like 'chmod' etc.
  777.  *
  778.  * namei exists in two versions: namei/lnamei. The only difference is
  779.  * that namei follows links, while lnamei does not.
  780.  * SMP-safe
  781.  */
  782. int __user_walk(const char *name, unsigned flags, struct nameidata *nd)
  783. {
  784. char *tmp;
  785. int err;
  786. tmp = getname(name);
  787. err = PTR_ERR(tmp);
  788. if (!IS_ERR(tmp)) {
  789. err = 0;
  790. err = path_lookup(tmp, flags, nd);
  791. putname(tmp);
  792. }
  793. return err;
  794. }
  795. /*
  796.  * It's inline, so penalty for filesystems that don't use sticky bit is
  797.  * minimal.
  798.  */
  799. static inline int check_sticky(struct inode *dir, struct inode *inode)
  800. {
  801. if (!(dir->i_mode & S_ISVTX))
  802. return 0;
  803. if (inode->i_uid == current->fsuid)
  804. return 0;
  805. if (dir->i_uid == current->fsuid)
  806. return 0;
  807. return !capable(CAP_FOWNER);
  808. }
  809. /*
  810.  * Check whether we can remove a link victim from directory dir, check
  811.  *  whether the type of victim is right.
  812.  *  1. We can't do it if dir is read-only (done in permission())
  813.  *  2. We should have write and exec permissions on dir
  814.  *  3. We can't remove anything from append-only dir
  815.  *  4. We can't do anything with immutable dir (done in permission())
  816.  *  5. If the sticky bit on dir is set we should either
  817.  * a. be owner of dir, or
  818.  * b. be owner of victim, or
  819.  * c. have CAP_FOWNER capability
  820.  *  6. If the victim is append-only or immutable we can't do antyhing with
  821.  *     links pointing to it.
  822.  *  7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
  823.  *  8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
  824.  *  9. We can't remove a root or mountpoint.
  825.  */
  826. static inline int may_delete(struct inode *dir,struct dentry *victim, int isdir)
  827. {
  828. int error;
  829. if (!victim->d_inode || victim->d_parent->d_inode != dir)
  830. return -ENOENT;
  831. error = permission(dir,MAY_WRITE | MAY_EXEC);
  832. if (error)
  833. return error;
  834. if (IS_APPEND(dir))
  835. return -EPERM;
  836. if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
  837.     IS_IMMUTABLE(victim->d_inode))
  838. return -EPERM;
  839. if (isdir) {
  840. if (!S_ISDIR(victim->d_inode->i_mode))
  841. return -ENOTDIR;
  842. if (IS_ROOT(victim))
  843. return -EBUSY;
  844. } else if (S_ISDIR(victim->d_inode->i_mode))
  845. return -EISDIR;
  846. if (IS_DEADDIR(dir))
  847. return -ENOENT;
  848. return 0;
  849. }
  850. /* Check whether we can create an object with dentry child in directory
  851.  *  dir.
  852.  *  1. We can't do it if child already exists (open has special treatment for
  853.  *     this case, but since we are inlined it's OK)
  854.  *  2. We can't do it if dir is read-only (done in permission())
  855.  *  3. We should have write and exec permissions on dir
  856.  *  4. We can't do it if dir is immutable (done in permission())
  857.  */
  858. static inline int may_create(struct inode *dir, struct dentry *child) {
  859. if (child->d_inode)
  860. return -EEXIST;
  861. if (IS_DEADDIR(dir))
  862. return -ENOENT;
  863. return permission(dir,MAY_WRITE | MAY_EXEC);
  864. }
  865. /* 
  866.  * Special case: O_CREAT|O_EXCL implies O_NOFOLLOW for security
  867.  * reasons.
  868.  *
  869.  * O_DIRECTORY translates into forcing a directory lookup.
  870.  */
  871. static inline int lookup_flags(unsigned int f)
  872. {
  873. unsigned long retval = LOOKUP_FOLLOW;
  874. if (f & O_NOFOLLOW)
  875. retval &= ~LOOKUP_FOLLOW;
  876. if ((f & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL))
  877. retval &= ~LOOKUP_FOLLOW;
  878. if (f & O_DIRECTORY)
  879. retval |= LOOKUP_DIRECTORY;
  880. return retval;
  881. }
  882. int vfs_create(struct inode *dir, struct dentry *dentry, int mode)
  883. {
  884. int error;
  885. mode &= S_IALLUGO;
  886. mode |= S_IFREG;
  887. down(&dir->i_zombie);
  888. error = may_create(dir, dentry);
  889. if (error)
  890. goto exit_lock;
  891. error = -EACCES; /* shouldn't it be ENOSYS? */
  892. if (!dir->i_op || !dir->i_op->create)
  893. goto exit_lock;
  894. DQUOT_INIT(dir);
  895. lock_kernel();
  896. error = dir->i_op->create(dir, dentry, mode);
  897. unlock_kernel();
  898. exit_lock:
  899. up(&dir->i_zombie);
  900. if (!error)
  901. inode_dir_notify(dir, DN_CREATE);
  902. return error;
  903. }
  904. /*
  905.  * open_namei()
  906.  *
  907.  * namei for open - this is in fact almost the whole open-routine.
  908.  *
  909.  * Note that the low bits of "flag" aren't the same as in the open
  910.  * system call - they are 00 - no permissions needed
  911.  *   01 - read permission needed
  912.  *   10 - write permission needed
  913.  *   11 - read/write permissions needed
  914.  * which is a lot more logical, and also allows the "no perm" needed
  915.  * for symlinks (where the permissions are checked later).
  916.  * SMP-safe
  917.  */
  918. int open_namei(const char * pathname, int flag, int mode, struct nameidata *nd)
  919. {
  920. int acc_mode, error = 0;
  921. struct inode *inode;
  922. struct dentry *dentry;
  923. struct dentry *dir;
  924. int count = 0;
  925. acc_mode = ACC_MODE(flag);
  926. /*
  927.  * The simplest case - just a plain lookup.
  928.  */
  929. if (!(flag & O_CREAT)) {
  930. error = path_lookup(pathname, lookup_flags(flag), nd);
  931. if (error)
  932. return error;
  933. dentry = nd->dentry;
  934. goto ok;
  935. }
  936. /*
  937.  * Create - we need to know the parent.
  938.  */
  939. error = path_lookup(pathname, LOOKUP_PARENT, nd);
  940. if (error)
  941. return error;
  942. /*
  943.  * We have the parent and last component. First of all, check
  944.  * that we are not asked to creat(2) an obvious directory - that
  945.  * will not do.
  946.  */
  947. error = -EISDIR;
  948. if (nd->last_type != LAST_NORM || nd->last.name[nd->last.len])
  949. goto exit;
  950. dir = nd->dentry;
  951. down(&dir->d_inode->i_sem);
  952. dentry = lookup_hash(&nd->last, nd->dentry);
  953. do_last:
  954. error = PTR_ERR(dentry);
  955. if (IS_ERR(dentry)) {
  956. up(&dir->d_inode->i_sem);
  957. goto exit;
  958. }
  959. /* Negative dentry, just create the file */
  960. if (!dentry->d_inode) {
  961. error = vfs_create(dir->d_inode, dentry,
  962.    mode & ~current->fs->umask);
  963. up(&dir->d_inode->i_sem);
  964. dput(nd->dentry);
  965. nd->dentry = dentry;
  966. if (error)
  967. goto exit;
  968. /* Don't check for write permission, don't truncate */
  969. acc_mode = 0;
  970. flag &= ~O_TRUNC;
  971. goto ok;
  972. }
  973. /*
  974.  * It already exists.
  975.  */
  976. up(&dir->d_inode->i_sem);
  977. error = -EEXIST;
  978. if (flag & O_EXCL)
  979. goto exit_dput;
  980. if (d_mountpoint(dentry)) {
  981. error = -ELOOP;
  982. if (flag & O_NOFOLLOW)
  983. goto exit_dput;
  984. while (__follow_down(&nd->mnt,&dentry) && d_mountpoint(dentry));
  985. }
  986. error = -ENOENT;
  987. if (!dentry->d_inode)
  988. goto exit_dput;
  989. if (dentry->d_inode->i_op && dentry->d_inode->i_op->follow_link)
  990. goto do_link;
  991. dput(nd->dentry);
  992. nd->dentry = dentry;
  993. error = -EISDIR;
  994. if (dentry->d_inode && S_ISDIR(dentry->d_inode->i_mode))
  995. goto exit;
  996. ok:
  997. error = -ENOENT;
  998. inode = dentry->d_inode;
  999. if (!inode)
  1000. goto exit;
  1001. error = -ELOOP;
  1002. if (S_ISLNK(inode->i_mode))
  1003. goto exit;
  1004. error = -EISDIR;
  1005. if (S_ISDIR(inode->i_mode) && (flag & FMODE_WRITE))
  1006. goto exit;
  1007. error = permission(inode,acc_mode);
  1008. if (error)
  1009. goto exit;
  1010. /*
  1011.  * FIFO's, sockets and device files are special: they don't
  1012.  * actually live on the filesystem itself, and as such you
  1013.  * can write to them even if the filesystem is read-only.
  1014.  */
  1015. if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
  1016.      flag &= ~O_TRUNC;
  1017. } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) {
  1018. error = -EACCES;
  1019. if (nd->mnt->mnt_flags & MNT_NODEV)
  1020. goto exit;
  1021. flag &= ~O_TRUNC;
  1022. } else {
  1023. error = -EROFS;
  1024. if (IS_RDONLY(inode) && (flag & 2))
  1025. goto exit;
  1026. }
  1027. /*
  1028.  * An append-only file must be opened in append mode for writing.
  1029.  */
  1030. error = -EPERM;
  1031. if (IS_APPEND(inode)) {
  1032. if  ((flag & FMODE_WRITE) && !(flag & O_APPEND))
  1033. goto exit;
  1034. if (flag & O_TRUNC)
  1035. goto exit;
  1036. }
  1037. /*
  1038.  * Ensure there are no outstanding leases on the file.
  1039.  */
  1040. error = get_lease(inode, flag);
  1041. if (error)
  1042. goto exit;
  1043. if (flag & O_TRUNC) {
  1044. error = get_write_access(inode);
  1045. if (error)
  1046. goto exit;
  1047. /*
  1048.  * Refuse to truncate files with mandatory locks held on them.
  1049.  */
  1050. error = locks_verify_locked(inode);
  1051. if (!error) {
  1052. DQUOT_INIT(inode);
  1053. error = do_truncate(dentry, 0);
  1054. }
  1055. put_write_access(inode);
  1056. if (error)
  1057. goto exit;
  1058. } else
  1059. if (flag & FMODE_WRITE)
  1060. DQUOT_INIT(inode);
  1061. return 0;
  1062. exit_dput:
  1063. dput(dentry);
  1064. exit:
  1065. path_release(nd);
  1066. return error;
  1067. do_link:
  1068. error = -ELOOP;
  1069. if (flag & O_NOFOLLOW)
  1070. goto exit_dput;
  1071. /*
  1072.  * This is subtle. Instead of calling do_follow_link() we do the
  1073.  * thing by hands. The reason is that this way we have zero link_count
  1074.  * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
  1075.  * After that we have the parent and last component, i.e.
  1076.  * we are in the same situation as after the first path_walk().
  1077.  * Well, almost - if the last component is normal we get its copy
  1078.  * stored in nd->last.name and we will have to putname() it when we
  1079.  * are done. Procfs-like symlinks just set LAST_BIND.
  1080.  */
  1081. UPDATE_ATIME(dentry->d_inode);
  1082. error = dentry->d_inode->i_op->follow_link(dentry, nd);
  1083. dput(dentry);
  1084. if (error)
  1085. return error;
  1086. if (nd->last_type == LAST_BIND) {
  1087. dentry = nd->dentry;
  1088. goto ok;
  1089. }
  1090. error = -EISDIR;
  1091. if (nd->last_type != LAST_NORM)
  1092. goto exit;
  1093. if (nd->last.name[nd->last.len]) {
  1094. putname(nd->last.name);
  1095. goto exit;
  1096. }
  1097. error = -ELOOP;
  1098. if (count++==32) {
  1099. putname(nd->last.name);
  1100. goto exit;
  1101. }
  1102. dir = nd->dentry;
  1103. down(&dir->d_inode->i_sem);
  1104. dentry = lookup_hash(&nd->last, nd->dentry);
  1105. putname(nd->last.name);
  1106. goto do_last;
  1107. }
  1108. /* SMP-safe */
  1109. static struct dentry *lookup_create(struct nameidata *nd, int is_dir)
  1110. {
  1111. struct dentry *dentry;
  1112. down(&nd->dentry->d_inode->i_sem);
  1113. dentry = ERR_PTR(-EEXIST);
  1114. if (nd->last_type != LAST_NORM)
  1115. goto fail;
  1116. dentry = lookup_hash(&nd->last, nd->dentry);
  1117. if (IS_ERR(dentry))
  1118. goto fail;
  1119. if (!is_dir && nd->last.name[nd->last.len] && !dentry->d_inode)
  1120. goto enoent;
  1121. return dentry;
  1122. enoent:
  1123. dput(dentry);
  1124. dentry = ERR_PTR(-ENOENT);
  1125. fail:
  1126. return dentry;
  1127. }
  1128. int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
  1129. {
  1130. int error = -EPERM;
  1131. down(&dir->i_zombie);
  1132. if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
  1133. goto exit_lock;
  1134. error = may_create(dir, dentry);
  1135. if (error)
  1136. goto exit_lock;
  1137. error = -EPERM;
  1138. if (!dir->i_op || !dir->i_op->mknod)
  1139. goto exit_lock;
  1140. DQUOT_INIT(dir);
  1141. lock_kernel();
  1142. error = dir->i_op->mknod(dir, dentry, mode, dev);
  1143. unlock_kernel();
  1144. exit_lock:
  1145. up(&dir->i_zombie);
  1146. if (!error)
  1147. inode_dir_notify(dir, DN_CREATE);
  1148. return error;
  1149. }
  1150. asmlinkage long sys_mknod(const char * filename, int mode, dev_t dev)
  1151. {
  1152. int error = 0;
  1153. char * tmp;
  1154. struct dentry * dentry;
  1155. struct nameidata nd;
  1156. if (S_ISDIR(mode))
  1157. return -EPERM;
  1158. tmp = getname(filename);
  1159. if (IS_ERR(tmp))
  1160. return PTR_ERR(tmp);
  1161. error = path_lookup(tmp, LOOKUP_PARENT, &nd);
  1162. if (error)
  1163. goto out;
  1164. dentry = lookup_create(&nd, 0);
  1165. error = PTR_ERR(dentry);
  1166. mode &= ~current->fs->umask;
  1167. if (!IS_ERR(dentry)) {
  1168. switch (mode & S_IFMT) {
  1169. case 0: case S_IFREG:
  1170. error = vfs_create(nd.dentry->d_inode,dentry,mode);
  1171. break;
  1172. case S_IFCHR: case S_IFBLK: case S_IFIFO: case S_IFSOCK:
  1173. error = vfs_mknod(nd.dentry->d_inode,dentry,mode,dev);
  1174. break;
  1175. case S_IFDIR:
  1176. error = -EPERM;
  1177. break;
  1178. default:
  1179. error = -EINVAL;
  1180. }
  1181. dput(dentry);
  1182. }
  1183. up(&nd.dentry->d_inode->i_sem);
  1184. path_release(&nd);
  1185. out:
  1186. putname(tmp);
  1187. return error;
  1188. }
  1189. int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
  1190. {
  1191. int error;
  1192. down(&dir->i_zombie);
  1193. error = may_create(dir, dentry);
  1194. if (error)
  1195. goto exit_lock;
  1196. error = -EPERM;
  1197. if (!dir->i_op || !dir->i_op->mkdir)
  1198. goto exit_lock;
  1199. DQUOT_INIT(dir);
  1200. mode &= (S_IRWXUGO|S_ISVTX);
  1201. lock_kernel();
  1202. error = dir->i_op->mkdir(dir, dentry, mode);
  1203. unlock_kernel();
  1204. exit_lock:
  1205. up(&dir->i_zombie);
  1206. if (!error)
  1207. inode_dir_notify(dir, DN_CREATE);
  1208. return error;
  1209. }
  1210. asmlinkage long sys_mkdir(const char * pathname, int mode)
  1211. {
  1212. int error = 0;
  1213. char * tmp;
  1214. tmp = getname(pathname);
  1215. error = PTR_ERR(tmp);
  1216. if (!IS_ERR(tmp)) {
  1217. struct dentry *dentry;
  1218. struct nameidata nd;
  1219. error = path_lookup(tmp, LOOKUP_PARENT, &nd);
  1220. if (error)
  1221. goto out;
  1222. dentry = lookup_create(&nd, 1);
  1223. error = PTR_ERR(dentry);
  1224. if (!IS_ERR(dentry)) {
  1225. error = vfs_mkdir(nd.dentry->d_inode, dentry,
  1226.   mode & ~current->fs->umask);
  1227. dput(dentry);
  1228. }
  1229. up(&nd.dentry->d_inode->i_sem);
  1230. path_release(&nd);
  1231. out:
  1232. putname(tmp);
  1233. }
  1234. return error;
  1235. }
  1236. /*
  1237.  * We try to drop the dentry early: we should have
  1238.  * a usage count of 2 if we're the only user of this
  1239.  * dentry, and if that is true (possibly after pruning
  1240.  * the dcache), then we drop the dentry now.
  1241.  *
  1242.  * A low-level filesystem can, if it choses, legally
  1243.  * do a
  1244.  *
  1245.  * if (!d_unhashed(dentry))
  1246.  * return -EBUSY;
  1247.  *
  1248.  * if it cannot handle the case of removing a directory
  1249.  * that is still in use by something else..
  1250.  */
  1251. static void d_unhash(struct dentry *dentry)
  1252. {
  1253. dget(dentry);
  1254. spin_lock(&dcache_lock);
  1255. switch (atomic_read(&dentry->d_count)) {
  1256. default:
  1257. spin_unlock(&dcache_lock);
  1258. shrink_dcache_parent(dentry);
  1259. spin_lock(&dcache_lock);
  1260. if (atomic_read(&dentry->d_count) != 2)
  1261. break;
  1262. case 2:
  1263. list_del_init(&dentry->d_hash);
  1264. }
  1265. spin_unlock(&dcache_lock);
  1266. }
  1267. int vfs_rmdir(struct inode *dir, struct dentry *dentry)
  1268. {
  1269. int error;
  1270. error = may_delete(dir, dentry, 1);
  1271. if (error)
  1272. return error;
  1273. if (!dir->i_op || !dir->i_op->rmdir)
  1274. return -EPERM;
  1275. DQUOT_INIT(dir);
  1276. double_down(&dir->i_zombie, &dentry->d_inode->i_zombie);
  1277. d_unhash(dentry);
  1278. if (d_mountpoint(dentry))
  1279. error = -EBUSY;
  1280. else {
  1281. lock_kernel();
  1282. error = dir->i_op->rmdir(dir, dentry);
  1283. unlock_kernel();
  1284. if (!error)
  1285. dentry->d_inode->i_flags |= S_DEAD;
  1286. }
  1287. double_up(&dir->i_zombie, &dentry->d_inode->i_zombie);
  1288. if (!error) {
  1289. inode_dir_notify(dir, DN_DELETE);
  1290. d_delete(dentry);
  1291. }
  1292. dput(dentry);
  1293. return error;
  1294. }
  1295. asmlinkage long sys_rmdir(const char * pathname)
  1296. {
  1297. int error = 0;
  1298. char * name;
  1299. struct dentry *dentry;
  1300. struct nameidata nd;
  1301. name = getname(pathname);
  1302. if(IS_ERR(name))
  1303. return PTR_ERR(name);
  1304. error = path_lookup(name, LOOKUP_PARENT, &nd);
  1305. if (error)
  1306. goto exit;
  1307. switch(nd.last_type) {
  1308. case LAST_DOTDOT:
  1309. error = -ENOTEMPTY;
  1310. goto exit1;
  1311. case LAST_DOT:
  1312. error = -EINVAL;
  1313. goto exit1;
  1314. case LAST_ROOT:
  1315. error = -EBUSY;
  1316. goto exit1;
  1317. }
  1318. down(&nd.dentry->d_inode->i_sem);
  1319. dentry = lookup_hash(&nd.last, nd.dentry);
  1320. error = PTR_ERR(dentry);
  1321. if (!IS_ERR(dentry)) {
  1322. error = vfs_rmdir(nd.dentry->d_inode, dentry);
  1323. dput(dentry);
  1324. }
  1325. up(&nd.dentry->d_inode->i_sem);
  1326. exit1:
  1327. path_release(&nd);
  1328. exit:
  1329. putname(name);
  1330. return error;
  1331. }
  1332. int vfs_unlink(struct inode *dir, struct dentry *dentry)
  1333. {
  1334. int error;
  1335. down(&dir->i_zombie);
  1336. error = may_delete(dir, dentry, 0);
  1337. if (!error) {
  1338. error = -EPERM;
  1339. if (dir->i_op && dir->i_op->unlink) {
  1340. DQUOT_INIT(dir);
  1341. if (d_mountpoint(dentry))
  1342. error = -EBUSY;
  1343. else {
  1344. lock_kernel();
  1345. error = dir->i_op->unlink(dir, dentry);
  1346. unlock_kernel();
  1347. if (!error)
  1348. d_delete(dentry);
  1349. }
  1350. }
  1351. }
  1352. up(&dir->i_zombie);
  1353. if (!error)
  1354. inode_dir_notify(dir, DN_DELETE);
  1355. return error;
  1356. }
  1357. asmlinkage long sys_unlink(const char * pathname)
  1358. {
  1359. int error = 0;
  1360. char * name;
  1361. struct dentry *dentry;
  1362. struct nameidata nd;
  1363. name = getname(pathname);
  1364. if(IS_ERR(name))
  1365. return PTR_ERR(name);
  1366. error = path_lookup(name, LOOKUP_PARENT, &nd);
  1367. if (error)
  1368. goto exit;
  1369. error = -EISDIR;
  1370. if (nd.last_type != LAST_NORM)
  1371. goto exit1;
  1372. down(&nd.dentry->d_inode->i_sem);
  1373. dentry = lookup_hash(&nd.last, nd.dentry);
  1374. error = PTR_ERR(dentry);
  1375. if (!IS_ERR(dentry)) {
  1376. /* Why not before? Because we want correct error value */
  1377. if (nd.last.name[nd.last.len])
  1378. goto slashes;
  1379. error = vfs_unlink(nd.dentry->d_inode, dentry);
  1380. exit2:
  1381. dput(dentry);
  1382. }
  1383. up(&nd.dentry->d_inode->i_sem);
  1384. exit1:
  1385. path_release(&nd);
  1386. exit:
  1387. putname(name);
  1388. return error;
  1389. slashes:
  1390. error = !dentry->d_inode ? -ENOENT :
  1391. S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
  1392. goto exit2;
  1393. }
  1394. int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
  1395. {
  1396. int error;
  1397. down(&dir->i_zombie);
  1398. error = may_create(dir, dentry);
  1399. if (error)
  1400. goto exit_lock;
  1401. error = -EPERM;
  1402. if (!dir->i_op || !dir->i_op->symlink)
  1403. goto exit_lock;
  1404. DQUOT_INIT(dir);
  1405. lock_kernel();
  1406. error = dir->i_op->symlink(dir, dentry, oldname);
  1407. unlock_kernel();
  1408. exit_lock:
  1409. up(&dir->i_zombie);
  1410. if (!error)
  1411. inode_dir_notify(dir, DN_CREATE);
  1412. return error;
  1413. }
  1414. asmlinkage long sys_symlink(const char * oldname, const char * newname)
  1415. {
  1416. int error = 0;
  1417. char * from;
  1418. char * to;
  1419. from = getname(oldname);
  1420. if(IS_ERR(from))
  1421. return PTR_ERR(from);
  1422. to = getname(newname);
  1423. error = PTR_ERR(to);
  1424. if (!IS_ERR(to)) {
  1425. struct dentry *dentry;
  1426. struct nameidata nd;
  1427. error = path_lookup(to, LOOKUP_PARENT, &nd);
  1428. if (error)
  1429. goto out;
  1430. dentry = lookup_create(&nd, 0);
  1431. error = PTR_ERR(dentry);
  1432. if (!IS_ERR(dentry)) {
  1433. error = vfs_symlink(nd.dentry->d_inode, dentry, from);
  1434. dput(dentry);
  1435. }
  1436. up(&nd.dentry->d_inode->i_sem);
  1437. path_release(&nd);
  1438. out:
  1439. putname(to);
  1440. }
  1441. putname(from);
  1442. return error;
  1443. }
  1444. int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
  1445. {
  1446. struct inode *inode;
  1447. int error;
  1448. down(&dir->i_zombie);
  1449. error = -ENOENT;
  1450. inode = old_dentry->d_inode;
  1451. if (!inode)
  1452. goto exit_lock;
  1453. error = may_create(dir, new_dentry);
  1454. if (error)
  1455. goto exit_lock;
  1456. error = -EXDEV;
  1457. if (dir->i_dev != inode->i_dev)
  1458. goto exit_lock;
  1459. /*
  1460.  * A link to an append-only or immutable file cannot be created.
  1461.  */
  1462. error = -EPERM;
  1463. if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
  1464. goto exit_lock;
  1465. if (!dir->i_op || !dir->i_op->link)
  1466. goto exit_lock;
  1467. DQUOT_INIT(dir);
  1468. lock_kernel();
  1469. error = dir->i_op->link(old_dentry, dir, new_dentry);
  1470. unlock_kernel();
  1471. exit_lock:
  1472. up(&dir->i_zombie);
  1473. if (!error)
  1474. inode_dir_notify(dir, DN_CREATE);
  1475. return error;
  1476. }
  1477. /*
  1478.  * Hardlinks are often used in delicate situations.  We avoid
  1479.  * security-related surprises by not following symlinks on the
  1480.  * newname.  --KAB
  1481.  *
  1482.  * We don't follow them on the oldname either to be compatible
  1483.  * with linux 2.0, and to avoid hard-linking to directories
  1484.  * and other special files.  --ADM
  1485.  */
  1486. asmlinkage long sys_link(const char * oldname, const char * newname)
  1487. {
  1488. int error;
  1489. char * to;
  1490. to = getname(newname);
  1491. error = PTR_ERR(to);
  1492. if (!IS_ERR(to)) {
  1493. struct dentry *new_dentry;
  1494. struct nameidata nd, old_nd;
  1495. error = __user_walk(oldname, LOOKUP_POSITIVE, &old_nd);
  1496. if (error)
  1497. goto exit;
  1498. error = path_lookup(to, LOOKUP_PARENT, &nd);
  1499. if (error)
  1500. goto out;
  1501. error = -EXDEV;
  1502. if (old_nd.mnt != nd.mnt)
  1503. goto out_release;
  1504. new_dentry = lookup_create(&nd, 0);
  1505. error = PTR_ERR(new_dentry);
  1506. if (!IS_ERR(new_dentry)) {
  1507. error = vfs_link(old_nd.dentry, nd.dentry->d_inode, new_dentry);
  1508. dput(new_dentry);
  1509. }
  1510. up(&nd.dentry->d_inode->i_sem);
  1511. out_release:
  1512. path_release(&nd);
  1513. out:
  1514. path_release(&old_nd);
  1515. exit:
  1516. putname(to);
  1517. }
  1518. return error;
  1519. }
  1520. /*
  1521.  * The worst of all namespace operations - renaming directory. "Perverted"
  1522.  * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
  1523.  * Problems:
  1524.  * a) we can get into loop creation. Check is done in is_subdir().
  1525.  * b) race potential - two innocent renames can create a loop together.
  1526.  *    That's where 4.4 screws up. Current fix: serialization on
  1527.  *    sb->s_vfs_rename_sem. We might be more accurate, but that's another
  1528.  *    story.
  1529.  * c) we have to lock _three_ objects - parents and victim (if it exists).
  1530.  *    And that - after we got ->i_sem on parents (until then we don't know
  1531.  *    whether the target exists at all, let alone whether it is a directory
  1532.  *    or not). Solution: ->i_zombie. Taken only after ->i_sem. Always taken
  1533.  *    on link creation/removal of any kind. And taken (without ->i_sem) on
  1534.  *    directory that will be removed (both in rmdir() and here).
  1535.  * d) some filesystems don't support opened-but-unlinked directories,
  1536.  *    either because of layout or because they are not ready to deal with
  1537.  *    all cases correctly. The latter will be fixed (taking this sort of
  1538.  *    stuff into VFS), but the former is not going away. Solution: the same
  1539.  *    trick as in rmdir().
  1540.  * e) conversion from fhandle to dentry may come in the wrong moment - when
  1541.  *    we are removing the target. Solution: we will have to grab ->i_zombie
  1542.  *    in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
  1543.  *    ->i_sem on parents, which works but leads to some truely excessive
  1544.  *    locking].
  1545.  */
  1546. int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
  1547.        struct inode *new_dir, struct dentry *new_dentry)
  1548. {
  1549. int error;
  1550. struct inode *target;
  1551. if (old_dentry->d_inode == new_dentry->d_inode)
  1552. return 0;
  1553. error = may_delete(old_dir, old_dentry, 1);
  1554. if (error)
  1555. return error;
  1556. if (new_dir->i_dev != old_dir->i_dev)
  1557. return -EXDEV;
  1558. if (!new_dentry->d_inode)
  1559. error = may_create(new_dir, new_dentry);
  1560. else
  1561. error = may_delete(new_dir, new_dentry, 1);
  1562. if (error)
  1563. return error;
  1564. if (!old_dir->i_op || !old_dir->i_op->rename)
  1565. return -EPERM;
  1566. /*
  1567.  * If we are going to change the parent - check write permissions,
  1568.  * we'll need to flip '..'.
  1569.  */
  1570. if (new_dir != old_dir) {
  1571. error = permission(old_dentry->d_inode, MAY_WRITE);
  1572. }
  1573. if (error)
  1574. return error;
  1575. DQUOT_INIT(old_dir);
  1576. DQUOT_INIT(new_dir);
  1577. down(&old_dir->i_sb->s_vfs_rename_sem);
  1578. error = -EINVAL;
  1579. if (is_subdir(new_dentry, old_dentry))
  1580. goto out_unlock;
  1581. /* Don't eat your daddy, dear... */
  1582. /* This also avoids locking issues */
  1583. if (old_dentry->d_parent == new_dentry)
  1584. goto out_unlock;
  1585. target = new_dentry->d_inode;
  1586. if (target) { /* Hastur! Hastur! Hastur! */
  1587. triple_down(&old_dir->i_zombie,
  1588.     &new_dir->i_zombie,
  1589.     &target->i_zombie);
  1590. d_unhash(new_dentry);
  1591. } else
  1592. double_down(&old_dir->i_zombie,
  1593.     &new_dir->i_zombie);
  1594. if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
  1595. error = -EBUSY;
  1596. else 
  1597. error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
  1598. if (target) {
  1599. if (!error)
  1600. target->i_flags |= S_DEAD;
  1601. triple_up(&old_dir->i_zombie,
  1602.   &new_dir->i_zombie,
  1603.   &target->i_zombie);
  1604. if (d_unhashed(new_dentry))
  1605. d_rehash(new_dentry);
  1606. dput(new_dentry);
  1607. } else
  1608. double_up(&old_dir->i_zombie,
  1609.   &new_dir->i_zombie);
  1610. if (!error)
  1611. d_move(old_dentry,new_dentry);
  1612. out_unlock:
  1613. up(&old_dir->i_sb->s_vfs_rename_sem);
  1614. return error;
  1615. }
  1616. int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
  1617.        struct inode *new_dir, struct dentry *new_dentry)
  1618. {
  1619. int error;
  1620. if (old_dentry->d_inode == new_dentry->d_inode)
  1621. return 0;
  1622. error = may_delete(old_dir, old_dentry, 0);
  1623. if (error)
  1624. return error;
  1625. if (new_dir->i_dev != old_dir->i_dev)
  1626. return -EXDEV;
  1627. if (!new_dentry->d_inode)
  1628. error = may_create(new_dir, new_dentry);
  1629. else
  1630. error = may_delete(new_dir, new_dentry, 0);
  1631. if (error)
  1632. return error;
  1633. if (!old_dir->i_op || !old_dir->i_op->rename)
  1634. return -EPERM;
  1635. DQUOT_INIT(old_dir);
  1636. DQUOT_INIT(new_dir);
  1637. double_down(&old_dir->i_zombie, &new_dir->i_zombie);
  1638. if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
  1639. error = -EBUSY;
  1640. else
  1641. error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
  1642. double_up(&old_dir->i_zombie, &new_dir->i_zombie);
  1643. if (error)
  1644. return error;
  1645. /* The following d_move() should become unconditional */
  1646. if (!(old_dir->i_sb->s_type->fs_flags & FS_ODD_RENAME)) {
  1647. d_move(old_dentry, new_dentry);
  1648. }
  1649. return 0;
  1650. }
  1651. int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
  1652.        struct inode *new_dir, struct dentry *new_dentry)
  1653. {
  1654. int error;
  1655. if (S_ISDIR(old_dentry->d_inode->i_mode))
  1656. error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
  1657. else
  1658. error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
  1659. if (!error) {
  1660. if (old_dir == new_dir)
  1661. inode_dir_notify(old_dir, DN_RENAME);
  1662. else {
  1663. inode_dir_notify(old_dir, DN_DELETE);
  1664. inode_dir_notify(new_dir, DN_CREATE);
  1665. }
  1666. }
  1667. return error;
  1668. }
  1669. static inline int do_rename(const char * oldname, const char * newname)
  1670. {
  1671. int error = 0;
  1672. struct dentry * old_dir, * new_dir;
  1673. struct dentry * old_dentry, *new_dentry;
  1674. struct nameidata oldnd, newnd;
  1675. error = path_lookup(oldname, LOOKUP_PARENT, &oldnd);
  1676. if (error)
  1677. goto exit;
  1678. error = path_lookup(newname, LOOKUP_PARENT, &newnd);
  1679. if (error)
  1680. goto exit1;
  1681. error = -EXDEV;
  1682. if (oldnd.mnt != newnd.mnt)
  1683. goto exit2;
  1684. old_dir = oldnd.dentry;
  1685. error = -EBUSY;
  1686. if (oldnd.last_type != LAST_NORM)
  1687. goto exit2;
  1688. new_dir = newnd.dentry;
  1689. if (newnd.last_type != LAST_NORM)
  1690. goto exit2;
  1691. double_lock(new_dir, old_dir);
  1692. old_dentry = lookup_hash(&oldnd.last, old_dir);
  1693. error = PTR_ERR(old_dentry);
  1694. if (IS_ERR(old_dentry))
  1695. goto exit3;
  1696. /* source must exist */
  1697. error = -ENOENT;
  1698. if (!old_dentry->d_inode)
  1699. goto exit4;
  1700. /* unless the source is a directory trailing slashes give -ENOTDIR */
  1701. if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
  1702. error = -ENOTDIR;
  1703. if (oldnd.last.name[oldnd.last.len])
  1704. goto exit4;
  1705. if (newnd.last.name[newnd.last.len])
  1706. goto exit4;
  1707. }
  1708. new_dentry = lookup_hash(&newnd.last, new_dir);
  1709. error = PTR_ERR(new_dentry);
  1710. if (IS_ERR(new_dentry))
  1711. goto exit4;
  1712. lock_kernel();
  1713. error = vfs_rename(old_dir->d_inode, old_dentry,
  1714.    new_dir->d_inode, new_dentry);
  1715. unlock_kernel();
  1716. dput(new_dentry);
  1717. exit4:
  1718. dput(old_dentry);
  1719. exit3:
  1720. double_up(&new_dir->d_inode->i_sem, &old_dir->d_inode->i_sem);
  1721. exit2:
  1722. path_release(&newnd);
  1723. exit1:
  1724. path_release(&oldnd);
  1725. exit:
  1726. return error;
  1727. }
  1728. asmlinkage long sys_rename(const char * oldname, const char * newname)
  1729. {
  1730. int error;
  1731. char * from;
  1732. char * to;
  1733. from = getname(oldname);
  1734. if(IS_ERR(from))
  1735. return PTR_ERR(from);
  1736. to = getname(newname);
  1737. error = PTR_ERR(to);
  1738. if (!IS_ERR(to)) {
  1739. error = do_rename(from,to);
  1740. putname(to);
  1741. }
  1742. putname(from);
  1743. return error;
  1744. }
  1745. int vfs_readlink(struct dentry *dentry, char *buffer, int buflen, const char *link)
  1746. {
  1747. int len;
  1748. len = PTR_ERR(link);
  1749. if (IS_ERR(link))
  1750. goto out;
  1751. len = strlen(link);
  1752. if (len > (unsigned) buflen)
  1753. len = buflen;
  1754. if (copy_to_user(buffer, link, len))
  1755. len = -EFAULT;
  1756. out:
  1757. return len;
  1758. }
  1759. static inline int
  1760. __vfs_follow_link(struct nameidata *nd, const char *link)
  1761. {
  1762. int res = 0;
  1763. char *name;
  1764. if (IS_ERR(link))
  1765. goto fail;
  1766. if (*link == '/') {
  1767. path_release(nd);
  1768. if (!walk_init_root(link, nd))
  1769. /* weird __emul_prefix() stuff did it */
  1770. goto out;
  1771. }
  1772. res = link_path_walk(link, nd);
  1773. out:
  1774. if (current->link_count || res || nd->last_type!=LAST_NORM)
  1775. return res;
  1776. /*
  1777.  * If it is an iterative symlinks resolution in open_namei() we
  1778.  * have to copy the last component. And all that crap because of
  1779.  * bloody create() on broken symlinks. Furrfu...
  1780.  */
  1781. name = __getname();
  1782. if (!name)
  1783. return -ENOMEM;
  1784. strcpy(name, nd->last.name);
  1785. nd->last.name = name;
  1786. return 0;
  1787. fail:
  1788. path_release(nd);
  1789. return PTR_ERR(link);
  1790. }
  1791. int vfs_follow_link(struct nameidata *nd, const char *link)
  1792. {
  1793. return __vfs_follow_link(nd, link);
  1794. }
  1795. /* get the link contents into pagecache */
  1796. static char *page_getlink(struct dentry * dentry, struct page **ppage)
  1797. {
  1798. struct page * page;
  1799. struct address_space *mapping = dentry->d_inode->i_mapping;
  1800. page = read_cache_page(mapping, 0, (filler_t *)mapping->a_ops->readpage,
  1801. NULL);
  1802. if (IS_ERR(page))
  1803. goto sync_fail;
  1804. wait_on_page(page);
  1805. if (!Page_Uptodate(page))
  1806. goto async_fail;
  1807. *ppage = page;
  1808. return kmap(page);
  1809. async_fail:
  1810. page_cache_release(page);
  1811. return ERR_PTR(-EIO);
  1812. sync_fail:
  1813. return (char*)page;
  1814. }
  1815. int page_readlink(struct dentry *dentry, char *buffer, int buflen)
  1816. {
  1817. struct page *page = NULL;
  1818. char *s = page_getlink(dentry, &page);
  1819. int res = vfs_readlink(dentry,buffer,buflen,s);
  1820. if (page) {
  1821. kunmap(page);
  1822. page_cache_release(page);
  1823. }
  1824. return res;
  1825. }
  1826. int page_follow_link(struct dentry *dentry, struct nameidata *nd)
  1827. {
  1828. struct page *page = NULL;
  1829. char *s = page_getlink(dentry, &page);
  1830. int res = __vfs_follow_link(nd, s);
  1831. if (page) {
  1832. kunmap(page);
  1833. page_cache_release(page);
  1834. }
  1835. return res;
  1836. }
  1837. struct inode_operations page_symlink_inode_operations = {
  1838. readlink: page_readlink,
  1839. follow_link: page_follow_link,
  1840. };