namei.c 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496
  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/module.h>
  16. #include <linux/slab.h>
  17. #include <linux/fs.h>
  18. #include <linux/namei.h>
  19. #include <linux/quotaops.h>
  20. #include <linux/pagemap.h>
  21. #include <linux/fsnotify.h>
  22. #include <linux/smp_lock.h>
  23. #include <linux/personality.h>
  24. #include <linux/security.h>
  25. #include <linux/syscalls.h>
  26. #include <linux/mount.h>
  27. #include <linux/audit.h>
  28. #include <asm/namei.h>
  29. #include <asm/uaccess.h>
  30. #define ACC_MODE(x) ("\000\004\002\006"[(x)&O_ACCMODE])
  31. /* [Feb-1997 T. Schoebel-Theuer]
  32. * Fundamental changes in the pathname lookup mechanisms (namei)
  33. * were necessary because of omirr. The reason is that omirr needs
  34. * to know the _real_ pathname, not the user-supplied one, in case
  35. * of symlinks (and also when transname replacements occur).
  36. *
  37. * The new code replaces the old recursive symlink resolution with
  38. * an iterative one (in case of non-nested symlink chains). It does
  39. * this with calls to <fs>_follow_link().
  40. * As a side effect, dir_namei(), _namei() and follow_link() are now
  41. * replaced with a single function lookup_dentry() that can handle all
  42. * the special cases of the former code.
  43. *
  44. * With the new dcache, the pathname is stored at each inode, at least as
  45. * long as the refcount of the inode is positive. As a side effect, the
  46. * size of the dcache depends on the inode cache and thus is dynamic.
  47. *
  48. * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
  49. * resolution to correspond with current state of the code.
  50. *
  51. * Note that the symlink resolution is not *completely* iterative.
  52. * There is still a significant amount of tail- and mid- recursion in
  53. * the algorithm. Also, note that <fs>_readlink() is not used in
  54. * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
  55. * may return different results than <fs>_follow_link(). Many virtual
  56. * filesystems (including /proc) exhibit this behavior.
  57. */
  58. /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
  59. * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
  60. * and the name already exists in form of a symlink, try to create the new
  61. * name indicated by the symlink. The old code always complained that the
  62. * name already exists, due to not following the symlink even if its target
  63. * is nonexistent. The new semantics affects also mknod() and link() when
  64. * the name is a symlink pointing to a non-existant name.
  65. *
  66. * I don't know which semantics is the right one, since I have no access
  67. * to standards. But I found by trial that HP-UX 9.0 has the full "new"
  68. * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
  69. * "old" one. Personally, I think the new semantics is much more logical.
  70. * Note that "ln old new" where "new" is a symlink pointing to a non-existing
  71. * file does succeed in both HP-UX and SunOs, but not in Solaris
  72. * and in the old Linux semantics.
  73. */
  74. /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
  75. * semantics. See the comments in "open_namei" and "do_link" below.
  76. *
  77. * [10-Sep-98 Alan Modra] Another symlink change.
  78. */
  79. /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
  80. * inside the path - always follow.
  81. * in the last component in creation/removal/renaming - never follow.
  82. * if LOOKUP_FOLLOW passed - follow.
  83. * if the pathname has trailing slashes - follow.
  84. * otherwise - don't follow.
  85. * (applied in that order).
  86. *
  87. * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
  88. * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
  89. * During the 2.4 we need to fix the userland stuff depending on it -
  90. * hopefully we will be able to get rid of that wart in 2.5. So far only
  91. * XEmacs seems to be relying on it...
  92. */
  93. /*
  94. * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
  95. * implemented. Let's see if raised priority of ->s_vfs_rename_sem gives
  96. * any extra contention...
  97. */
  98. /* In order to reduce some races, while at the same time doing additional
  99. * checking and hopefully speeding things up, we copy filenames to the
  100. * kernel data space before using them..
  101. *
  102. * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
  103. * PATH_MAX includes the nul terminator --RR.
  104. */
  105. static inline int do_getname(const char __user *filename, char *page)
  106. {
  107. int retval;
  108. unsigned long len = PATH_MAX;
  109. if (!segment_eq(get_fs(), KERNEL_DS)) {
  110. if ((unsigned long) filename >= TASK_SIZE)
  111. return -EFAULT;
  112. if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
  113. len = TASK_SIZE - (unsigned long) filename;
  114. }
  115. retval = strncpy_from_user(page, filename, len);
  116. if (retval > 0) {
  117. if (retval < len)
  118. return 0;
  119. return -ENAMETOOLONG;
  120. } else if (!retval)
  121. retval = -ENOENT;
  122. return retval;
  123. }
  124. char * getname(const char __user * filename)
  125. {
  126. char *tmp, *result;
  127. result = ERR_PTR(-ENOMEM);
  128. tmp = __getname();
  129. if (tmp) {
  130. int retval = do_getname(filename, tmp);
  131. result = tmp;
  132. if (retval < 0) {
  133. __putname(tmp);
  134. result = ERR_PTR(retval);
  135. }
  136. }
  137. audit_getname(result);
  138. return result;
  139. }
  140. #ifdef CONFIG_AUDITSYSCALL
  141. void putname(const char *name)
  142. {
  143. if (unlikely(current->audit_context))
  144. audit_putname(name);
  145. else
  146. __putname(name);
  147. }
  148. EXPORT_SYMBOL(putname);
  149. #endif
  150. /**
  151. * generic_permission - check for access rights on a Posix-like filesystem
  152. * @inode: inode to check access rights for
  153. * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
  154. * @check_acl: optional callback to check for Posix ACLs
  155. *
  156. * Used to check for read/write/execute permissions on a file.
  157. * We use "fsuid" for this, letting us set arbitrary permissions
  158. * for filesystem access without changing the "normal" uids which
  159. * are used for other things..
  160. */
  161. int generic_permission(struct inode *inode, int mask,
  162. int (*check_acl)(struct inode *inode, int mask))
  163. {
  164. umode_t mode = inode->i_mode;
  165. if (current->fsuid == inode->i_uid)
  166. mode >>= 6;
  167. else {
  168. if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
  169. int error = check_acl(inode, mask);
  170. if (error == -EACCES)
  171. goto check_capabilities;
  172. else if (error != -EAGAIN)
  173. return error;
  174. }
  175. if (in_group_p(inode->i_gid))
  176. mode >>= 3;
  177. }
  178. /*
  179. * If the DACs are ok we don't need any capability check.
  180. */
  181. if (((mode & mask & (MAY_READ|MAY_WRITE|MAY_EXEC)) == mask))
  182. return 0;
  183. check_capabilities:
  184. /*
  185. * Read/write DACs are always overridable.
  186. * Executable DACs are overridable if at least one exec bit is set.
  187. */
  188. if (!(mask & MAY_EXEC) ||
  189. (inode->i_mode & S_IXUGO) || S_ISDIR(inode->i_mode))
  190. if (capable(CAP_DAC_OVERRIDE))
  191. return 0;
  192. /*
  193. * Searching includes executable on directories, else just read.
  194. */
  195. if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
  196. if (capable(CAP_DAC_READ_SEARCH))
  197. return 0;
  198. return -EACCES;
  199. }
  200. int permission(struct inode *inode, int mask, struct nameidata *nd)
  201. {
  202. int retval, submask;
  203. if (mask & MAY_WRITE) {
  204. umode_t mode = inode->i_mode;
  205. /*
  206. * Nobody gets write access to a read-only fs.
  207. */
  208. if (IS_RDONLY(inode) &&
  209. (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
  210. return -EROFS;
  211. /*
  212. * Nobody gets write access to an immutable file.
  213. */
  214. if (IS_IMMUTABLE(inode))
  215. return -EACCES;
  216. }
  217. /* Ordinary permission routines do not understand MAY_APPEND. */
  218. submask = mask & ~MAY_APPEND;
  219. if (inode->i_op && inode->i_op->permission)
  220. retval = inode->i_op->permission(inode, submask, nd);
  221. else
  222. retval = generic_permission(inode, submask, NULL);
  223. if (retval)
  224. return retval;
  225. return security_inode_permission(inode, mask, nd);
  226. }
  227. /*
  228. * get_write_access() gets write permission for a file.
  229. * put_write_access() releases this write permission.
  230. * This is used for regular files.
  231. * We cannot support write (and maybe mmap read-write shared) accesses and
  232. * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
  233. * can have the following values:
  234. * 0: no writers, no VM_DENYWRITE mappings
  235. * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
  236. * > 0: (i_writecount) users are writing to the file.
  237. *
  238. * Normally we operate on that counter with atomic_{inc,dec} and it's safe
  239. * except for the cases where we don't hold i_writecount yet. Then we need to
  240. * use {get,deny}_write_access() - these functions check the sign and refuse
  241. * to do the change if sign is wrong. Exclusion between them is provided by
  242. * the inode->i_lock spinlock.
  243. */
  244. int get_write_access(struct inode * inode)
  245. {
  246. spin_lock(&inode->i_lock);
  247. if (atomic_read(&inode->i_writecount) < 0) {
  248. spin_unlock(&inode->i_lock);
  249. return -ETXTBSY;
  250. }
  251. atomic_inc(&inode->i_writecount);
  252. spin_unlock(&inode->i_lock);
  253. return 0;
  254. }
  255. int deny_write_access(struct file * file)
  256. {
  257. struct inode *inode = file->f_dentry->d_inode;
  258. spin_lock(&inode->i_lock);
  259. if (atomic_read(&inode->i_writecount) > 0) {
  260. spin_unlock(&inode->i_lock);
  261. return -ETXTBSY;
  262. }
  263. atomic_dec(&inode->i_writecount);
  264. spin_unlock(&inode->i_lock);
  265. return 0;
  266. }
  267. void path_release(struct nameidata *nd)
  268. {
  269. dput(nd->dentry);
  270. mntput(nd->mnt);
  271. }
  272. /*
  273. * umount() mustn't call path_release()/mntput() as that would clear
  274. * mnt_expiry_mark
  275. */
  276. void path_release_on_umount(struct nameidata *nd)
  277. {
  278. dput(nd->dentry);
  279. mntput_no_expire(nd->mnt);
  280. }
  281. /*
  282. * Internal lookup() using the new generic dcache.
  283. * SMP-safe
  284. */
  285. static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
  286. {
  287. struct dentry * dentry = __d_lookup(parent, name);
  288. /* lockess __d_lookup may fail due to concurrent d_move()
  289. * in some unrelated directory, so try with d_lookup
  290. */
  291. if (!dentry)
  292. dentry = d_lookup(parent, name);
  293. if (dentry && dentry->d_op && dentry->d_op->d_revalidate) {
  294. if (!dentry->d_op->d_revalidate(dentry, nd) && !d_invalidate(dentry)) {
  295. dput(dentry);
  296. dentry = NULL;
  297. }
  298. }
  299. return dentry;
  300. }
  301. /*
  302. * Short-cut version of permission(), for calling by
  303. * path_walk(), when dcache lock is held. Combines parts
  304. * of permission() and generic_permission(), and tests ONLY for
  305. * MAY_EXEC permission.
  306. *
  307. * If appropriate, check DAC only. If not appropriate, or
  308. * short-cut DAC fails, then call permission() to do more
  309. * complete permission check.
  310. */
  311. static inline int exec_permission_lite(struct inode *inode,
  312. struct nameidata *nd)
  313. {
  314. umode_t mode = inode->i_mode;
  315. if (inode->i_op && inode->i_op->permission)
  316. return -EAGAIN;
  317. if (current->fsuid == inode->i_uid)
  318. mode >>= 6;
  319. else if (in_group_p(inode->i_gid))
  320. mode >>= 3;
  321. if (mode & MAY_EXEC)
  322. goto ok;
  323. if ((inode->i_mode & S_IXUGO) && capable(CAP_DAC_OVERRIDE))
  324. goto ok;
  325. if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_OVERRIDE))
  326. goto ok;
  327. if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_READ_SEARCH))
  328. goto ok;
  329. return -EACCES;
  330. ok:
  331. return security_inode_permission(inode, MAY_EXEC, nd);
  332. }
  333. /*
  334. * This is called when everything else fails, and we actually have
  335. * to go to the low-level filesystem to find out what we should do..
  336. *
  337. * We get the directory semaphore, and after getting that we also
  338. * make sure that nobody added the entry to the dcache in the meantime..
  339. * SMP-safe
  340. */
  341. static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
  342. {
  343. struct dentry * result;
  344. struct inode *dir = parent->d_inode;
  345. down(&dir->i_sem);
  346. /*
  347. * First re-do the cached lookup just in case it was created
  348. * while we waited for the directory semaphore..
  349. *
  350. * FIXME! This could use version numbering or similar to
  351. * avoid unnecessary cache lookups.
  352. *
  353. * The "dcache_lock" is purely to protect the RCU list walker
  354. * from concurrent renames at this point (we mustn't get false
  355. * negatives from the RCU list walk here, unlike the optimistic
  356. * fast walk).
  357. *
  358. * so doing d_lookup() (with seqlock), instead of lockfree __d_lookup
  359. */
  360. result = d_lookup(parent, name);
  361. if (!result) {
  362. struct dentry * dentry = d_alloc(parent, name);
  363. result = ERR_PTR(-ENOMEM);
  364. if (dentry) {
  365. result = dir->i_op->lookup(dir, dentry, nd);
  366. if (result)
  367. dput(dentry);
  368. else
  369. result = dentry;
  370. }
  371. up(&dir->i_sem);
  372. return result;
  373. }
  374. /*
  375. * Uhhuh! Nasty case: the cache was re-populated while
  376. * we waited on the semaphore. Need to revalidate.
  377. */
  378. up(&dir->i_sem);
  379. if (result->d_op && result->d_op->d_revalidate) {
  380. if (!result->d_op->d_revalidate(result, nd) && !d_invalidate(result)) {
  381. dput(result);
  382. result = ERR_PTR(-ENOENT);
  383. }
  384. }
  385. return result;
  386. }
  387. static int __emul_lookup_dentry(const char *, struct nameidata *);
  388. /* SMP-safe */
  389. static inline int
  390. walk_init_root(const char *name, struct nameidata *nd)
  391. {
  392. read_lock(&current->fs->lock);
  393. if (current->fs->altroot && !(nd->flags & LOOKUP_NOALT)) {
  394. nd->mnt = mntget(current->fs->altrootmnt);
  395. nd->dentry = dget(current->fs->altroot);
  396. read_unlock(&current->fs->lock);
  397. if (__emul_lookup_dentry(name,nd))
  398. return 0;
  399. read_lock(&current->fs->lock);
  400. }
  401. nd->mnt = mntget(current->fs->rootmnt);
  402. nd->dentry = dget(current->fs->root);
  403. read_unlock(&current->fs->lock);
  404. return 1;
  405. }
  406. static inline int __vfs_follow_link(struct nameidata *nd, const char *link)
  407. {
  408. int res = 0;
  409. char *name;
  410. if (IS_ERR(link))
  411. goto fail;
  412. if (*link == '/') {
  413. path_release(nd);
  414. if (!walk_init_root(link, nd))
  415. /* weird __emul_prefix() stuff did it */
  416. goto out;
  417. }
  418. res = link_path_walk(link, nd);
  419. out:
  420. if (nd->depth || res || nd->last_type!=LAST_NORM)
  421. return res;
  422. /*
  423. * If it is an iterative symlinks resolution in open_namei() we
  424. * have to copy the last component. And all that crap because of
  425. * bloody create() on broken symlinks. Furrfu...
  426. */
  427. name = __getname();
  428. if (unlikely(!name)) {
  429. path_release(nd);
  430. return -ENOMEM;
  431. }
  432. strcpy(name, nd->last.name);
  433. nd->last.name = name;
  434. return 0;
  435. fail:
  436. path_release(nd);
  437. return PTR_ERR(link);
  438. }
  439. struct path {
  440. struct vfsmount *mnt;
  441. struct dentry *dentry;
  442. };
  443. static inline int __do_follow_link(struct path *path, struct nameidata *nd)
  444. {
  445. int error;
  446. struct dentry *dentry = path->dentry;
  447. touch_atime(path->mnt, dentry);
  448. nd_set_link(nd, NULL);
  449. if (path->mnt == nd->mnt)
  450. mntget(path->mnt);
  451. error = dentry->d_inode->i_op->follow_link(dentry, nd);
  452. if (!error) {
  453. char *s = nd_get_link(nd);
  454. if (s)
  455. error = __vfs_follow_link(nd, s);
  456. if (dentry->d_inode->i_op->put_link)
  457. dentry->d_inode->i_op->put_link(dentry, nd);
  458. }
  459. dput(dentry);
  460. mntput(path->mnt);
  461. return error;
  462. }
  463. /*
  464. * This limits recursive symlink follows to 8, while
  465. * limiting consecutive symlinks to 40.
  466. *
  467. * Without that kind of total limit, nasty chains of consecutive
  468. * symlinks can cause almost arbitrarily long lookups.
  469. */
  470. static inline int do_follow_link(struct path *path, struct nameidata *nd)
  471. {
  472. int err = -ELOOP;
  473. if (current->link_count >= MAX_NESTED_LINKS)
  474. goto loop;
  475. if (current->total_link_count >= 40)
  476. goto loop;
  477. BUG_ON(nd->depth >= MAX_NESTED_LINKS);
  478. cond_resched();
  479. err = security_inode_follow_link(path->dentry, nd);
  480. if (err)
  481. goto loop;
  482. current->link_count++;
  483. current->total_link_count++;
  484. nd->depth++;
  485. err = __do_follow_link(path, nd);
  486. current->link_count--;
  487. nd->depth--;
  488. return err;
  489. loop:
  490. dput(path->dentry);
  491. if (path->mnt != nd->mnt)
  492. mntput(path->mnt);
  493. path_release(nd);
  494. return err;
  495. }
  496. int follow_up(struct vfsmount **mnt, struct dentry **dentry)
  497. {
  498. struct vfsmount *parent;
  499. struct dentry *mountpoint;
  500. spin_lock(&vfsmount_lock);
  501. parent=(*mnt)->mnt_parent;
  502. if (parent == *mnt) {
  503. spin_unlock(&vfsmount_lock);
  504. return 0;
  505. }
  506. mntget(parent);
  507. mountpoint=dget((*mnt)->mnt_mountpoint);
  508. spin_unlock(&vfsmount_lock);
  509. dput(*dentry);
  510. *dentry = mountpoint;
  511. mntput(*mnt);
  512. *mnt = parent;
  513. return 1;
  514. }
  515. /* no need for dcache_lock, as serialization is taken care in
  516. * namespace.c
  517. */
  518. static int __follow_mount(struct path *path)
  519. {
  520. int res = 0;
  521. while (d_mountpoint(path->dentry)) {
  522. struct vfsmount *mounted = lookup_mnt(path->mnt, path->dentry);
  523. if (!mounted)
  524. break;
  525. dput(path->dentry);
  526. if (res)
  527. mntput(path->mnt);
  528. path->mnt = mounted;
  529. path->dentry = dget(mounted->mnt_root);
  530. res = 1;
  531. }
  532. return res;
  533. }
  534. static void follow_mount(struct vfsmount **mnt, struct dentry **dentry)
  535. {
  536. while (d_mountpoint(*dentry)) {
  537. struct vfsmount *mounted = lookup_mnt(*mnt, *dentry);
  538. if (!mounted)
  539. break;
  540. dput(*dentry);
  541. mntput(*mnt);
  542. *mnt = mounted;
  543. *dentry = dget(mounted->mnt_root);
  544. }
  545. }
  546. /* no need for dcache_lock, as serialization is taken care in
  547. * namespace.c
  548. */
  549. int follow_down(struct vfsmount **mnt, struct dentry **dentry)
  550. {
  551. struct vfsmount *mounted;
  552. mounted = lookup_mnt(*mnt, *dentry);
  553. if (mounted) {
  554. dput(*dentry);
  555. mntput(*mnt);
  556. *mnt = mounted;
  557. *dentry = dget(mounted->mnt_root);
  558. return 1;
  559. }
  560. return 0;
  561. }
  562. static inline void follow_dotdot(struct nameidata *nd)
  563. {
  564. while(1) {
  565. struct vfsmount *parent;
  566. struct dentry *old = nd->dentry;
  567. read_lock(&current->fs->lock);
  568. if (nd->dentry == current->fs->root &&
  569. nd->mnt == current->fs->rootmnt) {
  570. read_unlock(&current->fs->lock);
  571. break;
  572. }
  573. read_unlock(&current->fs->lock);
  574. spin_lock(&dcache_lock);
  575. if (nd->dentry != nd->mnt->mnt_root) {
  576. nd->dentry = dget(nd->dentry->d_parent);
  577. spin_unlock(&dcache_lock);
  578. dput(old);
  579. break;
  580. }
  581. spin_unlock(&dcache_lock);
  582. spin_lock(&vfsmount_lock);
  583. parent = nd->mnt->mnt_parent;
  584. if (parent == nd->mnt) {
  585. spin_unlock(&vfsmount_lock);
  586. break;
  587. }
  588. mntget(parent);
  589. nd->dentry = dget(nd->mnt->mnt_mountpoint);
  590. spin_unlock(&vfsmount_lock);
  591. dput(old);
  592. mntput(nd->mnt);
  593. nd->mnt = parent;
  594. }
  595. follow_mount(&nd->mnt, &nd->dentry);
  596. }
  597. /*
  598. * It's more convoluted than I'd like it to be, but... it's still fairly
  599. * small and for now I'd prefer to have fast path as straight as possible.
  600. * It _is_ time-critical.
  601. */
  602. static int do_lookup(struct nameidata *nd, struct qstr *name,
  603. struct path *path)
  604. {
  605. struct vfsmount *mnt = nd->mnt;
  606. struct dentry *dentry = __d_lookup(nd->dentry, name);
  607. if (!dentry)
  608. goto need_lookup;
  609. if (dentry->d_op && dentry->d_op->d_revalidate)
  610. goto need_revalidate;
  611. done:
  612. path->mnt = mnt;
  613. path->dentry = dentry;
  614. __follow_mount(path);
  615. return 0;
  616. need_lookup:
  617. dentry = real_lookup(nd->dentry, name, nd);
  618. if (IS_ERR(dentry))
  619. goto fail;
  620. goto done;
  621. need_revalidate:
  622. if (dentry->d_op->d_revalidate(dentry, nd))
  623. goto done;
  624. if (d_invalidate(dentry))
  625. goto done;
  626. dput(dentry);
  627. goto need_lookup;
  628. fail:
  629. return PTR_ERR(dentry);
  630. }
  631. /*
  632. * Name resolution.
  633. * This is the basic name resolution function, turning a pathname into
  634. * the final dentry. We expect 'base' to be positive and a directory.
  635. *
  636. * Returns 0 and nd will have valid dentry and mnt on success.
  637. * Returns error and drops reference to input namei data on failure.
  638. */
  639. static fastcall int __link_path_walk(const char * name, struct nameidata *nd)
  640. {
  641. struct path next;
  642. struct inode *inode;
  643. int err;
  644. unsigned int lookup_flags = nd->flags;
  645. while (*name=='/')
  646. name++;
  647. if (!*name)
  648. goto return_reval;
  649. inode = nd->dentry->d_inode;
  650. if (nd->depth)
  651. lookup_flags = LOOKUP_FOLLOW;
  652. /* At this point we know we have a real path component. */
  653. for(;;) {
  654. unsigned long hash;
  655. struct qstr this;
  656. unsigned int c;
  657. err = exec_permission_lite(inode, nd);
  658. if (err == -EAGAIN) {
  659. err = permission(inode, MAY_EXEC, nd);
  660. }
  661. if (err)
  662. break;
  663. this.name = name;
  664. c = *(const unsigned char *)name;
  665. hash = init_name_hash();
  666. do {
  667. name++;
  668. hash = partial_name_hash(c, hash);
  669. c = *(const unsigned char *)name;
  670. } while (c && (c != '/'));
  671. this.len = name - (const char *) this.name;
  672. this.hash = end_name_hash(hash);
  673. /* remove trailing slashes? */
  674. if (!c)
  675. goto last_component;
  676. while (*++name == '/');
  677. if (!*name)
  678. goto last_with_slashes;
  679. /*
  680. * "." and ".." are special - ".." especially so because it has
  681. * to be able to know about the current root directory and
  682. * parent relationships.
  683. */
  684. if (this.name[0] == '.') switch (this.len) {
  685. default:
  686. break;
  687. case 2:
  688. if (this.name[1] != '.')
  689. break;
  690. follow_dotdot(nd);
  691. inode = nd->dentry->d_inode;
  692. /* fallthrough */
  693. case 1:
  694. continue;
  695. }
  696. /*
  697. * See if the low-level filesystem might want
  698. * to use its own hash..
  699. */
  700. if (nd->dentry->d_op && nd->dentry->d_op->d_hash) {
  701. err = nd->dentry->d_op->d_hash(nd->dentry, &this);
  702. if (err < 0)
  703. break;
  704. }
  705. nd->flags |= LOOKUP_CONTINUE;
  706. /* This does the actual lookups.. */
  707. err = do_lookup(nd, &this, &next);
  708. if (err)
  709. break;
  710. err = -ENOENT;
  711. inode = next.dentry->d_inode;
  712. if (!inode)
  713. goto out_dput;
  714. err = -ENOTDIR;
  715. if (!inode->i_op)
  716. goto out_dput;
  717. if (inode->i_op->follow_link) {
  718. err = do_follow_link(&next, nd);
  719. if (err)
  720. goto return_err;
  721. err = -ENOENT;
  722. inode = nd->dentry->d_inode;
  723. if (!inode)
  724. break;
  725. err = -ENOTDIR;
  726. if (!inode->i_op)
  727. break;
  728. } else {
  729. dput(nd->dentry);
  730. if (nd->mnt != next.mnt)
  731. mntput(nd->mnt);
  732. nd->mnt = next.mnt;
  733. nd->dentry = next.dentry;
  734. }
  735. err = -ENOTDIR;
  736. if (!inode->i_op->lookup)
  737. break;
  738. continue;
  739. /* here ends the main loop */
  740. last_with_slashes:
  741. lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
  742. last_component:
  743. nd->flags &= ~LOOKUP_CONTINUE;
  744. if (lookup_flags & LOOKUP_PARENT)
  745. goto lookup_parent;
  746. if (this.name[0] == '.') switch (this.len) {
  747. default:
  748. break;
  749. case 2:
  750. if (this.name[1] != '.')
  751. break;
  752. follow_dotdot(nd);
  753. inode = nd->dentry->d_inode;
  754. /* fallthrough */
  755. case 1:
  756. goto return_reval;
  757. }
  758. if (nd->dentry->d_op && nd->dentry->d_op->d_hash) {
  759. err = nd->dentry->d_op->d_hash(nd->dentry, &this);
  760. if (err < 0)
  761. break;
  762. }
  763. err = do_lookup(nd, &this, &next);
  764. if (err)
  765. break;
  766. inode = next.dentry->d_inode;
  767. if ((lookup_flags & LOOKUP_FOLLOW)
  768. && inode && inode->i_op && inode->i_op->follow_link) {
  769. err = do_follow_link(&next, nd);
  770. if (err)
  771. goto return_err;
  772. inode = nd->dentry->d_inode;
  773. } else {
  774. dput(nd->dentry);
  775. if (nd->mnt != next.mnt)
  776. mntput(nd->mnt);
  777. nd->mnt = next.mnt;
  778. nd->dentry = next.dentry;
  779. }
  780. err = -ENOENT;
  781. if (!inode)
  782. break;
  783. if (lookup_flags & LOOKUP_DIRECTORY) {
  784. err = -ENOTDIR;
  785. if (!inode->i_op || !inode->i_op->lookup)
  786. break;
  787. }
  788. goto return_base;
  789. lookup_parent:
  790. nd->last = this;
  791. nd->last_type = LAST_NORM;
  792. if (this.name[0] != '.')
  793. goto return_base;
  794. if (this.len == 1)
  795. nd->last_type = LAST_DOT;
  796. else if (this.len == 2 && this.name[1] == '.')
  797. nd->last_type = LAST_DOTDOT;
  798. else
  799. goto return_base;
  800. return_reval:
  801. /*
  802. * We bypassed the ordinary revalidation routines.
  803. * We may need to check the cached dentry for staleness.
  804. */
  805. if (nd->dentry && nd->dentry->d_sb &&
  806. (nd->dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) {
  807. err = -ESTALE;
  808. /* Note: we do not d_invalidate() */
  809. if (!nd->dentry->d_op->d_revalidate(nd->dentry, nd))
  810. break;
  811. }
  812. return_base:
  813. return 0;
  814. out_dput:
  815. dput(next.dentry);
  816. if (nd->mnt != next.mnt)
  817. mntput(next.mnt);
  818. break;
  819. }
  820. path_release(nd);
  821. return_err:
  822. return err;
  823. }
  824. /*
  825. * Wrapper to retry pathname resolution whenever the underlying
  826. * file system returns an ESTALE.
  827. *
  828. * Retry the whole path once, forcing real lookup requests
  829. * instead of relying on the dcache.
  830. */
  831. int fastcall link_path_walk(const char *name, struct nameidata *nd)
  832. {
  833. struct nameidata save = *nd;
  834. int result;
  835. /* make sure the stuff we saved doesn't go away */
  836. dget(save.dentry);
  837. mntget(save.mnt);
  838. result = __link_path_walk(name, nd);
  839. if (result == -ESTALE) {
  840. *nd = save;
  841. dget(nd->dentry);
  842. mntget(nd->mnt);
  843. nd->flags |= LOOKUP_REVAL;
  844. result = __link_path_walk(name, nd);
  845. }
  846. dput(save.dentry);
  847. mntput(save.mnt);
  848. return result;
  849. }
  850. int fastcall path_walk(const char * name, struct nameidata *nd)
  851. {
  852. current->total_link_count = 0;
  853. return link_path_walk(name, nd);
  854. }
  855. /*
  856. * SMP-safe: Returns 1 and nd will have valid dentry and mnt, if
  857. * everything is done. Returns 0 and drops input nd, if lookup failed;
  858. */
  859. static int __emul_lookup_dentry(const char *name, struct nameidata *nd)
  860. {
  861. if (path_walk(name, nd))
  862. return 0; /* something went wrong... */
  863. if (!nd->dentry->d_inode || S_ISDIR(nd->dentry->d_inode->i_mode)) {
  864. struct dentry *old_dentry = nd->dentry;
  865. struct vfsmount *old_mnt = nd->mnt;
  866. struct qstr last = nd->last;
  867. int last_type = nd->last_type;
  868. /*
  869. * NAME was not found in alternate root or it's a directory. Try to find
  870. * it in the normal root:
  871. */
  872. nd->last_type = LAST_ROOT;
  873. read_lock(&current->fs->lock);
  874. nd->mnt = mntget(current->fs->rootmnt);
  875. nd->dentry = dget(current->fs->root);
  876. read_unlock(&current->fs->lock);
  877. if (path_walk(name, nd) == 0) {
  878. if (nd->dentry->d_inode) {
  879. dput(old_dentry);
  880. mntput(old_mnt);
  881. return 1;
  882. }
  883. path_release(nd);
  884. }
  885. nd->dentry = old_dentry;
  886. nd->mnt = old_mnt;
  887. nd->last = last;
  888. nd->last_type = last_type;
  889. }
  890. return 1;
  891. }
  892. void set_fs_altroot(void)
  893. {
  894. char *emul = __emul_prefix();
  895. struct nameidata nd;
  896. struct vfsmount *mnt = NULL, *oldmnt;
  897. struct dentry *dentry = NULL, *olddentry;
  898. int err;
  899. if (!emul)
  900. goto set_it;
  901. err = path_lookup(emul, LOOKUP_FOLLOW|LOOKUP_DIRECTORY|LOOKUP_NOALT, &nd);
  902. if (!err) {
  903. mnt = nd.mnt;
  904. dentry = nd.dentry;
  905. }
  906. set_it:
  907. write_lock(&current->fs->lock);
  908. oldmnt = current->fs->altrootmnt;
  909. olddentry = current->fs->altroot;
  910. current->fs->altrootmnt = mnt;
  911. current->fs->altroot = dentry;
  912. write_unlock(&current->fs->lock);
  913. if (olddentry) {
  914. dput(olddentry);
  915. mntput(oldmnt);
  916. }
  917. }
  918. /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
  919. int fastcall path_lookup(const char *name, unsigned int flags, struct nameidata *nd)
  920. {
  921. int retval = 0;
  922. nd->last_type = LAST_ROOT; /* if there are only slashes... */
  923. nd->flags = flags;
  924. nd->depth = 0;
  925. read_lock(&current->fs->lock);
  926. if (*name=='/') {
  927. if (current->fs->altroot && !(nd->flags & LOOKUP_NOALT)) {
  928. nd->mnt = mntget(current->fs->altrootmnt);
  929. nd->dentry = dget(current->fs->altroot);
  930. read_unlock(&current->fs->lock);
  931. if (__emul_lookup_dentry(name,nd))
  932. goto out; /* found in altroot */
  933. read_lock(&current->fs->lock);
  934. }
  935. nd->mnt = mntget(current->fs->rootmnt);
  936. nd->dentry = dget(current->fs->root);
  937. } else {
  938. nd->mnt = mntget(current->fs->pwdmnt);
  939. nd->dentry = dget(current->fs->pwd);
  940. }
  941. read_unlock(&current->fs->lock);
  942. current->total_link_count = 0;
  943. retval = link_path_walk(name, nd);
  944. out:
  945. if (unlikely(current->audit_context
  946. && nd && nd->dentry && nd->dentry->d_inode))
  947. audit_inode(name, nd->dentry->d_inode);
  948. return retval;
  949. }
  950. /*
  951. * Restricted form of lookup. Doesn't follow links, single-component only,
  952. * needs parent already locked. Doesn't follow mounts.
  953. * SMP-safe.
  954. */
  955. static struct dentry * __lookup_hash(struct qstr *name, struct dentry * base, struct nameidata *nd)
  956. {
  957. struct dentry * dentry;
  958. struct inode *inode;
  959. int err;
  960. inode = base->d_inode;
  961. err = permission(inode, MAY_EXEC, nd);
  962. dentry = ERR_PTR(err);
  963. if (err)
  964. goto out;
  965. /*
  966. * See if the low-level filesystem might want
  967. * to use its own hash..
  968. */
  969. if (base->d_op && base->d_op->d_hash) {
  970. err = base->d_op->d_hash(base, name);
  971. dentry = ERR_PTR(err);
  972. if (err < 0)
  973. goto out;
  974. }
  975. dentry = cached_lookup(base, name, nd);
  976. if (!dentry) {
  977. struct dentry *new = d_alloc(base, name);
  978. dentry = ERR_PTR(-ENOMEM);
  979. if (!new)
  980. goto out;
  981. dentry = inode->i_op->lookup(inode, new, nd);
  982. if (!dentry)
  983. dentry = new;
  984. else
  985. dput(new);
  986. }
  987. out:
  988. return dentry;
  989. }
  990. struct dentry * lookup_hash(struct qstr *name, struct dentry * base)
  991. {
  992. return __lookup_hash(name, base, NULL);
  993. }
  994. /* SMP-safe */
  995. struct dentry * lookup_one_len(const char * name, struct dentry * base, int len)
  996. {
  997. unsigned long hash;
  998. struct qstr this;
  999. unsigned int c;
  1000. this.name = name;
  1001. this.len = len;
  1002. if (!len)
  1003. goto access;
  1004. hash = init_name_hash();
  1005. while (len--) {
  1006. c = *(const unsigned char *)name++;
  1007. if (c == '/' || c == '\0')
  1008. goto access;
  1009. hash = partial_name_hash(c, hash);
  1010. }
  1011. this.hash = end_name_hash(hash);
  1012. return lookup_hash(&this, base);
  1013. access:
  1014. return ERR_PTR(-EACCES);
  1015. }
  1016. /*
  1017. * namei()
  1018. *
  1019. * is used by most simple commands to get the inode of a specified name.
  1020. * Open, link etc use their own routines, but this is enough for things
  1021. * like 'chmod' etc.
  1022. *
  1023. * namei exists in two versions: namei/lnamei. The only difference is
  1024. * that namei follows links, while lnamei does not.
  1025. * SMP-safe
  1026. */
  1027. int fastcall __user_walk(const char __user *name, unsigned flags, struct nameidata *nd)
  1028. {
  1029. char *tmp = getname(name);
  1030. int err = PTR_ERR(tmp);
  1031. if (!IS_ERR(tmp)) {
  1032. err = path_lookup(tmp, flags, nd);
  1033. putname(tmp);
  1034. }
  1035. return err;
  1036. }
  1037. /*
  1038. * It's inline, so penalty for filesystems that don't use sticky bit is
  1039. * minimal.
  1040. */
  1041. static inline int check_sticky(struct inode *dir, struct inode *inode)
  1042. {
  1043. if (!(dir->i_mode & S_ISVTX))
  1044. return 0;
  1045. if (inode->i_uid == current->fsuid)
  1046. return 0;
  1047. if (dir->i_uid == current->fsuid)
  1048. return 0;
  1049. return !capable(CAP_FOWNER);
  1050. }
  1051. /*
  1052. * Check whether we can remove a link victim from directory dir, check
  1053. * whether the type of victim is right.
  1054. * 1. We can't do it if dir is read-only (done in permission())
  1055. * 2. We should have write and exec permissions on dir
  1056. * 3. We can't remove anything from append-only dir
  1057. * 4. We can't do anything with immutable dir (done in permission())
  1058. * 5. If the sticky bit on dir is set we should either
  1059. * a. be owner of dir, or
  1060. * b. be owner of victim, or
  1061. * c. have CAP_FOWNER capability
  1062. * 6. If the victim is append-only or immutable we can't do antyhing with
  1063. * links pointing to it.
  1064. * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
  1065. * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
  1066. * 9. We can't remove a root or mountpoint.
  1067. * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
  1068. * nfs_async_unlink().
  1069. */
  1070. static inline int may_delete(struct inode *dir,struct dentry *victim,int isdir)
  1071. {
  1072. int error;
  1073. if (!victim->d_inode)
  1074. return -ENOENT;
  1075. BUG_ON(victim->d_parent->d_inode != dir);
  1076. error = permission(dir,MAY_WRITE | MAY_EXEC, NULL);
  1077. if (error)
  1078. return error;
  1079. if (IS_APPEND(dir))
  1080. return -EPERM;
  1081. if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
  1082. IS_IMMUTABLE(victim->d_inode))
  1083. return -EPERM;
  1084. if (isdir) {
  1085. if (!S_ISDIR(victim->d_inode->i_mode))
  1086. return -ENOTDIR;
  1087. if (IS_ROOT(victim))
  1088. return -EBUSY;
  1089. } else if (S_ISDIR(victim->d_inode->i_mode))
  1090. return -EISDIR;
  1091. if (IS_DEADDIR(dir))
  1092. return -ENOENT;
  1093. if (victim->d_flags & DCACHE_NFSFS_RENAMED)
  1094. return -EBUSY;
  1095. return 0;
  1096. }
  1097. /* Check whether we can create an object with dentry child in directory
  1098. * dir.
  1099. * 1. We can't do it if child already exists (open has special treatment for
  1100. * this case, but since we are inlined it's OK)
  1101. * 2. We can't do it if dir is read-only (done in permission())
  1102. * 3. We should have write and exec permissions on dir
  1103. * 4. We can't do it if dir is immutable (done in permission())
  1104. */
  1105. static inline int may_create(struct inode *dir, struct dentry *child,
  1106. struct nameidata *nd)
  1107. {
  1108. if (child->d_inode)
  1109. return -EEXIST;
  1110. if (IS_DEADDIR(dir))
  1111. return -ENOENT;
  1112. return permission(dir,MAY_WRITE | MAY_EXEC, nd);
  1113. }
  1114. /*
  1115. * Special case: O_CREAT|O_EXCL implies O_NOFOLLOW for security
  1116. * reasons.
  1117. *
  1118. * O_DIRECTORY translates into forcing a directory lookup.
  1119. */
  1120. static inline int lookup_flags(unsigned int f)
  1121. {
  1122. unsigned long retval = LOOKUP_FOLLOW;
  1123. if (f & O_NOFOLLOW)
  1124. retval &= ~LOOKUP_FOLLOW;
  1125. if ((f & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL))
  1126. retval &= ~LOOKUP_FOLLOW;
  1127. if (f & O_DIRECTORY)
  1128. retval |= LOOKUP_DIRECTORY;
  1129. return retval;
  1130. }
  1131. /*
  1132. * p1 and p2 should be directories on the same fs.
  1133. */
  1134. struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
  1135. {
  1136. struct dentry *p;
  1137. if (p1 == p2) {
  1138. down(&p1->d_inode->i_sem);
  1139. return NULL;
  1140. }
  1141. down(&p1->d_inode->i_sb->s_vfs_rename_sem);
  1142. for (p = p1; p->d_parent != p; p = p->d_parent) {
  1143. if (p->d_parent == p2) {
  1144. down(&p2->d_inode->i_sem);
  1145. down(&p1->d_inode->i_sem);
  1146. return p;
  1147. }
  1148. }
  1149. for (p = p2; p->d_parent != p; p = p->d_parent) {
  1150. if (p->d_parent == p1) {
  1151. down(&p1->d_inode->i_sem);
  1152. down(&p2->d_inode->i_sem);
  1153. return p;
  1154. }
  1155. }
  1156. down(&p1->d_inode->i_sem);
  1157. down(&p2->d_inode->i_sem);
  1158. return NULL;
  1159. }
  1160. void unlock_rename(struct dentry *p1, struct dentry *p2)
  1161. {
  1162. up(&p1->d_inode->i_sem);
  1163. if (p1 != p2) {
  1164. up(&p2->d_inode->i_sem);
  1165. up(&p1->d_inode->i_sb->s_vfs_rename_sem);
  1166. }
  1167. }
  1168. int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
  1169. struct nameidata *nd)
  1170. {
  1171. int error = may_create(dir, dentry, nd);
  1172. if (error)
  1173. return error;
  1174. if (!dir->i_op || !dir->i_op->create)
  1175. return -EACCES; /* shouldn't it be ENOSYS? */
  1176. mode &= S_IALLUGO;
  1177. mode |= S_IFREG;
  1178. error = security_inode_create(dir, dentry, mode);
  1179. if (error)
  1180. return error;
  1181. DQUOT_INIT(dir);
  1182. error = dir->i_op->create(dir, dentry, mode, nd);
  1183. if (!error) {
  1184. fsnotify_create(dir, dentry->d_name.name);
  1185. security_inode_post_create(dir, dentry, mode);
  1186. }
  1187. return error;
  1188. }
  1189. int may_open(struct nameidata *nd, int acc_mode, int flag)
  1190. {
  1191. struct dentry *dentry = nd->dentry;
  1192. struct inode *inode = dentry->d_inode;
  1193. int error;
  1194. if (!inode)
  1195. return -ENOENT;
  1196. if (S_ISLNK(inode->i_mode))
  1197. return -ELOOP;
  1198. if (S_ISDIR(inode->i_mode) && (flag & FMODE_WRITE))
  1199. return -EISDIR;
  1200. error = permission(inode, acc_mode, nd);
  1201. if (error)
  1202. return error;
  1203. /*
  1204. * FIFO's, sockets and device files are special: they don't
  1205. * actually live on the filesystem itself, and as such you
  1206. * can write to them even if the filesystem is read-only.
  1207. */
  1208. if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
  1209. flag &= ~O_TRUNC;
  1210. } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) {
  1211. if (nd->mnt->mnt_flags & MNT_NODEV)
  1212. return -EACCES;
  1213. flag &= ~O_TRUNC;
  1214. } else if (IS_RDONLY(inode) && (flag & FMODE_WRITE))
  1215. return -EROFS;
  1216. /*
  1217. * An append-only file must be opened in append mode for writing.
  1218. */
  1219. if (IS_APPEND(inode)) {
  1220. if ((flag & FMODE_WRITE) && !(flag & O_APPEND))
  1221. return -EPERM;
  1222. if (flag & O_TRUNC)
  1223. return -EPERM;
  1224. }
  1225. /* O_NOATIME can only be set by the owner or superuser */
  1226. if (flag & O_NOATIME)
  1227. if (current->fsuid != inode->i_uid && !capable(CAP_FOWNER))
  1228. return -EPERM;
  1229. /*
  1230. * Ensure there are no outstanding leases on the file.
  1231. */
  1232. error = break_lease(inode, flag);
  1233. if (error)
  1234. return error;
  1235. if (flag & O_TRUNC) {
  1236. error = get_write_access(inode);
  1237. if (error)
  1238. return error;
  1239. /*
  1240. * Refuse to truncate files with mandatory locks held on them.
  1241. */
  1242. error = locks_verify_locked(inode);
  1243. if (!error) {
  1244. DQUOT_INIT(inode);
  1245. error = do_truncate(dentry, 0);
  1246. }
  1247. put_write_access(inode);
  1248. if (error)
  1249. return error;
  1250. } else
  1251. if (flag & FMODE_WRITE)
  1252. DQUOT_INIT(inode);
  1253. return 0;
  1254. }
  1255. /*
  1256. * open_namei()
  1257. *
  1258. * namei for open - this is in fact almost the whole open-routine.
  1259. *
  1260. * Note that the low bits of "flag" aren't the same as in the open
  1261. * system call - they are 00 - no permissions needed
  1262. * 01 - read permission needed
  1263. * 10 - write permission needed
  1264. * 11 - read/write permissions needed
  1265. * which is a lot more logical, and also allows the "no perm" needed
  1266. * for symlinks (where the permissions are checked later).
  1267. * SMP-safe
  1268. */
  1269. int open_namei(const char * pathname, int flag, int mode, struct nameidata *nd)
  1270. {
  1271. int acc_mode, error = 0;
  1272. struct path path;
  1273. struct dentry *dir;
  1274. int count = 0;
  1275. acc_mode = ACC_MODE(flag);
  1276. /* Allow the LSM permission hook to distinguish append
  1277. access from general write access. */
  1278. if (flag & O_APPEND)
  1279. acc_mode |= MAY_APPEND;
  1280. /* Fill in the open() intent data */
  1281. nd->intent.open.flags = flag;
  1282. nd->intent.open.create_mode = mode;
  1283. /*
  1284. * The simplest case - just a plain lookup.
  1285. */
  1286. if (!(flag & O_CREAT)) {
  1287. error = path_lookup(pathname, lookup_flags(flag)|LOOKUP_OPEN, nd);
  1288. if (error)
  1289. return error;
  1290. goto ok;
  1291. }
  1292. /*
  1293. * Create - we need to know the parent.
  1294. */
  1295. error = path_lookup(pathname, LOOKUP_PARENT|LOOKUP_OPEN|LOOKUP_CREATE, nd);
  1296. if (error)
  1297. return error;
  1298. /*
  1299. * We have the parent and last component. First of all, check
  1300. * that we are not asked to creat(2) an obvious directory - that
  1301. * will not do.
  1302. */
  1303. error = -EISDIR;
  1304. if (nd->last_type != LAST_NORM || nd->last.name[nd->last.len])
  1305. goto exit;
  1306. dir = nd->dentry;
  1307. nd->flags &= ~LOOKUP_PARENT;
  1308. down(&dir->d_inode->i_sem);
  1309. path.dentry = __lookup_hash(&nd->last, nd->dentry, nd);
  1310. path.mnt = nd->mnt;
  1311. do_last:
  1312. error = PTR_ERR(path.dentry);
  1313. if (IS_ERR(path.dentry)) {
  1314. up(&dir->d_inode->i_sem);
  1315. goto exit;
  1316. }
  1317. /* Negative dentry, just create the file */
  1318. if (!path.dentry->d_inode) {
  1319. if (!IS_POSIXACL(dir->d_inode))
  1320. mode &= ~current->fs->umask;
  1321. error = vfs_create(dir->d_inode, path.dentry, mode, nd);
  1322. up(&dir->d_inode->i_sem);
  1323. dput(nd->dentry);
  1324. nd->dentry = path.dentry;
  1325. if (error)
  1326. goto exit;
  1327. /* Don't check for write permission, don't truncate */
  1328. acc_mode = 0;
  1329. flag &= ~O_TRUNC;
  1330. goto ok;
  1331. }
  1332. /*
  1333. * It already exists.
  1334. */
  1335. up(&dir->d_inode->i_sem);
  1336. error = -EEXIST;
  1337. if (flag & O_EXCL)
  1338. goto exit_dput;
  1339. if (__follow_mount(&path)) {
  1340. error = -ELOOP;
  1341. if (flag & O_NOFOLLOW)
  1342. goto exit_dput;
  1343. }
  1344. error = -ENOENT;
  1345. if (!path.dentry->d_inode)
  1346. goto exit_dput;
  1347. if (path.dentry->d_inode->i_op && path.dentry->d_inode->i_op->follow_link)
  1348. goto do_link;
  1349. dput(nd->dentry);
  1350. nd->dentry = path.dentry;
  1351. if (nd->mnt != path.mnt)
  1352. mntput(nd->mnt);
  1353. nd->mnt = path.mnt;
  1354. error = -EISDIR;
  1355. if (path.dentry->d_inode && S_ISDIR(path.dentry->d_inode->i_mode))
  1356. goto exit;
  1357. ok:
  1358. error = may_open(nd, acc_mode, flag);
  1359. if (error)
  1360. goto exit;
  1361. return 0;
  1362. exit_dput:
  1363. dput(path.dentry);
  1364. if (nd->mnt != path.mnt)
  1365. mntput(path.mnt);
  1366. exit:
  1367. path_release(nd);
  1368. return error;
  1369. do_link:
  1370. error = -ELOOP;
  1371. if (flag & O_NOFOLLOW)
  1372. goto exit_dput;
  1373. /*
  1374. * This is subtle. Instead of calling do_follow_link() we do the
  1375. * thing by hands. The reason is that this way we have zero link_count
  1376. * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
  1377. * After that we have the parent and last component, i.e.
  1378. * we are in the same situation as after the first path_walk().
  1379. * Well, almost - if the last component is normal we get its copy
  1380. * stored in nd->last.name and we will have to putname() it when we
  1381. * are done. Procfs-like symlinks just set LAST_BIND.
  1382. */
  1383. nd->flags |= LOOKUP_PARENT;
  1384. error = security_inode_follow_link(path.dentry, nd);
  1385. if (error)
  1386. goto exit_dput;
  1387. error = __do_follow_link(&path, nd);
  1388. if (error)
  1389. return error;
  1390. nd->flags &= ~LOOKUP_PARENT;
  1391. if (nd->last_type == LAST_BIND)
  1392. goto ok;
  1393. error = -EISDIR;
  1394. if (nd->last_type != LAST_NORM)
  1395. goto exit;
  1396. if (nd->last.name[nd->last.len]) {
  1397. putname(nd->last.name);
  1398. goto exit;
  1399. }
  1400. error = -ELOOP;
  1401. if (count++==32) {
  1402. putname(nd->last.name);
  1403. goto exit;
  1404. }
  1405. dir = nd->dentry;
  1406. down(&dir->d_inode->i_sem);
  1407. path.dentry = __lookup_hash(&nd->last, nd->dentry, nd);
  1408. path.mnt = nd->mnt;
  1409. putname(nd->last.name);
  1410. goto do_last;
  1411. }
  1412. /**
  1413. * lookup_create - lookup a dentry, creating it if it doesn't exist
  1414. * @nd: nameidata info
  1415. * @is_dir: directory flag
  1416. *
  1417. * Simple function to lookup and return a dentry and create it
  1418. * if it doesn't exist. Is SMP-safe.
  1419. *
  1420. * Returns with nd->dentry->d_inode->i_sem locked.
  1421. */
  1422. struct dentry *lookup_create(struct nameidata *nd, int is_dir)
  1423. {
  1424. struct dentry *dentry = ERR_PTR(-EEXIST);
  1425. down(&nd->dentry->d_inode->i_sem);
  1426. /*
  1427. * Yucky last component or no last component at all?
  1428. * (foo/., foo/.., /////)
  1429. */
  1430. if (nd->last_type != LAST_NORM)
  1431. goto fail;
  1432. nd->flags &= ~LOOKUP_PARENT;
  1433. /*
  1434. * Do the final lookup.
  1435. */
  1436. dentry = lookup_hash(&nd->last, nd->dentry);
  1437. if (IS_ERR(dentry))
  1438. goto fail;
  1439. /*
  1440. * Special case - lookup gave negative, but... we had foo/bar/
  1441. * From the vfs_mknod() POV we just have a negative dentry -
  1442. * all is fine. Let's be bastards - you had / on the end, you've
  1443. * been asking for (non-existent) directory. -ENOENT for you.
  1444. */
  1445. if (!is_dir && nd->last.name[nd->last.len] && !dentry->d_inode)
  1446. goto enoent;
  1447. return dentry;
  1448. enoent:
  1449. dput(dentry);
  1450. dentry = ERR_PTR(-ENOENT);
  1451. fail:
  1452. return dentry;
  1453. }
  1454. EXPORT_SYMBOL_GPL(lookup_create);
  1455. int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
  1456. {
  1457. int error = may_create(dir, dentry, NULL);
  1458. if (error)
  1459. return error;
  1460. if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
  1461. return -EPERM;
  1462. if (!dir->i_op || !dir->i_op->mknod)
  1463. return -EPERM;
  1464. error = security_inode_mknod(dir, dentry, mode, dev);
  1465. if (error)
  1466. return error;
  1467. DQUOT_INIT(dir);
  1468. error = dir->i_op->mknod(dir, dentry, mode, dev);
  1469. if (!error) {
  1470. fsnotify_create(dir, dentry->d_name.name);
  1471. security_inode_post_mknod(dir, dentry, mode, dev);
  1472. }
  1473. return error;
  1474. }
  1475. asmlinkage long sys_mknod(const char __user * filename, int mode, unsigned dev)
  1476. {
  1477. int error = 0;
  1478. char * tmp;
  1479. struct dentry * dentry;
  1480. struct nameidata nd;
  1481. if (S_ISDIR(mode))
  1482. return -EPERM;
  1483. tmp = getname(filename);
  1484. if (IS_ERR(tmp))
  1485. return PTR_ERR(tmp);
  1486. error = path_lookup(tmp, LOOKUP_PARENT, &nd);
  1487. if (error)
  1488. goto out;
  1489. dentry = lookup_create(&nd, 0);
  1490. error = PTR_ERR(dentry);
  1491. if (!IS_POSIXACL(nd.dentry->d_inode))
  1492. mode &= ~current->fs->umask;
  1493. if (!IS_ERR(dentry)) {
  1494. switch (mode & S_IFMT) {
  1495. case 0: case S_IFREG:
  1496. error = vfs_create(nd.dentry->d_inode,dentry,mode,&nd);
  1497. break;
  1498. case S_IFCHR: case S_IFBLK:
  1499. error = vfs_mknod(nd.dentry->d_inode,dentry,mode,
  1500. new_decode_dev(dev));
  1501. break;
  1502. case S_IFIFO: case S_IFSOCK:
  1503. error = vfs_mknod(nd.dentry->d_inode,dentry,mode,0);
  1504. break;
  1505. case S_IFDIR:
  1506. error = -EPERM;
  1507. break;
  1508. default:
  1509. error = -EINVAL;
  1510. }
  1511. dput(dentry);
  1512. }
  1513. up(&nd.dentry->d_inode->i_sem);
  1514. path_release(&nd);
  1515. out:
  1516. putname(tmp);
  1517. return error;
  1518. }
  1519. int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
  1520. {
  1521. int error = may_create(dir, dentry, NULL);
  1522. if (error)
  1523. return error;
  1524. if (!dir->i_op || !dir->i_op->mkdir)
  1525. return -EPERM;
  1526. mode &= (S_IRWXUGO|S_ISVTX);
  1527. error = security_inode_mkdir(dir, dentry, mode);
  1528. if (error)
  1529. return error;
  1530. DQUOT_INIT(dir);
  1531. error = dir->i_op->mkdir(dir, dentry, mode);
  1532. if (!error) {
  1533. fsnotify_mkdir(dir, dentry->d_name.name);
  1534. security_inode_post_mkdir(dir,dentry, mode);
  1535. }
  1536. return error;
  1537. }
  1538. asmlinkage long sys_mkdir(const char __user * pathname, int mode)
  1539. {
  1540. int error = 0;
  1541. char * tmp;
  1542. tmp = getname(pathname);
  1543. error = PTR_ERR(tmp);
  1544. if (!IS_ERR(tmp)) {
  1545. struct dentry *dentry;
  1546. struct nameidata nd;
  1547. error = path_lookup(tmp, LOOKUP_PARENT, &nd);
  1548. if (error)
  1549. goto out;
  1550. dentry = lookup_create(&nd, 1);
  1551. error = PTR_ERR(dentry);
  1552. if (!IS_ERR(dentry)) {
  1553. if (!IS_POSIXACL(nd.dentry->d_inode))
  1554. mode &= ~current->fs->umask;
  1555. error = vfs_mkdir(nd.dentry->d_inode, dentry, mode);
  1556. dput(dentry);
  1557. }
  1558. up(&nd.dentry->d_inode->i_sem);
  1559. path_release(&nd);
  1560. out:
  1561. putname(tmp);
  1562. }
  1563. return error;
  1564. }
  1565. /*
  1566. * We try to drop the dentry early: we should have
  1567. * a usage count of 2 if we're the only user of this
  1568. * dentry, and if that is true (possibly after pruning
  1569. * the dcache), then we drop the dentry now.
  1570. *
  1571. * A low-level filesystem can, if it choses, legally
  1572. * do a
  1573. *
  1574. * if (!d_unhashed(dentry))
  1575. * return -EBUSY;
  1576. *
  1577. * if it cannot handle the case of removing a directory
  1578. * that is still in use by something else..
  1579. */
  1580. void dentry_unhash(struct dentry *dentry)
  1581. {
  1582. dget(dentry);
  1583. if (atomic_read(&dentry->d_count))
  1584. shrink_dcache_parent(dentry);
  1585. spin_lock(&dcache_lock);
  1586. spin_lock(&dentry->d_lock);
  1587. if (atomic_read(&dentry->d_count) == 2)
  1588. __d_drop(dentry);
  1589. spin_unlock(&dentry->d_lock);
  1590. spin_unlock(&dcache_lock);
  1591. }
  1592. int vfs_rmdir(struct inode *dir, struct dentry *dentry)
  1593. {
  1594. int error = may_delete(dir, dentry, 1);
  1595. if (error)
  1596. return error;
  1597. if (!dir->i_op || !dir->i_op->rmdir)
  1598. return -EPERM;
  1599. DQUOT_INIT(dir);
  1600. down(&dentry->d_inode->i_sem);
  1601. dentry_unhash(dentry);
  1602. if (d_mountpoint(dentry))
  1603. error = -EBUSY;
  1604. else {
  1605. error = security_inode_rmdir(dir, dentry);
  1606. if (!error) {
  1607. error = dir->i_op->rmdir(dir, dentry);
  1608. if (!error)
  1609. dentry->d_inode->i_flags |= S_DEAD;
  1610. }
  1611. }
  1612. up(&dentry->d_inode->i_sem);
  1613. if (!error) {
  1614. fsnotify_rmdir(dentry, dentry->d_inode, dir);
  1615. d_delete(dentry);
  1616. }
  1617. dput(dentry);
  1618. return error;
  1619. }
  1620. asmlinkage long sys_rmdir(const char __user * pathname)
  1621. {
  1622. int error = 0;
  1623. char * name;
  1624. struct dentry *dentry;
  1625. struct nameidata nd;
  1626. name = getname(pathname);
  1627. if(IS_ERR(name))
  1628. return PTR_ERR(name);
  1629. error = path_lookup(name, LOOKUP_PARENT, &nd);
  1630. if (error)
  1631. goto exit;
  1632. switch(nd.last_type) {
  1633. case LAST_DOTDOT:
  1634. error = -ENOTEMPTY;
  1635. goto exit1;
  1636. case LAST_DOT:
  1637. error = -EINVAL;
  1638. goto exit1;
  1639. case LAST_ROOT:
  1640. error = -EBUSY;
  1641. goto exit1;
  1642. }
  1643. down(&nd.dentry->d_inode->i_sem);
  1644. dentry = lookup_hash(&nd.last, nd.dentry);
  1645. error = PTR_ERR(dentry);
  1646. if (!IS_ERR(dentry)) {
  1647. error = vfs_rmdir(nd.dentry->d_inode, dentry);
  1648. dput(dentry);
  1649. }
  1650. up(&nd.dentry->d_inode->i_sem);
  1651. exit1:
  1652. path_release(&nd);
  1653. exit:
  1654. putname(name);
  1655. return error;
  1656. }
  1657. int vfs_unlink(struct inode *dir, struct dentry *dentry)
  1658. {
  1659. int error = may_delete(dir, dentry, 0);
  1660. if (error)
  1661. return error;
  1662. if (!dir->i_op || !dir->i_op->unlink)
  1663. return -EPERM;
  1664. DQUOT_INIT(dir);
  1665. down(&dentry->d_inode->i_sem);
  1666. if (d_mountpoint(dentry))
  1667. error = -EBUSY;
  1668. else {
  1669. error = security_inode_unlink(dir, dentry);
  1670. if (!error)
  1671. error = dir->i_op->unlink(dir, dentry);
  1672. }
  1673. up(&dentry->d_inode->i_sem);
  1674. /* We don't d_delete() NFS sillyrenamed files--they still exist. */
  1675. if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
  1676. fsnotify_unlink(dentry, dir);
  1677. d_delete(dentry);
  1678. }
  1679. return error;
  1680. }
  1681. /*
  1682. * Make sure that the actual truncation of the file will occur outside its
  1683. * directory's i_sem. Truncate can take a long time if there is a lot of
  1684. * writeout happening, and we don't want to prevent access to the directory
  1685. * while waiting on the I/O.
  1686. */
  1687. asmlinkage long sys_unlink(const char __user * pathname)
  1688. {
  1689. int error = 0;
  1690. char * name;
  1691. struct dentry *dentry;
  1692. struct nameidata nd;
  1693. struct inode *inode = NULL;
  1694. name = getname(pathname);
  1695. if(IS_ERR(name))
  1696. return PTR_ERR(name);
  1697. error = path_lookup(name, LOOKUP_PARENT, &nd);
  1698. if (error)
  1699. goto exit;
  1700. error = -EISDIR;
  1701. if (nd.last_type != LAST_NORM)
  1702. goto exit1;
  1703. down(&nd.dentry->d_inode->i_sem);
  1704. dentry = lookup_hash(&nd.last, nd.dentry);
  1705. error = PTR_ERR(dentry);
  1706. if (!IS_ERR(dentry)) {
  1707. /* Why not before? Because we want correct error value */
  1708. if (nd.last.name[nd.last.len])
  1709. goto slashes;
  1710. inode = dentry->d_inode;
  1711. if (inode)
  1712. atomic_inc(&inode->i_count);
  1713. error = vfs_unlink(nd.dentry->d_inode, dentry);
  1714. exit2:
  1715. dput(dentry);
  1716. }
  1717. up(&nd.dentry->d_inode->i_sem);
  1718. if (inode)
  1719. iput(inode); /* truncate the inode here */
  1720. exit1:
  1721. path_release(&nd);
  1722. exit:
  1723. putname(name);
  1724. return error;
  1725. slashes:
  1726. error = !dentry->d_inode ? -ENOENT :
  1727. S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
  1728. goto exit2;
  1729. }
  1730. int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname, int mode)
  1731. {
  1732. int error = may_create(dir, dentry, NULL);
  1733. if (error)
  1734. return error;
  1735. if (!dir->i_op || !dir->i_op->symlink)
  1736. return -EPERM;
  1737. error = security_inode_symlink(dir, dentry, oldname);
  1738. if (error)
  1739. return error;
  1740. DQUOT_INIT(dir);
  1741. error = dir->i_op->symlink(dir, dentry, oldname);
  1742. if (!error) {
  1743. fsnotify_create(dir, dentry->d_name.name);
  1744. security_inode_post_symlink(dir, dentry, oldname);
  1745. }
  1746. return error;
  1747. }
  1748. asmlinkage long sys_symlink(const char __user * oldname, const char __user * newname)
  1749. {
  1750. int error = 0;
  1751. char * from;
  1752. char * to;
  1753. from = getname(oldname);
  1754. if(IS_ERR(from))
  1755. return PTR_ERR(from);
  1756. to = getname(newname);
  1757. error = PTR_ERR(to);
  1758. if (!IS_ERR(to)) {
  1759. struct dentry *dentry;
  1760. struct nameidata nd;
  1761. error = path_lookup(to, LOOKUP_PARENT, &nd);
  1762. if (error)
  1763. goto out;
  1764. dentry = lookup_create(&nd, 0);
  1765. error = PTR_ERR(dentry);
  1766. if (!IS_ERR(dentry)) {
  1767. error = vfs_symlink(nd.dentry->d_inode, dentry, from, S_IALLUGO);
  1768. dput(dentry);
  1769. }
  1770. up(&nd.dentry->d_inode->i_sem);
  1771. path_release(&nd);
  1772. out:
  1773. putname(to);
  1774. }
  1775. putname(from);
  1776. return error;
  1777. }
  1778. int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
  1779. {
  1780. struct inode *inode = old_dentry->d_inode;
  1781. int error;
  1782. if (!inode)
  1783. return -ENOENT;
  1784. error = may_create(dir, new_dentry, NULL);
  1785. if (error)
  1786. return error;
  1787. if (dir->i_sb != inode->i_sb)
  1788. return -EXDEV;
  1789. /*
  1790. * A link to an append-only or immutable file cannot be created.
  1791. */
  1792. if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
  1793. return -EPERM;
  1794. if (!dir->i_op || !dir->i_op->link)
  1795. return -EPERM;
  1796. if (S_ISDIR(old_dentry->d_inode->i_mode))
  1797. return -EPERM;
  1798. error = security_inode_link(old_dentry, dir, new_dentry);
  1799. if (error)
  1800. return error;
  1801. down(&old_dentry->d_inode->i_sem);
  1802. DQUOT_INIT(dir);
  1803. error = dir->i_op->link(old_dentry, dir, new_dentry);
  1804. up(&old_dentry->d_inode->i_sem);
  1805. if (!error) {
  1806. fsnotify_create(dir, new_dentry->d_name.name);
  1807. security_inode_post_link(old_dentry, dir, new_dentry);
  1808. }
  1809. return error;
  1810. }
  1811. /*
  1812. * Hardlinks are often used in delicate situations. We avoid
  1813. * security-related surprises by not following symlinks on the
  1814. * newname. --KAB
  1815. *
  1816. * We don't follow them on the oldname either to be compatible
  1817. * with linux 2.0, and to avoid hard-linking to directories
  1818. * and other special files. --ADM
  1819. */
  1820. asmlinkage long sys_link(const char __user * oldname, const char __user * newname)
  1821. {
  1822. struct dentry *new_dentry;
  1823. struct nameidata nd, old_nd;
  1824. int error;
  1825. char * to;
  1826. to = getname(newname);
  1827. if (IS_ERR(to))
  1828. return PTR_ERR(to);
  1829. error = __user_walk(oldname, 0, &old_nd);
  1830. if (error)
  1831. goto exit;
  1832. error = path_lookup(to, LOOKUP_PARENT, &nd);
  1833. if (error)
  1834. goto out;
  1835. error = -EXDEV;
  1836. if (old_nd.mnt != nd.mnt)
  1837. goto out_release;
  1838. new_dentry = lookup_create(&nd, 0);
  1839. error = PTR_ERR(new_dentry);
  1840. if (!IS_ERR(new_dentry)) {
  1841. error = vfs_link(old_nd.dentry, nd.dentry->d_inode, new_dentry);
  1842. dput(new_dentry);
  1843. }
  1844. up(&nd.dentry->d_inode->i_sem);
  1845. out_release:
  1846. path_release(&nd);
  1847. out:
  1848. path_release(&old_nd);
  1849. exit:
  1850. putname(to);
  1851. return error;
  1852. }
  1853. /*
  1854. * The worst of all namespace operations - renaming directory. "Perverted"
  1855. * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
  1856. * Problems:
  1857. * a) we can get into loop creation. Check is done in is_subdir().
  1858. * b) race potential - two innocent renames can create a loop together.
  1859. * That's where 4.4 screws up. Current fix: serialization on
  1860. * sb->s_vfs_rename_sem. We might be more accurate, but that's another
  1861. * story.
  1862. * c) we have to lock _three_ objects - parents and victim (if it exists).
  1863. * And that - after we got ->i_sem on parents (until then we don't know
  1864. * whether the target exists). Solution: try to be smart with locking
  1865. * order for inodes. We rely on the fact that tree topology may change
  1866. * only under ->s_vfs_rename_sem _and_ that parent of the object we
  1867. * move will be locked. Thus we can rank directories by the tree
  1868. * (ancestors first) and rank all non-directories after them.
  1869. * That works since everybody except rename does "lock parent, lookup,
  1870. * lock child" and rename is under ->s_vfs_rename_sem.
  1871. * HOWEVER, it relies on the assumption that any object with ->lookup()
  1872. * has no more than 1 dentry. If "hybrid" objects will ever appear,
  1873. * we'd better make sure that there's no link(2) for them.
  1874. * d) some filesystems don't support opened-but-unlinked directories,
  1875. * either because of layout or because they are not ready to deal with
  1876. * all cases correctly. The latter will be fixed (taking this sort of
  1877. * stuff into VFS), but the former is not going away. Solution: the same
  1878. * trick as in rmdir().
  1879. * e) conversion from fhandle to dentry may come in the wrong moment - when
  1880. * we are removing the target. Solution: we will have to grab ->i_sem
  1881. * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
  1882. * ->i_sem on parents, which works but leads to some truely excessive
  1883. * locking].
  1884. */
  1885. static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
  1886. struct inode *new_dir, struct dentry *new_dentry)
  1887. {
  1888. int error = 0;
  1889. struct inode *target;
  1890. /*
  1891. * If we are going to change the parent - check write permissions,
  1892. * we'll need to flip '..'.
  1893. */
  1894. if (new_dir != old_dir) {
  1895. error = permission(old_dentry->d_inode, MAY_WRITE, NULL);
  1896. if (error)
  1897. return error;
  1898. }
  1899. error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
  1900. if (error)
  1901. return error;
  1902. target = new_dentry->d_inode;
  1903. if (target) {
  1904. down(&target->i_sem);
  1905. dentry_unhash(new_dentry);
  1906. }
  1907. if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
  1908. error = -EBUSY;
  1909. else
  1910. error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
  1911. if (target) {
  1912. if (!error)
  1913. target->i_flags |= S_DEAD;
  1914. up(&target->i_sem);
  1915. if (d_unhashed(new_dentry))
  1916. d_rehash(new_dentry);
  1917. dput(new_dentry);
  1918. }
  1919. if (!error) {
  1920. d_move(old_dentry,new_dentry);
  1921. security_inode_post_rename(old_dir, old_dentry,
  1922. new_dir, new_dentry);
  1923. }
  1924. return error;
  1925. }
  1926. static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
  1927. struct inode *new_dir, struct dentry *new_dentry)
  1928. {
  1929. struct inode *target;
  1930. int error;
  1931. error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
  1932. if (error)
  1933. return error;
  1934. dget(new_dentry);
  1935. target = new_dentry->d_inode;
  1936. if (target)
  1937. down(&target->i_sem);
  1938. if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
  1939. error = -EBUSY;
  1940. else
  1941. error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
  1942. if (!error) {
  1943. /* The following d_move() should become unconditional */
  1944. if (!(old_dir->i_sb->s_type->fs_flags & FS_ODD_RENAME))
  1945. d_move(old_dentry, new_dentry);
  1946. security_inode_post_rename(old_dir, old_dentry, new_dir, new_dentry);
  1947. }
  1948. if (target)
  1949. up(&target->i_sem);
  1950. dput(new_dentry);
  1951. return error;
  1952. }
  1953. int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
  1954. struct inode *new_dir, struct dentry *new_dentry)
  1955. {
  1956. int error;
  1957. int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
  1958. const char *old_name;
  1959. if (old_dentry->d_inode == new_dentry->d_inode)
  1960. return 0;
  1961. error = may_delete(old_dir, old_dentry, is_dir);
  1962. if (error)
  1963. return error;
  1964. if (!new_dentry->d_inode)
  1965. error = may_create(new_dir, new_dentry, NULL);
  1966. else
  1967. error = may_delete(new_dir, new_dentry, is_dir);
  1968. if (error)
  1969. return error;
  1970. if (!old_dir->i_op || !old_dir->i_op->rename)
  1971. return -EPERM;
  1972. DQUOT_INIT(old_dir);
  1973. DQUOT_INIT(new_dir);
  1974. old_name = fsnotify_oldname_init(old_dentry->d_name.name);
  1975. if (is_dir)
  1976. error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
  1977. else
  1978. error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
  1979. if (!error) {
  1980. const char *new_name = old_dentry->d_name.name;
  1981. fsnotify_move(old_dir, new_dir, old_name, new_name, is_dir);
  1982. }
  1983. fsnotify_oldname_free(old_name);
  1984. return error;
  1985. }
  1986. static inline int do_rename(const char * oldname, const char * newname)
  1987. {
  1988. int error = 0;
  1989. struct dentry * old_dir, * new_dir;
  1990. struct dentry * old_dentry, *new_dentry;
  1991. struct dentry * trap;
  1992. struct nameidata oldnd, newnd;
  1993. error = path_lookup(oldname, LOOKUP_PARENT, &oldnd);
  1994. if (error)
  1995. goto exit;
  1996. error = path_lookup(newname, LOOKUP_PARENT, &newnd);
  1997. if (error)
  1998. goto exit1;
  1999. error = -EXDEV;
  2000. if (oldnd.mnt != newnd.mnt)
  2001. goto exit2;
  2002. old_dir = oldnd.dentry;
  2003. error = -EBUSY;
  2004. if (oldnd.last_type != LAST_NORM)
  2005. goto exit2;
  2006. new_dir = newnd.dentry;
  2007. if (newnd.last_type != LAST_NORM)
  2008. goto exit2;
  2009. trap = lock_rename(new_dir, old_dir);
  2010. old_dentry = lookup_hash(&oldnd.last, old_dir);
  2011. error = PTR_ERR(old_dentry);
  2012. if (IS_ERR(old_dentry))
  2013. goto exit3;
  2014. /* source must exist */
  2015. error = -ENOENT;
  2016. if (!old_dentry->d_inode)
  2017. goto exit4;
  2018. /* unless the source is a directory trailing slashes give -ENOTDIR */
  2019. if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
  2020. error = -ENOTDIR;
  2021. if (oldnd.last.name[oldnd.last.len])
  2022. goto exit4;
  2023. if (newnd.last.name[newnd.last.len])
  2024. goto exit4;
  2025. }
  2026. /* source should not be ancestor of target */
  2027. error = -EINVAL;
  2028. if (old_dentry == trap)
  2029. goto exit4;
  2030. new_dentry = lookup_hash(&newnd.last, new_dir);
  2031. error = PTR_ERR(new_dentry);
  2032. if (IS_ERR(new_dentry))
  2033. goto exit4;
  2034. /* target should not be an ancestor of source */
  2035. error = -ENOTEMPTY;
  2036. if (new_dentry == trap)
  2037. goto exit5;
  2038. error = vfs_rename(old_dir->d_inode, old_dentry,
  2039. new_dir->d_inode, new_dentry);
  2040. exit5:
  2041. dput(new_dentry);
  2042. exit4:
  2043. dput(old_dentry);
  2044. exit3:
  2045. unlock_rename(new_dir, old_dir);
  2046. exit2:
  2047. path_release(&newnd);
  2048. exit1:
  2049. path_release(&oldnd);
  2050. exit:
  2051. return error;
  2052. }
  2053. asmlinkage long sys_rename(const char __user * oldname, const char __user * newname)
  2054. {
  2055. int error;
  2056. char * from;
  2057. char * to;
  2058. from = getname(oldname);
  2059. if(IS_ERR(from))
  2060. return PTR_ERR(from);
  2061. to = getname(newname);
  2062. error = PTR_ERR(to);
  2063. if (!IS_ERR(to)) {
  2064. error = do_rename(from,to);
  2065. putname(to);
  2066. }
  2067. putname(from);
  2068. return error;
  2069. }
  2070. int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
  2071. {
  2072. int len;
  2073. len = PTR_ERR(link);
  2074. if (IS_ERR(link))
  2075. goto out;
  2076. len = strlen(link);
  2077. if (len > (unsigned) buflen)
  2078. len = buflen;
  2079. if (copy_to_user(buffer, link, len))
  2080. len = -EFAULT;
  2081. out:
  2082. return len;
  2083. }
  2084. /*
  2085. * A helper for ->readlink(). This should be used *ONLY* for symlinks that
  2086. * have ->follow_link() touching nd only in nd_set_link(). Using (or not
  2087. * using) it for any given inode is up to filesystem.
  2088. */
  2089. int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
  2090. {
  2091. struct nameidata nd;
  2092. int res;
  2093. nd.depth = 0;
  2094. res = dentry->d_inode->i_op->follow_link(dentry, &nd);
  2095. if (!res) {
  2096. res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
  2097. if (dentry->d_inode->i_op->put_link)
  2098. dentry->d_inode->i_op->put_link(dentry, &nd);
  2099. }
  2100. return res;
  2101. }
  2102. int vfs_follow_link(struct nameidata *nd, const char *link)
  2103. {
  2104. return __vfs_follow_link(nd, link);
  2105. }
  2106. /* get the link contents into pagecache */
  2107. static char *page_getlink(struct dentry * dentry, struct page **ppage)
  2108. {
  2109. struct page * page;
  2110. struct address_space *mapping = dentry->d_inode->i_mapping;
  2111. page = read_cache_page(mapping, 0, (filler_t *)mapping->a_ops->readpage,
  2112. NULL);
  2113. if (IS_ERR(page))
  2114. goto sync_fail;
  2115. wait_on_page_locked(page);
  2116. if (!PageUptodate(page))
  2117. goto async_fail;
  2118. *ppage = page;
  2119. return kmap(page);
  2120. async_fail:
  2121. page_cache_release(page);
  2122. return ERR_PTR(-EIO);
  2123. sync_fail:
  2124. return (char*)page;
  2125. }
  2126. int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
  2127. {
  2128. struct page *page = NULL;
  2129. char *s = page_getlink(dentry, &page);
  2130. int res = vfs_readlink(dentry,buffer,buflen,s);
  2131. if (page) {
  2132. kunmap(page);
  2133. page_cache_release(page);
  2134. }
  2135. return res;
  2136. }
  2137. int page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
  2138. {
  2139. struct page *page;
  2140. nd_set_link(nd, page_getlink(dentry, &page));
  2141. return 0;
  2142. }
  2143. void page_put_link(struct dentry *dentry, struct nameidata *nd)
  2144. {
  2145. if (!IS_ERR(nd_get_link(nd))) {
  2146. struct page *page;
  2147. page = find_get_page(dentry->d_inode->i_mapping, 0);
  2148. if (!page)
  2149. BUG();
  2150. kunmap(page);
  2151. page_cache_release(page);
  2152. page_cache_release(page);
  2153. }
  2154. }
  2155. int page_symlink(struct inode *inode, const char *symname, int len)
  2156. {
  2157. struct address_space *mapping = inode->i_mapping;
  2158. struct page *page = grab_cache_page(mapping, 0);
  2159. int err = -ENOMEM;
  2160. char *kaddr;
  2161. if (!page)
  2162. goto fail;
  2163. err = mapping->a_ops->prepare_write(NULL, page, 0, len-1);
  2164. if (err)
  2165. goto fail_map;
  2166. kaddr = kmap_atomic(page, KM_USER0);
  2167. memcpy(kaddr, symname, len-1);
  2168. kunmap_atomic(kaddr, KM_USER0);
  2169. mapping->a_ops->commit_write(NULL, page, 0, len-1);
  2170. /*
  2171. * Notice that we are _not_ going to block here - end of page is
  2172. * unmapped, so this will only try to map the rest of page, see
  2173. * that it is unmapped (typically even will not look into inode -
  2174. * ->i_size will be enough for everything) and zero it out.
  2175. * OTOH it's obviously correct and should make the page up-to-date.
  2176. */
  2177. if (!PageUptodate(page)) {
  2178. err = mapping->a_ops->readpage(NULL, page);
  2179. wait_on_page_locked(page);
  2180. } else {
  2181. unlock_page(page);
  2182. }
  2183. page_cache_release(page);
  2184. if (err < 0)
  2185. goto fail;
  2186. mark_inode_dirty(inode);
  2187. return 0;
  2188. fail_map:
  2189. unlock_page(page);
  2190. page_cache_release(page);
  2191. fail:
  2192. return err;
  2193. }
  2194. struct inode_operations page_symlink_inode_operations = {
  2195. .readlink = generic_readlink,
  2196. .follow_link = page_follow_link_light,
  2197. .put_link = page_put_link,
  2198. };
  2199. EXPORT_SYMBOL(__user_walk);
  2200. EXPORT_SYMBOL(follow_down);
  2201. EXPORT_SYMBOL(follow_up);
  2202. EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
  2203. EXPORT_SYMBOL(getname);
  2204. EXPORT_SYMBOL(lock_rename);
  2205. EXPORT_SYMBOL(lookup_hash);
  2206. EXPORT_SYMBOL(lookup_one_len);
  2207. EXPORT_SYMBOL(page_follow_link_light);
  2208. EXPORT_SYMBOL(page_put_link);
  2209. EXPORT_SYMBOL(page_readlink);
  2210. EXPORT_SYMBOL(page_symlink);
  2211. EXPORT_SYMBOL(page_symlink_inode_operations);
  2212. EXPORT_SYMBOL(path_lookup);
  2213. EXPORT_SYMBOL(path_release);
  2214. EXPORT_SYMBOL(path_walk);
  2215. EXPORT_SYMBOL(permission);
  2216. EXPORT_SYMBOL(unlock_rename);
  2217. EXPORT_SYMBOL(vfs_create);
  2218. EXPORT_SYMBOL(vfs_follow_link);
  2219. EXPORT_SYMBOL(vfs_link);
  2220. EXPORT_SYMBOL(vfs_mkdir);
  2221. EXPORT_SYMBOL(vfs_mknod);
  2222. EXPORT_SYMBOL(generic_permission);
  2223. EXPORT_SYMBOL(vfs_readlink);
  2224. EXPORT_SYMBOL(vfs_rename);
  2225. EXPORT_SYMBOL(vfs_rmdir);
  2226. EXPORT_SYMBOL(vfs_symlink);
  2227. EXPORT_SYMBOL(vfs_unlink);
  2228. EXPORT_SYMBOL(dentry_unhash);
  2229. EXPORT_SYMBOL(generic_readlink);