namei.c 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092
  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/export.h>
  16. #include <linux/kernel.h>
  17. #include <linux/slab.h>
  18. #include <linux/fs.h>
  19. #include <linux/namei.h>
  20. #include <linux/pagemap.h>
  21. #include <linux/fsnotify.h>
  22. #include <linux/personality.h>
  23. #include <linux/security.h>
  24. #include <linux/ima.h>
  25. #include <linux/syscalls.h>
  26. #include <linux/mount.h>
  27. #include <linux/audit.h>
  28. #include <linux/capability.h>
  29. #include <linux/file.h>
  30. #include <linux/fcntl.h>
  31. #include <linux/device_cgroup.h>
  32. #include <linux/fs_struct.h>
  33. #include <linux/posix_acl.h>
  34. #include <asm/uaccess.h>
  35. #include "internal.h"
  36. #include "mount.h"
  37. /* [Feb-1997 T. Schoebel-Theuer]
  38. * Fundamental changes in the pathname lookup mechanisms (namei)
  39. * were necessary because of omirr. The reason is that omirr needs
  40. * to know the _real_ pathname, not the user-supplied one, in case
  41. * of symlinks (and also when transname replacements occur).
  42. *
  43. * The new code replaces the old recursive symlink resolution with
  44. * an iterative one (in case of non-nested symlink chains). It does
  45. * this with calls to <fs>_follow_link().
  46. * As a side effect, dir_namei(), _namei() and follow_link() are now
  47. * replaced with a single function lookup_dentry() that can handle all
  48. * the special cases of the former code.
  49. *
  50. * With the new dcache, the pathname is stored at each inode, at least as
  51. * long as the refcount of the inode is positive. As a side effect, the
  52. * size of the dcache depends on the inode cache and thus is dynamic.
  53. *
  54. * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
  55. * resolution to correspond with current state of the code.
  56. *
  57. * Note that the symlink resolution is not *completely* iterative.
  58. * There is still a significant amount of tail- and mid- recursion in
  59. * the algorithm. Also, note that <fs>_readlink() is not used in
  60. * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
  61. * may return different results than <fs>_follow_link(). Many virtual
  62. * filesystems (including /proc) exhibit this behavior.
  63. */
  64. /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
  65. * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
  66. * and the name already exists in form of a symlink, try to create the new
  67. * name indicated by the symlink. The old code always complained that the
  68. * name already exists, due to not following the symlink even if its target
  69. * is nonexistent. The new semantics affects also mknod() and link() when
  70. * the name is a symlink pointing to a non-existent name.
  71. *
  72. * I don't know which semantics is the right one, since I have no access
  73. * to standards. But I found by trial that HP-UX 9.0 has the full "new"
  74. * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
  75. * "old" one. Personally, I think the new semantics is much more logical.
  76. * Note that "ln old new" where "new" is a symlink pointing to a non-existing
  77. * file does succeed in both HP-UX and SunOs, but not in Solaris
  78. * and in the old Linux semantics.
  79. */
  80. /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
  81. * semantics. See the comments in "open_namei" and "do_link" below.
  82. *
  83. * [10-Sep-98 Alan Modra] Another symlink change.
  84. */
  85. /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
  86. * inside the path - always follow.
  87. * in the last component in creation/removal/renaming - never follow.
  88. * if LOOKUP_FOLLOW passed - follow.
  89. * if the pathname has trailing slashes - follow.
  90. * otherwise - don't follow.
  91. * (applied in that order).
  92. *
  93. * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
  94. * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
  95. * During the 2.4 we need to fix the userland stuff depending on it -
  96. * hopefully we will be able to get rid of that wart in 2.5. So far only
  97. * XEmacs seems to be relying on it...
  98. */
  99. /*
  100. * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
  101. * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
  102. * any extra contention...
  103. */
  104. /* In order to reduce some races, while at the same time doing additional
  105. * checking and hopefully speeding things up, we copy filenames to the
  106. * kernel data space before using them..
  107. *
  108. * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
  109. * PATH_MAX includes the nul terminator --RR.
  110. */
  111. void final_putname(struct filename *name)
  112. {
  113. if (name->separate) {
  114. __putname(name->name);
  115. kfree(name);
  116. } else {
  117. __putname(name);
  118. }
  119. }
  120. #define EMBEDDED_NAME_MAX (PATH_MAX - sizeof(struct filename))
  121. static struct filename *
  122. getname_flags(const char __user *filename, int flags, int *empty)
  123. {
  124. struct filename *result, *err;
  125. int len;
  126. long max;
  127. char *kname;
  128. result = audit_reusename(filename);
  129. if (result)
  130. return result;
  131. result = __getname();
  132. if (unlikely(!result))
  133. return ERR_PTR(-ENOMEM);
  134. /*
  135. * First, try to embed the struct filename inside the names_cache
  136. * allocation
  137. */
  138. kname = (char *)result + sizeof(*result);
  139. result->name = kname;
  140. result->separate = false;
  141. max = EMBEDDED_NAME_MAX;
  142. recopy:
  143. len = strncpy_from_user(kname, filename, max);
  144. if (unlikely(len < 0)) {
  145. err = ERR_PTR(len);
  146. goto error;
  147. }
  148. /*
  149. * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
  150. * separate struct filename so we can dedicate the entire
  151. * names_cache allocation for the pathname, and re-do the copy from
  152. * userland.
  153. */
  154. if (len == EMBEDDED_NAME_MAX && max == EMBEDDED_NAME_MAX) {
  155. kname = (char *)result;
  156. result = kzalloc(sizeof(*result), GFP_KERNEL);
  157. if (!result) {
  158. err = ERR_PTR(-ENOMEM);
  159. result = (struct filename *)kname;
  160. goto error;
  161. }
  162. result->name = kname;
  163. result->separate = true;
  164. max = PATH_MAX;
  165. goto recopy;
  166. }
  167. /* The empty path is special. */
  168. if (unlikely(!len)) {
  169. if (empty)
  170. *empty = 1;
  171. err = ERR_PTR(-ENOENT);
  172. if (!(flags & LOOKUP_EMPTY))
  173. goto error;
  174. }
  175. err = ERR_PTR(-ENAMETOOLONG);
  176. if (unlikely(len >= PATH_MAX))
  177. goto error;
  178. result->uptr = filename;
  179. audit_getname(result);
  180. return result;
  181. error:
  182. final_putname(result);
  183. return err;
  184. }
  185. struct filename *
  186. getname(const char __user * filename)
  187. {
  188. return getname_flags(filename, 0, NULL);
  189. }
  190. EXPORT_SYMBOL(getname);
  191. #ifdef CONFIG_AUDITSYSCALL
  192. void putname(struct filename *name)
  193. {
  194. if (unlikely(!audit_dummy_context()))
  195. return audit_putname(name);
  196. final_putname(name);
  197. }
  198. #endif
  199. static int check_acl(struct inode *inode, int mask)
  200. {
  201. #ifdef CONFIG_FS_POSIX_ACL
  202. struct posix_acl *acl;
  203. if (mask & MAY_NOT_BLOCK) {
  204. acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
  205. if (!acl)
  206. return -EAGAIN;
  207. /* no ->get_acl() calls in RCU mode... */
  208. if (acl == ACL_NOT_CACHED)
  209. return -ECHILD;
  210. return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
  211. }
  212. acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
  213. /*
  214. * A filesystem can force a ACL callback by just never filling the
  215. * ACL cache. But normally you'd fill the cache either at inode
  216. * instantiation time, or on the first ->get_acl call.
  217. *
  218. * If the filesystem doesn't have a get_acl() function at all, we'll
  219. * just create the negative cache entry.
  220. */
  221. if (acl == ACL_NOT_CACHED) {
  222. if (inode->i_op->get_acl) {
  223. acl = inode->i_op->get_acl(inode, ACL_TYPE_ACCESS);
  224. if (IS_ERR(acl))
  225. return PTR_ERR(acl);
  226. } else {
  227. set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
  228. return -EAGAIN;
  229. }
  230. }
  231. if (acl) {
  232. int error = posix_acl_permission(inode, acl, mask);
  233. posix_acl_release(acl);
  234. return error;
  235. }
  236. #endif
  237. return -EAGAIN;
  238. }
  239. /*
  240. * This does the basic permission checking
  241. */
  242. static int acl_permission_check(struct inode *inode, int mask)
  243. {
  244. unsigned int mode = inode->i_mode;
  245. if (likely(uid_eq(current_fsuid(), inode->i_uid)))
  246. mode >>= 6;
  247. else {
  248. if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
  249. int error = check_acl(inode, mask);
  250. if (error != -EAGAIN)
  251. return error;
  252. }
  253. if (in_group_p(inode->i_gid))
  254. mode >>= 3;
  255. }
  256. /*
  257. * If the DACs are ok we don't need any capability check.
  258. */
  259. if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
  260. return 0;
  261. return -EACCES;
  262. }
  263. /**
  264. * generic_permission - check for access rights on a Posix-like filesystem
  265. * @inode: inode to check access rights for
  266. * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
  267. *
  268. * Used to check for read/write/execute permissions on a file.
  269. * We use "fsuid" for this, letting us set arbitrary permissions
  270. * for filesystem access without changing the "normal" uids which
  271. * are used for other things.
  272. *
  273. * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
  274. * request cannot be satisfied (eg. requires blocking or too much complexity).
  275. * It would then be called again in ref-walk mode.
  276. */
  277. int generic_permission(struct inode *inode, int mask)
  278. {
  279. int ret;
  280. /*
  281. * Do the basic permission checks.
  282. */
  283. ret = acl_permission_check(inode, mask);
  284. if (ret != -EACCES)
  285. return ret;
  286. if (S_ISDIR(inode->i_mode)) {
  287. /* DACs are overridable for directories */
  288. if (inode_capable(inode, CAP_DAC_OVERRIDE))
  289. return 0;
  290. if (!(mask & MAY_WRITE))
  291. if (inode_capable(inode, CAP_DAC_READ_SEARCH))
  292. return 0;
  293. return -EACCES;
  294. }
  295. /*
  296. * Read/write DACs are always overridable.
  297. * Executable DACs are overridable when there is
  298. * at least one exec bit set.
  299. */
  300. if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
  301. if (inode_capable(inode, CAP_DAC_OVERRIDE))
  302. return 0;
  303. /*
  304. * Searching includes executable on directories, else just read.
  305. */
  306. mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
  307. if (mask == MAY_READ)
  308. if (inode_capable(inode, CAP_DAC_READ_SEARCH))
  309. return 0;
  310. return -EACCES;
  311. }
  312. /*
  313. * We _really_ want to just do "generic_permission()" without
  314. * even looking at the inode->i_op values. So we keep a cache
  315. * flag in inode->i_opflags, that says "this has not special
  316. * permission function, use the fast case".
  317. */
  318. static inline int do_inode_permission(struct inode *inode, int mask)
  319. {
  320. if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
  321. if (likely(inode->i_op->permission))
  322. return inode->i_op->permission(inode, mask);
  323. /* This gets set once for the inode lifetime */
  324. spin_lock(&inode->i_lock);
  325. inode->i_opflags |= IOP_FASTPERM;
  326. spin_unlock(&inode->i_lock);
  327. }
  328. return generic_permission(inode, mask);
  329. }
  330. /**
  331. * __inode_permission - Check for access rights to a given inode
  332. * @inode: Inode to check permission on
  333. * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
  334. *
  335. * Check for read/write/execute permissions on an inode.
  336. *
  337. * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
  338. *
  339. * This does not check for a read-only file system. You probably want
  340. * inode_permission().
  341. */
  342. int __inode_permission(struct inode *inode, int mask)
  343. {
  344. int retval;
  345. if (unlikely(mask & MAY_WRITE)) {
  346. /*
  347. * Nobody gets write access to an immutable file.
  348. */
  349. if (IS_IMMUTABLE(inode))
  350. return -EACCES;
  351. }
  352. retval = do_inode_permission(inode, mask);
  353. if (retval)
  354. return retval;
  355. retval = devcgroup_inode_permission(inode, mask);
  356. if (retval)
  357. return retval;
  358. return security_inode_permission(inode, mask);
  359. }
  360. /**
  361. * sb_permission - Check superblock-level permissions
  362. * @sb: Superblock of inode to check permission on
  363. * @inode: Inode to check permission on
  364. * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
  365. *
  366. * Separate out file-system wide checks from inode-specific permission checks.
  367. */
  368. static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
  369. {
  370. if (unlikely(mask & MAY_WRITE)) {
  371. umode_t mode = inode->i_mode;
  372. /* Nobody gets write access to a read-only fs. */
  373. if ((sb->s_flags & MS_RDONLY) &&
  374. (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
  375. return -EROFS;
  376. }
  377. return 0;
  378. }
  379. /**
  380. * inode_permission - Check for access rights to a given inode
  381. * @inode: Inode to check permission on
  382. * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
  383. *
  384. * Check for read/write/execute permissions on an inode. We use fs[ug]id for
  385. * this, letting us set arbitrary permissions for filesystem access without
  386. * changing the "normal" UIDs which are used for other things.
  387. *
  388. * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
  389. */
  390. int inode_permission(struct inode *inode, int mask)
  391. {
  392. int retval;
  393. retval = sb_permission(inode->i_sb, inode, mask);
  394. if (retval)
  395. return retval;
  396. return __inode_permission(inode, mask);
  397. }
  398. /**
  399. * path_get - get a reference to a path
  400. * @path: path to get the reference to
  401. *
  402. * Given a path increment the reference count to the dentry and the vfsmount.
  403. */
  404. void path_get(struct path *path)
  405. {
  406. mntget(path->mnt);
  407. dget(path->dentry);
  408. }
  409. EXPORT_SYMBOL(path_get);
  410. /**
  411. * path_put - put a reference to a path
  412. * @path: path to put the reference to
  413. *
  414. * Given a path decrement the reference count to the dentry and the vfsmount.
  415. */
  416. void path_put(struct path *path)
  417. {
  418. dput(path->dentry);
  419. mntput(path->mnt);
  420. }
  421. EXPORT_SYMBOL(path_put);
  422. /*
  423. * Path walking has 2 modes, rcu-walk and ref-walk (see
  424. * Documentation/filesystems/path-lookup.txt). In situations when we can't
  425. * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
  426. * normal reference counts on dentries and vfsmounts to transition to rcu-walk
  427. * mode. Refcounts are grabbed at the last known good point before rcu-walk
  428. * got stuck, so ref-walk may continue from there. If this is not successful
  429. * (eg. a seqcount has changed), then failure is returned and it's up to caller
  430. * to restart the path walk from the beginning in ref-walk mode.
  431. */
  432. static inline void lock_rcu_walk(void)
  433. {
  434. br_read_lock(&vfsmount_lock);
  435. rcu_read_lock();
  436. }
  437. static inline void unlock_rcu_walk(void)
  438. {
  439. rcu_read_unlock();
  440. br_read_unlock(&vfsmount_lock);
  441. }
  442. /**
  443. * unlazy_walk - try to switch to ref-walk mode.
  444. * @nd: nameidata pathwalk data
  445. * @dentry: child of nd->path.dentry or NULL
  446. * Returns: 0 on success, -ECHILD on failure
  447. *
  448. * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
  449. * for ref-walk mode. @dentry must be a path found by a do_lookup call on
  450. * @nd or NULL. Must be called from rcu-walk context.
  451. */
  452. static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
  453. {
  454. struct fs_struct *fs = current->fs;
  455. struct dentry *parent = nd->path.dentry;
  456. int want_root = 0;
  457. BUG_ON(!(nd->flags & LOOKUP_RCU));
  458. if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
  459. want_root = 1;
  460. spin_lock(&fs->lock);
  461. if (nd->root.mnt != fs->root.mnt ||
  462. nd->root.dentry != fs->root.dentry)
  463. goto err_root;
  464. }
  465. spin_lock(&parent->d_lock);
  466. if (!dentry) {
  467. if (!__d_rcu_to_refcount(parent, nd->seq))
  468. goto err_parent;
  469. BUG_ON(nd->inode != parent->d_inode);
  470. } else {
  471. if (dentry->d_parent != parent)
  472. goto err_parent;
  473. spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
  474. if (!__d_rcu_to_refcount(dentry, nd->seq))
  475. goto err_child;
  476. /*
  477. * If the sequence check on the child dentry passed, then
  478. * the child has not been removed from its parent. This
  479. * means the parent dentry must be valid and able to take
  480. * a reference at this point.
  481. */
  482. BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
  483. BUG_ON(!parent->d_count);
  484. parent->d_count++;
  485. spin_unlock(&dentry->d_lock);
  486. }
  487. spin_unlock(&parent->d_lock);
  488. if (want_root) {
  489. path_get(&nd->root);
  490. spin_unlock(&fs->lock);
  491. }
  492. mntget(nd->path.mnt);
  493. unlock_rcu_walk();
  494. nd->flags &= ~LOOKUP_RCU;
  495. return 0;
  496. err_child:
  497. spin_unlock(&dentry->d_lock);
  498. err_parent:
  499. spin_unlock(&parent->d_lock);
  500. err_root:
  501. if (want_root)
  502. spin_unlock(&fs->lock);
  503. return -ECHILD;
  504. }
  505. static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
  506. {
  507. return dentry->d_op->d_revalidate(dentry, flags);
  508. }
  509. /**
  510. * complete_walk - successful completion of path walk
  511. * @nd: pointer nameidata
  512. *
  513. * If we had been in RCU mode, drop out of it and legitimize nd->path.
  514. * Revalidate the final result, unless we'd already done that during
  515. * the path walk or the filesystem doesn't ask for it. Return 0 on
  516. * success, -error on failure. In case of failure caller does not
  517. * need to drop nd->path.
  518. */
  519. static int complete_walk(struct nameidata *nd)
  520. {
  521. struct dentry *dentry = nd->path.dentry;
  522. int status;
  523. if (nd->flags & LOOKUP_RCU) {
  524. nd->flags &= ~LOOKUP_RCU;
  525. if (!(nd->flags & LOOKUP_ROOT))
  526. nd->root.mnt = NULL;
  527. spin_lock(&dentry->d_lock);
  528. if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
  529. spin_unlock(&dentry->d_lock);
  530. unlock_rcu_walk();
  531. return -ECHILD;
  532. }
  533. BUG_ON(nd->inode != dentry->d_inode);
  534. spin_unlock(&dentry->d_lock);
  535. mntget(nd->path.mnt);
  536. unlock_rcu_walk();
  537. }
  538. if (likely(!(nd->flags & LOOKUP_JUMPED)))
  539. return 0;
  540. if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
  541. return 0;
  542. if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
  543. return 0;
  544. /* Note: we do not d_invalidate() */
  545. status = d_revalidate(dentry, nd->flags);
  546. if (status > 0)
  547. return 0;
  548. if (!status)
  549. status = -ESTALE;
  550. path_put(&nd->path);
  551. return status;
  552. }
  553. static __always_inline void set_root(struct nameidata *nd)
  554. {
  555. if (!nd->root.mnt)
  556. get_fs_root(current->fs, &nd->root);
  557. }
  558. static int link_path_walk(const char *, struct nameidata *);
  559. static __always_inline void set_root_rcu(struct nameidata *nd)
  560. {
  561. if (!nd->root.mnt) {
  562. struct fs_struct *fs = current->fs;
  563. unsigned seq;
  564. do {
  565. seq = read_seqcount_begin(&fs->seq);
  566. nd->root = fs->root;
  567. nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
  568. } while (read_seqcount_retry(&fs->seq, seq));
  569. }
  570. }
  571. static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
  572. {
  573. int ret;
  574. if (IS_ERR(link))
  575. goto fail;
  576. if (*link == '/') {
  577. set_root(nd);
  578. path_put(&nd->path);
  579. nd->path = nd->root;
  580. path_get(&nd->root);
  581. nd->flags |= LOOKUP_JUMPED;
  582. }
  583. nd->inode = nd->path.dentry->d_inode;
  584. ret = link_path_walk(link, nd);
  585. return ret;
  586. fail:
  587. path_put(&nd->path);
  588. return PTR_ERR(link);
  589. }
  590. static void path_put_conditional(struct path *path, struct nameidata *nd)
  591. {
  592. dput(path->dentry);
  593. if (path->mnt != nd->path.mnt)
  594. mntput(path->mnt);
  595. }
  596. static inline void path_to_nameidata(const struct path *path,
  597. struct nameidata *nd)
  598. {
  599. if (!(nd->flags & LOOKUP_RCU)) {
  600. dput(nd->path.dentry);
  601. if (nd->path.mnt != path->mnt)
  602. mntput(nd->path.mnt);
  603. }
  604. nd->path.mnt = path->mnt;
  605. nd->path.dentry = path->dentry;
  606. }
  607. /*
  608. * Helper to directly jump to a known parsed path from ->follow_link,
  609. * caller must have taken a reference to path beforehand.
  610. */
  611. void nd_jump_link(struct nameidata *nd, struct path *path)
  612. {
  613. path_put(&nd->path);
  614. nd->path = *path;
  615. nd->inode = nd->path.dentry->d_inode;
  616. nd->flags |= LOOKUP_JUMPED;
  617. BUG_ON(nd->inode->i_op->follow_link);
  618. }
  619. static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
  620. {
  621. struct inode *inode = link->dentry->d_inode;
  622. if (inode->i_op->put_link)
  623. inode->i_op->put_link(link->dentry, nd, cookie);
  624. path_put(link);
  625. }
  626. int sysctl_protected_symlinks __read_mostly = 0;
  627. int sysctl_protected_hardlinks __read_mostly = 0;
  628. /**
  629. * may_follow_link - Check symlink following for unsafe situations
  630. * @link: The path of the symlink
  631. * @nd: nameidata pathwalk data
  632. *
  633. * In the case of the sysctl_protected_symlinks sysctl being enabled,
  634. * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
  635. * in a sticky world-writable directory. This is to protect privileged
  636. * processes from failing races against path names that may change out
  637. * from under them by way of other users creating malicious symlinks.
  638. * It will permit symlinks to be followed only when outside a sticky
  639. * world-writable directory, or when the uid of the symlink and follower
  640. * match, or when the directory owner matches the symlink's owner.
  641. *
  642. * Returns 0 if following the symlink is allowed, -ve on error.
  643. */
  644. static inline int may_follow_link(struct path *link, struct nameidata *nd)
  645. {
  646. const struct inode *inode;
  647. const struct inode *parent;
  648. if (!sysctl_protected_symlinks)
  649. return 0;
  650. /* Allowed if owner and follower match. */
  651. inode = link->dentry->d_inode;
  652. if (uid_eq(current_cred()->fsuid, inode->i_uid))
  653. return 0;
  654. /* Allowed if parent directory not sticky and world-writable. */
  655. parent = nd->path.dentry->d_inode;
  656. if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
  657. return 0;
  658. /* Allowed if parent directory and link owner match. */
  659. if (uid_eq(parent->i_uid, inode->i_uid))
  660. return 0;
  661. audit_log_link_denied("follow_link", link);
  662. path_put_conditional(link, nd);
  663. path_put(&nd->path);
  664. return -EACCES;
  665. }
  666. /**
  667. * safe_hardlink_source - Check for safe hardlink conditions
  668. * @inode: the source inode to hardlink from
  669. *
  670. * Return false if at least one of the following conditions:
  671. * - inode is not a regular file
  672. * - inode is setuid
  673. * - inode is setgid and group-exec
  674. * - access failure for read and write
  675. *
  676. * Otherwise returns true.
  677. */
  678. static bool safe_hardlink_source(struct inode *inode)
  679. {
  680. umode_t mode = inode->i_mode;
  681. /* Special files should not get pinned to the filesystem. */
  682. if (!S_ISREG(mode))
  683. return false;
  684. /* Setuid files should not get pinned to the filesystem. */
  685. if (mode & S_ISUID)
  686. return false;
  687. /* Executable setgid files should not get pinned to the filesystem. */
  688. if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
  689. return false;
  690. /* Hardlinking to unreadable or unwritable sources is dangerous. */
  691. if (inode_permission(inode, MAY_READ | MAY_WRITE))
  692. return false;
  693. return true;
  694. }
  695. /**
  696. * may_linkat - Check permissions for creating a hardlink
  697. * @link: the source to hardlink from
  698. *
  699. * Block hardlink when all of:
  700. * - sysctl_protected_hardlinks enabled
  701. * - fsuid does not match inode
  702. * - hardlink source is unsafe (see safe_hardlink_source() above)
  703. * - not CAP_FOWNER
  704. *
  705. * Returns 0 if successful, -ve on error.
  706. */
  707. static int may_linkat(struct path *link)
  708. {
  709. const struct cred *cred;
  710. struct inode *inode;
  711. if (!sysctl_protected_hardlinks)
  712. return 0;
  713. cred = current_cred();
  714. inode = link->dentry->d_inode;
  715. /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
  716. * otherwise, it must be a safe source.
  717. */
  718. if (uid_eq(cred->fsuid, inode->i_uid) || safe_hardlink_source(inode) ||
  719. capable(CAP_FOWNER))
  720. return 0;
  721. audit_log_link_denied("linkat", link);
  722. return -EPERM;
  723. }
  724. static __always_inline int
  725. follow_link(struct path *link, struct nameidata *nd, void **p)
  726. {
  727. struct dentry *dentry = link->dentry;
  728. int error;
  729. char *s;
  730. BUG_ON(nd->flags & LOOKUP_RCU);
  731. if (link->mnt == nd->path.mnt)
  732. mntget(link->mnt);
  733. error = -ELOOP;
  734. if (unlikely(current->total_link_count >= 40))
  735. goto out_put_nd_path;
  736. cond_resched();
  737. current->total_link_count++;
  738. touch_atime(link);
  739. nd_set_link(nd, NULL);
  740. error = security_inode_follow_link(link->dentry, nd);
  741. if (error)
  742. goto out_put_nd_path;
  743. nd->last_type = LAST_BIND;
  744. *p = dentry->d_inode->i_op->follow_link(dentry, nd);
  745. error = PTR_ERR(*p);
  746. if (IS_ERR(*p))
  747. goto out_put_nd_path;
  748. error = 0;
  749. s = nd_get_link(nd);
  750. if (s) {
  751. error = __vfs_follow_link(nd, s);
  752. if (unlikely(error))
  753. put_link(nd, link, *p);
  754. }
  755. return error;
  756. out_put_nd_path:
  757. *p = NULL;
  758. path_put(&nd->path);
  759. path_put(link);
  760. return error;
  761. }
  762. static int follow_up_rcu(struct path *path)
  763. {
  764. struct mount *mnt = real_mount(path->mnt);
  765. struct mount *parent;
  766. struct dentry *mountpoint;
  767. parent = mnt->mnt_parent;
  768. if (&parent->mnt == path->mnt)
  769. return 0;
  770. mountpoint = mnt->mnt_mountpoint;
  771. path->dentry = mountpoint;
  772. path->mnt = &parent->mnt;
  773. return 1;
  774. }
  775. /*
  776. * follow_up - Find the mountpoint of path's vfsmount
  777. *
  778. * Given a path, find the mountpoint of its source file system.
  779. * Replace @path with the path of the mountpoint in the parent mount.
  780. * Up is towards /.
  781. *
  782. * Return 1 if we went up a level and 0 if we were already at the
  783. * root.
  784. */
  785. int follow_up(struct path *path)
  786. {
  787. struct mount *mnt = real_mount(path->mnt);
  788. struct mount *parent;
  789. struct dentry *mountpoint;
  790. br_read_lock(&vfsmount_lock);
  791. parent = mnt->mnt_parent;
  792. if (parent == mnt) {
  793. br_read_unlock(&vfsmount_lock);
  794. return 0;
  795. }
  796. mntget(&parent->mnt);
  797. mountpoint = dget(mnt->mnt_mountpoint);
  798. br_read_unlock(&vfsmount_lock);
  799. dput(path->dentry);
  800. path->dentry = mountpoint;
  801. mntput(path->mnt);
  802. path->mnt = &parent->mnt;
  803. return 1;
  804. }
  805. /*
  806. * Perform an automount
  807. * - return -EISDIR to tell follow_managed() to stop and return the path we
  808. * were called with.
  809. */
  810. static int follow_automount(struct path *path, unsigned flags,
  811. bool *need_mntput)
  812. {
  813. struct vfsmount *mnt;
  814. int err;
  815. if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
  816. return -EREMOTE;
  817. /* We don't want to mount if someone's just doing a stat -
  818. * unless they're stat'ing a directory and appended a '/' to
  819. * the name.
  820. *
  821. * We do, however, want to mount if someone wants to open or
  822. * create a file of any type under the mountpoint, wants to
  823. * traverse through the mountpoint or wants to open the
  824. * mounted directory. Also, autofs may mark negative dentries
  825. * as being automount points. These will need the attentions
  826. * of the daemon to instantiate them before they can be used.
  827. */
  828. if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
  829. LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
  830. path->dentry->d_inode)
  831. return -EISDIR;
  832. current->total_link_count++;
  833. if (current->total_link_count >= 40)
  834. return -ELOOP;
  835. mnt = path->dentry->d_op->d_automount(path);
  836. if (IS_ERR(mnt)) {
  837. /*
  838. * The filesystem is allowed to return -EISDIR here to indicate
  839. * it doesn't want to automount. For instance, autofs would do
  840. * this so that its userspace daemon can mount on this dentry.
  841. *
  842. * However, we can only permit this if it's a terminal point in
  843. * the path being looked up; if it wasn't then the remainder of
  844. * the path is inaccessible and we should say so.
  845. */
  846. if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
  847. return -EREMOTE;
  848. return PTR_ERR(mnt);
  849. }
  850. if (!mnt) /* mount collision */
  851. return 0;
  852. if (!*need_mntput) {
  853. /* lock_mount() may release path->mnt on error */
  854. mntget(path->mnt);
  855. *need_mntput = true;
  856. }
  857. err = finish_automount(mnt, path);
  858. switch (err) {
  859. case -EBUSY:
  860. /* Someone else made a mount here whilst we were busy */
  861. return 0;
  862. case 0:
  863. path_put(path);
  864. path->mnt = mnt;
  865. path->dentry = dget(mnt->mnt_root);
  866. return 0;
  867. default:
  868. return err;
  869. }
  870. }
  871. /*
  872. * Handle a dentry that is managed in some way.
  873. * - Flagged for transit management (autofs)
  874. * - Flagged as mountpoint
  875. * - Flagged as automount point
  876. *
  877. * This may only be called in refwalk mode.
  878. *
  879. * Serialization is taken care of in namespace.c
  880. */
  881. static int follow_managed(struct path *path, unsigned flags)
  882. {
  883. struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
  884. unsigned managed;
  885. bool need_mntput = false;
  886. int ret = 0;
  887. /* Given that we're not holding a lock here, we retain the value in a
  888. * local variable for each dentry as we look at it so that we don't see
  889. * the components of that value change under us */
  890. while (managed = ACCESS_ONCE(path->dentry->d_flags),
  891. managed &= DCACHE_MANAGED_DENTRY,
  892. unlikely(managed != 0)) {
  893. /* Allow the filesystem to manage the transit without i_mutex
  894. * being held. */
  895. if (managed & DCACHE_MANAGE_TRANSIT) {
  896. BUG_ON(!path->dentry->d_op);
  897. BUG_ON(!path->dentry->d_op->d_manage);
  898. ret = path->dentry->d_op->d_manage(path->dentry, false);
  899. if (ret < 0)
  900. break;
  901. }
  902. /* Transit to a mounted filesystem. */
  903. if (managed & DCACHE_MOUNTED) {
  904. struct vfsmount *mounted = lookup_mnt(path);
  905. if (mounted) {
  906. dput(path->dentry);
  907. if (need_mntput)
  908. mntput(path->mnt);
  909. path->mnt = mounted;
  910. path->dentry = dget(mounted->mnt_root);
  911. need_mntput = true;
  912. continue;
  913. }
  914. /* Something is mounted on this dentry in another
  915. * namespace and/or whatever was mounted there in this
  916. * namespace got unmounted before we managed to get the
  917. * vfsmount_lock */
  918. }
  919. /* Handle an automount point */
  920. if (managed & DCACHE_NEED_AUTOMOUNT) {
  921. ret = follow_automount(path, flags, &need_mntput);
  922. if (ret < 0)
  923. break;
  924. continue;
  925. }
  926. /* We didn't change the current path point */
  927. break;
  928. }
  929. if (need_mntput && path->mnt == mnt)
  930. mntput(path->mnt);
  931. if (ret == -EISDIR)
  932. ret = 0;
  933. return ret < 0 ? ret : need_mntput;
  934. }
  935. int follow_down_one(struct path *path)
  936. {
  937. struct vfsmount *mounted;
  938. mounted = lookup_mnt(path);
  939. if (mounted) {
  940. dput(path->dentry);
  941. mntput(path->mnt);
  942. path->mnt = mounted;
  943. path->dentry = dget(mounted->mnt_root);
  944. return 1;
  945. }
  946. return 0;
  947. }
  948. static inline bool managed_dentry_might_block(struct dentry *dentry)
  949. {
  950. return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
  951. dentry->d_op->d_manage(dentry, true) < 0);
  952. }
  953. /*
  954. * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
  955. * we meet a managed dentry that would need blocking.
  956. */
  957. static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
  958. struct inode **inode)
  959. {
  960. for (;;) {
  961. struct mount *mounted;
  962. /*
  963. * Don't forget we might have a non-mountpoint managed dentry
  964. * that wants to block transit.
  965. */
  966. if (unlikely(managed_dentry_might_block(path->dentry)))
  967. return false;
  968. if (!d_mountpoint(path->dentry))
  969. break;
  970. mounted = __lookup_mnt(path->mnt, path->dentry, 1);
  971. if (!mounted)
  972. break;
  973. path->mnt = &mounted->mnt;
  974. path->dentry = mounted->mnt.mnt_root;
  975. nd->flags |= LOOKUP_JUMPED;
  976. nd->seq = read_seqcount_begin(&path->dentry->d_seq);
  977. /*
  978. * Update the inode too. We don't need to re-check the
  979. * dentry sequence number here after this d_inode read,
  980. * because a mount-point is always pinned.
  981. */
  982. *inode = path->dentry->d_inode;
  983. }
  984. return true;
  985. }
  986. static void follow_mount_rcu(struct nameidata *nd)
  987. {
  988. while (d_mountpoint(nd->path.dentry)) {
  989. struct mount *mounted;
  990. mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
  991. if (!mounted)
  992. break;
  993. nd->path.mnt = &mounted->mnt;
  994. nd->path.dentry = mounted->mnt.mnt_root;
  995. nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
  996. }
  997. }
  998. static int follow_dotdot_rcu(struct nameidata *nd)
  999. {
  1000. set_root_rcu(nd);
  1001. while (1) {
  1002. if (nd->path.dentry == nd->root.dentry &&
  1003. nd->path.mnt == nd->root.mnt) {
  1004. break;
  1005. }
  1006. if (nd->path.dentry != nd->path.mnt->mnt_root) {
  1007. struct dentry *old = nd->path.dentry;
  1008. struct dentry *parent = old->d_parent;
  1009. unsigned seq;
  1010. seq = read_seqcount_begin(&parent->d_seq);
  1011. if (read_seqcount_retry(&old->d_seq, nd->seq))
  1012. goto failed;
  1013. nd->path.dentry = parent;
  1014. nd->seq = seq;
  1015. break;
  1016. }
  1017. if (!follow_up_rcu(&nd->path))
  1018. break;
  1019. nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
  1020. }
  1021. follow_mount_rcu(nd);
  1022. nd->inode = nd->path.dentry->d_inode;
  1023. return 0;
  1024. failed:
  1025. nd->flags &= ~LOOKUP_RCU;
  1026. if (!(nd->flags & LOOKUP_ROOT))
  1027. nd->root.mnt = NULL;
  1028. unlock_rcu_walk();
  1029. return -ECHILD;
  1030. }
  1031. /*
  1032. * Follow down to the covering mount currently visible to userspace. At each
  1033. * point, the filesystem owning that dentry may be queried as to whether the
  1034. * caller is permitted to proceed or not.
  1035. */
  1036. int follow_down(struct path *path)
  1037. {
  1038. unsigned managed;
  1039. int ret;
  1040. while (managed = ACCESS_ONCE(path->dentry->d_flags),
  1041. unlikely(managed & DCACHE_MANAGED_DENTRY)) {
  1042. /* Allow the filesystem to manage the transit without i_mutex
  1043. * being held.
  1044. *
  1045. * We indicate to the filesystem if someone is trying to mount
  1046. * something here. This gives autofs the chance to deny anyone
  1047. * other than its daemon the right to mount on its
  1048. * superstructure.
  1049. *
  1050. * The filesystem may sleep at this point.
  1051. */
  1052. if (managed & DCACHE_MANAGE_TRANSIT) {
  1053. BUG_ON(!path->dentry->d_op);
  1054. BUG_ON(!path->dentry->d_op->d_manage);
  1055. ret = path->dentry->d_op->d_manage(
  1056. path->dentry, false);
  1057. if (ret < 0)
  1058. return ret == -EISDIR ? 0 : ret;
  1059. }
  1060. /* Transit to a mounted filesystem. */
  1061. if (managed & DCACHE_MOUNTED) {
  1062. struct vfsmount *mounted = lookup_mnt(path);
  1063. if (!mounted)
  1064. break;
  1065. dput(path->dentry);
  1066. mntput(path->mnt);
  1067. path->mnt = mounted;
  1068. path->dentry = dget(mounted->mnt_root);
  1069. continue;
  1070. }
  1071. /* Don't handle automount points here */
  1072. break;
  1073. }
  1074. return 0;
  1075. }
  1076. /*
  1077. * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
  1078. */
  1079. static void follow_mount(struct path *path)
  1080. {
  1081. while (d_mountpoint(path->dentry)) {
  1082. struct vfsmount *mounted = lookup_mnt(path);
  1083. if (!mounted)
  1084. break;
  1085. dput(path->dentry);
  1086. mntput(path->mnt);
  1087. path->mnt = mounted;
  1088. path->dentry = dget(mounted->mnt_root);
  1089. }
  1090. }
  1091. static void follow_dotdot(struct nameidata *nd)
  1092. {
  1093. set_root(nd);
  1094. while(1) {
  1095. struct dentry *old = nd->path.dentry;
  1096. if (nd->path.dentry == nd->root.dentry &&
  1097. nd->path.mnt == nd->root.mnt) {
  1098. break;
  1099. }
  1100. if (nd->path.dentry != nd->path.mnt->mnt_root) {
  1101. /* rare case of legitimate dget_parent()... */
  1102. nd->path.dentry = dget_parent(nd->path.dentry);
  1103. dput(old);
  1104. break;
  1105. }
  1106. if (!follow_up(&nd->path))
  1107. break;
  1108. }
  1109. follow_mount(&nd->path);
  1110. nd->inode = nd->path.dentry->d_inode;
  1111. }
  1112. /*
  1113. * This looks up the name in dcache, possibly revalidates the old dentry and
  1114. * allocates a new one if not found or not valid. In the need_lookup argument
  1115. * returns whether i_op->lookup is necessary.
  1116. *
  1117. * dir->d_inode->i_mutex must be held
  1118. */
  1119. static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
  1120. unsigned int flags, bool *need_lookup)
  1121. {
  1122. struct dentry *dentry;
  1123. int error;
  1124. *need_lookup = false;
  1125. dentry = d_lookup(dir, name);
  1126. if (dentry) {
  1127. if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
  1128. error = d_revalidate(dentry, flags);
  1129. if (unlikely(error <= 0)) {
  1130. if (error < 0) {
  1131. dput(dentry);
  1132. return ERR_PTR(error);
  1133. } else if (!d_invalidate(dentry)) {
  1134. dput(dentry);
  1135. dentry = NULL;
  1136. }
  1137. }
  1138. }
  1139. }
  1140. if (!dentry) {
  1141. dentry = d_alloc(dir, name);
  1142. if (unlikely(!dentry))
  1143. return ERR_PTR(-ENOMEM);
  1144. *need_lookup = true;
  1145. }
  1146. return dentry;
  1147. }
  1148. /*
  1149. * Call i_op->lookup on the dentry. The dentry must be negative but may be
  1150. * hashed if it was pouplated with DCACHE_NEED_LOOKUP.
  1151. *
  1152. * dir->d_inode->i_mutex must be held
  1153. */
  1154. static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
  1155. unsigned int flags)
  1156. {
  1157. struct dentry *old;
  1158. /* Don't create child dentry for a dead directory. */
  1159. if (unlikely(IS_DEADDIR(dir))) {
  1160. dput(dentry);
  1161. return ERR_PTR(-ENOENT);
  1162. }
  1163. old = dir->i_op->lookup(dir, dentry, flags);
  1164. if (unlikely(old)) {
  1165. dput(dentry);
  1166. dentry = old;
  1167. }
  1168. return dentry;
  1169. }
  1170. static struct dentry *__lookup_hash(struct qstr *name,
  1171. struct dentry *base, unsigned int flags)
  1172. {
  1173. bool need_lookup;
  1174. struct dentry *dentry;
  1175. dentry = lookup_dcache(name, base, flags, &need_lookup);
  1176. if (!need_lookup)
  1177. return dentry;
  1178. return lookup_real(base->d_inode, dentry, flags);
  1179. }
  1180. /*
  1181. * It's more convoluted than I'd like it to be, but... it's still fairly
  1182. * small and for now I'd prefer to have fast path as straight as possible.
  1183. * It _is_ time-critical.
  1184. */
  1185. static int lookup_fast(struct nameidata *nd, struct qstr *name,
  1186. struct path *path, struct inode **inode)
  1187. {
  1188. struct vfsmount *mnt = nd->path.mnt;
  1189. struct dentry *dentry, *parent = nd->path.dentry;
  1190. int need_reval = 1;
  1191. int status = 1;
  1192. int err;
  1193. /*
  1194. * Rename seqlock is not required here because in the off chance
  1195. * of a false negative due to a concurrent rename, we're going to
  1196. * do the non-racy lookup, below.
  1197. */
  1198. if (nd->flags & LOOKUP_RCU) {
  1199. unsigned seq;
  1200. dentry = __d_lookup_rcu(parent, name, &seq, nd->inode);
  1201. if (!dentry)
  1202. goto unlazy;
  1203. /*
  1204. * This sequence count validates that the inode matches
  1205. * the dentry name information from lookup.
  1206. */
  1207. *inode = dentry->d_inode;
  1208. if (read_seqcount_retry(&dentry->d_seq, seq))
  1209. return -ECHILD;
  1210. /*
  1211. * This sequence count validates that the parent had no
  1212. * changes while we did the lookup of the dentry above.
  1213. *
  1214. * The memory barrier in read_seqcount_begin of child is
  1215. * enough, we can use __read_seqcount_retry here.
  1216. */
  1217. if (__read_seqcount_retry(&parent->d_seq, nd->seq))
  1218. return -ECHILD;
  1219. nd->seq = seq;
  1220. if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
  1221. status = d_revalidate(dentry, nd->flags);
  1222. if (unlikely(status <= 0)) {
  1223. if (status != -ECHILD)
  1224. need_reval = 0;
  1225. goto unlazy;
  1226. }
  1227. }
  1228. path->mnt = mnt;
  1229. path->dentry = dentry;
  1230. if (unlikely(!__follow_mount_rcu(nd, path, inode)))
  1231. goto unlazy;
  1232. if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
  1233. goto unlazy;
  1234. return 0;
  1235. unlazy:
  1236. if (unlazy_walk(nd, dentry))
  1237. return -ECHILD;
  1238. } else {
  1239. dentry = __d_lookup(parent, name);
  1240. }
  1241. if (unlikely(!dentry))
  1242. goto need_lookup;
  1243. if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
  1244. status = d_revalidate(dentry, nd->flags);
  1245. if (unlikely(status <= 0)) {
  1246. if (status < 0) {
  1247. dput(dentry);
  1248. return status;
  1249. }
  1250. if (!d_invalidate(dentry)) {
  1251. dput(dentry);
  1252. goto need_lookup;
  1253. }
  1254. }
  1255. path->mnt = mnt;
  1256. path->dentry = dentry;
  1257. err = follow_managed(path, nd->flags);
  1258. if (unlikely(err < 0)) {
  1259. path_put_conditional(path, nd);
  1260. return err;
  1261. }
  1262. if (err)
  1263. nd->flags |= LOOKUP_JUMPED;
  1264. *inode = path->dentry->d_inode;
  1265. return 0;
  1266. need_lookup:
  1267. return 1;
  1268. }
  1269. /* Fast lookup failed, do it the slow way */
  1270. static int lookup_slow(struct nameidata *nd, struct qstr *name,
  1271. struct path *path)
  1272. {
  1273. struct dentry *dentry, *parent;
  1274. int err;
  1275. parent = nd->path.dentry;
  1276. BUG_ON(nd->inode != parent->d_inode);
  1277. mutex_lock(&parent->d_inode->i_mutex);
  1278. dentry = __lookup_hash(name, parent, nd->flags);
  1279. mutex_unlock(&parent->d_inode->i_mutex);
  1280. if (IS_ERR(dentry))
  1281. return PTR_ERR(dentry);
  1282. path->mnt = nd->path.mnt;
  1283. path->dentry = dentry;
  1284. err = follow_managed(path, nd->flags);
  1285. if (unlikely(err < 0)) {
  1286. path_put_conditional(path, nd);
  1287. return err;
  1288. }
  1289. if (err)
  1290. nd->flags |= LOOKUP_JUMPED;
  1291. return 0;
  1292. }
  1293. static inline int may_lookup(struct nameidata *nd)
  1294. {
  1295. if (nd->flags & LOOKUP_RCU) {
  1296. int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
  1297. if (err != -ECHILD)
  1298. return err;
  1299. if (unlazy_walk(nd, NULL))
  1300. return -ECHILD;
  1301. }
  1302. return inode_permission(nd->inode, MAY_EXEC);
  1303. }
  1304. static inline int handle_dots(struct nameidata *nd, int type)
  1305. {
  1306. if (type == LAST_DOTDOT) {
  1307. if (nd->flags & LOOKUP_RCU) {
  1308. if (follow_dotdot_rcu(nd))
  1309. return -ECHILD;
  1310. } else
  1311. follow_dotdot(nd);
  1312. }
  1313. return 0;
  1314. }
  1315. static void terminate_walk(struct nameidata *nd)
  1316. {
  1317. if (!(nd->flags & LOOKUP_RCU)) {
  1318. path_put(&nd->path);
  1319. } else {
  1320. nd->flags &= ~LOOKUP_RCU;
  1321. if (!(nd->flags & LOOKUP_ROOT))
  1322. nd->root.mnt = NULL;
  1323. unlock_rcu_walk();
  1324. }
  1325. }
  1326. /*
  1327. * Do we need to follow links? We _really_ want to be able
  1328. * to do this check without having to look at inode->i_op,
  1329. * so we keep a cache of "no, this doesn't need follow_link"
  1330. * for the common case.
  1331. */
  1332. static inline int should_follow_link(struct inode *inode, int follow)
  1333. {
  1334. if (unlikely(!(inode->i_opflags & IOP_NOFOLLOW))) {
  1335. if (likely(inode->i_op->follow_link))
  1336. return follow;
  1337. /* This gets set once for the inode lifetime */
  1338. spin_lock(&inode->i_lock);
  1339. inode->i_opflags |= IOP_NOFOLLOW;
  1340. spin_unlock(&inode->i_lock);
  1341. }
  1342. return 0;
  1343. }
  1344. static inline int walk_component(struct nameidata *nd, struct path *path,
  1345. struct qstr *name, int type, int follow)
  1346. {
  1347. struct inode *inode;
  1348. int err;
  1349. /*
  1350. * "." and ".." are special - ".." especially so because it has
  1351. * to be able to know about the current root directory and
  1352. * parent relationships.
  1353. */
  1354. if (unlikely(type != LAST_NORM))
  1355. return handle_dots(nd, type);
  1356. err = lookup_fast(nd, name, path, &inode);
  1357. if (unlikely(err)) {
  1358. if (err < 0)
  1359. goto out_err;
  1360. err = lookup_slow(nd, name, path);
  1361. if (err < 0)
  1362. goto out_err;
  1363. inode = path->dentry->d_inode;
  1364. }
  1365. err = -ENOENT;
  1366. if (!inode)
  1367. goto out_path_put;
  1368. if (should_follow_link(inode, follow)) {
  1369. if (nd->flags & LOOKUP_RCU) {
  1370. if (unlikely(unlazy_walk(nd, path->dentry))) {
  1371. err = -ECHILD;
  1372. goto out_err;
  1373. }
  1374. }
  1375. BUG_ON(inode != path->dentry->d_inode);
  1376. return 1;
  1377. }
  1378. path_to_nameidata(path, nd);
  1379. nd->inode = inode;
  1380. return 0;
  1381. out_path_put:
  1382. path_to_nameidata(path, nd);
  1383. out_err:
  1384. terminate_walk(nd);
  1385. return err;
  1386. }
  1387. /*
  1388. * This limits recursive symlink follows to 8, while
  1389. * limiting consecutive symlinks to 40.
  1390. *
  1391. * Without that kind of total limit, nasty chains of consecutive
  1392. * symlinks can cause almost arbitrarily long lookups.
  1393. */
  1394. static inline int nested_symlink(struct path *path, struct nameidata *nd)
  1395. {
  1396. int res;
  1397. if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
  1398. path_put_conditional(path, nd);
  1399. path_put(&nd->path);
  1400. return -ELOOP;
  1401. }
  1402. BUG_ON(nd->depth >= MAX_NESTED_LINKS);
  1403. nd->depth++;
  1404. current->link_count++;
  1405. do {
  1406. struct path link = *path;
  1407. void *cookie;
  1408. res = follow_link(&link, nd, &cookie);
  1409. if (res)
  1410. break;
  1411. res = walk_component(nd, path, &nd->last,
  1412. nd->last_type, LOOKUP_FOLLOW);
  1413. put_link(nd, &link, cookie);
  1414. } while (res > 0);
  1415. current->link_count--;
  1416. nd->depth--;
  1417. return res;
  1418. }
  1419. /*
  1420. * We really don't want to look at inode->i_op->lookup
  1421. * when we don't have to. So we keep a cache bit in
  1422. * the inode ->i_opflags field that says "yes, we can
  1423. * do lookup on this inode".
  1424. */
  1425. static inline int can_lookup(struct inode *inode)
  1426. {
  1427. if (likely(inode->i_opflags & IOP_LOOKUP))
  1428. return 1;
  1429. if (likely(!inode->i_op->lookup))
  1430. return 0;
  1431. /* We do this once for the lifetime of the inode */
  1432. spin_lock(&inode->i_lock);
  1433. inode->i_opflags |= IOP_LOOKUP;
  1434. spin_unlock(&inode->i_lock);
  1435. return 1;
  1436. }
  1437. /*
  1438. * We can do the critical dentry name comparison and hashing
  1439. * operations one word at a time, but we are limited to:
  1440. *
  1441. * - Architectures with fast unaligned word accesses. We could
  1442. * do a "get_unaligned()" if this helps and is sufficiently
  1443. * fast.
  1444. *
  1445. * - Little-endian machines (so that we can generate the mask
  1446. * of low bytes efficiently). Again, we *could* do a byte
  1447. * swapping load on big-endian architectures if that is not
  1448. * expensive enough to make the optimization worthless.
  1449. *
  1450. * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
  1451. * do not trap on the (extremely unlikely) case of a page
  1452. * crossing operation.
  1453. *
  1454. * - Furthermore, we need an efficient 64-bit compile for the
  1455. * 64-bit case in order to generate the "number of bytes in
  1456. * the final mask". Again, that could be replaced with a
  1457. * efficient population count instruction or similar.
  1458. */
  1459. #ifdef CONFIG_DCACHE_WORD_ACCESS
  1460. #include <asm/word-at-a-time.h>
  1461. #ifdef CONFIG_64BIT
  1462. static inline unsigned int fold_hash(unsigned long hash)
  1463. {
  1464. hash += hash >> (8*sizeof(int));
  1465. return hash;
  1466. }
  1467. #else /* 32-bit case */
  1468. #define fold_hash(x) (x)
  1469. #endif
  1470. unsigned int full_name_hash(const unsigned char *name, unsigned int len)
  1471. {
  1472. unsigned long a, mask;
  1473. unsigned long hash = 0;
  1474. for (;;) {
  1475. a = load_unaligned_zeropad(name);
  1476. if (len < sizeof(unsigned long))
  1477. break;
  1478. hash += a;
  1479. hash *= 9;
  1480. name += sizeof(unsigned long);
  1481. len -= sizeof(unsigned long);
  1482. if (!len)
  1483. goto done;
  1484. }
  1485. mask = ~(~0ul << len*8);
  1486. hash += mask & a;
  1487. done:
  1488. return fold_hash(hash);
  1489. }
  1490. EXPORT_SYMBOL(full_name_hash);
  1491. /*
  1492. * Calculate the length and hash of the path component, and
  1493. * return the length of the component;
  1494. */
  1495. static inline unsigned long hash_name(const char *name, unsigned int *hashp)
  1496. {
  1497. unsigned long a, b, adata, bdata, mask, hash, len;
  1498. const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
  1499. hash = a = 0;
  1500. len = -sizeof(unsigned long);
  1501. do {
  1502. hash = (hash + a) * 9;
  1503. len += sizeof(unsigned long);
  1504. a = load_unaligned_zeropad(name+len);
  1505. b = a ^ REPEAT_BYTE('/');
  1506. } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
  1507. adata = prep_zero_mask(a, adata, &constants);
  1508. bdata = prep_zero_mask(b, bdata, &constants);
  1509. mask = create_zero_mask(adata | bdata);
  1510. hash += a & zero_bytemask(mask);
  1511. *hashp = fold_hash(hash);
  1512. return len + find_zero(mask);
  1513. }
  1514. #else
  1515. unsigned int full_name_hash(const unsigned char *name, unsigned int len)
  1516. {
  1517. unsigned long hash = init_name_hash();
  1518. while (len--)
  1519. hash = partial_name_hash(*name++, hash);
  1520. return end_name_hash(hash);
  1521. }
  1522. EXPORT_SYMBOL(full_name_hash);
  1523. /*
  1524. * We know there's a real path component here of at least
  1525. * one character.
  1526. */
  1527. static inline unsigned long hash_name(const char *name, unsigned int *hashp)
  1528. {
  1529. unsigned long hash = init_name_hash();
  1530. unsigned long len = 0, c;
  1531. c = (unsigned char)*name;
  1532. do {
  1533. len++;
  1534. hash = partial_name_hash(c, hash);
  1535. c = (unsigned char)name[len];
  1536. } while (c && c != '/');
  1537. *hashp = end_name_hash(hash);
  1538. return len;
  1539. }
  1540. #endif
  1541. /*
  1542. * Name resolution.
  1543. * This is the basic name resolution function, turning a pathname into
  1544. * the final dentry. We expect 'base' to be positive and a directory.
  1545. *
  1546. * Returns 0 and nd will have valid dentry and mnt on success.
  1547. * Returns error and drops reference to input namei data on failure.
  1548. */
  1549. static int link_path_walk(const char *name, struct nameidata *nd)
  1550. {
  1551. struct path next;
  1552. int err;
  1553. while (*name=='/')
  1554. name++;
  1555. if (!*name)
  1556. return 0;
  1557. /* At this point we know we have a real path component. */
  1558. for(;;) {
  1559. struct qstr this;
  1560. long len;
  1561. int type;
  1562. err = may_lookup(nd);
  1563. if (err)
  1564. break;
  1565. len = hash_name(name, &this.hash);
  1566. this.name = name;
  1567. this.len = len;
  1568. type = LAST_NORM;
  1569. if (name[0] == '.') switch (len) {
  1570. case 2:
  1571. if (name[1] == '.') {
  1572. type = LAST_DOTDOT;
  1573. nd->flags |= LOOKUP_JUMPED;
  1574. }
  1575. break;
  1576. case 1:
  1577. type = LAST_DOT;
  1578. }
  1579. if (likely(type == LAST_NORM)) {
  1580. struct dentry *parent = nd->path.dentry;
  1581. nd->flags &= ~LOOKUP_JUMPED;
  1582. if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
  1583. err = parent->d_op->d_hash(parent, nd->inode,
  1584. &this);
  1585. if (err < 0)
  1586. break;
  1587. }
  1588. }
  1589. if (!name[len])
  1590. goto last_component;
  1591. /*
  1592. * If it wasn't NUL, we know it was '/'. Skip that
  1593. * slash, and continue until no more slashes.
  1594. */
  1595. do {
  1596. len++;
  1597. } while (unlikely(name[len] == '/'));
  1598. if (!name[len])
  1599. goto last_component;
  1600. name += len;
  1601. err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
  1602. if (err < 0)
  1603. return err;
  1604. if (err) {
  1605. err = nested_symlink(&next, nd);
  1606. if (err)
  1607. return err;
  1608. }
  1609. if (can_lookup(nd->inode))
  1610. continue;
  1611. err = -ENOTDIR;
  1612. break;
  1613. /* here ends the main loop */
  1614. last_component:
  1615. nd->last = this;
  1616. nd->last_type = type;
  1617. return 0;
  1618. }
  1619. terminate_walk(nd);
  1620. return err;
  1621. }
  1622. static int path_init(int dfd, const char *name, unsigned int flags,
  1623. struct nameidata *nd, struct file **fp)
  1624. {
  1625. int retval = 0;
  1626. nd->last_type = LAST_ROOT; /* if there are only slashes... */
  1627. nd->flags = flags | LOOKUP_JUMPED;
  1628. nd->depth = 0;
  1629. if (flags & LOOKUP_ROOT) {
  1630. struct inode *inode = nd->root.dentry->d_inode;
  1631. if (*name) {
  1632. if (!can_lookup(inode))
  1633. return -ENOTDIR;
  1634. retval = inode_permission(inode, MAY_EXEC);
  1635. if (retval)
  1636. return retval;
  1637. }
  1638. nd->path = nd->root;
  1639. nd->inode = inode;
  1640. if (flags & LOOKUP_RCU) {
  1641. lock_rcu_walk();
  1642. nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
  1643. } else {
  1644. path_get(&nd->path);
  1645. }
  1646. return 0;
  1647. }
  1648. nd->root.mnt = NULL;
  1649. if (*name=='/') {
  1650. if (flags & LOOKUP_RCU) {
  1651. lock_rcu_walk();
  1652. set_root_rcu(nd);
  1653. } else {
  1654. set_root(nd);
  1655. path_get(&nd->root);
  1656. }
  1657. nd->path = nd->root;
  1658. } else if (dfd == AT_FDCWD) {
  1659. if (flags & LOOKUP_RCU) {
  1660. struct fs_struct *fs = current->fs;
  1661. unsigned seq;
  1662. lock_rcu_walk();
  1663. do {
  1664. seq = read_seqcount_begin(&fs->seq);
  1665. nd->path = fs->pwd;
  1666. nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
  1667. } while (read_seqcount_retry(&fs->seq, seq));
  1668. } else {
  1669. get_fs_pwd(current->fs, &nd->path);
  1670. }
  1671. } else {
  1672. /* Caller must check execute permissions on the starting path component */
  1673. struct fd f = fdget_raw(dfd);
  1674. struct dentry *dentry;
  1675. if (!f.file)
  1676. return -EBADF;
  1677. dentry = f.file->f_path.dentry;
  1678. if (*name) {
  1679. if (!can_lookup(dentry->d_inode)) {
  1680. fdput(f);
  1681. return -ENOTDIR;
  1682. }
  1683. }
  1684. nd->path = f.file->f_path;
  1685. if (flags & LOOKUP_RCU) {
  1686. if (f.need_put)
  1687. *fp = f.file;
  1688. nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
  1689. lock_rcu_walk();
  1690. } else {
  1691. path_get(&nd->path);
  1692. fdput(f);
  1693. }
  1694. }
  1695. nd->inode = nd->path.dentry->d_inode;
  1696. return 0;
  1697. }
  1698. static inline int lookup_last(struct nameidata *nd, struct path *path)
  1699. {
  1700. if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
  1701. nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
  1702. nd->flags &= ~LOOKUP_PARENT;
  1703. return walk_component(nd, path, &nd->last, nd->last_type,
  1704. nd->flags & LOOKUP_FOLLOW);
  1705. }
  1706. /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
  1707. static int path_lookupat(int dfd, const char *name,
  1708. unsigned int flags, struct nameidata *nd)
  1709. {
  1710. struct file *base = NULL;
  1711. struct path path;
  1712. int err;
  1713. /*
  1714. * Path walking is largely split up into 2 different synchronisation
  1715. * schemes, rcu-walk and ref-walk (explained in
  1716. * Documentation/filesystems/path-lookup.txt). These share much of the
  1717. * path walk code, but some things particularly setup, cleanup, and
  1718. * following mounts are sufficiently divergent that functions are
  1719. * duplicated. Typically there is a function foo(), and its RCU
  1720. * analogue, foo_rcu().
  1721. *
  1722. * -ECHILD is the error number of choice (just to avoid clashes) that
  1723. * is returned if some aspect of an rcu-walk fails. Such an error must
  1724. * be handled by restarting a traditional ref-walk (which will always
  1725. * be able to complete).
  1726. */
  1727. err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
  1728. if (unlikely(err))
  1729. return err;
  1730. current->total_link_count = 0;
  1731. err = link_path_walk(name, nd);
  1732. if (!err && !(flags & LOOKUP_PARENT)) {
  1733. err = lookup_last(nd, &path);
  1734. while (err > 0) {
  1735. void *cookie;
  1736. struct path link = path;
  1737. err = may_follow_link(&link, nd);
  1738. if (unlikely(err))
  1739. break;
  1740. nd->flags |= LOOKUP_PARENT;
  1741. err = follow_link(&link, nd, &cookie);
  1742. if (err)
  1743. break;
  1744. err = lookup_last(nd, &path);
  1745. put_link(nd, &link, cookie);
  1746. }
  1747. }
  1748. if (!err)
  1749. err = complete_walk(nd);
  1750. if (!err && nd->flags & LOOKUP_DIRECTORY) {
  1751. if (!nd->inode->i_op->lookup) {
  1752. path_put(&nd->path);
  1753. err = -ENOTDIR;
  1754. }
  1755. }
  1756. if (base)
  1757. fput(base);
  1758. if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
  1759. path_put(&nd->root);
  1760. nd->root.mnt = NULL;
  1761. }
  1762. return err;
  1763. }
  1764. static int filename_lookup(int dfd, struct filename *name,
  1765. unsigned int flags, struct nameidata *nd)
  1766. {
  1767. int retval = path_lookupat(dfd, name->name, flags | LOOKUP_RCU, nd);
  1768. if (unlikely(retval == -ECHILD))
  1769. retval = path_lookupat(dfd, name->name, flags, nd);
  1770. if (unlikely(retval == -ESTALE))
  1771. retval = path_lookupat(dfd, name->name,
  1772. flags | LOOKUP_REVAL, nd);
  1773. if (likely(!retval))
  1774. audit_inode(name, nd->path.dentry, flags & LOOKUP_PARENT);
  1775. return retval;
  1776. }
  1777. static int do_path_lookup(int dfd, const char *name,
  1778. unsigned int flags, struct nameidata *nd)
  1779. {
  1780. struct filename filename = { .name = name };
  1781. return filename_lookup(dfd, &filename, flags, nd);
  1782. }
  1783. /* does lookup, returns the object with parent locked */
  1784. struct dentry *kern_path_locked(const char *name, struct path *path)
  1785. {
  1786. struct nameidata nd;
  1787. struct dentry *d;
  1788. int err = do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, &nd);
  1789. if (err)
  1790. return ERR_PTR(err);
  1791. if (nd.last_type != LAST_NORM) {
  1792. path_put(&nd.path);
  1793. return ERR_PTR(-EINVAL);
  1794. }
  1795. mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
  1796. d = __lookup_hash(&nd.last, nd.path.dentry, 0);
  1797. if (IS_ERR(d)) {
  1798. mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
  1799. path_put(&nd.path);
  1800. return d;
  1801. }
  1802. *path = nd.path;
  1803. return d;
  1804. }
  1805. int kern_path(const char *name, unsigned int flags, struct path *path)
  1806. {
  1807. struct nameidata nd;
  1808. int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
  1809. if (!res)
  1810. *path = nd.path;
  1811. return res;
  1812. }
  1813. /**
  1814. * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
  1815. * @dentry: pointer to dentry of the base directory
  1816. * @mnt: pointer to vfs mount of the base directory
  1817. * @name: pointer to file name
  1818. * @flags: lookup flags
  1819. * @path: pointer to struct path to fill
  1820. */
  1821. int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
  1822. const char *name, unsigned int flags,
  1823. struct path *path)
  1824. {
  1825. struct nameidata nd;
  1826. int err;
  1827. nd.root.dentry = dentry;
  1828. nd.root.mnt = mnt;
  1829. BUG_ON(flags & LOOKUP_PARENT);
  1830. /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
  1831. err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
  1832. if (!err)
  1833. *path = nd.path;
  1834. return err;
  1835. }
  1836. /*
  1837. * Restricted form of lookup. Doesn't follow links, single-component only,
  1838. * needs parent already locked. Doesn't follow mounts.
  1839. * SMP-safe.
  1840. */
  1841. static struct dentry *lookup_hash(struct nameidata *nd)
  1842. {
  1843. return __lookup_hash(&nd->last, nd->path.dentry, nd->flags);
  1844. }
  1845. /**
  1846. * lookup_one_len - filesystem helper to lookup single pathname component
  1847. * @name: pathname component to lookup
  1848. * @base: base directory to lookup from
  1849. * @len: maximum length @len should be interpreted to
  1850. *
  1851. * Note that this routine is purely a helper for filesystem usage and should
  1852. * not be called by generic code. Also note that by using this function the
  1853. * nameidata argument is passed to the filesystem methods and a filesystem
  1854. * using this helper needs to be prepared for that.
  1855. */
  1856. struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
  1857. {
  1858. struct qstr this;
  1859. unsigned int c;
  1860. int err;
  1861. WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
  1862. this.name = name;
  1863. this.len = len;
  1864. this.hash = full_name_hash(name, len);
  1865. if (!len)
  1866. return ERR_PTR(-EACCES);
  1867. if (unlikely(name[0] == '.')) {
  1868. if (len < 2 || (len == 2 && name[1] == '.'))
  1869. return ERR_PTR(-EACCES);
  1870. }
  1871. while (len--) {
  1872. c = *(const unsigned char *)name++;
  1873. if (c == '/' || c == '\0')
  1874. return ERR_PTR(-EACCES);
  1875. }
  1876. /*
  1877. * See if the low-level filesystem might want
  1878. * to use its own hash..
  1879. */
  1880. if (base->d_flags & DCACHE_OP_HASH) {
  1881. int err = base->d_op->d_hash(base, base->d_inode, &this);
  1882. if (err < 0)
  1883. return ERR_PTR(err);
  1884. }
  1885. err = inode_permission(base->d_inode, MAY_EXEC);
  1886. if (err)
  1887. return ERR_PTR(err);
  1888. return __lookup_hash(&this, base, 0);
  1889. }
  1890. int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
  1891. struct path *path, int *empty)
  1892. {
  1893. struct nameidata nd;
  1894. struct filename *tmp = getname_flags(name, flags, empty);
  1895. int err = PTR_ERR(tmp);
  1896. if (!IS_ERR(tmp)) {
  1897. BUG_ON(flags & LOOKUP_PARENT);
  1898. err = filename_lookup(dfd, tmp, flags, &nd);
  1899. putname(tmp);
  1900. if (!err)
  1901. *path = nd.path;
  1902. }
  1903. return err;
  1904. }
  1905. int user_path_at(int dfd, const char __user *name, unsigned flags,
  1906. struct path *path)
  1907. {
  1908. return user_path_at_empty(dfd, name, flags, path, NULL);
  1909. }
  1910. /*
  1911. * NB: most callers don't do anything directly with the reference to the
  1912. * to struct filename, but the nd->last pointer points into the name string
  1913. * allocated by getname. So we must hold the reference to it until all
  1914. * path-walking is complete.
  1915. */
  1916. static struct filename *
  1917. user_path_parent(int dfd, const char __user *path, struct nameidata *nd,
  1918. unsigned int flags)
  1919. {
  1920. struct filename *s = getname(path);
  1921. int error;
  1922. /* only LOOKUP_REVAL is allowed in extra flags */
  1923. flags &= LOOKUP_REVAL;
  1924. if (IS_ERR(s))
  1925. return s;
  1926. error = filename_lookup(dfd, s, flags | LOOKUP_PARENT, nd);
  1927. if (error) {
  1928. putname(s);
  1929. return ERR_PTR(error);
  1930. }
  1931. return s;
  1932. }
  1933. /*
  1934. * It's inline, so penalty for filesystems that don't use sticky bit is
  1935. * minimal.
  1936. */
  1937. static inline int check_sticky(struct inode *dir, struct inode *inode)
  1938. {
  1939. kuid_t fsuid = current_fsuid();
  1940. if (!(dir->i_mode & S_ISVTX))
  1941. return 0;
  1942. if (uid_eq(inode->i_uid, fsuid))
  1943. return 0;
  1944. if (uid_eq(dir->i_uid, fsuid))
  1945. return 0;
  1946. return !inode_capable(inode, CAP_FOWNER);
  1947. }
  1948. /*
  1949. * Check whether we can remove a link victim from directory dir, check
  1950. * whether the type of victim is right.
  1951. * 1. We can't do it if dir is read-only (done in permission())
  1952. * 2. We should have write and exec permissions on dir
  1953. * 3. We can't remove anything from append-only dir
  1954. * 4. We can't do anything with immutable dir (done in permission())
  1955. * 5. If the sticky bit on dir is set we should either
  1956. * a. be owner of dir, or
  1957. * b. be owner of victim, or
  1958. * c. have CAP_FOWNER capability
  1959. * 6. If the victim is append-only or immutable we can't do antyhing with
  1960. * links pointing to it.
  1961. * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
  1962. * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
  1963. * 9. We can't remove a root or mountpoint.
  1964. * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
  1965. * nfs_async_unlink().
  1966. */
  1967. static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
  1968. {
  1969. int error;
  1970. if (!victim->d_inode)
  1971. return -ENOENT;
  1972. BUG_ON(victim->d_parent->d_inode != dir);
  1973. audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
  1974. error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
  1975. if (error)
  1976. return error;
  1977. if (IS_APPEND(dir))
  1978. return -EPERM;
  1979. if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
  1980. IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
  1981. return -EPERM;
  1982. if (isdir) {
  1983. if (!S_ISDIR(victim->d_inode->i_mode))
  1984. return -ENOTDIR;
  1985. if (IS_ROOT(victim))
  1986. return -EBUSY;
  1987. } else if (S_ISDIR(victim->d_inode->i_mode))
  1988. return -EISDIR;
  1989. if (IS_DEADDIR(dir))
  1990. return -ENOENT;
  1991. if (victim->d_flags & DCACHE_NFSFS_RENAMED)
  1992. return -EBUSY;
  1993. return 0;
  1994. }
  1995. /* Check whether we can create an object with dentry child in directory
  1996. * dir.
  1997. * 1. We can't do it if child already exists (open has special treatment for
  1998. * this case, but since we are inlined it's OK)
  1999. * 2. We can't do it if dir is read-only (done in permission())
  2000. * 3. We should have write and exec permissions on dir
  2001. * 4. We can't do it if dir is immutable (done in permission())
  2002. */
  2003. static inline int may_create(struct inode *dir, struct dentry *child)
  2004. {
  2005. if (child->d_inode)
  2006. return -EEXIST;
  2007. if (IS_DEADDIR(dir))
  2008. return -ENOENT;
  2009. return inode_permission(dir, MAY_WRITE | MAY_EXEC);
  2010. }
  2011. /*
  2012. * p1 and p2 should be directories on the same fs.
  2013. */
  2014. struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
  2015. {
  2016. struct dentry *p;
  2017. if (p1 == p2) {
  2018. mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
  2019. return NULL;
  2020. }
  2021. mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
  2022. p = d_ancestor(p2, p1);
  2023. if (p) {
  2024. mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
  2025. mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
  2026. return p;
  2027. }
  2028. p = d_ancestor(p1, p2);
  2029. if (p) {
  2030. mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
  2031. mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
  2032. return p;
  2033. }
  2034. mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
  2035. mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
  2036. return NULL;
  2037. }
  2038. void unlock_rename(struct dentry *p1, struct dentry *p2)
  2039. {
  2040. mutex_unlock(&p1->d_inode->i_mutex);
  2041. if (p1 != p2) {
  2042. mutex_unlock(&p2->d_inode->i_mutex);
  2043. mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
  2044. }
  2045. }
  2046. int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
  2047. bool want_excl)
  2048. {
  2049. int error = may_create(dir, dentry);
  2050. if (error)
  2051. return error;
  2052. if (!dir->i_op->create)
  2053. return -EACCES; /* shouldn't it be ENOSYS? */
  2054. mode &= S_IALLUGO;
  2055. mode |= S_IFREG;
  2056. error = security_inode_create(dir, dentry, mode);
  2057. if (error)
  2058. return error;
  2059. error = dir->i_op->create(dir, dentry, mode, want_excl);
  2060. if (!error)
  2061. fsnotify_create(dir, dentry);
  2062. return error;
  2063. }
  2064. static int may_open(struct path *path, int acc_mode, int flag)
  2065. {
  2066. struct dentry *dentry = path->dentry;
  2067. struct inode *inode = dentry->d_inode;
  2068. int error;
  2069. /* O_PATH? */
  2070. if (!acc_mode)
  2071. return 0;
  2072. if (!inode)
  2073. return -ENOENT;
  2074. switch (inode->i_mode & S_IFMT) {
  2075. case S_IFLNK:
  2076. return -ELOOP;
  2077. case S_IFDIR:
  2078. if (acc_mode & MAY_WRITE)
  2079. return -EISDIR;
  2080. break;
  2081. case S_IFBLK:
  2082. case S_IFCHR:
  2083. if (path->mnt->mnt_flags & MNT_NODEV)
  2084. return -EACCES;
  2085. /*FALLTHRU*/
  2086. case S_IFIFO:
  2087. case S_IFSOCK:
  2088. flag &= ~O_TRUNC;
  2089. break;
  2090. }
  2091. error = inode_permission(inode, acc_mode);
  2092. if (error)
  2093. return error;
  2094. /*
  2095. * An append-only file must be opened in append mode for writing.
  2096. */
  2097. if (IS_APPEND(inode)) {
  2098. if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
  2099. return -EPERM;
  2100. if (flag & O_TRUNC)
  2101. return -EPERM;
  2102. }
  2103. /* O_NOATIME can only be set by the owner or superuser */
  2104. if (flag & O_NOATIME && !inode_owner_or_capable(inode))
  2105. return -EPERM;
  2106. return 0;
  2107. }
  2108. static int handle_truncate(struct file *filp)
  2109. {
  2110. struct path *path = &filp->f_path;
  2111. struct inode *inode = path->dentry->d_inode;
  2112. int error = get_write_access(inode);
  2113. if (error)
  2114. return error;
  2115. /*
  2116. * Refuse to truncate files with mandatory locks held on them.
  2117. */
  2118. error = locks_verify_locked(inode);
  2119. if (!error)
  2120. error = security_path_truncate(path);
  2121. if (!error) {
  2122. error = do_truncate(path->dentry, 0,
  2123. ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
  2124. filp);
  2125. }
  2126. put_write_access(inode);
  2127. return error;
  2128. }
  2129. static inline int open_to_namei_flags(int flag)
  2130. {
  2131. if ((flag & O_ACCMODE) == 3)
  2132. flag--;
  2133. return flag;
  2134. }
  2135. static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
  2136. {
  2137. int error = security_path_mknod(dir, dentry, mode, 0);
  2138. if (error)
  2139. return error;
  2140. error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
  2141. if (error)
  2142. return error;
  2143. return security_inode_create(dir->dentry->d_inode, dentry, mode);
  2144. }
  2145. /*
  2146. * Attempt to atomically look up, create and open a file from a negative
  2147. * dentry.
  2148. *
  2149. * Returns 0 if successful. The file will have been created and attached to
  2150. * @file by the filesystem calling finish_open().
  2151. *
  2152. * Returns 1 if the file was looked up only or didn't need creating. The
  2153. * caller will need to perform the open themselves. @path will have been
  2154. * updated to point to the new dentry. This may be negative.
  2155. *
  2156. * Returns an error code otherwise.
  2157. */
  2158. static int atomic_open(struct nameidata *nd, struct dentry *dentry,
  2159. struct path *path, struct file *file,
  2160. const struct open_flags *op,
  2161. bool got_write, bool need_lookup,
  2162. int *opened)
  2163. {
  2164. struct inode *dir = nd->path.dentry->d_inode;
  2165. unsigned open_flag = open_to_namei_flags(op->open_flag);
  2166. umode_t mode;
  2167. int error;
  2168. int acc_mode;
  2169. int create_error = 0;
  2170. struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
  2171. BUG_ON(dentry->d_inode);
  2172. /* Don't create child dentry for a dead directory. */
  2173. if (unlikely(IS_DEADDIR(dir))) {
  2174. error = -ENOENT;
  2175. goto out;
  2176. }
  2177. mode = op->mode;
  2178. if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
  2179. mode &= ~current_umask();
  2180. if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT)) {
  2181. open_flag &= ~O_TRUNC;
  2182. *opened |= FILE_CREATED;
  2183. }
  2184. /*
  2185. * Checking write permission is tricky, bacuse we don't know if we are
  2186. * going to actually need it: O_CREAT opens should work as long as the
  2187. * file exists. But checking existence breaks atomicity. The trick is
  2188. * to check access and if not granted clear O_CREAT from the flags.
  2189. *
  2190. * Another problem is returing the "right" error value (e.g. for an
  2191. * O_EXCL open we want to return EEXIST not EROFS).
  2192. */
  2193. if (((open_flag & (O_CREAT | O_TRUNC)) ||
  2194. (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
  2195. if (!(open_flag & O_CREAT)) {
  2196. /*
  2197. * No O_CREATE -> atomicity not a requirement -> fall
  2198. * back to lookup + open
  2199. */
  2200. goto no_open;
  2201. } else if (open_flag & (O_EXCL | O_TRUNC)) {
  2202. /* Fall back and fail with the right error */
  2203. create_error = -EROFS;
  2204. goto no_open;
  2205. } else {
  2206. /* No side effects, safe to clear O_CREAT */
  2207. create_error = -EROFS;
  2208. open_flag &= ~O_CREAT;
  2209. }
  2210. }
  2211. if (open_flag & O_CREAT) {
  2212. error = may_o_create(&nd->path, dentry, mode);
  2213. if (error) {
  2214. create_error = error;
  2215. if (open_flag & O_EXCL)
  2216. goto no_open;
  2217. open_flag &= ~O_CREAT;
  2218. }
  2219. }
  2220. if (nd->flags & LOOKUP_DIRECTORY)
  2221. open_flag |= O_DIRECTORY;
  2222. file->f_path.dentry = DENTRY_NOT_SET;
  2223. file->f_path.mnt = nd->path.mnt;
  2224. error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
  2225. opened);
  2226. if (error < 0) {
  2227. if (create_error && error == -ENOENT)
  2228. error = create_error;
  2229. goto out;
  2230. }
  2231. acc_mode = op->acc_mode;
  2232. if (*opened & FILE_CREATED) {
  2233. fsnotify_create(dir, dentry);
  2234. acc_mode = MAY_OPEN;
  2235. }
  2236. if (error) { /* returned 1, that is */
  2237. if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
  2238. error = -EIO;
  2239. goto out;
  2240. }
  2241. if (file->f_path.dentry) {
  2242. dput(dentry);
  2243. dentry = file->f_path.dentry;
  2244. }
  2245. if (create_error && dentry->d_inode == NULL) {
  2246. error = create_error;
  2247. goto out;
  2248. }
  2249. goto looked_up;
  2250. }
  2251. /*
  2252. * We didn't have the inode before the open, so check open permission
  2253. * here.
  2254. */
  2255. error = may_open(&file->f_path, acc_mode, open_flag);
  2256. if (error)
  2257. fput(file);
  2258. out:
  2259. dput(dentry);
  2260. return error;
  2261. no_open:
  2262. if (need_lookup) {
  2263. dentry = lookup_real(dir, dentry, nd->flags);
  2264. if (IS_ERR(dentry))
  2265. return PTR_ERR(dentry);
  2266. if (create_error) {
  2267. int open_flag = op->open_flag;
  2268. error = create_error;
  2269. if ((open_flag & O_EXCL)) {
  2270. if (!dentry->d_inode)
  2271. goto out;
  2272. } else if (!dentry->d_inode) {
  2273. goto out;
  2274. } else if ((open_flag & O_TRUNC) &&
  2275. S_ISREG(dentry->d_inode->i_mode)) {
  2276. goto out;
  2277. }
  2278. /* will fail later, go on to get the right error */
  2279. }
  2280. }
  2281. looked_up:
  2282. path->dentry = dentry;
  2283. path->mnt = nd->path.mnt;
  2284. return 1;
  2285. }
  2286. /*
  2287. * Look up and maybe create and open the last component.
  2288. *
  2289. * Must be called with i_mutex held on parent.
  2290. *
  2291. * Returns 0 if the file was successfully atomically created (if necessary) and
  2292. * opened. In this case the file will be returned attached to @file.
  2293. *
  2294. * Returns 1 if the file was not completely opened at this time, though lookups
  2295. * and creations will have been performed and the dentry returned in @path will
  2296. * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
  2297. * specified then a negative dentry may be returned.
  2298. *
  2299. * An error code is returned otherwise.
  2300. *
  2301. * FILE_CREATE will be set in @*opened if the dentry was created and will be
  2302. * cleared otherwise prior to returning.
  2303. */
  2304. static int lookup_open(struct nameidata *nd, struct path *path,
  2305. struct file *file,
  2306. const struct open_flags *op,
  2307. bool got_write, int *opened)
  2308. {
  2309. struct dentry *dir = nd->path.dentry;
  2310. struct inode *dir_inode = dir->d_inode;
  2311. struct dentry *dentry;
  2312. int error;
  2313. bool need_lookup;
  2314. *opened &= ~FILE_CREATED;
  2315. dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
  2316. if (IS_ERR(dentry))
  2317. return PTR_ERR(dentry);
  2318. /* Cached positive dentry: will open in f_op->open */
  2319. if (!need_lookup && dentry->d_inode)
  2320. goto out_no_open;
  2321. if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
  2322. return atomic_open(nd, dentry, path, file, op, got_write,
  2323. need_lookup, opened);
  2324. }
  2325. if (need_lookup) {
  2326. BUG_ON(dentry->d_inode);
  2327. dentry = lookup_real(dir_inode, dentry, nd->flags);
  2328. if (IS_ERR(dentry))
  2329. return PTR_ERR(dentry);
  2330. }
  2331. /* Negative dentry, just create the file */
  2332. if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
  2333. umode_t mode = op->mode;
  2334. if (!IS_POSIXACL(dir->d_inode))
  2335. mode &= ~current_umask();
  2336. /*
  2337. * This write is needed to ensure that a
  2338. * rw->ro transition does not occur between
  2339. * the time when the file is created and when
  2340. * a permanent write count is taken through
  2341. * the 'struct file' in finish_open().
  2342. */
  2343. if (!got_write) {
  2344. error = -EROFS;
  2345. goto out_dput;
  2346. }
  2347. *opened |= FILE_CREATED;
  2348. error = security_path_mknod(&nd->path, dentry, mode, 0);
  2349. if (error)
  2350. goto out_dput;
  2351. error = vfs_create(dir->d_inode, dentry, mode,
  2352. nd->flags & LOOKUP_EXCL);
  2353. if (error)
  2354. goto out_dput;
  2355. }
  2356. out_no_open:
  2357. path->dentry = dentry;
  2358. path->mnt = nd->path.mnt;
  2359. return 1;
  2360. out_dput:
  2361. dput(dentry);
  2362. return error;
  2363. }
  2364. /*
  2365. * Handle the last step of open()
  2366. */
  2367. static int do_last(struct nameidata *nd, struct path *path,
  2368. struct file *file, const struct open_flags *op,
  2369. int *opened, struct filename *name)
  2370. {
  2371. struct dentry *dir = nd->path.dentry;
  2372. int open_flag = op->open_flag;
  2373. bool will_truncate = (open_flag & O_TRUNC) != 0;
  2374. bool got_write = false;
  2375. int acc_mode = op->acc_mode;
  2376. struct inode *inode;
  2377. bool symlink_ok = false;
  2378. struct path save_parent = { .dentry = NULL, .mnt = NULL };
  2379. bool retried = false;
  2380. int error;
  2381. nd->flags &= ~LOOKUP_PARENT;
  2382. nd->flags |= op->intent;
  2383. switch (nd->last_type) {
  2384. case LAST_DOTDOT:
  2385. case LAST_DOT:
  2386. error = handle_dots(nd, nd->last_type);
  2387. if (error)
  2388. return error;
  2389. /* fallthrough */
  2390. case LAST_ROOT:
  2391. error = complete_walk(nd);
  2392. if (error)
  2393. return error;
  2394. audit_inode(name, nd->path.dentry, 0);
  2395. if (open_flag & O_CREAT) {
  2396. error = -EISDIR;
  2397. goto out;
  2398. }
  2399. goto finish_open;
  2400. case LAST_BIND:
  2401. error = complete_walk(nd);
  2402. if (error)
  2403. return error;
  2404. audit_inode(name, dir, 0);
  2405. goto finish_open;
  2406. }
  2407. if (!(open_flag & O_CREAT)) {
  2408. if (nd->last.name[nd->last.len])
  2409. nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
  2410. if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
  2411. symlink_ok = true;
  2412. /* we _can_ be in RCU mode here */
  2413. error = lookup_fast(nd, &nd->last, path, &inode);
  2414. if (likely(!error))
  2415. goto finish_lookup;
  2416. if (error < 0)
  2417. goto out;
  2418. BUG_ON(nd->inode != dir->d_inode);
  2419. } else {
  2420. /* create side of things */
  2421. /*
  2422. * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
  2423. * has been cleared when we got to the last component we are
  2424. * about to look up
  2425. */
  2426. error = complete_walk(nd);
  2427. if (error)
  2428. return error;
  2429. audit_inode(name, dir, 0);
  2430. error = -EISDIR;
  2431. /* trailing slashes? */
  2432. if (nd->last.name[nd->last.len])
  2433. goto out;
  2434. }
  2435. retry_lookup:
  2436. if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
  2437. error = mnt_want_write(nd->path.mnt);
  2438. if (!error)
  2439. got_write = true;
  2440. /*
  2441. * do _not_ fail yet - we might not need that or fail with
  2442. * a different error; let lookup_open() decide; we'll be
  2443. * dropping this one anyway.
  2444. */
  2445. }
  2446. mutex_lock(&dir->d_inode->i_mutex);
  2447. error = lookup_open(nd, path, file, op, got_write, opened);
  2448. mutex_unlock(&dir->d_inode->i_mutex);
  2449. if (error <= 0) {
  2450. if (error)
  2451. goto out;
  2452. if ((*opened & FILE_CREATED) ||
  2453. !S_ISREG(file->f_path.dentry->d_inode->i_mode))
  2454. will_truncate = false;
  2455. audit_inode(name, file->f_path.dentry, 0);
  2456. goto opened;
  2457. }
  2458. if (*opened & FILE_CREATED) {
  2459. /* Don't check for write permission, don't truncate */
  2460. open_flag &= ~O_TRUNC;
  2461. will_truncate = false;
  2462. acc_mode = MAY_OPEN;
  2463. path_to_nameidata(path, nd);
  2464. goto finish_open_created;
  2465. }
  2466. /*
  2467. * create/update audit record if it already exists.
  2468. */
  2469. if (path->dentry->d_inode)
  2470. audit_inode(name, path->dentry, 0);
  2471. /*
  2472. * If atomic_open() acquired write access it is dropped now due to
  2473. * possible mount and symlink following (this might be optimized away if
  2474. * necessary...)
  2475. */
  2476. if (got_write) {
  2477. mnt_drop_write(nd->path.mnt);
  2478. got_write = false;
  2479. }
  2480. error = -EEXIST;
  2481. if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
  2482. goto exit_dput;
  2483. error = follow_managed(path, nd->flags);
  2484. if (error < 0)
  2485. goto exit_dput;
  2486. if (error)
  2487. nd->flags |= LOOKUP_JUMPED;
  2488. BUG_ON(nd->flags & LOOKUP_RCU);
  2489. inode = path->dentry->d_inode;
  2490. finish_lookup:
  2491. /* we _can_ be in RCU mode here */
  2492. error = -ENOENT;
  2493. if (!inode) {
  2494. path_to_nameidata(path, nd);
  2495. goto out;
  2496. }
  2497. if (should_follow_link(inode, !symlink_ok)) {
  2498. if (nd->flags & LOOKUP_RCU) {
  2499. if (unlikely(unlazy_walk(nd, path->dentry))) {
  2500. error = -ECHILD;
  2501. goto out;
  2502. }
  2503. }
  2504. BUG_ON(inode != path->dentry->d_inode);
  2505. return 1;
  2506. }
  2507. if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) {
  2508. path_to_nameidata(path, nd);
  2509. } else {
  2510. save_parent.dentry = nd->path.dentry;
  2511. save_parent.mnt = mntget(path->mnt);
  2512. nd->path.dentry = path->dentry;
  2513. }
  2514. nd->inode = inode;
  2515. /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
  2516. error = complete_walk(nd);
  2517. if (error) {
  2518. path_put(&save_parent);
  2519. return error;
  2520. }
  2521. error = -EISDIR;
  2522. if ((open_flag & O_CREAT) && S_ISDIR(nd->inode->i_mode))
  2523. goto out;
  2524. error = -ENOTDIR;
  2525. if ((nd->flags & LOOKUP_DIRECTORY) && !nd->inode->i_op->lookup)
  2526. goto out;
  2527. audit_inode(name, nd->path.dentry, 0);
  2528. finish_open:
  2529. if (!S_ISREG(nd->inode->i_mode))
  2530. will_truncate = false;
  2531. if (will_truncate) {
  2532. error = mnt_want_write(nd->path.mnt);
  2533. if (error)
  2534. goto out;
  2535. got_write = true;
  2536. }
  2537. finish_open_created:
  2538. error = may_open(&nd->path, acc_mode, open_flag);
  2539. if (error)
  2540. goto out;
  2541. file->f_path.mnt = nd->path.mnt;
  2542. error = finish_open(file, nd->path.dentry, NULL, opened);
  2543. if (error) {
  2544. if (error == -EOPENSTALE)
  2545. goto stale_open;
  2546. goto out;
  2547. }
  2548. opened:
  2549. error = open_check_o_direct(file);
  2550. if (error)
  2551. goto exit_fput;
  2552. error = ima_file_check(file, op->acc_mode);
  2553. if (error)
  2554. goto exit_fput;
  2555. if (will_truncate) {
  2556. error = handle_truncate(file);
  2557. if (error)
  2558. goto exit_fput;
  2559. }
  2560. out:
  2561. if (got_write)
  2562. mnt_drop_write(nd->path.mnt);
  2563. path_put(&save_parent);
  2564. terminate_walk(nd);
  2565. return error;
  2566. exit_dput:
  2567. path_put_conditional(path, nd);
  2568. goto out;
  2569. exit_fput:
  2570. fput(file);
  2571. goto out;
  2572. stale_open:
  2573. /* If no saved parent or already retried then can't retry */
  2574. if (!save_parent.dentry || retried)
  2575. goto out;
  2576. BUG_ON(save_parent.dentry != dir);
  2577. path_put(&nd->path);
  2578. nd->path = save_parent;
  2579. nd->inode = dir->d_inode;
  2580. save_parent.mnt = NULL;
  2581. save_parent.dentry = NULL;
  2582. if (got_write) {
  2583. mnt_drop_write(nd->path.mnt);
  2584. got_write = false;
  2585. }
  2586. retried = true;
  2587. goto retry_lookup;
  2588. }
  2589. static struct file *path_openat(int dfd, struct filename *pathname,
  2590. struct nameidata *nd, const struct open_flags *op, int flags)
  2591. {
  2592. struct file *base = NULL;
  2593. struct file *file;
  2594. struct path path;
  2595. int opened = 0;
  2596. int error;
  2597. file = get_empty_filp();
  2598. if (!file)
  2599. return ERR_PTR(-ENFILE);
  2600. file->f_flags = op->open_flag;
  2601. error = path_init(dfd, pathname->name, flags | LOOKUP_PARENT, nd, &base);
  2602. if (unlikely(error))
  2603. goto out;
  2604. current->total_link_count = 0;
  2605. error = link_path_walk(pathname->name, nd);
  2606. if (unlikely(error))
  2607. goto out;
  2608. error = do_last(nd, &path, file, op, &opened, pathname);
  2609. while (unlikely(error > 0)) { /* trailing symlink */
  2610. struct path link = path;
  2611. void *cookie;
  2612. if (!(nd->flags & LOOKUP_FOLLOW)) {
  2613. path_put_conditional(&path, nd);
  2614. path_put(&nd->path);
  2615. error = -ELOOP;
  2616. break;
  2617. }
  2618. error = may_follow_link(&link, nd);
  2619. if (unlikely(error))
  2620. break;
  2621. nd->flags |= LOOKUP_PARENT;
  2622. nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
  2623. error = follow_link(&link, nd, &cookie);
  2624. if (unlikely(error))
  2625. break;
  2626. error = do_last(nd, &path, file, op, &opened, pathname);
  2627. put_link(nd, &link, cookie);
  2628. }
  2629. out:
  2630. if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
  2631. path_put(&nd->root);
  2632. if (base)
  2633. fput(base);
  2634. if (!(opened & FILE_OPENED)) {
  2635. BUG_ON(!error);
  2636. put_filp(file);
  2637. }
  2638. if (unlikely(error)) {
  2639. if (error == -EOPENSTALE) {
  2640. if (flags & LOOKUP_RCU)
  2641. error = -ECHILD;
  2642. else
  2643. error = -ESTALE;
  2644. }
  2645. file = ERR_PTR(error);
  2646. }
  2647. return file;
  2648. }
  2649. struct file *do_filp_open(int dfd, struct filename *pathname,
  2650. const struct open_flags *op, int flags)
  2651. {
  2652. struct nameidata nd;
  2653. struct file *filp;
  2654. filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
  2655. if (unlikely(filp == ERR_PTR(-ECHILD)))
  2656. filp = path_openat(dfd, pathname, &nd, op, flags);
  2657. if (unlikely(filp == ERR_PTR(-ESTALE)))
  2658. filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
  2659. return filp;
  2660. }
  2661. struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
  2662. const char *name, const struct open_flags *op, int flags)
  2663. {
  2664. struct nameidata nd;
  2665. struct file *file;
  2666. struct filename filename = { .name = name };
  2667. nd.root.mnt = mnt;
  2668. nd.root.dentry = dentry;
  2669. flags |= LOOKUP_ROOT;
  2670. if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
  2671. return ERR_PTR(-ELOOP);
  2672. file = path_openat(-1, &filename, &nd, op, flags | LOOKUP_RCU);
  2673. if (unlikely(file == ERR_PTR(-ECHILD)))
  2674. file = path_openat(-1, &filename, &nd, op, flags);
  2675. if (unlikely(file == ERR_PTR(-ESTALE)))
  2676. file = path_openat(-1, &filename, &nd, op, flags | LOOKUP_REVAL);
  2677. return file;
  2678. }
  2679. struct dentry *kern_path_create(int dfd, const char *pathname,
  2680. struct path *path, unsigned int lookup_flags)
  2681. {
  2682. struct dentry *dentry = ERR_PTR(-EEXIST);
  2683. struct nameidata nd;
  2684. int err2;
  2685. int error;
  2686. bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
  2687. /*
  2688. * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
  2689. * other flags passed in are ignored!
  2690. */
  2691. lookup_flags &= LOOKUP_REVAL;
  2692. error = do_path_lookup(dfd, pathname, LOOKUP_PARENT|lookup_flags, &nd);
  2693. if (error)
  2694. return ERR_PTR(error);
  2695. /*
  2696. * Yucky last component or no last component at all?
  2697. * (foo/., foo/.., /////)
  2698. */
  2699. if (nd.last_type != LAST_NORM)
  2700. goto out;
  2701. nd.flags &= ~LOOKUP_PARENT;
  2702. nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
  2703. /* don't fail immediately if it's r/o, at least try to report other errors */
  2704. err2 = mnt_want_write(nd.path.mnt);
  2705. /*
  2706. * Do the final lookup.
  2707. */
  2708. mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
  2709. dentry = lookup_hash(&nd);
  2710. if (IS_ERR(dentry))
  2711. goto unlock;
  2712. error = -EEXIST;
  2713. if (dentry->d_inode)
  2714. goto fail;
  2715. /*
  2716. * Special case - lookup gave negative, but... we had foo/bar/
  2717. * From the vfs_mknod() POV we just have a negative dentry -
  2718. * all is fine. Let's be bastards - you had / on the end, you've
  2719. * been asking for (non-existent) directory. -ENOENT for you.
  2720. */
  2721. if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
  2722. error = -ENOENT;
  2723. goto fail;
  2724. }
  2725. if (unlikely(err2)) {
  2726. error = err2;
  2727. goto fail;
  2728. }
  2729. *path = nd.path;
  2730. return dentry;
  2731. fail:
  2732. dput(dentry);
  2733. dentry = ERR_PTR(error);
  2734. unlock:
  2735. mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
  2736. if (!err2)
  2737. mnt_drop_write(nd.path.mnt);
  2738. out:
  2739. path_put(&nd.path);
  2740. return dentry;
  2741. }
  2742. EXPORT_SYMBOL(kern_path_create);
  2743. void done_path_create(struct path *path, struct dentry *dentry)
  2744. {
  2745. dput(dentry);
  2746. mutex_unlock(&path->dentry->d_inode->i_mutex);
  2747. mnt_drop_write(path->mnt);
  2748. path_put(path);
  2749. }
  2750. EXPORT_SYMBOL(done_path_create);
  2751. struct dentry *user_path_create(int dfd, const char __user *pathname,
  2752. struct path *path, unsigned int lookup_flags)
  2753. {
  2754. struct filename *tmp = getname(pathname);
  2755. struct dentry *res;
  2756. if (IS_ERR(tmp))
  2757. return ERR_CAST(tmp);
  2758. res = kern_path_create(dfd, tmp->name, path, lookup_flags);
  2759. putname(tmp);
  2760. return res;
  2761. }
  2762. EXPORT_SYMBOL(user_path_create);
  2763. int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
  2764. {
  2765. int error = may_create(dir, dentry);
  2766. if (error)
  2767. return error;
  2768. if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
  2769. return -EPERM;
  2770. if (!dir->i_op->mknod)
  2771. return -EPERM;
  2772. error = devcgroup_inode_mknod(mode, dev);
  2773. if (error)
  2774. return error;
  2775. error = security_inode_mknod(dir, dentry, mode, dev);
  2776. if (error)
  2777. return error;
  2778. error = dir->i_op->mknod(dir, dentry, mode, dev);
  2779. if (!error)
  2780. fsnotify_create(dir, dentry);
  2781. return error;
  2782. }
  2783. static int may_mknod(umode_t mode)
  2784. {
  2785. switch (mode & S_IFMT) {
  2786. case S_IFREG:
  2787. case S_IFCHR:
  2788. case S_IFBLK:
  2789. case S_IFIFO:
  2790. case S_IFSOCK:
  2791. case 0: /* zero mode translates to S_IFREG */
  2792. return 0;
  2793. case S_IFDIR:
  2794. return -EPERM;
  2795. default:
  2796. return -EINVAL;
  2797. }
  2798. }
  2799. SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
  2800. unsigned, dev)
  2801. {
  2802. struct dentry *dentry;
  2803. struct path path;
  2804. int error;
  2805. unsigned int lookup_flags = 0;
  2806. error = may_mknod(mode);
  2807. if (error)
  2808. return error;
  2809. retry:
  2810. dentry = user_path_create(dfd, filename, &path, lookup_flags);
  2811. if (IS_ERR(dentry))
  2812. return PTR_ERR(dentry);
  2813. if (!IS_POSIXACL(path.dentry->d_inode))
  2814. mode &= ~current_umask();
  2815. error = security_path_mknod(&path, dentry, mode, dev);
  2816. if (error)
  2817. goto out;
  2818. switch (mode & S_IFMT) {
  2819. case 0: case S_IFREG:
  2820. error = vfs_create(path.dentry->d_inode,dentry,mode,true);
  2821. break;
  2822. case S_IFCHR: case S_IFBLK:
  2823. error = vfs_mknod(path.dentry->d_inode,dentry,mode,
  2824. new_decode_dev(dev));
  2825. break;
  2826. case S_IFIFO: case S_IFSOCK:
  2827. error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
  2828. break;
  2829. }
  2830. out:
  2831. done_path_create(&path, dentry);
  2832. if (retry_estale(error, lookup_flags)) {
  2833. lookup_flags |= LOOKUP_REVAL;
  2834. goto retry;
  2835. }
  2836. return error;
  2837. }
  2838. SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
  2839. {
  2840. return sys_mknodat(AT_FDCWD, filename, mode, dev);
  2841. }
  2842. int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
  2843. {
  2844. int error = may_create(dir, dentry);
  2845. unsigned max_links = dir->i_sb->s_max_links;
  2846. if (error)
  2847. return error;
  2848. if (!dir->i_op->mkdir)
  2849. return -EPERM;
  2850. mode &= (S_IRWXUGO|S_ISVTX);
  2851. error = security_inode_mkdir(dir, dentry, mode);
  2852. if (error)
  2853. return error;
  2854. if (max_links && dir->i_nlink >= max_links)
  2855. return -EMLINK;
  2856. error = dir->i_op->mkdir(dir, dentry, mode);
  2857. if (!error)
  2858. fsnotify_mkdir(dir, dentry);
  2859. return error;
  2860. }
  2861. SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
  2862. {
  2863. struct dentry *dentry;
  2864. struct path path;
  2865. int error;
  2866. unsigned int lookup_flags = LOOKUP_DIRECTORY;
  2867. retry:
  2868. dentry = user_path_create(dfd, pathname, &path, lookup_flags);
  2869. if (IS_ERR(dentry))
  2870. return PTR_ERR(dentry);
  2871. if (!IS_POSIXACL(path.dentry->d_inode))
  2872. mode &= ~current_umask();
  2873. error = security_path_mkdir(&path, dentry, mode);
  2874. if (!error)
  2875. error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
  2876. done_path_create(&path, dentry);
  2877. if (retry_estale(error, lookup_flags)) {
  2878. lookup_flags |= LOOKUP_REVAL;
  2879. goto retry;
  2880. }
  2881. return error;
  2882. }
  2883. SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
  2884. {
  2885. return sys_mkdirat(AT_FDCWD, pathname, mode);
  2886. }
  2887. /*
  2888. * The dentry_unhash() helper will try to drop the dentry early: we
  2889. * should have a usage count of 1 if we're the only user of this
  2890. * dentry, and if that is true (possibly after pruning the dcache),
  2891. * then we drop the dentry now.
  2892. *
  2893. * A low-level filesystem can, if it choses, legally
  2894. * do a
  2895. *
  2896. * if (!d_unhashed(dentry))
  2897. * return -EBUSY;
  2898. *
  2899. * if it cannot handle the case of removing a directory
  2900. * that is still in use by something else..
  2901. */
  2902. void dentry_unhash(struct dentry *dentry)
  2903. {
  2904. shrink_dcache_parent(dentry);
  2905. spin_lock(&dentry->d_lock);
  2906. if (dentry->d_count == 1)
  2907. __d_drop(dentry);
  2908. spin_unlock(&dentry->d_lock);
  2909. }
  2910. int vfs_rmdir(struct inode *dir, struct dentry *dentry)
  2911. {
  2912. int error = may_delete(dir, dentry, 1);
  2913. if (error)
  2914. return error;
  2915. if (!dir->i_op->rmdir)
  2916. return -EPERM;
  2917. dget(dentry);
  2918. mutex_lock(&dentry->d_inode->i_mutex);
  2919. error = -EBUSY;
  2920. if (d_mountpoint(dentry))
  2921. goto out;
  2922. error = security_inode_rmdir(dir, dentry);
  2923. if (error)
  2924. goto out;
  2925. shrink_dcache_parent(dentry);
  2926. error = dir->i_op->rmdir(dir, dentry);
  2927. if (error)
  2928. goto out;
  2929. dentry->d_inode->i_flags |= S_DEAD;
  2930. dont_mount(dentry);
  2931. out:
  2932. mutex_unlock(&dentry->d_inode->i_mutex);
  2933. dput(dentry);
  2934. if (!error)
  2935. d_delete(dentry);
  2936. return error;
  2937. }
  2938. static long do_rmdir(int dfd, const char __user *pathname)
  2939. {
  2940. int error = 0;
  2941. struct filename *name;
  2942. struct dentry *dentry;
  2943. struct nameidata nd;
  2944. name = user_path_parent(dfd, pathname, &nd, 0);
  2945. if (IS_ERR(name))
  2946. return PTR_ERR(name);
  2947. switch(nd.last_type) {
  2948. case LAST_DOTDOT:
  2949. error = -ENOTEMPTY;
  2950. goto exit1;
  2951. case LAST_DOT:
  2952. error = -EINVAL;
  2953. goto exit1;
  2954. case LAST_ROOT:
  2955. error = -EBUSY;
  2956. goto exit1;
  2957. }
  2958. nd.flags &= ~LOOKUP_PARENT;
  2959. error = mnt_want_write(nd.path.mnt);
  2960. if (error)
  2961. goto exit1;
  2962. mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
  2963. dentry = lookup_hash(&nd);
  2964. error = PTR_ERR(dentry);
  2965. if (IS_ERR(dentry))
  2966. goto exit2;
  2967. if (!dentry->d_inode) {
  2968. error = -ENOENT;
  2969. goto exit3;
  2970. }
  2971. error = security_path_rmdir(&nd.path, dentry);
  2972. if (error)
  2973. goto exit3;
  2974. error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
  2975. exit3:
  2976. dput(dentry);
  2977. exit2:
  2978. mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
  2979. mnt_drop_write(nd.path.mnt);
  2980. exit1:
  2981. path_put(&nd.path);
  2982. putname(name);
  2983. return error;
  2984. }
  2985. SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
  2986. {
  2987. return do_rmdir(AT_FDCWD, pathname);
  2988. }
  2989. int vfs_unlink(struct inode *dir, struct dentry *dentry)
  2990. {
  2991. int error = may_delete(dir, dentry, 0);
  2992. if (error)
  2993. return error;
  2994. if (!dir->i_op->unlink)
  2995. return -EPERM;
  2996. mutex_lock(&dentry->d_inode->i_mutex);
  2997. if (d_mountpoint(dentry))
  2998. error = -EBUSY;
  2999. else {
  3000. error = security_inode_unlink(dir, dentry);
  3001. if (!error) {
  3002. error = dir->i_op->unlink(dir, dentry);
  3003. if (!error)
  3004. dont_mount(dentry);
  3005. }
  3006. }
  3007. mutex_unlock(&dentry->d_inode->i_mutex);
  3008. /* We don't d_delete() NFS sillyrenamed files--they still exist. */
  3009. if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
  3010. fsnotify_link_count(dentry->d_inode);
  3011. d_delete(dentry);
  3012. }
  3013. return error;
  3014. }
  3015. /*
  3016. * Make sure that the actual truncation of the file will occur outside its
  3017. * directory's i_mutex. Truncate can take a long time if there is a lot of
  3018. * writeout happening, and we don't want to prevent access to the directory
  3019. * while waiting on the I/O.
  3020. */
  3021. static long do_unlinkat(int dfd, const char __user *pathname)
  3022. {
  3023. int error;
  3024. struct filename *name;
  3025. struct dentry *dentry;
  3026. struct nameidata nd;
  3027. struct inode *inode = NULL;
  3028. name = user_path_parent(dfd, pathname, &nd, 0);
  3029. if (IS_ERR(name))
  3030. return PTR_ERR(name);
  3031. error = -EISDIR;
  3032. if (nd.last_type != LAST_NORM)
  3033. goto exit1;
  3034. nd.flags &= ~LOOKUP_PARENT;
  3035. error = mnt_want_write(nd.path.mnt);
  3036. if (error)
  3037. goto exit1;
  3038. mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
  3039. dentry = lookup_hash(&nd);
  3040. error = PTR_ERR(dentry);
  3041. if (!IS_ERR(dentry)) {
  3042. /* Why not before? Because we want correct error value */
  3043. if (nd.last.name[nd.last.len])
  3044. goto slashes;
  3045. inode = dentry->d_inode;
  3046. if (!inode)
  3047. goto slashes;
  3048. ihold(inode);
  3049. error = security_path_unlink(&nd.path, dentry);
  3050. if (error)
  3051. goto exit2;
  3052. error = vfs_unlink(nd.path.dentry->d_inode, dentry);
  3053. exit2:
  3054. dput(dentry);
  3055. }
  3056. mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
  3057. if (inode)
  3058. iput(inode); /* truncate the inode here */
  3059. mnt_drop_write(nd.path.mnt);
  3060. exit1:
  3061. path_put(&nd.path);
  3062. putname(name);
  3063. return error;
  3064. slashes:
  3065. error = !dentry->d_inode ? -ENOENT :
  3066. S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
  3067. goto exit2;
  3068. }
  3069. SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
  3070. {
  3071. if ((flag & ~AT_REMOVEDIR) != 0)
  3072. return -EINVAL;
  3073. if (flag & AT_REMOVEDIR)
  3074. return do_rmdir(dfd, pathname);
  3075. return do_unlinkat(dfd, pathname);
  3076. }
  3077. SYSCALL_DEFINE1(unlink, const char __user *, pathname)
  3078. {
  3079. return do_unlinkat(AT_FDCWD, pathname);
  3080. }
  3081. int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
  3082. {
  3083. int error = may_create(dir, dentry);
  3084. if (error)
  3085. return error;
  3086. if (!dir->i_op->symlink)
  3087. return -EPERM;
  3088. error = security_inode_symlink(dir, dentry, oldname);
  3089. if (error)
  3090. return error;
  3091. error = dir->i_op->symlink(dir, dentry, oldname);
  3092. if (!error)
  3093. fsnotify_create(dir, dentry);
  3094. return error;
  3095. }
  3096. SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
  3097. int, newdfd, const char __user *, newname)
  3098. {
  3099. int error;
  3100. struct filename *from;
  3101. struct dentry *dentry;
  3102. struct path path;
  3103. unsigned int lookup_flags = 0;
  3104. from = getname(oldname);
  3105. if (IS_ERR(from))
  3106. return PTR_ERR(from);
  3107. retry:
  3108. dentry = user_path_create(newdfd, newname, &path, lookup_flags);
  3109. error = PTR_ERR(dentry);
  3110. if (IS_ERR(dentry))
  3111. goto out_putname;
  3112. error = security_path_symlink(&path, dentry, from->name);
  3113. if (!error)
  3114. error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
  3115. done_path_create(&path, dentry);
  3116. if (retry_estale(error, lookup_flags)) {
  3117. lookup_flags |= LOOKUP_REVAL;
  3118. goto retry;
  3119. }
  3120. out_putname:
  3121. putname(from);
  3122. return error;
  3123. }
  3124. SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
  3125. {
  3126. return sys_symlinkat(oldname, AT_FDCWD, newname);
  3127. }
  3128. int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
  3129. {
  3130. struct inode *inode = old_dentry->d_inode;
  3131. unsigned max_links = dir->i_sb->s_max_links;
  3132. int error;
  3133. if (!inode)
  3134. return -ENOENT;
  3135. error = may_create(dir, new_dentry);
  3136. if (error)
  3137. return error;
  3138. if (dir->i_sb != inode->i_sb)
  3139. return -EXDEV;
  3140. /*
  3141. * A link to an append-only or immutable file cannot be created.
  3142. */
  3143. if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
  3144. return -EPERM;
  3145. if (!dir->i_op->link)
  3146. return -EPERM;
  3147. if (S_ISDIR(inode->i_mode))
  3148. return -EPERM;
  3149. error = security_inode_link(old_dentry, dir, new_dentry);
  3150. if (error)
  3151. return error;
  3152. mutex_lock(&inode->i_mutex);
  3153. /* Make sure we don't allow creating hardlink to an unlinked file */
  3154. if (inode->i_nlink == 0)
  3155. error = -ENOENT;
  3156. else if (max_links && inode->i_nlink >= max_links)
  3157. error = -EMLINK;
  3158. else
  3159. error = dir->i_op->link(old_dentry, dir, new_dentry);
  3160. mutex_unlock(&inode->i_mutex);
  3161. if (!error)
  3162. fsnotify_link(dir, inode, new_dentry);
  3163. return error;
  3164. }
  3165. /*
  3166. * Hardlinks are often used in delicate situations. We avoid
  3167. * security-related surprises by not following symlinks on the
  3168. * newname. --KAB
  3169. *
  3170. * We don't follow them on the oldname either to be compatible
  3171. * with linux 2.0, and to avoid hard-linking to directories
  3172. * and other special files. --ADM
  3173. */
  3174. SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
  3175. int, newdfd, const char __user *, newname, int, flags)
  3176. {
  3177. struct dentry *new_dentry;
  3178. struct path old_path, new_path;
  3179. int how = 0;
  3180. int error;
  3181. if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
  3182. return -EINVAL;
  3183. /*
  3184. * To use null names we require CAP_DAC_READ_SEARCH
  3185. * This ensures that not everyone will be able to create
  3186. * handlink using the passed filedescriptor.
  3187. */
  3188. if (flags & AT_EMPTY_PATH) {
  3189. if (!capable(CAP_DAC_READ_SEARCH))
  3190. return -ENOENT;
  3191. how = LOOKUP_EMPTY;
  3192. }
  3193. if (flags & AT_SYMLINK_FOLLOW)
  3194. how |= LOOKUP_FOLLOW;
  3195. retry:
  3196. error = user_path_at(olddfd, oldname, how, &old_path);
  3197. if (error)
  3198. return error;
  3199. new_dentry = user_path_create(newdfd, newname, &new_path,
  3200. (how & LOOKUP_REVAL));
  3201. error = PTR_ERR(new_dentry);
  3202. if (IS_ERR(new_dentry))
  3203. goto out;
  3204. error = -EXDEV;
  3205. if (old_path.mnt != new_path.mnt)
  3206. goto out_dput;
  3207. error = may_linkat(&old_path);
  3208. if (unlikely(error))
  3209. goto out_dput;
  3210. error = security_path_link(old_path.dentry, &new_path, new_dentry);
  3211. if (error)
  3212. goto out_dput;
  3213. error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
  3214. out_dput:
  3215. done_path_create(&new_path, new_dentry);
  3216. if (retry_estale(error, how)) {
  3217. how |= LOOKUP_REVAL;
  3218. goto retry;
  3219. }
  3220. out:
  3221. path_put(&old_path);
  3222. return error;
  3223. }
  3224. SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
  3225. {
  3226. return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
  3227. }
  3228. /*
  3229. * The worst of all namespace operations - renaming directory. "Perverted"
  3230. * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
  3231. * Problems:
  3232. * a) we can get into loop creation. Check is done in is_subdir().
  3233. * b) race potential - two innocent renames can create a loop together.
  3234. * That's where 4.4 screws up. Current fix: serialization on
  3235. * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
  3236. * story.
  3237. * c) we have to lock _three_ objects - parents and victim (if it exists).
  3238. * And that - after we got ->i_mutex on parents (until then we don't know
  3239. * whether the target exists). Solution: try to be smart with locking
  3240. * order for inodes. We rely on the fact that tree topology may change
  3241. * only under ->s_vfs_rename_mutex _and_ that parent of the object we
  3242. * move will be locked. Thus we can rank directories by the tree
  3243. * (ancestors first) and rank all non-directories after them.
  3244. * That works since everybody except rename does "lock parent, lookup,
  3245. * lock child" and rename is under ->s_vfs_rename_mutex.
  3246. * HOWEVER, it relies on the assumption that any object with ->lookup()
  3247. * has no more than 1 dentry. If "hybrid" objects will ever appear,
  3248. * we'd better make sure that there's no link(2) for them.
  3249. * d) conversion from fhandle to dentry may come in the wrong moment - when
  3250. * we are removing the target. Solution: we will have to grab ->i_mutex
  3251. * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
  3252. * ->i_mutex on parents, which works but leads to some truly excessive
  3253. * locking].
  3254. */
  3255. static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
  3256. struct inode *new_dir, struct dentry *new_dentry)
  3257. {
  3258. int error = 0;
  3259. struct inode *target = new_dentry->d_inode;
  3260. unsigned max_links = new_dir->i_sb->s_max_links;
  3261. /*
  3262. * If we are going to change the parent - check write permissions,
  3263. * we'll need to flip '..'.
  3264. */
  3265. if (new_dir != old_dir) {
  3266. error = inode_permission(old_dentry->d_inode, MAY_WRITE);
  3267. if (error)
  3268. return error;
  3269. }
  3270. error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
  3271. if (error)
  3272. return error;
  3273. dget(new_dentry);
  3274. if (target)
  3275. mutex_lock(&target->i_mutex);
  3276. error = -EBUSY;
  3277. if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
  3278. goto out;
  3279. error = -EMLINK;
  3280. if (max_links && !target && new_dir != old_dir &&
  3281. new_dir->i_nlink >= max_links)
  3282. goto out;
  3283. if (target)
  3284. shrink_dcache_parent(new_dentry);
  3285. error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
  3286. if (error)
  3287. goto out;
  3288. if (target) {
  3289. target->i_flags |= S_DEAD;
  3290. dont_mount(new_dentry);
  3291. }
  3292. out:
  3293. if (target)
  3294. mutex_unlock(&target->i_mutex);
  3295. dput(new_dentry);
  3296. if (!error)
  3297. if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
  3298. d_move(old_dentry,new_dentry);
  3299. return error;
  3300. }
  3301. static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
  3302. struct inode *new_dir, struct dentry *new_dentry)
  3303. {
  3304. struct inode *target = new_dentry->d_inode;
  3305. int error;
  3306. error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
  3307. if (error)
  3308. return error;
  3309. dget(new_dentry);
  3310. if (target)
  3311. mutex_lock(&target->i_mutex);
  3312. error = -EBUSY;
  3313. if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
  3314. goto out;
  3315. error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
  3316. if (error)
  3317. goto out;
  3318. if (target)
  3319. dont_mount(new_dentry);
  3320. if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
  3321. d_move(old_dentry, new_dentry);
  3322. out:
  3323. if (target)
  3324. mutex_unlock(&target->i_mutex);
  3325. dput(new_dentry);
  3326. return error;
  3327. }
  3328. int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
  3329. struct inode *new_dir, struct dentry *new_dentry)
  3330. {
  3331. int error;
  3332. int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
  3333. const unsigned char *old_name;
  3334. if (old_dentry->d_inode == new_dentry->d_inode)
  3335. return 0;
  3336. error = may_delete(old_dir, old_dentry, is_dir);
  3337. if (error)
  3338. return error;
  3339. if (!new_dentry->d_inode)
  3340. error = may_create(new_dir, new_dentry);
  3341. else
  3342. error = may_delete(new_dir, new_dentry, is_dir);
  3343. if (error)
  3344. return error;
  3345. if (!old_dir->i_op->rename)
  3346. return -EPERM;
  3347. old_name = fsnotify_oldname_init(old_dentry->d_name.name);
  3348. if (is_dir)
  3349. error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
  3350. else
  3351. error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
  3352. if (!error)
  3353. fsnotify_move(old_dir, new_dir, old_name, is_dir,
  3354. new_dentry->d_inode, old_dentry);
  3355. fsnotify_oldname_free(old_name);
  3356. return error;
  3357. }
  3358. SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
  3359. int, newdfd, const char __user *, newname)
  3360. {
  3361. struct dentry *old_dir, *new_dir;
  3362. struct dentry *old_dentry, *new_dentry;
  3363. struct dentry *trap;
  3364. struct nameidata oldnd, newnd;
  3365. struct filename *from;
  3366. struct filename *to;
  3367. int error;
  3368. from = user_path_parent(olddfd, oldname, &oldnd, 0);
  3369. if (IS_ERR(from)) {
  3370. error = PTR_ERR(from);
  3371. goto exit;
  3372. }
  3373. to = user_path_parent(newdfd, newname, &newnd, 0);
  3374. if (IS_ERR(to)) {
  3375. error = PTR_ERR(to);
  3376. goto exit1;
  3377. }
  3378. error = -EXDEV;
  3379. if (oldnd.path.mnt != newnd.path.mnt)
  3380. goto exit2;
  3381. old_dir = oldnd.path.dentry;
  3382. error = -EBUSY;
  3383. if (oldnd.last_type != LAST_NORM)
  3384. goto exit2;
  3385. new_dir = newnd.path.dentry;
  3386. if (newnd.last_type != LAST_NORM)
  3387. goto exit2;
  3388. error = mnt_want_write(oldnd.path.mnt);
  3389. if (error)
  3390. goto exit2;
  3391. oldnd.flags &= ~LOOKUP_PARENT;
  3392. newnd.flags &= ~LOOKUP_PARENT;
  3393. newnd.flags |= LOOKUP_RENAME_TARGET;
  3394. trap = lock_rename(new_dir, old_dir);
  3395. old_dentry = lookup_hash(&oldnd);
  3396. error = PTR_ERR(old_dentry);
  3397. if (IS_ERR(old_dentry))
  3398. goto exit3;
  3399. /* source must exist */
  3400. error = -ENOENT;
  3401. if (!old_dentry->d_inode)
  3402. goto exit4;
  3403. /* unless the source is a directory trailing slashes give -ENOTDIR */
  3404. if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
  3405. error = -ENOTDIR;
  3406. if (oldnd.last.name[oldnd.last.len])
  3407. goto exit4;
  3408. if (newnd.last.name[newnd.last.len])
  3409. goto exit4;
  3410. }
  3411. /* source should not be ancestor of target */
  3412. error = -EINVAL;
  3413. if (old_dentry == trap)
  3414. goto exit4;
  3415. new_dentry = lookup_hash(&newnd);
  3416. error = PTR_ERR(new_dentry);
  3417. if (IS_ERR(new_dentry))
  3418. goto exit4;
  3419. /* target should not be an ancestor of source */
  3420. error = -ENOTEMPTY;
  3421. if (new_dentry == trap)
  3422. goto exit5;
  3423. error = security_path_rename(&oldnd.path, old_dentry,
  3424. &newnd.path, new_dentry);
  3425. if (error)
  3426. goto exit5;
  3427. error = vfs_rename(old_dir->d_inode, old_dentry,
  3428. new_dir->d_inode, new_dentry);
  3429. exit5:
  3430. dput(new_dentry);
  3431. exit4:
  3432. dput(old_dentry);
  3433. exit3:
  3434. unlock_rename(new_dir, old_dir);
  3435. mnt_drop_write(oldnd.path.mnt);
  3436. exit2:
  3437. path_put(&newnd.path);
  3438. putname(to);
  3439. exit1:
  3440. path_put(&oldnd.path);
  3441. putname(from);
  3442. exit:
  3443. return error;
  3444. }
  3445. SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
  3446. {
  3447. return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
  3448. }
  3449. int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
  3450. {
  3451. int len;
  3452. len = PTR_ERR(link);
  3453. if (IS_ERR(link))
  3454. goto out;
  3455. len = strlen(link);
  3456. if (len > (unsigned) buflen)
  3457. len = buflen;
  3458. if (copy_to_user(buffer, link, len))
  3459. len = -EFAULT;
  3460. out:
  3461. return len;
  3462. }
  3463. /*
  3464. * A helper for ->readlink(). This should be used *ONLY* for symlinks that
  3465. * have ->follow_link() touching nd only in nd_set_link(). Using (or not
  3466. * using) it for any given inode is up to filesystem.
  3467. */
  3468. int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
  3469. {
  3470. struct nameidata nd;
  3471. void *cookie;
  3472. int res;
  3473. nd.depth = 0;
  3474. cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
  3475. if (IS_ERR(cookie))
  3476. return PTR_ERR(cookie);
  3477. res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
  3478. if (dentry->d_inode->i_op->put_link)
  3479. dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
  3480. return res;
  3481. }
  3482. int vfs_follow_link(struct nameidata *nd, const char *link)
  3483. {
  3484. return __vfs_follow_link(nd, link);
  3485. }
  3486. /* get the link contents into pagecache */
  3487. static char *page_getlink(struct dentry * dentry, struct page **ppage)
  3488. {
  3489. char *kaddr;
  3490. struct page *page;
  3491. struct address_space *mapping = dentry->d_inode->i_mapping;
  3492. page = read_mapping_page(mapping, 0, NULL);
  3493. if (IS_ERR(page))
  3494. return (char*)page;
  3495. *ppage = page;
  3496. kaddr = kmap(page);
  3497. nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
  3498. return kaddr;
  3499. }
  3500. int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
  3501. {
  3502. struct page *page = NULL;
  3503. char *s = page_getlink(dentry, &page);
  3504. int res = vfs_readlink(dentry,buffer,buflen,s);
  3505. if (page) {
  3506. kunmap(page);
  3507. page_cache_release(page);
  3508. }
  3509. return res;
  3510. }
  3511. void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
  3512. {
  3513. struct page *page = NULL;
  3514. nd_set_link(nd, page_getlink(dentry, &page));
  3515. return page;
  3516. }
  3517. void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
  3518. {
  3519. struct page *page = cookie;
  3520. if (page) {
  3521. kunmap(page);
  3522. page_cache_release(page);
  3523. }
  3524. }
  3525. /*
  3526. * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
  3527. */
  3528. int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
  3529. {
  3530. struct address_space *mapping = inode->i_mapping;
  3531. struct page *page;
  3532. void *fsdata;
  3533. int err;
  3534. char *kaddr;
  3535. unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
  3536. if (nofs)
  3537. flags |= AOP_FLAG_NOFS;
  3538. retry:
  3539. err = pagecache_write_begin(NULL, mapping, 0, len-1,
  3540. flags, &page, &fsdata);
  3541. if (err)
  3542. goto fail;
  3543. kaddr = kmap_atomic(page);
  3544. memcpy(kaddr, symname, len-1);
  3545. kunmap_atomic(kaddr);
  3546. err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
  3547. page, fsdata);
  3548. if (err < 0)
  3549. goto fail;
  3550. if (err < len-1)
  3551. goto retry;
  3552. mark_inode_dirty(inode);
  3553. return 0;
  3554. fail:
  3555. return err;
  3556. }
  3557. int page_symlink(struct inode *inode, const char *symname, int len)
  3558. {
  3559. return __page_symlink(inode, symname, len,
  3560. !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
  3561. }
  3562. const struct inode_operations page_symlink_inode_operations = {
  3563. .readlink = generic_readlink,
  3564. .follow_link = page_follow_link_light,
  3565. .put_link = page_put_link,
  3566. };
  3567. EXPORT_SYMBOL(user_path_at);
  3568. EXPORT_SYMBOL(follow_down_one);
  3569. EXPORT_SYMBOL(follow_down);
  3570. EXPORT_SYMBOL(follow_up);
  3571. EXPORT_SYMBOL(get_write_access); /* nfsd */
  3572. EXPORT_SYMBOL(lock_rename);
  3573. EXPORT_SYMBOL(lookup_one_len);
  3574. EXPORT_SYMBOL(page_follow_link_light);
  3575. EXPORT_SYMBOL(page_put_link);
  3576. EXPORT_SYMBOL(page_readlink);
  3577. EXPORT_SYMBOL(__page_symlink);
  3578. EXPORT_SYMBOL(page_symlink);
  3579. EXPORT_SYMBOL(page_symlink_inode_operations);
  3580. EXPORT_SYMBOL(kern_path);
  3581. EXPORT_SYMBOL(vfs_path_lookup);
  3582. EXPORT_SYMBOL(inode_permission);
  3583. EXPORT_SYMBOL(unlock_rename);
  3584. EXPORT_SYMBOL(vfs_create);
  3585. EXPORT_SYMBOL(vfs_follow_link);
  3586. EXPORT_SYMBOL(vfs_link);
  3587. EXPORT_SYMBOL(vfs_mkdir);
  3588. EXPORT_SYMBOL(vfs_mknod);
  3589. EXPORT_SYMBOL(generic_permission);
  3590. EXPORT_SYMBOL(vfs_readlink);
  3591. EXPORT_SYMBOL(vfs_rename);
  3592. EXPORT_SYMBOL(vfs_rmdir);
  3593. EXPORT_SYMBOL(vfs_symlink);
  3594. EXPORT_SYMBOL(vfs_unlink);
  3595. EXPORT_SYMBOL(dentry_unhash);
  3596. EXPORT_SYMBOL(generic_readlink);