namespace.c 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949
  1. /*
  2. * linux/fs/namespace.c
  3. *
  4. * (C) Copyright Al Viro 2000, 2001
  5. * Released under GPL v2.
  6. *
  7. * Based on code from fs/super.c, copyright Linus Torvalds and others.
  8. * Heavily rewritten.
  9. */
  10. #include <linux/syscalls.h>
  11. #include <linux/export.h>
  12. #include <linux/capability.h>
  13. #include <linux/mnt_namespace.h>
  14. #include <linux/user_namespace.h>
  15. #include <linux/namei.h>
  16. #include <linux/security.h>
  17. #include <linux/idr.h>
  18. #include <linux/acct.h> /* acct_auto_close_mnt */
  19. #include <linux/init.h> /* init_rootfs */
  20. #include <linux/fs_struct.h> /* get_fs_root et.al. */
  21. #include <linux/fsnotify.h> /* fsnotify_vfsmount_delete */
  22. #include <linux/uaccess.h>
  23. #include <linux/proc_ns.h>
  24. #include <linux/magic.h>
  25. #include "pnode.h"
  26. #include "internal.h"
  27. #define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head))
  28. #define HASH_SIZE (1UL << HASH_SHIFT)
  29. static int event;
  30. static DEFINE_IDA(mnt_id_ida);
  31. static DEFINE_IDA(mnt_group_ida);
  32. static DEFINE_SPINLOCK(mnt_id_lock);
  33. static int mnt_id_start = 0;
  34. static int mnt_group_start = 1;
  35. static struct list_head *mount_hashtable __read_mostly;
  36. static struct list_head *mountpoint_hashtable __read_mostly;
  37. static struct kmem_cache *mnt_cache __read_mostly;
  38. static DECLARE_RWSEM(namespace_sem);
  39. /* /sys/fs */
  40. struct kobject *fs_kobj;
  41. EXPORT_SYMBOL_GPL(fs_kobj);
  42. /*
  43. * vfsmount lock may be taken for read to prevent changes to the
  44. * vfsmount hash, ie. during mountpoint lookups or walking back
  45. * up the tree.
  46. *
  47. * It should be taken for write in all cases where the vfsmount
  48. * tree or hash is modified or when a vfsmount structure is modified.
  49. */
  50. DEFINE_BRLOCK(vfsmount_lock);
  51. static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
  52. {
  53. unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
  54. tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
  55. tmp = tmp + (tmp >> HASH_SHIFT);
  56. return tmp & (HASH_SIZE - 1);
  57. }
  58. /*
  59. * allocation is serialized by namespace_sem, but we need the spinlock to
  60. * serialize with freeing.
  61. */
  62. static int mnt_alloc_id(struct mount *mnt)
  63. {
  64. int res;
  65. retry:
  66. ida_pre_get(&mnt_id_ida, GFP_KERNEL);
  67. spin_lock(&mnt_id_lock);
  68. res = ida_get_new_above(&mnt_id_ida, mnt_id_start, &mnt->mnt_id);
  69. if (!res)
  70. mnt_id_start = mnt->mnt_id + 1;
  71. spin_unlock(&mnt_id_lock);
  72. if (res == -EAGAIN)
  73. goto retry;
  74. return res;
  75. }
  76. static void mnt_free_id(struct mount *mnt)
  77. {
  78. int id = mnt->mnt_id;
  79. spin_lock(&mnt_id_lock);
  80. ida_remove(&mnt_id_ida, id);
  81. if (mnt_id_start > id)
  82. mnt_id_start = id;
  83. spin_unlock(&mnt_id_lock);
  84. }
  85. /*
  86. * Allocate a new peer group ID
  87. *
  88. * mnt_group_ida is protected by namespace_sem
  89. */
  90. static int mnt_alloc_group_id(struct mount *mnt)
  91. {
  92. int res;
  93. if (!ida_pre_get(&mnt_group_ida, GFP_KERNEL))
  94. return -ENOMEM;
  95. res = ida_get_new_above(&mnt_group_ida,
  96. mnt_group_start,
  97. &mnt->mnt_group_id);
  98. if (!res)
  99. mnt_group_start = mnt->mnt_group_id + 1;
  100. return res;
  101. }
  102. /*
  103. * Release a peer group ID
  104. */
  105. void mnt_release_group_id(struct mount *mnt)
  106. {
  107. int id = mnt->mnt_group_id;
  108. ida_remove(&mnt_group_ida, id);
  109. if (mnt_group_start > id)
  110. mnt_group_start = id;
  111. mnt->mnt_group_id = 0;
  112. }
  113. /*
  114. * vfsmount lock must be held for read
  115. */
  116. static inline void mnt_add_count(struct mount *mnt, int n)
  117. {
  118. #ifdef CONFIG_SMP
  119. this_cpu_add(mnt->mnt_pcp->mnt_count, n);
  120. #else
  121. preempt_disable();
  122. mnt->mnt_count += n;
  123. preempt_enable();
  124. #endif
  125. }
  126. /*
  127. * vfsmount lock must be held for write
  128. */
  129. unsigned int mnt_get_count(struct mount *mnt)
  130. {
  131. #ifdef CONFIG_SMP
  132. unsigned int count = 0;
  133. int cpu;
  134. for_each_possible_cpu(cpu) {
  135. count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_count;
  136. }
  137. return count;
  138. #else
  139. return mnt->mnt_count;
  140. #endif
  141. }
  142. static struct mount *alloc_vfsmnt(const char *name)
  143. {
  144. struct mount *mnt = kmem_cache_zalloc(mnt_cache, GFP_KERNEL);
  145. if (mnt) {
  146. int err;
  147. err = mnt_alloc_id(mnt);
  148. if (err)
  149. goto out_free_cache;
  150. if (name) {
  151. mnt->mnt_devname = kstrdup(name, GFP_KERNEL);
  152. if (!mnt->mnt_devname)
  153. goto out_free_id;
  154. }
  155. #ifdef CONFIG_SMP
  156. mnt->mnt_pcp = alloc_percpu(struct mnt_pcp);
  157. if (!mnt->mnt_pcp)
  158. goto out_free_devname;
  159. this_cpu_add(mnt->mnt_pcp->mnt_count, 1);
  160. #else
  161. mnt->mnt_count = 1;
  162. mnt->mnt_writers = 0;
  163. #endif
  164. INIT_LIST_HEAD(&mnt->mnt_hash);
  165. INIT_LIST_HEAD(&mnt->mnt_child);
  166. INIT_LIST_HEAD(&mnt->mnt_mounts);
  167. INIT_LIST_HEAD(&mnt->mnt_list);
  168. INIT_LIST_HEAD(&mnt->mnt_expire);
  169. INIT_LIST_HEAD(&mnt->mnt_share);
  170. INIT_LIST_HEAD(&mnt->mnt_slave_list);
  171. INIT_LIST_HEAD(&mnt->mnt_slave);
  172. #ifdef CONFIG_FSNOTIFY
  173. INIT_HLIST_HEAD(&mnt->mnt_fsnotify_marks);
  174. #endif
  175. }
  176. return mnt;
  177. #ifdef CONFIG_SMP
  178. out_free_devname:
  179. kfree(mnt->mnt_devname);
  180. #endif
  181. out_free_id:
  182. mnt_free_id(mnt);
  183. out_free_cache:
  184. kmem_cache_free(mnt_cache, mnt);
  185. return NULL;
  186. }
  187. /*
  188. * Most r/o checks on a fs are for operations that take
  189. * discrete amounts of time, like a write() or unlink().
  190. * We must keep track of when those operations start
  191. * (for permission checks) and when they end, so that
  192. * we can determine when writes are able to occur to
  193. * a filesystem.
  194. */
  195. /*
  196. * __mnt_is_readonly: check whether a mount is read-only
  197. * @mnt: the mount to check for its write status
  198. *
  199. * This shouldn't be used directly ouside of the VFS.
  200. * It does not guarantee that the filesystem will stay
  201. * r/w, just that it is right *now*. This can not and
  202. * should not be used in place of IS_RDONLY(inode).
  203. * mnt_want/drop_write() will _keep_ the filesystem
  204. * r/w.
  205. */
  206. int __mnt_is_readonly(struct vfsmount *mnt)
  207. {
  208. if (mnt->mnt_flags & MNT_READONLY)
  209. return 1;
  210. if (mnt->mnt_sb->s_flags & MS_RDONLY)
  211. return 1;
  212. return 0;
  213. }
  214. EXPORT_SYMBOL_GPL(__mnt_is_readonly);
  215. static inline void mnt_inc_writers(struct mount *mnt)
  216. {
  217. #ifdef CONFIG_SMP
  218. this_cpu_inc(mnt->mnt_pcp->mnt_writers);
  219. #else
  220. mnt->mnt_writers++;
  221. #endif
  222. }
  223. static inline void mnt_dec_writers(struct mount *mnt)
  224. {
  225. #ifdef CONFIG_SMP
  226. this_cpu_dec(mnt->mnt_pcp->mnt_writers);
  227. #else
  228. mnt->mnt_writers--;
  229. #endif
  230. }
  231. static unsigned int mnt_get_writers(struct mount *mnt)
  232. {
  233. #ifdef CONFIG_SMP
  234. unsigned int count = 0;
  235. int cpu;
  236. for_each_possible_cpu(cpu) {
  237. count += per_cpu_ptr(mnt->mnt_pcp, cpu)->mnt_writers;
  238. }
  239. return count;
  240. #else
  241. return mnt->mnt_writers;
  242. #endif
  243. }
  244. static int mnt_is_readonly(struct vfsmount *mnt)
  245. {
  246. if (mnt->mnt_sb->s_readonly_remount)
  247. return 1;
  248. /* Order wrt setting s_flags/s_readonly_remount in do_remount() */
  249. smp_rmb();
  250. return __mnt_is_readonly(mnt);
  251. }
  252. /*
  253. * Most r/o & frozen checks on a fs are for operations that take discrete
  254. * amounts of time, like a write() or unlink(). We must keep track of when
  255. * those operations start (for permission checks) and when they end, so that we
  256. * can determine when writes are able to occur to a filesystem.
  257. */
  258. /**
  259. * __mnt_want_write - get write access to a mount without freeze protection
  260. * @m: the mount on which to take a write
  261. *
  262. * This tells the low-level filesystem that a write is about to be performed to
  263. * it, and makes sure that writes are allowed (mnt it read-write) before
  264. * returning success. This operation does not protect against filesystem being
  265. * frozen. When the write operation is finished, __mnt_drop_write() must be
  266. * called. This is effectively a refcount.
  267. */
  268. int __mnt_want_write(struct vfsmount *m)
  269. {
  270. struct mount *mnt = real_mount(m);
  271. int ret = 0;
  272. preempt_disable();
  273. mnt_inc_writers(mnt);
  274. /*
  275. * The store to mnt_inc_writers must be visible before we pass
  276. * MNT_WRITE_HOLD loop below, so that the slowpath can see our
  277. * incremented count after it has set MNT_WRITE_HOLD.
  278. */
  279. smp_mb();
  280. while (ACCESS_ONCE(mnt->mnt.mnt_flags) & MNT_WRITE_HOLD)
  281. cpu_relax();
  282. /*
  283. * After the slowpath clears MNT_WRITE_HOLD, mnt_is_readonly will
  284. * be set to match its requirements. So we must not load that until
  285. * MNT_WRITE_HOLD is cleared.
  286. */
  287. smp_rmb();
  288. if (mnt_is_readonly(m)) {
  289. mnt_dec_writers(mnt);
  290. ret = -EROFS;
  291. }
  292. preempt_enable();
  293. return ret;
  294. }
  295. /**
  296. * mnt_want_write - get write access to a mount
  297. * @m: the mount on which to take a write
  298. *
  299. * This tells the low-level filesystem that a write is about to be performed to
  300. * it, and makes sure that writes are allowed (mount is read-write, filesystem
  301. * is not frozen) before returning success. When the write operation is
  302. * finished, mnt_drop_write() must be called. This is effectively a refcount.
  303. */
  304. int mnt_want_write(struct vfsmount *m)
  305. {
  306. int ret;
  307. sb_start_write(m->mnt_sb);
  308. ret = __mnt_want_write(m);
  309. if (ret)
  310. sb_end_write(m->mnt_sb);
  311. return ret;
  312. }
  313. EXPORT_SYMBOL_GPL(mnt_want_write);
  314. /**
  315. * mnt_clone_write - get write access to a mount
  316. * @mnt: the mount on which to take a write
  317. *
  318. * This is effectively like mnt_want_write, except
  319. * it must only be used to take an extra write reference
  320. * on a mountpoint that we already know has a write reference
  321. * on it. This allows some optimisation.
  322. *
  323. * After finished, mnt_drop_write must be called as usual to
  324. * drop the reference.
  325. */
  326. int mnt_clone_write(struct vfsmount *mnt)
  327. {
  328. /* superblock may be r/o */
  329. if (__mnt_is_readonly(mnt))
  330. return -EROFS;
  331. preempt_disable();
  332. mnt_inc_writers(real_mount(mnt));
  333. preempt_enable();
  334. return 0;
  335. }
  336. EXPORT_SYMBOL_GPL(mnt_clone_write);
  337. /**
  338. * __mnt_want_write_file - get write access to a file's mount
  339. * @file: the file who's mount on which to take a write
  340. *
  341. * This is like __mnt_want_write, but it takes a file and can
  342. * do some optimisations if the file is open for write already
  343. */
  344. int __mnt_want_write_file(struct file *file)
  345. {
  346. struct inode *inode = file_inode(file);
  347. if (!(file->f_mode & FMODE_WRITE) || special_file(inode->i_mode))
  348. return __mnt_want_write(file->f_path.mnt);
  349. else
  350. return mnt_clone_write(file->f_path.mnt);
  351. }
  352. /**
  353. * mnt_want_write_file - get write access to a file's mount
  354. * @file: the file who's mount on which to take a write
  355. *
  356. * This is like mnt_want_write, but it takes a file and can
  357. * do some optimisations if the file is open for write already
  358. */
  359. int mnt_want_write_file(struct file *file)
  360. {
  361. int ret;
  362. sb_start_write(file->f_path.mnt->mnt_sb);
  363. ret = __mnt_want_write_file(file);
  364. if (ret)
  365. sb_end_write(file->f_path.mnt->mnt_sb);
  366. return ret;
  367. }
  368. EXPORT_SYMBOL_GPL(mnt_want_write_file);
  369. /**
  370. * __mnt_drop_write - give up write access to a mount
  371. * @mnt: the mount on which to give up write access
  372. *
  373. * Tells the low-level filesystem that we are done
  374. * performing writes to it. Must be matched with
  375. * __mnt_want_write() call above.
  376. */
  377. void __mnt_drop_write(struct vfsmount *mnt)
  378. {
  379. preempt_disable();
  380. mnt_dec_writers(real_mount(mnt));
  381. preempt_enable();
  382. }
  383. /**
  384. * mnt_drop_write - give up write access to a mount
  385. * @mnt: the mount on which to give up write access
  386. *
  387. * Tells the low-level filesystem that we are done performing writes to it and
  388. * also allows filesystem to be frozen again. Must be matched with
  389. * mnt_want_write() call above.
  390. */
  391. void mnt_drop_write(struct vfsmount *mnt)
  392. {
  393. __mnt_drop_write(mnt);
  394. sb_end_write(mnt->mnt_sb);
  395. }
  396. EXPORT_SYMBOL_GPL(mnt_drop_write);
  397. void __mnt_drop_write_file(struct file *file)
  398. {
  399. __mnt_drop_write(file->f_path.mnt);
  400. }
  401. void mnt_drop_write_file(struct file *file)
  402. {
  403. mnt_drop_write(file->f_path.mnt);
  404. }
  405. EXPORT_SYMBOL(mnt_drop_write_file);
  406. static int mnt_make_readonly(struct mount *mnt)
  407. {
  408. int ret = 0;
  409. br_write_lock(&vfsmount_lock);
  410. mnt->mnt.mnt_flags |= MNT_WRITE_HOLD;
  411. /*
  412. * After storing MNT_WRITE_HOLD, we'll read the counters. This store
  413. * should be visible before we do.
  414. */
  415. smp_mb();
  416. /*
  417. * With writers on hold, if this value is zero, then there are
  418. * definitely no active writers (although held writers may subsequently
  419. * increment the count, they'll have to wait, and decrement it after
  420. * seeing MNT_READONLY).
  421. *
  422. * It is OK to have counter incremented on one CPU and decremented on
  423. * another: the sum will add up correctly. The danger would be when we
  424. * sum up each counter, if we read a counter before it is incremented,
  425. * but then read another CPU's count which it has been subsequently
  426. * decremented from -- we would see more decrements than we should.
  427. * MNT_WRITE_HOLD protects against this scenario, because
  428. * mnt_want_write first increments count, then smp_mb, then spins on
  429. * MNT_WRITE_HOLD, so it can't be decremented by another CPU while
  430. * we're counting up here.
  431. */
  432. if (mnt_get_writers(mnt) > 0)
  433. ret = -EBUSY;
  434. else
  435. mnt->mnt.mnt_flags |= MNT_READONLY;
  436. /*
  437. * MNT_READONLY must become visible before ~MNT_WRITE_HOLD, so writers
  438. * that become unheld will see MNT_READONLY.
  439. */
  440. smp_wmb();
  441. mnt->mnt.mnt_flags &= ~MNT_WRITE_HOLD;
  442. br_write_unlock(&vfsmount_lock);
  443. return ret;
  444. }
  445. static void __mnt_unmake_readonly(struct mount *mnt)
  446. {
  447. br_write_lock(&vfsmount_lock);
  448. mnt->mnt.mnt_flags &= ~MNT_READONLY;
  449. br_write_unlock(&vfsmount_lock);
  450. }
  451. int sb_prepare_remount_readonly(struct super_block *sb)
  452. {
  453. struct mount *mnt;
  454. int err = 0;
  455. /* Racy optimization. Recheck the counter under MNT_WRITE_HOLD */
  456. if (atomic_long_read(&sb->s_remove_count))
  457. return -EBUSY;
  458. br_write_lock(&vfsmount_lock);
  459. list_for_each_entry(mnt, &sb->s_mounts, mnt_instance) {
  460. if (!(mnt->mnt.mnt_flags & MNT_READONLY)) {
  461. mnt->mnt.mnt_flags |= MNT_WRITE_HOLD;
  462. smp_mb();
  463. if (mnt_get_writers(mnt) > 0) {
  464. err = -EBUSY;
  465. break;
  466. }
  467. }
  468. }
  469. if (!err && atomic_long_read(&sb->s_remove_count))
  470. err = -EBUSY;
  471. if (!err) {
  472. sb->s_readonly_remount = 1;
  473. smp_wmb();
  474. }
  475. list_for_each_entry(mnt, &sb->s_mounts, mnt_instance) {
  476. if (mnt->mnt.mnt_flags & MNT_WRITE_HOLD)
  477. mnt->mnt.mnt_flags &= ~MNT_WRITE_HOLD;
  478. }
  479. br_write_unlock(&vfsmount_lock);
  480. return err;
  481. }
  482. static void free_vfsmnt(struct mount *mnt)
  483. {
  484. kfree(mnt->mnt_devname);
  485. mnt_free_id(mnt);
  486. #ifdef CONFIG_SMP
  487. free_percpu(mnt->mnt_pcp);
  488. #endif
  489. kmem_cache_free(mnt_cache, mnt);
  490. }
  491. /*
  492. * find the first or last mount at @dentry on vfsmount @mnt depending on
  493. * @dir. If @dir is set return the first mount else return the last mount.
  494. * vfsmount_lock must be held for read or write.
  495. */
  496. struct mount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
  497. int dir)
  498. {
  499. struct list_head *head = mount_hashtable + hash(mnt, dentry);
  500. struct list_head *tmp = head;
  501. struct mount *p, *found = NULL;
  502. for (;;) {
  503. tmp = dir ? tmp->next : tmp->prev;
  504. p = NULL;
  505. if (tmp == head)
  506. break;
  507. p = list_entry(tmp, struct mount, mnt_hash);
  508. if (&p->mnt_parent->mnt == mnt && p->mnt_mountpoint == dentry) {
  509. found = p;
  510. break;
  511. }
  512. }
  513. return found;
  514. }
  515. /*
  516. * lookup_mnt - Return the first child mount mounted at path
  517. *
  518. * "First" means first mounted chronologically. If you create the
  519. * following mounts:
  520. *
  521. * mount /dev/sda1 /mnt
  522. * mount /dev/sda2 /mnt
  523. * mount /dev/sda3 /mnt
  524. *
  525. * Then lookup_mnt() on the base /mnt dentry in the root mount will
  526. * return successively the root dentry and vfsmount of /dev/sda1, then
  527. * /dev/sda2, then /dev/sda3, then NULL.
  528. *
  529. * lookup_mnt takes a reference to the found vfsmount.
  530. */
  531. struct vfsmount *lookup_mnt(struct path *path)
  532. {
  533. struct mount *child_mnt;
  534. br_read_lock(&vfsmount_lock);
  535. child_mnt = __lookup_mnt(path->mnt, path->dentry, 1);
  536. if (child_mnt) {
  537. mnt_add_count(child_mnt, 1);
  538. br_read_unlock(&vfsmount_lock);
  539. return &child_mnt->mnt;
  540. } else {
  541. br_read_unlock(&vfsmount_lock);
  542. return NULL;
  543. }
  544. }
  545. static struct mountpoint *new_mountpoint(struct dentry *dentry)
  546. {
  547. struct list_head *chain = mountpoint_hashtable + hash(NULL, dentry);
  548. struct mountpoint *mp;
  549. int ret;
  550. list_for_each_entry(mp, chain, m_hash) {
  551. if (mp->m_dentry == dentry) {
  552. /* might be worth a WARN_ON() */
  553. if (d_unlinked(dentry))
  554. return ERR_PTR(-ENOENT);
  555. mp->m_count++;
  556. return mp;
  557. }
  558. }
  559. mp = kmalloc(sizeof(struct mountpoint), GFP_KERNEL);
  560. if (!mp)
  561. return ERR_PTR(-ENOMEM);
  562. ret = d_set_mounted(dentry);
  563. if (ret) {
  564. kfree(mp);
  565. return ERR_PTR(ret);
  566. }
  567. mp->m_dentry = dentry;
  568. mp->m_count = 1;
  569. list_add(&mp->m_hash, chain);
  570. return mp;
  571. }
  572. static void put_mountpoint(struct mountpoint *mp)
  573. {
  574. if (!--mp->m_count) {
  575. struct dentry *dentry = mp->m_dentry;
  576. spin_lock(&dentry->d_lock);
  577. dentry->d_flags &= ~DCACHE_MOUNTED;
  578. spin_unlock(&dentry->d_lock);
  579. list_del(&mp->m_hash);
  580. kfree(mp);
  581. }
  582. }
  583. static inline int check_mnt(struct mount *mnt)
  584. {
  585. return mnt->mnt_ns == current->nsproxy->mnt_ns;
  586. }
  587. /*
  588. * vfsmount lock must be held for write
  589. */
  590. static void touch_mnt_namespace(struct mnt_namespace *ns)
  591. {
  592. if (ns) {
  593. ns->event = ++event;
  594. wake_up_interruptible(&ns->poll);
  595. }
  596. }
  597. /*
  598. * vfsmount lock must be held for write
  599. */
  600. static void __touch_mnt_namespace(struct mnt_namespace *ns)
  601. {
  602. if (ns && ns->event != event) {
  603. ns->event = event;
  604. wake_up_interruptible(&ns->poll);
  605. }
  606. }
  607. /*
  608. * vfsmount lock must be held for write
  609. */
  610. static void detach_mnt(struct mount *mnt, struct path *old_path)
  611. {
  612. old_path->dentry = mnt->mnt_mountpoint;
  613. old_path->mnt = &mnt->mnt_parent->mnt;
  614. mnt->mnt_parent = mnt;
  615. mnt->mnt_mountpoint = mnt->mnt.mnt_root;
  616. list_del_init(&mnt->mnt_child);
  617. list_del_init(&mnt->mnt_hash);
  618. put_mountpoint(mnt->mnt_mp);
  619. mnt->mnt_mp = NULL;
  620. }
  621. /*
  622. * vfsmount lock must be held for write
  623. */
  624. void mnt_set_mountpoint(struct mount *mnt,
  625. struct mountpoint *mp,
  626. struct mount *child_mnt)
  627. {
  628. mp->m_count++;
  629. mnt_add_count(mnt, 1); /* essentially, that's mntget */
  630. child_mnt->mnt_mountpoint = dget(mp->m_dentry);
  631. child_mnt->mnt_parent = mnt;
  632. child_mnt->mnt_mp = mp;
  633. }
  634. /*
  635. * vfsmount lock must be held for write
  636. */
  637. static void attach_mnt(struct mount *mnt,
  638. struct mount *parent,
  639. struct mountpoint *mp)
  640. {
  641. mnt_set_mountpoint(parent, mp, mnt);
  642. list_add_tail(&mnt->mnt_hash, mount_hashtable +
  643. hash(&parent->mnt, mp->m_dentry));
  644. list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
  645. }
  646. /*
  647. * vfsmount lock must be held for write
  648. */
  649. static void commit_tree(struct mount *mnt)
  650. {
  651. struct mount *parent = mnt->mnt_parent;
  652. struct mount *m;
  653. LIST_HEAD(head);
  654. struct mnt_namespace *n = parent->mnt_ns;
  655. BUG_ON(parent == mnt);
  656. list_add_tail(&head, &mnt->mnt_list);
  657. list_for_each_entry(m, &head, mnt_list)
  658. m->mnt_ns = n;
  659. list_splice(&head, n->list.prev);
  660. list_add_tail(&mnt->mnt_hash, mount_hashtable +
  661. hash(&parent->mnt, mnt->mnt_mountpoint));
  662. list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
  663. touch_mnt_namespace(n);
  664. }
  665. static struct mount *next_mnt(struct mount *p, struct mount *root)
  666. {
  667. struct list_head *next = p->mnt_mounts.next;
  668. if (next == &p->mnt_mounts) {
  669. while (1) {
  670. if (p == root)
  671. return NULL;
  672. next = p->mnt_child.next;
  673. if (next != &p->mnt_parent->mnt_mounts)
  674. break;
  675. p = p->mnt_parent;
  676. }
  677. }
  678. return list_entry(next, struct mount, mnt_child);
  679. }
  680. static struct mount *skip_mnt_tree(struct mount *p)
  681. {
  682. struct list_head *prev = p->mnt_mounts.prev;
  683. while (prev != &p->mnt_mounts) {
  684. p = list_entry(prev, struct mount, mnt_child);
  685. prev = p->mnt_mounts.prev;
  686. }
  687. return p;
  688. }
  689. struct vfsmount *
  690. vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void *data)
  691. {
  692. struct mount *mnt;
  693. struct dentry *root;
  694. if (!type)
  695. return ERR_PTR(-ENODEV);
  696. mnt = alloc_vfsmnt(name);
  697. if (!mnt)
  698. return ERR_PTR(-ENOMEM);
  699. if (flags & MS_KERNMOUNT)
  700. mnt->mnt.mnt_flags = MNT_INTERNAL;
  701. root = mount_fs(type, flags, name, data);
  702. if (IS_ERR(root)) {
  703. free_vfsmnt(mnt);
  704. return ERR_CAST(root);
  705. }
  706. mnt->mnt.mnt_root = root;
  707. mnt->mnt.mnt_sb = root->d_sb;
  708. mnt->mnt_mountpoint = mnt->mnt.mnt_root;
  709. mnt->mnt_parent = mnt;
  710. br_write_lock(&vfsmount_lock);
  711. list_add_tail(&mnt->mnt_instance, &root->d_sb->s_mounts);
  712. br_write_unlock(&vfsmount_lock);
  713. return &mnt->mnt;
  714. }
  715. EXPORT_SYMBOL_GPL(vfs_kern_mount);
  716. static struct mount *clone_mnt(struct mount *old, struct dentry *root,
  717. int flag)
  718. {
  719. struct super_block *sb = old->mnt.mnt_sb;
  720. struct mount *mnt;
  721. int err;
  722. mnt = alloc_vfsmnt(old->mnt_devname);
  723. if (!mnt)
  724. return ERR_PTR(-ENOMEM);
  725. if (flag & (CL_SLAVE | CL_PRIVATE | CL_SHARED_TO_SLAVE))
  726. mnt->mnt_group_id = 0; /* not a peer of original */
  727. else
  728. mnt->mnt_group_id = old->mnt_group_id;
  729. if ((flag & CL_MAKE_SHARED) && !mnt->mnt_group_id) {
  730. err = mnt_alloc_group_id(mnt);
  731. if (err)
  732. goto out_free;
  733. }
  734. mnt->mnt.mnt_flags = old->mnt.mnt_flags & ~MNT_WRITE_HOLD;
  735. /* Don't allow unprivileged users to change mount flags */
  736. if ((flag & CL_UNPRIVILEGED) && (mnt->mnt.mnt_flags & MNT_READONLY))
  737. mnt->mnt.mnt_flags |= MNT_LOCK_READONLY;
  738. /* Don't allow unprivileged users to reveal what is under a mount */
  739. if ((flag & CL_UNPRIVILEGED) && list_empty(&old->mnt_expire))
  740. mnt->mnt.mnt_flags |= MNT_LOCKED;
  741. atomic_inc(&sb->s_active);
  742. mnt->mnt.mnt_sb = sb;
  743. mnt->mnt.mnt_root = dget(root);
  744. mnt->mnt_mountpoint = mnt->mnt.mnt_root;
  745. mnt->mnt_parent = mnt;
  746. br_write_lock(&vfsmount_lock);
  747. list_add_tail(&mnt->mnt_instance, &sb->s_mounts);
  748. br_write_unlock(&vfsmount_lock);
  749. if ((flag & CL_SLAVE) ||
  750. ((flag & CL_SHARED_TO_SLAVE) && IS_MNT_SHARED(old))) {
  751. list_add(&mnt->mnt_slave, &old->mnt_slave_list);
  752. mnt->mnt_master = old;
  753. CLEAR_MNT_SHARED(mnt);
  754. } else if (!(flag & CL_PRIVATE)) {
  755. if ((flag & CL_MAKE_SHARED) || IS_MNT_SHARED(old))
  756. list_add(&mnt->mnt_share, &old->mnt_share);
  757. if (IS_MNT_SLAVE(old))
  758. list_add(&mnt->mnt_slave, &old->mnt_slave);
  759. mnt->mnt_master = old->mnt_master;
  760. }
  761. if (flag & CL_MAKE_SHARED)
  762. set_mnt_shared(mnt);
  763. /* stick the duplicate mount on the same expiry list
  764. * as the original if that was on one */
  765. if (flag & CL_EXPIRE) {
  766. if (!list_empty(&old->mnt_expire))
  767. list_add(&mnt->mnt_expire, &old->mnt_expire);
  768. }
  769. return mnt;
  770. out_free:
  771. free_vfsmnt(mnt);
  772. return ERR_PTR(err);
  773. }
  774. static void mntput_no_expire(struct mount *mnt)
  775. {
  776. put_again:
  777. #ifdef CONFIG_SMP
  778. br_read_lock(&vfsmount_lock);
  779. if (likely(mnt->mnt_ns)) {
  780. /* shouldn't be the last one */
  781. mnt_add_count(mnt, -1);
  782. br_read_unlock(&vfsmount_lock);
  783. return;
  784. }
  785. br_read_unlock(&vfsmount_lock);
  786. br_write_lock(&vfsmount_lock);
  787. mnt_add_count(mnt, -1);
  788. if (mnt_get_count(mnt)) {
  789. br_write_unlock(&vfsmount_lock);
  790. return;
  791. }
  792. #else
  793. mnt_add_count(mnt, -1);
  794. if (likely(mnt_get_count(mnt)))
  795. return;
  796. br_write_lock(&vfsmount_lock);
  797. #endif
  798. if (unlikely(mnt->mnt_pinned)) {
  799. mnt_add_count(mnt, mnt->mnt_pinned + 1);
  800. mnt->mnt_pinned = 0;
  801. br_write_unlock(&vfsmount_lock);
  802. acct_auto_close_mnt(&mnt->mnt);
  803. goto put_again;
  804. }
  805. list_del(&mnt->mnt_instance);
  806. br_write_unlock(&vfsmount_lock);
  807. /*
  808. * This probably indicates that somebody messed
  809. * up a mnt_want/drop_write() pair. If this
  810. * happens, the filesystem was probably unable
  811. * to make r/w->r/o transitions.
  812. */
  813. /*
  814. * The locking used to deal with mnt_count decrement provides barriers,
  815. * so mnt_get_writers() below is safe.
  816. */
  817. WARN_ON(mnt_get_writers(mnt));
  818. fsnotify_vfsmount_delete(&mnt->mnt);
  819. dput(mnt->mnt.mnt_root);
  820. deactivate_super(mnt->mnt.mnt_sb);
  821. free_vfsmnt(mnt);
  822. }
  823. void mntput(struct vfsmount *mnt)
  824. {
  825. if (mnt) {
  826. struct mount *m = real_mount(mnt);
  827. /* avoid cacheline pingpong, hope gcc doesn't get "smart" */
  828. if (unlikely(m->mnt_expiry_mark))
  829. m->mnt_expiry_mark = 0;
  830. mntput_no_expire(m);
  831. }
  832. }
  833. EXPORT_SYMBOL(mntput);
  834. struct vfsmount *mntget(struct vfsmount *mnt)
  835. {
  836. if (mnt)
  837. mnt_add_count(real_mount(mnt), 1);
  838. return mnt;
  839. }
  840. EXPORT_SYMBOL(mntget);
  841. void mnt_pin(struct vfsmount *mnt)
  842. {
  843. br_write_lock(&vfsmount_lock);
  844. real_mount(mnt)->mnt_pinned++;
  845. br_write_unlock(&vfsmount_lock);
  846. }
  847. EXPORT_SYMBOL(mnt_pin);
  848. void mnt_unpin(struct vfsmount *m)
  849. {
  850. struct mount *mnt = real_mount(m);
  851. br_write_lock(&vfsmount_lock);
  852. if (mnt->mnt_pinned) {
  853. mnt_add_count(mnt, 1);
  854. mnt->mnt_pinned--;
  855. }
  856. br_write_unlock(&vfsmount_lock);
  857. }
  858. EXPORT_SYMBOL(mnt_unpin);
  859. static inline void mangle(struct seq_file *m, const char *s)
  860. {
  861. seq_escape(m, s, " \t\n\\");
  862. }
  863. /*
  864. * Simple .show_options callback for filesystems which don't want to
  865. * implement more complex mount option showing.
  866. *
  867. * See also save_mount_options().
  868. */
  869. int generic_show_options(struct seq_file *m, struct dentry *root)
  870. {
  871. const char *options;
  872. rcu_read_lock();
  873. options = rcu_dereference(root->d_sb->s_options);
  874. if (options != NULL && options[0]) {
  875. seq_putc(m, ',');
  876. mangle(m, options);
  877. }
  878. rcu_read_unlock();
  879. return 0;
  880. }
  881. EXPORT_SYMBOL(generic_show_options);
  882. /*
  883. * If filesystem uses generic_show_options(), this function should be
  884. * called from the fill_super() callback.
  885. *
  886. * The .remount_fs callback usually needs to be handled in a special
  887. * way, to make sure, that previous options are not overwritten if the
  888. * remount fails.
  889. *
  890. * Also note, that if the filesystem's .remount_fs function doesn't
  891. * reset all options to their default value, but changes only newly
  892. * given options, then the displayed options will not reflect reality
  893. * any more.
  894. */
  895. void save_mount_options(struct super_block *sb, char *options)
  896. {
  897. BUG_ON(sb->s_options);
  898. rcu_assign_pointer(sb->s_options, kstrdup(options, GFP_KERNEL));
  899. }
  900. EXPORT_SYMBOL(save_mount_options);
  901. void replace_mount_options(struct super_block *sb, char *options)
  902. {
  903. char *old = sb->s_options;
  904. rcu_assign_pointer(sb->s_options, options);
  905. if (old) {
  906. synchronize_rcu();
  907. kfree(old);
  908. }
  909. }
  910. EXPORT_SYMBOL(replace_mount_options);
  911. #ifdef CONFIG_PROC_FS
  912. /* iterator; we want it to have access to namespace_sem, thus here... */
  913. static void *m_start(struct seq_file *m, loff_t *pos)
  914. {
  915. struct proc_mounts *p = proc_mounts(m);
  916. down_read(&namespace_sem);
  917. return seq_list_start(&p->ns->list, *pos);
  918. }
  919. static void *m_next(struct seq_file *m, void *v, loff_t *pos)
  920. {
  921. struct proc_mounts *p = proc_mounts(m);
  922. return seq_list_next(v, &p->ns->list, pos);
  923. }
  924. static void m_stop(struct seq_file *m, void *v)
  925. {
  926. up_read(&namespace_sem);
  927. }
  928. static int m_show(struct seq_file *m, void *v)
  929. {
  930. struct proc_mounts *p = proc_mounts(m);
  931. struct mount *r = list_entry(v, struct mount, mnt_list);
  932. return p->show(m, &r->mnt);
  933. }
  934. const struct seq_operations mounts_op = {
  935. .start = m_start,
  936. .next = m_next,
  937. .stop = m_stop,
  938. .show = m_show,
  939. };
  940. #endif /* CONFIG_PROC_FS */
  941. /**
  942. * may_umount_tree - check if a mount tree is busy
  943. * @mnt: root of mount tree
  944. *
  945. * This is called to check if a tree of mounts has any
  946. * open files, pwds, chroots or sub mounts that are
  947. * busy.
  948. */
  949. int may_umount_tree(struct vfsmount *m)
  950. {
  951. struct mount *mnt = real_mount(m);
  952. int actual_refs = 0;
  953. int minimum_refs = 0;
  954. struct mount *p;
  955. BUG_ON(!m);
  956. /* write lock needed for mnt_get_count */
  957. br_write_lock(&vfsmount_lock);
  958. for (p = mnt; p; p = next_mnt(p, mnt)) {
  959. actual_refs += mnt_get_count(p);
  960. minimum_refs += 2;
  961. }
  962. br_write_unlock(&vfsmount_lock);
  963. if (actual_refs > minimum_refs)
  964. return 0;
  965. return 1;
  966. }
  967. EXPORT_SYMBOL(may_umount_tree);
  968. /**
  969. * may_umount - check if a mount point is busy
  970. * @mnt: root of mount
  971. *
  972. * This is called to check if a mount point has any
  973. * open files, pwds, chroots or sub mounts. If the
  974. * mount has sub mounts this will return busy
  975. * regardless of whether the sub mounts are busy.
  976. *
  977. * Doesn't take quota and stuff into account. IOW, in some cases it will
  978. * give false negatives. The main reason why it's here is that we need
  979. * a non-destructive way to look for easily umountable filesystems.
  980. */
  981. int may_umount(struct vfsmount *mnt)
  982. {
  983. int ret = 1;
  984. down_read(&namespace_sem);
  985. br_write_lock(&vfsmount_lock);
  986. if (propagate_mount_busy(real_mount(mnt), 2))
  987. ret = 0;
  988. br_write_unlock(&vfsmount_lock);
  989. up_read(&namespace_sem);
  990. return ret;
  991. }
  992. EXPORT_SYMBOL(may_umount);
  993. static LIST_HEAD(unmounted); /* protected by namespace_sem */
  994. static void namespace_unlock(void)
  995. {
  996. struct mount *mnt;
  997. LIST_HEAD(head);
  998. if (likely(list_empty(&unmounted))) {
  999. up_write(&namespace_sem);
  1000. return;
  1001. }
  1002. list_splice_init(&unmounted, &head);
  1003. up_write(&namespace_sem);
  1004. while (!list_empty(&head)) {
  1005. mnt = list_first_entry(&head, struct mount, mnt_hash);
  1006. list_del_init(&mnt->mnt_hash);
  1007. if (mnt_has_parent(mnt)) {
  1008. struct dentry *dentry;
  1009. struct mount *m;
  1010. br_write_lock(&vfsmount_lock);
  1011. dentry = mnt->mnt_mountpoint;
  1012. m = mnt->mnt_parent;
  1013. mnt->mnt_mountpoint = mnt->mnt.mnt_root;
  1014. mnt->mnt_parent = mnt;
  1015. m->mnt_ghosts--;
  1016. br_write_unlock(&vfsmount_lock);
  1017. dput(dentry);
  1018. mntput(&m->mnt);
  1019. }
  1020. mntput(&mnt->mnt);
  1021. }
  1022. }
  1023. static inline void namespace_lock(void)
  1024. {
  1025. down_write(&namespace_sem);
  1026. }
  1027. /*
  1028. * vfsmount lock must be held for write
  1029. * namespace_sem must be held for write
  1030. */
  1031. void umount_tree(struct mount *mnt, int propagate)
  1032. {
  1033. LIST_HEAD(tmp_list);
  1034. struct mount *p;
  1035. for (p = mnt; p; p = next_mnt(p, mnt))
  1036. list_move(&p->mnt_hash, &tmp_list);
  1037. if (propagate)
  1038. propagate_umount(&tmp_list);
  1039. list_for_each_entry(p, &tmp_list, mnt_hash) {
  1040. list_del_init(&p->mnt_expire);
  1041. list_del_init(&p->mnt_list);
  1042. __touch_mnt_namespace(p->mnt_ns);
  1043. p->mnt_ns = NULL;
  1044. list_del_init(&p->mnt_child);
  1045. if (mnt_has_parent(p)) {
  1046. p->mnt_parent->mnt_ghosts++;
  1047. put_mountpoint(p->mnt_mp);
  1048. p->mnt_mp = NULL;
  1049. }
  1050. change_mnt_propagation(p, MS_PRIVATE);
  1051. }
  1052. list_splice(&tmp_list, &unmounted);
  1053. }
  1054. static void shrink_submounts(struct mount *mnt);
  1055. static int do_umount(struct mount *mnt, int flags)
  1056. {
  1057. struct super_block *sb = mnt->mnt.mnt_sb;
  1058. int retval;
  1059. retval = security_sb_umount(&mnt->mnt, flags);
  1060. if (retval)
  1061. return retval;
  1062. /*
  1063. * Allow userspace to request a mountpoint be expired rather than
  1064. * unmounting unconditionally. Unmount only happens if:
  1065. * (1) the mark is already set (the mark is cleared by mntput())
  1066. * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
  1067. */
  1068. if (flags & MNT_EXPIRE) {
  1069. if (&mnt->mnt == current->fs->root.mnt ||
  1070. flags & (MNT_FORCE | MNT_DETACH))
  1071. return -EINVAL;
  1072. /*
  1073. * probably don't strictly need the lock here if we examined
  1074. * all race cases, but it's a slowpath.
  1075. */
  1076. br_write_lock(&vfsmount_lock);
  1077. if (mnt_get_count(mnt) != 2) {
  1078. br_write_unlock(&vfsmount_lock);
  1079. return -EBUSY;
  1080. }
  1081. br_write_unlock(&vfsmount_lock);
  1082. if (!xchg(&mnt->mnt_expiry_mark, 1))
  1083. return -EAGAIN;
  1084. }
  1085. /*
  1086. * If we may have to abort operations to get out of this
  1087. * mount, and they will themselves hold resources we must
  1088. * allow the fs to do things. In the Unix tradition of
  1089. * 'Gee thats tricky lets do it in userspace' the umount_begin
  1090. * might fail to complete on the first run through as other tasks
  1091. * must return, and the like. Thats for the mount program to worry
  1092. * about for the moment.
  1093. */
  1094. if (flags & MNT_FORCE && sb->s_op->umount_begin) {
  1095. sb->s_op->umount_begin(sb);
  1096. }
  1097. /*
  1098. * No sense to grab the lock for this test, but test itself looks
  1099. * somewhat bogus. Suggestions for better replacement?
  1100. * Ho-hum... In principle, we might treat that as umount + switch
  1101. * to rootfs. GC would eventually take care of the old vfsmount.
  1102. * Actually it makes sense, especially if rootfs would contain a
  1103. * /reboot - static binary that would close all descriptors and
  1104. * call reboot(9). Then init(8) could umount root and exec /reboot.
  1105. */
  1106. if (&mnt->mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
  1107. /*
  1108. * Special case for "unmounting" root ...
  1109. * we just try to remount it readonly.
  1110. */
  1111. down_write(&sb->s_umount);
  1112. if (!(sb->s_flags & MS_RDONLY))
  1113. retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
  1114. up_write(&sb->s_umount);
  1115. return retval;
  1116. }
  1117. namespace_lock();
  1118. br_write_lock(&vfsmount_lock);
  1119. event++;
  1120. if (!(flags & MNT_DETACH))
  1121. shrink_submounts(mnt);
  1122. retval = -EBUSY;
  1123. if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
  1124. if (!list_empty(&mnt->mnt_list))
  1125. umount_tree(mnt, 1);
  1126. retval = 0;
  1127. }
  1128. br_write_unlock(&vfsmount_lock);
  1129. namespace_unlock();
  1130. return retval;
  1131. }
  1132. /*
  1133. * Is the caller allowed to modify his namespace?
  1134. */
  1135. static inline bool may_mount(void)
  1136. {
  1137. return ns_capable(current->nsproxy->mnt_ns->user_ns, CAP_SYS_ADMIN);
  1138. }
  1139. /*
  1140. * Now umount can handle mount points as well as block devices.
  1141. * This is important for filesystems which use unnamed block devices.
  1142. *
  1143. * We now support a flag for forced unmount like the other 'big iron'
  1144. * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
  1145. */
  1146. SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
  1147. {
  1148. struct path path;
  1149. struct mount *mnt;
  1150. int retval;
  1151. int lookup_flags = 0;
  1152. if (flags & ~(MNT_FORCE | MNT_DETACH | MNT_EXPIRE | UMOUNT_NOFOLLOW))
  1153. return -EINVAL;
  1154. if (!may_mount())
  1155. return -EPERM;
  1156. if (!(flags & UMOUNT_NOFOLLOW))
  1157. lookup_flags |= LOOKUP_FOLLOW;
  1158. retval = user_path_mountpoint_at(AT_FDCWD, name, lookup_flags, &path);
  1159. if (retval)
  1160. goto out;
  1161. mnt = real_mount(path.mnt);
  1162. retval = -EINVAL;
  1163. if (path.dentry != path.mnt->mnt_root)
  1164. goto dput_and_out;
  1165. if (!check_mnt(mnt))
  1166. goto dput_and_out;
  1167. if (mnt->mnt.mnt_flags & MNT_LOCKED)
  1168. goto dput_and_out;
  1169. retval = do_umount(mnt, flags);
  1170. dput_and_out:
  1171. /* we mustn't call path_put() as that would clear mnt_expiry_mark */
  1172. dput(path.dentry);
  1173. mntput_no_expire(mnt);
  1174. out:
  1175. return retval;
  1176. }
  1177. #ifdef __ARCH_WANT_SYS_OLDUMOUNT
  1178. /*
  1179. * The 2.0 compatible umount. No flags.
  1180. */
  1181. SYSCALL_DEFINE1(oldumount, char __user *, name)
  1182. {
  1183. return sys_umount(name, 0);
  1184. }
  1185. #endif
  1186. static bool is_mnt_ns_file(struct dentry *dentry)
  1187. {
  1188. /* Is this a proxy for a mount namespace? */
  1189. struct inode *inode = dentry->d_inode;
  1190. struct proc_ns *ei;
  1191. if (!proc_ns_inode(inode))
  1192. return false;
  1193. ei = get_proc_ns(inode);
  1194. if (ei->ns_ops != &mntns_operations)
  1195. return false;
  1196. return true;
  1197. }
  1198. static bool mnt_ns_loop(struct dentry *dentry)
  1199. {
  1200. /* Could bind mounting the mount namespace inode cause a
  1201. * mount namespace loop?
  1202. */
  1203. struct mnt_namespace *mnt_ns;
  1204. if (!is_mnt_ns_file(dentry))
  1205. return false;
  1206. mnt_ns = get_proc_ns(dentry->d_inode)->ns;
  1207. return current->nsproxy->mnt_ns->seq >= mnt_ns->seq;
  1208. }
  1209. struct mount *copy_tree(struct mount *mnt, struct dentry *dentry,
  1210. int flag)
  1211. {
  1212. struct mount *res, *p, *q, *r, *parent;
  1213. if (!(flag & CL_COPY_UNBINDABLE) && IS_MNT_UNBINDABLE(mnt))
  1214. return ERR_PTR(-EINVAL);
  1215. if (!(flag & CL_COPY_MNT_NS_FILE) && is_mnt_ns_file(dentry))
  1216. return ERR_PTR(-EINVAL);
  1217. res = q = clone_mnt(mnt, dentry, flag);
  1218. if (IS_ERR(q))
  1219. return q;
  1220. q->mnt.mnt_flags &= ~MNT_LOCKED;
  1221. q->mnt_mountpoint = mnt->mnt_mountpoint;
  1222. p = mnt;
  1223. list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
  1224. struct mount *s;
  1225. if (!is_subdir(r->mnt_mountpoint, dentry))
  1226. continue;
  1227. for (s = r; s; s = next_mnt(s, r)) {
  1228. if (!(flag & CL_COPY_UNBINDABLE) &&
  1229. IS_MNT_UNBINDABLE(s)) {
  1230. s = skip_mnt_tree(s);
  1231. continue;
  1232. }
  1233. if (!(flag & CL_COPY_MNT_NS_FILE) &&
  1234. is_mnt_ns_file(s->mnt.mnt_root)) {
  1235. s = skip_mnt_tree(s);
  1236. continue;
  1237. }
  1238. while (p != s->mnt_parent) {
  1239. p = p->mnt_parent;
  1240. q = q->mnt_parent;
  1241. }
  1242. p = s;
  1243. parent = q;
  1244. q = clone_mnt(p, p->mnt.mnt_root, flag);
  1245. if (IS_ERR(q))
  1246. goto out;
  1247. br_write_lock(&vfsmount_lock);
  1248. list_add_tail(&q->mnt_list, &res->mnt_list);
  1249. attach_mnt(q, parent, p->mnt_mp);
  1250. br_write_unlock(&vfsmount_lock);
  1251. }
  1252. }
  1253. return res;
  1254. out:
  1255. if (res) {
  1256. br_write_lock(&vfsmount_lock);
  1257. umount_tree(res, 0);
  1258. br_write_unlock(&vfsmount_lock);
  1259. }
  1260. return q;
  1261. }
  1262. /* Caller should check returned pointer for errors */
  1263. struct vfsmount *collect_mounts(struct path *path)
  1264. {
  1265. struct mount *tree;
  1266. namespace_lock();
  1267. tree = copy_tree(real_mount(path->mnt), path->dentry,
  1268. CL_COPY_ALL | CL_PRIVATE);
  1269. namespace_unlock();
  1270. if (IS_ERR(tree))
  1271. return ERR_CAST(tree);
  1272. return &tree->mnt;
  1273. }
  1274. void drop_collected_mounts(struct vfsmount *mnt)
  1275. {
  1276. namespace_lock();
  1277. br_write_lock(&vfsmount_lock);
  1278. umount_tree(real_mount(mnt), 0);
  1279. br_write_unlock(&vfsmount_lock);
  1280. namespace_unlock();
  1281. }
  1282. int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
  1283. struct vfsmount *root)
  1284. {
  1285. struct mount *mnt;
  1286. int res = f(root, arg);
  1287. if (res)
  1288. return res;
  1289. list_for_each_entry(mnt, &real_mount(root)->mnt_list, mnt_list) {
  1290. res = f(&mnt->mnt, arg);
  1291. if (res)
  1292. return res;
  1293. }
  1294. return 0;
  1295. }
  1296. static void cleanup_group_ids(struct mount *mnt, struct mount *end)
  1297. {
  1298. struct mount *p;
  1299. for (p = mnt; p != end; p = next_mnt(p, mnt)) {
  1300. if (p->mnt_group_id && !IS_MNT_SHARED(p))
  1301. mnt_release_group_id(p);
  1302. }
  1303. }
  1304. static int invent_group_ids(struct mount *mnt, bool recurse)
  1305. {
  1306. struct mount *p;
  1307. for (p = mnt; p; p = recurse ? next_mnt(p, mnt) : NULL) {
  1308. if (!p->mnt_group_id && !IS_MNT_SHARED(p)) {
  1309. int err = mnt_alloc_group_id(p);
  1310. if (err) {
  1311. cleanup_group_ids(mnt, p);
  1312. return err;
  1313. }
  1314. }
  1315. }
  1316. return 0;
  1317. }
  1318. /*
  1319. * @source_mnt : mount tree to be attached
  1320. * @nd : place the mount tree @source_mnt is attached
  1321. * @parent_nd : if non-null, detach the source_mnt from its parent and
  1322. * store the parent mount and mountpoint dentry.
  1323. * (done when source_mnt is moved)
  1324. *
  1325. * NOTE: in the table below explains the semantics when a source mount
  1326. * of a given type is attached to a destination mount of a given type.
  1327. * ---------------------------------------------------------------------------
  1328. * | BIND MOUNT OPERATION |
  1329. * |**************************************************************************
  1330. * | source-->| shared | private | slave | unbindable |
  1331. * | dest | | | | |
  1332. * | | | | | | |
  1333. * | v | | | | |
  1334. * |**************************************************************************
  1335. * | shared | shared (++) | shared (+) | shared(+++)| invalid |
  1336. * | | | | | |
  1337. * |non-shared| shared (+) | private | slave (*) | invalid |
  1338. * ***************************************************************************
  1339. * A bind operation clones the source mount and mounts the clone on the
  1340. * destination mount.
  1341. *
  1342. * (++) the cloned mount is propagated to all the mounts in the propagation
  1343. * tree of the destination mount and the cloned mount is added to
  1344. * the peer group of the source mount.
  1345. * (+) the cloned mount is created under the destination mount and is marked
  1346. * as shared. The cloned mount is added to the peer group of the source
  1347. * mount.
  1348. * (+++) the mount is propagated to all the mounts in the propagation tree
  1349. * of the destination mount and the cloned mount is made slave
  1350. * of the same master as that of the source mount. The cloned mount
  1351. * is marked as 'shared and slave'.
  1352. * (*) the cloned mount is made a slave of the same master as that of the
  1353. * source mount.
  1354. *
  1355. * ---------------------------------------------------------------------------
  1356. * | MOVE MOUNT OPERATION |
  1357. * |**************************************************************************
  1358. * | source-->| shared | private | slave | unbindable |
  1359. * | dest | | | | |
  1360. * | | | | | | |
  1361. * | v | | | | |
  1362. * |**************************************************************************
  1363. * | shared | shared (+) | shared (+) | shared(+++) | invalid |
  1364. * | | | | | |
  1365. * |non-shared| shared (+*) | private | slave (*) | unbindable |
  1366. * ***************************************************************************
  1367. *
  1368. * (+) the mount is moved to the destination. And is then propagated to
  1369. * all the mounts in the propagation tree of the destination mount.
  1370. * (+*) the mount is moved to the destination.
  1371. * (+++) the mount is moved to the destination and is then propagated to
  1372. * all the mounts belonging to the destination mount's propagation tree.
  1373. * the mount is marked as 'shared and slave'.
  1374. * (*) the mount continues to be a slave at the new location.
  1375. *
  1376. * if the source mount is a tree, the operations explained above is
  1377. * applied to each mount in the tree.
  1378. * Must be called without spinlocks held, since this function can sleep
  1379. * in allocations.
  1380. */
  1381. static int attach_recursive_mnt(struct mount *source_mnt,
  1382. struct mount *dest_mnt,
  1383. struct mountpoint *dest_mp,
  1384. struct path *parent_path)
  1385. {
  1386. LIST_HEAD(tree_list);
  1387. struct mount *child, *p;
  1388. int err;
  1389. if (IS_MNT_SHARED(dest_mnt)) {
  1390. err = invent_group_ids(source_mnt, true);
  1391. if (err)
  1392. goto out;
  1393. }
  1394. err = propagate_mnt(dest_mnt, dest_mp, source_mnt, &tree_list);
  1395. if (err)
  1396. goto out_cleanup_ids;
  1397. br_write_lock(&vfsmount_lock);
  1398. if (IS_MNT_SHARED(dest_mnt)) {
  1399. for (p = source_mnt; p; p = next_mnt(p, source_mnt))
  1400. set_mnt_shared(p);
  1401. }
  1402. if (parent_path) {
  1403. detach_mnt(source_mnt, parent_path);
  1404. attach_mnt(source_mnt, dest_mnt, dest_mp);
  1405. touch_mnt_namespace(source_mnt->mnt_ns);
  1406. } else {
  1407. mnt_set_mountpoint(dest_mnt, dest_mp, source_mnt);
  1408. commit_tree(source_mnt);
  1409. }
  1410. list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
  1411. list_del_init(&child->mnt_hash);
  1412. commit_tree(child);
  1413. }
  1414. br_write_unlock(&vfsmount_lock);
  1415. return 0;
  1416. out_cleanup_ids:
  1417. if (IS_MNT_SHARED(dest_mnt))
  1418. cleanup_group_ids(source_mnt, NULL);
  1419. out:
  1420. return err;
  1421. }
  1422. static struct mountpoint *lock_mount(struct path *path)
  1423. {
  1424. struct vfsmount *mnt;
  1425. struct dentry *dentry = path->dentry;
  1426. retry:
  1427. mutex_lock(&dentry->d_inode->i_mutex);
  1428. if (unlikely(cant_mount(dentry))) {
  1429. mutex_unlock(&dentry->d_inode->i_mutex);
  1430. return ERR_PTR(-ENOENT);
  1431. }
  1432. namespace_lock();
  1433. mnt = lookup_mnt(path);
  1434. if (likely(!mnt)) {
  1435. struct mountpoint *mp = new_mountpoint(dentry);
  1436. if (IS_ERR(mp)) {
  1437. namespace_unlock();
  1438. mutex_unlock(&dentry->d_inode->i_mutex);
  1439. return mp;
  1440. }
  1441. return mp;
  1442. }
  1443. namespace_unlock();
  1444. mutex_unlock(&path->dentry->d_inode->i_mutex);
  1445. path_put(path);
  1446. path->mnt = mnt;
  1447. dentry = path->dentry = dget(mnt->mnt_root);
  1448. goto retry;
  1449. }
  1450. static void unlock_mount(struct mountpoint *where)
  1451. {
  1452. struct dentry *dentry = where->m_dentry;
  1453. put_mountpoint(where);
  1454. namespace_unlock();
  1455. mutex_unlock(&dentry->d_inode->i_mutex);
  1456. }
  1457. static int graft_tree(struct mount *mnt, struct mount *p, struct mountpoint *mp)
  1458. {
  1459. if (mnt->mnt.mnt_sb->s_flags & MS_NOUSER)
  1460. return -EINVAL;
  1461. if (S_ISDIR(mp->m_dentry->d_inode->i_mode) !=
  1462. S_ISDIR(mnt->mnt.mnt_root->d_inode->i_mode))
  1463. return -ENOTDIR;
  1464. return attach_recursive_mnt(mnt, p, mp, NULL);
  1465. }
  1466. /*
  1467. * Sanity check the flags to change_mnt_propagation.
  1468. */
  1469. static int flags_to_propagation_type(int flags)
  1470. {
  1471. int type = flags & ~(MS_REC | MS_SILENT);
  1472. /* Fail if any non-propagation flags are set */
  1473. if (type & ~(MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
  1474. return 0;
  1475. /* Only one propagation flag should be set */
  1476. if (!is_power_of_2(type))
  1477. return 0;
  1478. return type;
  1479. }
  1480. /*
  1481. * recursively change the type of the mountpoint.
  1482. */
  1483. static int do_change_type(struct path *path, int flag)
  1484. {
  1485. struct mount *m;
  1486. struct mount *mnt = real_mount(path->mnt);
  1487. int recurse = flag & MS_REC;
  1488. int type;
  1489. int err = 0;
  1490. if (path->dentry != path->mnt->mnt_root)
  1491. return -EINVAL;
  1492. type = flags_to_propagation_type(flag);
  1493. if (!type)
  1494. return -EINVAL;
  1495. namespace_lock();
  1496. if (type == MS_SHARED) {
  1497. err = invent_group_ids(mnt, recurse);
  1498. if (err)
  1499. goto out_unlock;
  1500. }
  1501. br_write_lock(&vfsmount_lock);
  1502. for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL))
  1503. change_mnt_propagation(m, type);
  1504. br_write_unlock(&vfsmount_lock);
  1505. out_unlock:
  1506. namespace_unlock();
  1507. return err;
  1508. }
  1509. static bool has_locked_children(struct mount *mnt, struct dentry *dentry)
  1510. {
  1511. struct mount *child;
  1512. list_for_each_entry(child, &mnt->mnt_mounts, mnt_child) {
  1513. if (!is_subdir(child->mnt_mountpoint, dentry))
  1514. continue;
  1515. if (child->mnt.mnt_flags & MNT_LOCKED)
  1516. return true;
  1517. }
  1518. return false;
  1519. }
  1520. /*
  1521. * do loopback mount.
  1522. */
  1523. static int do_loopback(struct path *path, const char *old_name,
  1524. int recurse)
  1525. {
  1526. struct path old_path;
  1527. struct mount *mnt = NULL, *old, *parent;
  1528. struct mountpoint *mp;
  1529. int err;
  1530. if (!old_name || !*old_name)
  1531. return -EINVAL;
  1532. err = kern_path(old_name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &old_path);
  1533. if (err)
  1534. return err;
  1535. err = -EINVAL;
  1536. if (mnt_ns_loop(old_path.dentry))
  1537. goto out;
  1538. mp = lock_mount(path);
  1539. err = PTR_ERR(mp);
  1540. if (IS_ERR(mp))
  1541. goto out;
  1542. old = real_mount(old_path.mnt);
  1543. parent = real_mount(path->mnt);
  1544. err = -EINVAL;
  1545. if (IS_MNT_UNBINDABLE(old))
  1546. goto out2;
  1547. if (!check_mnt(parent) || !check_mnt(old))
  1548. goto out2;
  1549. if (!recurse && has_locked_children(old, old_path.dentry))
  1550. goto out2;
  1551. if (recurse)
  1552. mnt = copy_tree(old, old_path.dentry, CL_COPY_MNT_NS_FILE);
  1553. else
  1554. mnt = clone_mnt(old, old_path.dentry, 0);
  1555. if (IS_ERR(mnt)) {
  1556. err = PTR_ERR(mnt);
  1557. goto out2;
  1558. }
  1559. mnt->mnt.mnt_flags &= ~MNT_LOCKED;
  1560. err = graft_tree(mnt, parent, mp);
  1561. if (err) {
  1562. br_write_lock(&vfsmount_lock);
  1563. umount_tree(mnt, 0);
  1564. br_write_unlock(&vfsmount_lock);
  1565. }
  1566. out2:
  1567. unlock_mount(mp);
  1568. out:
  1569. path_put(&old_path);
  1570. return err;
  1571. }
  1572. static int change_mount_flags(struct vfsmount *mnt, int ms_flags)
  1573. {
  1574. int error = 0;
  1575. int readonly_request = 0;
  1576. if (ms_flags & MS_RDONLY)
  1577. readonly_request = 1;
  1578. if (readonly_request == __mnt_is_readonly(mnt))
  1579. return 0;
  1580. if (mnt->mnt_flags & MNT_LOCK_READONLY)
  1581. return -EPERM;
  1582. if (readonly_request)
  1583. error = mnt_make_readonly(real_mount(mnt));
  1584. else
  1585. __mnt_unmake_readonly(real_mount(mnt));
  1586. return error;
  1587. }
  1588. /*
  1589. * change filesystem flags. dir should be a physical root of filesystem.
  1590. * If you've mounted a non-root directory somewhere and want to do remount
  1591. * on it - tough luck.
  1592. */
  1593. static int do_remount(struct path *path, int flags, int mnt_flags,
  1594. void *data)
  1595. {
  1596. int err;
  1597. struct super_block *sb = path->mnt->mnt_sb;
  1598. struct mount *mnt = real_mount(path->mnt);
  1599. if (!check_mnt(mnt))
  1600. return -EINVAL;
  1601. if (path->dentry != path->mnt->mnt_root)
  1602. return -EINVAL;
  1603. err = security_sb_remount(sb, data);
  1604. if (err)
  1605. return err;
  1606. down_write(&sb->s_umount);
  1607. if (flags & MS_BIND)
  1608. err = change_mount_flags(path->mnt, flags);
  1609. else if (!capable(CAP_SYS_ADMIN))
  1610. err = -EPERM;
  1611. else
  1612. err = do_remount_sb(sb, flags, data, 0);
  1613. if (!err) {
  1614. br_write_lock(&vfsmount_lock);
  1615. mnt_flags |= mnt->mnt.mnt_flags & MNT_PROPAGATION_MASK;
  1616. mnt->mnt.mnt_flags = mnt_flags;
  1617. touch_mnt_namespace(mnt->mnt_ns);
  1618. br_write_unlock(&vfsmount_lock);
  1619. }
  1620. up_write(&sb->s_umount);
  1621. return err;
  1622. }
  1623. static inline int tree_contains_unbindable(struct mount *mnt)
  1624. {
  1625. struct mount *p;
  1626. for (p = mnt; p; p = next_mnt(p, mnt)) {
  1627. if (IS_MNT_UNBINDABLE(p))
  1628. return 1;
  1629. }
  1630. return 0;
  1631. }
  1632. static int do_move_mount(struct path *path, const char *old_name)
  1633. {
  1634. struct path old_path, parent_path;
  1635. struct mount *p;
  1636. struct mount *old;
  1637. struct mountpoint *mp;
  1638. int err;
  1639. if (!old_name || !*old_name)
  1640. return -EINVAL;
  1641. err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
  1642. if (err)
  1643. return err;
  1644. mp = lock_mount(path);
  1645. err = PTR_ERR(mp);
  1646. if (IS_ERR(mp))
  1647. goto out;
  1648. old = real_mount(old_path.mnt);
  1649. p = real_mount(path->mnt);
  1650. err = -EINVAL;
  1651. if (!check_mnt(p) || !check_mnt(old))
  1652. goto out1;
  1653. if (old->mnt.mnt_flags & MNT_LOCKED)
  1654. goto out1;
  1655. err = -EINVAL;
  1656. if (old_path.dentry != old_path.mnt->mnt_root)
  1657. goto out1;
  1658. if (!mnt_has_parent(old))
  1659. goto out1;
  1660. if (S_ISDIR(path->dentry->d_inode->i_mode) !=
  1661. S_ISDIR(old_path.dentry->d_inode->i_mode))
  1662. goto out1;
  1663. /*
  1664. * Don't move a mount residing in a shared parent.
  1665. */
  1666. if (IS_MNT_SHARED(old->mnt_parent))
  1667. goto out1;
  1668. /*
  1669. * Don't move a mount tree containing unbindable mounts to a destination
  1670. * mount which is shared.
  1671. */
  1672. if (IS_MNT_SHARED(p) && tree_contains_unbindable(old))
  1673. goto out1;
  1674. err = -ELOOP;
  1675. for (; mnt_has_parent(p); p = p->mnt_parent)
  1676. if (p == old)
  1677. goto out1;
  1678. err = attach_recursive_mnt(old, real_mount(path->mnt), mp, &parent_path);
  1679. if (err)
  1680. goto out1;
  1681. /* if the mount is moved, it should no longer be expire
  1682. * automatically */
  1683. list_del_init(&old->mnt_expire);
  1684. out1:
  1685. unlock_mount(mp);
  1686. out:
  1687. if (!err)
  1688. path_put(&parent_path);
  1689. path_put(&old_path);
  1690. return err;
  1691. }
  1692. static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype)
  1693. {
  1694. int err;
  1695. const char *subtype = strchr(fstype, '.');
  1696. if (subtype) {
  1697. subtype++;
  1698. err = -EINVAL;
  1699. if (!subtype[0])
  1700. goto err;
  1701. } else
  1702. subtype = "";
  1703. mnt->mnt_sb->s_subtype = kstrdup(subtype, GFP_KERNEL);
  1704. err = -ENOMEM;
  1705. if (!mnt->mnt_sb->s_subtype)
  1706. goto err;
  1707. return mnt;
  1708. err:
  1709. mntput(mnt);
  1710. return ERR_PTR(err);
  1711. }
  1712. /*
  1713. * add a mount into a namespace's mount tree
  1714. */
  1715. static int do_add_mount(struct mount *newmnt, struct path *path, int mnt_flags)
  1716. {
  1717. struct mountpoint *mp;
  1718. struct mount *parent;
  1719. int err;
  1720. mnt_flags &= ~(MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL);
  1721. mp = lock_mount(path);
  1722. if (IS_ERR(mp))
  1723. return PTR_ERR(mp);
  1724. parent = real_mount(path->mnt);
  1725. err = -EINVAL;
  1726. if (unlikely(!check_mnt(parent))) {
  1727. /* that's acceptable only for automounts done in private ns */
  1728. if (!(mnt_flags & MNT_SHRINKABLE))
  1729. goto unlock;
  1730. /* ... and for those we'd better have mountpoint still alive */
  1731. if (!parent->mnt_ns)
  1732. goto unlock;
  1733. }
  1734. /* Refuse the same filesystem on the same mount point */
  1735. err = -EBUSY;
  1736. if (path->mnt->mnt_sb == newmnt->mnt.mnt_sb &&
  1737. path->mnt->mnt_root == path->dentry)
  1738. goto unlock;
  1739. err = -EINVAL;
  1740. if (S_ISLNK(newmnt->mnt.mnt_root->d_inode->i_mode))
  1741. goto unlock;
  1742. newmnt->mnt.mnt_flags = mnt_flags;
  1743. err = graft_tree(newmnt, parent, mp);
  1744. unlock:
  1745. unlock_mount(mp);
  1746. return err;
  1747. }
  1748. /*
  1749. * create a new mount for userspace and request it to be added into the
  1750. * namespace's tree
  1751. */
  1752. static int do_new_mount(struct path *path, const char *fstype, int flags,
  1753. int mnt_flags, const char *name, void *data)
  1754. {
  1755. struct file_system_type *type;
  1756. struct user_namespace *user_ns = current->nsproxy->mnt_ns->user_ns;
  1757. struct vfsmount *mnt;
  1758. int err;
  1759. if (!fstype)
  1760. return -EINVAL;
  1761. type = get_fs_type(fstype);
  1762. if (!type)
  1763. return -ENODEV;
  1764. if (user_ns != &init_user_ns) {
  1765. if (!(type->fs_flags & FS_USERNS_MOUNT)) {
  1766. put_filesystem(type);
  1767. return -EPERM;
  1768. }
  1769. /* Only in special cases allow devices from mounts
  1770. * created outside the initial user namespace.
  1771. */
  1772. if (!(type->fs_flags & FS_USERNS_DEV_MOUNT)) {
  1773. flags |= MS_NODEV;
  1774. mnt_flags |= MNT_NODEV;
  1775. }
  1776. }
  1777. mnt = vfs_kern_mount(type, flags, name, data);
  1778. if (!IS_ERR(mnt) && (type->fs_flags & FS_HAS_SUBTYPE) &&
  1779. !mnt->mnt_sb->s_subtype)
  1780. mnt = fs_set_subtype(mnt, fstype);
  1781. put_filesystem(type);
  1782. if (IS_ERR(mnt))
  1783. return PTR_ERR(mnt);
  1784. err = do_add_mount(real_mount(mnt), path, mnt_flags);
  1785. if (err)
  1786. mntput(mnt);
  1787. return err;
  1788. }
  1789. int finish_automount(struct vfsmount *m, struct path *path)
  1790. {
  1791. struct mount *mnt = real_mount(m);
  1792. int err;
  1793. /* The new mount record should have at least 2 refs to prevent it being
  1794. * expired before we get a chance to add it
  1795. */
  1796. BUG_ON(mnt_get_count(mnt) < 2);
  1797. if (m->mnt_sb == path->mnt->mnt_sb &&
  1798. m->mnt_root == path->dentry) {
  1799. err = -ELOOP;
  1800. goto fail;
  1801. }
  1802. err = do_add_mount(mnt, path, path->mnt->mnt_flags | MNT_SHRINKABLE);
  1803. if (!err)
  1804. return 0;
  1805. fail:
  1806. /* remove m from any expiration list it may be on */
  1807. if (!list_empty(&mnt->mnt_expire)) {
  1808. namespace_lock();
  1809. br_write_lock(&vfsmount_lock);
  1810. list_del_init(&mnt->mnt_expire);
  1811. br_write_unlock(&vfsmount_lock);
  1812. namespace_unlock();
  1813. }
  1814. mntput(m);
  1815. mntput(m);
  1816. return err;
  1817. }
  1818. /**
  1819. * mnt_set_expiry - Put a mount on an expiration list
  1820. * @mnt: The mount to list.
  1821. * @expiry_list: The list to add the mount to.
  1822. */
  1823. void mnt_set_expiry(struct vfsmount *mnt, struct list_head *expiry_list)
  1824. {
  1825. namespace_lock();
  1826. br_write_lock(&vfsmount_lock);
  1827. list_add_tail(&real_mount(mnt)->mnt_expire, expiry_list);
  1828. br_write_unlock(&vfsmount_lock);
  1829. namespace_unlock();
  1830. }
  1831. EXPORT_SYMBOL(mnt_set_expiry);
  1832. /*
  1833. * process a list of expirable mountpoints with the intent of discarding any
  1834. * mountpoints that aren't in use and haven't been touched since last we came
  1835. * here
  1836. */
  1837. void mark_mounts_for_expiry(struct list_head *mounts)
  1838. {
  1839. struct mount *mnt, *next;
  1840. LIST_HEAD(graveyard);
  1841. if (list_empty(mounts))
  1842. return;
  1843. namespace_lock();
  1844. br_write_lock(&vfsmount_lock);
  1845. /* extract from the expiration list every vfsmount that matches the
  1846. * following criteria:
  1847. * - only referenced by its parent vfsmount
  1848. * - still marked for expiry (marked on the last call here; marks are
  1849. * cleared by mntput())
  1850. */
  1851. list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
  1852. if (!xchg(&mnt->mnt_expiry_mark, 1) ||
  1853. propagate_mount_busy(mnt, 1))
  1854. continue;
  1855. list_move(&mnt->mnt_expire, &graveyard);
  1856. }
  1857. while (!list_empty(&graveyard)) {
  1858. mnt = list_first_entry(&graveyard, struct mount, mnt_expire);
  1859. touch_mnt_namespace(mnt->mnt_ns);
  1860. umount_tree(mnt, 1);
  1861. }
  1862. br_write_unlock(&vfsmount_lock);
  1863. namespace_unlock();
  1864. }
  1865. EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
  1866. /*
  1867. * Ripoff of 'select_parent()'
  1868. *
  1869. * search the list of submounts for a given mountpoint, and move any
  1870. * shrinkable submounts to the 'graveyard' list.
  1871. */
  1872. static int select_submounts(struct mount *parent, struct list_head *graveyard)
  1873. {
  1874. struct mount *this_parent = parent;
  1875. struct list_head *next;
  1876. int found = 0;
  1877. repeat:
  1878. next = this_parent->mnt_mounts.next;
  1879. resume:
  1880. while (next != &this_parent->mnt_mounts) {
  1881. struct list_head *tmp = next;
  1882. struct mount *mnt = list_entry(tmp, struct mount, mnt_child);
  1883. next = tmp->next;
  1884. if (!(mnt->mnt.mnt_flags & MNT_SHRINKABLE))
  1885. continue;
  1886. /*
  1887. * Descend a level if the d_mounts list is non-empty.
  1888. */
  1889. if (!list_empty(&mnt->mnt_mounts)) {
  1890. this_parent = mnt;
  1891. goto repeat;
  1892. }
  1893. if (!propagate_mount_busy(mnt, 1)) {
  1894. list_move_tail(&mnt->mnt_expire, graveyard);
  1895. found++;
  1896. }
  1897. }
  1898. /*
  1899. * All done at this level ... ascend and resume the search
  1900. */
  1901. if (this_parent != parent) {
  1902. next = this_parent->mnt_child.next;
  1903. this_parent = this_parent->mnt_parent;
  1904. goto resume;
  1905. }
  1906. return found;
  1907. }
  1908. /*
  1909. * process a list of expirable mountpoints with the intent of discarding any
  1910. * submounts of a specific parent mountpoint
  1911. *
  1912. * vfsmount_lock must be held for write
  1913. */
  1914. static void shrink_submounts(struct mount *mnt)
  1915. {
  1916. LIST_HEAD(graveyard);
  1917. struct mount *m;
  1918. /* extract submounts of 'mountpoint' from the expiration list */
  1919. while (select_submounts(mnt, &graveyard)) {
  1920. while (!list_empty(&graveyard)) {
  1921. m = list_first_entry(&graveyard, struct mount,
  1922. mnt_expire);
  1923. touch_mnt_namespace(m->mnt_ns);
  1924. umount_tree(m, 1);
  1925. }
  1926. }
  1927. }
  1928. /*
  1929. * Some copy_from_user() implementations do not return the exact number of
  1930. * bytes remaining to copy on a fault. But copy_mount_options() requires that.
  1931. * Note that this function differs from copy_from_user() in that it will oops
  1932. * on bad values of `to', rather than returning a short copy.
  1933. */
  1934. static long exact_copy_from_user(void *to, const void __user * from,
  1935. unsigned long n)
  1936. {
  1937. char *t = to;
  1938. const char __user *f = from;
  1939. char c;
  1940. if (!access_ok(VERIFY_READ, from, n))
  1941. return n;
  1942. while (n) {
  1943. if (__get_user(c, f)) {
  1944. memset(t, 0, n);
  1945. break;
  1946. }
  1947. *t++ = c;
  1948. f++;
  1949. n--;
  1950. }
  1951. return n;
  1952. }
  1953. int copy_mount_options(const void __user * data, unsigned long *where)
  1954. {
  1955. int i;
  1956. unsigned long page;
  1957. unsigned long size;
  1958. *where = 0;
  1959. if (!data)
  1960. return 0;
  1961. if (!(page = __get_free_page(GFP_KERNEL)))
  1962. return -ENOMEM;
  1963. /* We only care that *some* data at the address the user
  1964. * gave us is valid. Just in case, we'll zero
  1965. * the remainder of the page.
  1966. */
  1967. /* copy_from_user cannot cross TASK_SIZE ! */
  1968. size = TASK_SIZE - (unsigned long)data;
  1969. if (size > PAGE_SIZE)
  1970. size = PAGE_SIZE;
  1971. i = size - exact_copy_from_user((void *)page, data, size);
  1972. if (!i) {
  1973. free_page(page);
  1974. return -EFAULT;
  1975. }
  1976. if (i != PAGE_SIZE)
  1977. memset((char *)page + i, 0, PAGE_SIZE - i);
  1978. *where = page;
  1979. return 0;
  1980. }
  1981. int copy_mount_string(const void __user *data, char **where)
  1982. {
  1983. char *tmp;
  1984. if (!data) {
  1985. *where = NULL;
  1986. return 0;
  1987. }
  1988. tmp = strndup_user(data, PAGE_SIZE);
  1989. if (IS_ERR(tmp))
  1990. return PTR_ERR(tmp);
  1991. *where = tmp;
  1992. return 0;
  1993. }
  1994. /*
  1995. * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
  1996. * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
  1997. *
  1998. * data is a (void *) that can point to any structure up to
  1999. * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
  2000. * information (or be NULL).
  2001. *
  2002. * Pre-0.97 versions of mount() didn't have a flags word.
  2003. * When the flags word was introduced its top half was required
  2004. * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
  2005. * Therefore, if this magic number is present, it carries no information
  2006. * and must be discarded.
  2007. */
  2008. long do_mount(const char *dev_name, const char *dir_name,
  2009. const char *type_page, unsigned long flags, void *data_page)
  2010. {
  2011. struct path path;
  2012. int retval = 0;
  2013. int mnt_flags = 0;
  2014. /* Discard magic */
  2015. if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
  2016. flags &= ~MS_MGC_MSK;
  2017. /* Basic sanity checks */
  2018. if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
  2019. return -EINVAL;
  2020. if (data_page)
  2021. ((char *)data_page)[PAGE_SIZE - 1] = 0;
  2022. /* ... and get the mountpoint */
  2023. retval = kern_path(dir_name, LOOKUP_FOLLOW, &path);
  2024. if (retval)
  2025. return retval;
  2026. retval = security_sb_mount(dev_name, &path,
  2027. type_page, flags, data_page);
  2028. if (!retval && !may_mount())
  2029. retval = -EPERM;
  2030. if (retval)
  2031. goto dput_out;
  2032. /* Default to relatime unless overriden */
  2033. if (!(flags & MS_NOATIME))
  2034. mnt_flags |= MNT_RELATIME;
  2035. /* Separate the per-mountpoint flags */
  2036. if (flags & MS_NOSUID)
  2037. mnt_flags |= MNT_NOSUID;
  2038. if (flags & MS_NODEV)
  2039. mnt_flags |= MNT_NODEV;
  2040. if (flags & MS_NOEXEC)
  2041. mnt_flags |= MNT_NOEXEC;
  2042. if (flags & MS_NOATIME)
  2043. mnt_flags |= MNT_NOATIME;
  2044. if (flags & MS_NODIRATIME)
  2045. mnt_flags |= MNT_NODIRATIME;
  2046. if (flags & MS_STRICTATIME)
  2047. mnt_flags &= ~(MNT_RELATIME | MNT_NOATIME);
  2048. if (flags & MS_RDONLY)
  2049. mnt_flags |= MNT_READONLY;
  2050. flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | MS_BORN |
  2051. MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT |
  2052. MS_STRICTATIME);
  2053. if (flags & MS_REMOUNT)
  2054. retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags,
  2055. data_page);
  2056. else if (flags & MS_BIND)
  2057. retval = do_loopback(&path, dev_name, flags & MS_REC);
  2058. else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
  2059. retval = do_change_type(&path, flags);
  2060. else if (flags & MS_MOVE)
  2061. retval = do_move_mount(&path, dev_name);
  2062. else
  2063. retval = do_new_mount(&path, type_page, flags, mnt_flags,
  2064. dev_name, data_page);
  2065. dput_out:
  2066. path_put(&path);
  2067. return retval;
  2068. }
  2069. static void free_mnt_ns(struct mnt_namespace *ns)
  2070. {
  2071. proc_free_inum(ns->proc_inum);
  2072. put_user_ns(ns->user_ns);
  2073. kfree(ns);
  2074. }
  2075. /*
  2076. * Assign a sequence number so we can detect when we attempt to bind
  2077. * mount a reference to an older mount namespace into the current
  2078. * mount namespace, preventing reference counting loops. A 64bit
  2079. * number incrementing at 10Ghz will take 12,427 years to wrap which
  2080. * is effectively never, so we can ignore the possibility.
  2081. */
  2082. static atomic64_t mnt_ns_seq = ATOMIC64_INIT(1);
  2083. static struct mnt_namespace *alloc_mnt_ns(struct user_namespace *user_ns)
  2084. {
  2085. struct mnt_namespace *new_ns;
  2086. int ret;
  2087. new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
  2088. if (!new_ns)
  2089. return ERR_PTR(-ENOMEM);
  2090. ret = proc_alloc_inum(&new_ns->proc_inum);
  2091. if (ret) {
  2092. kfree(new_ns);
  2093. return ERR_PTR(ret);
  2094. }
  2095. new_ns->seq = atomic64_add_return(1, &mnt_ns_seq);
  2096. atomic_set(&new_ns->count, 1);
  2097. new_ns->root = NULL;
  2098. INIT_LIST_HEAD(&new_ns->list);
  2099. init_waitqueue_head(&new_ns->poll);
  2100. new_ns->event = 0;
  2101. new_ns->user_ns = get_user_ns(user_ns);
  2102. return new_ns;
  2103. }
  2104. /*
  2105. * Allocate a new namespace structure and populate it with contents
  2106. * copied from the namespace of the passed in task structure.
  2107. */
  2108. static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
  2109. struct user_namespace *user_ns, struct fs_struct *fs)
  2110. {
  2111. struct mnt_namespace *new_ns;
  2112. struct vfsmount *rootmnt = NULL, *pwdmnt = NULL;
  2113. struct mount *p, *q;
  2114. struct mount *old = mnt_ns->root;
  2115. struct mount *new;
  2116. int copy_flags;
  2117. new_ns = alloc_mnt_ns(user_ns);
  2118. if (IS_ERR(new_ns))
  2119. return new_ns;
  2120. namespace_lock();
  2121. /* First pass: copy the tree topology */
  2122. copy_flags = CL_COPY_UNBINDABLE | CL_EXPIRE;
  2123. if (user_ns != mnt_ns->user_ns)
  2124. copy_flags |= CL_SHARED_TO_SLAVE | CL_UNPRIVILEGED;
  2125. new = copy_tree(old, old->mnt.mnt_root, copy_flags);
  2126. if (IS_ERR(new)) {
  2127. namespace_unlock();
  2128. free_mnt_ns(new_ns);
  2129. return ERR_CAST(new);
  2130. }
  2131. new_ns->root = new;
  2132. list_add_tail(&new_ns->list, &new->mnt_list);
  2133. /*
  2134. * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
  2135. * as belonging to new namespace. We have already acquired a private
  2136. * fs_struct, so tsk->fs->lock is not needed.
  2137. */
  2138. p = old;
  2139. q = new;
  2140. while (p) {
  2141. q->mnt_ns = new_ns;
  2142. if (fs) {
  2143. if (&p->mnt == fs->root.mnt) {
  2144. fs->root.mnt = mntget(&q->mnt);
  2145. rootmnt = &p->mnt;
  2146. }
  2147. if (&p->mnt == fs->pwd.mnt) {
  2148. fs->pwd.mnt = mntget(&q->mnt);
  2149. pwdmnt = &p->mnt;
  2150. }
  2151. }
  2152. p = next_mnt(p, old);
  2153. q = next_mnt(q, new);
  2154. if (!q)
  2155. break;
  2156. while (p->mnt.mnt_root != q->mnt.mnt_root)
  2157. p = next_mnt(p, old);
  2158. }
  2159. namespace_unlock();
  2160. if (rootmnt)
  2161. mntput(rootmnt);
  2162. if (pwdmnt)
  2163. mntput(pwdmnt);
  2164. return new_ns;
  2165. }
  2166. struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
  2167. struct user_namespace *user_ns, struct fs_struct *new_fs)
  2168. {
  2169. struct mnt_namespace *new_ns;
  2170. BUG_ON(!ns);
  2171. get_mnt_ns(ns);
  2172. if (!(flags & CLONE_NEWNS))
  2173. return ns;
  2174. new_ns = dup_mnt_ns(ns, user_ns, new_fs);
  2175. put_mnt_ns(ns);
  2176. return new_ns;
  2177. }
  2178. /**
  2179. * create_mnt_ns - creates a private namespace and adds a root filesystem
  2180. * @mnt: pointer to the new root filesystem mountpoint
  2181. */
  2182. static struct mnt_namespace *create_mnt_ns(struct vfsmount *m)
  2183. {
  2184. struct mnt_namespace *new_ns = alloc_mnt_ns(&init_user_ns);
  2185. if (!IS_ERR(new_ns)) {
  2186. struct mount *mnt = real_mount(m);
  2187. mnt->mnt_ns = new_ns;
  2188. new_ns->root = mnt;
  2189. list_add(&mnt->mnt_list, &new_ns->list);
  2190. } else {
  2191. mntput(m);
  2192. }
  2193. return new_ns;
  2194. }
  2195. struct dentry *mount_subtree(struct vfsmount *mnt, const char *name)
  2196. {
  2197. struct mnt_namespace *ns;
  2198. struct super_block *s;
  2199. struct path path;
  2200. int err;
  2201. ns = create_mnt_ns(mnt);
  2202. if (IS_ERR(ns))
  2203. return ERR_CAST(ns);
  2204. err = vfs_path_lookup(mnt->mnt_root, mnt,
  2205. name, LOOKUP_FOLLOW|LOOKUP_AUTOMOUNT, &path);
  2206. put_mnt_ns(ns);
  2207. if (err)
  2208. return ERR_PTR(err);
  2209. /* trade a vfsmount reference for active sb one */
  2210. s = path.mnt->mnt_sb;
  2211. atomic_inc(&s->s_active);
  2212. mntput(path.mnt);
  2213. /* lock the sucker */
  2214. down_write(&s->s_umount);
  2215. /* ... and return the root of (sub)tree on it */
  2216. return path.dentry;
  2217. }
  2218. EXPORT_SYMBOL(mount_subtree);
  2219. SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
  2220. char __user *, type, unsigned long, flags, void __user *, data)
  2221. {
  2222. int ret;
  2223. char *kernel_type;
  2224. struct filename *kernel_dir;
  2225. char *kernel_dev;
  2226. unsigned long data_page;
  2227. ret = copy_mount_string(type, &kernel_type);
  2228. if (ret < 0)
  2229. goto out_type;
  2230. kernel_dir = getname(dir_name);
  2231. if (IS_ERR(kernel_dir)) {
  2232. ret = PTR_ERR(kernel_dir);
  2233. goto out_dir;
  2234. }
  2235. ret = copy_mount_string(dev_name, &kernel_dev);
  2236. if (ret < 0)
  2237. goto out_dev;
  2238. ret = copy_mount_options(data, &data_page);
  2239. if (ret < 0)
  2240. goto out_data;
  2241. ret = do_mount(kernel_dev, kernel_dir->name, kernel_type, flags,
  2242. (void *) data_page);
  2243. free_page(data_page);
  2244. out_data:
  2245. kfree(kernel_dev);
  2246. out_dev:
  2247. putname(kernel_dir);
  2248. out_dir:
  2249. kfree(kernel_type);
  2250. out_type:
  2251. return ret;
  2252. }
  2253. /*
  2254. * Return true if path is reachable from root
  2255. *
  2256. * namespace_sem or vfsmount_lock is held
  2257. */
  2258. bool is_path_reachable(struct mount *mnt, struct dentry *dentry,
  2259. const struct path *root)
  2260. {
  2261. while (&mnt->mnt != root->mnt && mnt_has_parent(mnt)) {
  2262. dentry = mnt->mnt_mountpoint;
  2263. mnt = mnt->mnt_parent;
  2264. }
  2265. return &mnt->mnt == root->mnt && is_subdir(dentry, root->dentry);
  2266. }
  2267. int path_is_under(struct path *path1, struct path *path2)
  2268. {
  2269. int res;
  2270. br_read_lock(&vfsmount_lock);
  2271. res = is_path_reachable(real_mount(path1->mnt), path1->dentry, path2);
  2272. br_read_unlock(&vfsmount_lock);
  2273. return res;
  2274. }
  2275. EXPORT_SYMBOL(path_is_under);
  2276. /*
  2277. * pivot_root Semantics:
  2278. * Moves the root file system of the current process to the directory put_old,
  2279. * makes new_root as the new root file system of the current process, and sets
  2280. * root/cwd of all processes which had them on the current root to new_root.
  2281. *
  2282. * Restrictions:
  2283. * The new_root and put_old must be directories, and must not be on the
  2284. * same file system as the current process root. The put_old must be
  2285. * underneath new_root, i.e. adding a non-zero number of /.. to the string
  2286. * pointed to by put_old must yield the same directory as new_root. No other
  2287. * file system may be mounted on put_old. After all, new_root is a mountpoint.
  2288. *
  2289. * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
  2290. * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
  2291. * in this situation.
  2292. *
  2293. * Notes:
  2294. * - we don't move root/cwd if they are not at the root (reason: if something
  2295. * cared enough to change them, it's probably wrong to force them elsewhere)
  2296. * - it's okay to pick a root that isn't the root of a file system, e.g.
  2297. * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
  2298. * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
  2299. * first.
  2300. */
  2301. SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
  2302. const char __user *, put_old)
  2303. {
  2304. struct path new, old, parent_path, root_parent, root;
  2305. struct mount *new_mnt, *root_mnt, *old_mnt;
  2306. struct mountpoint *old_mp, *root_mp;
  2307. int error;
  2308. if (!may_mount())
  2309. return -EPERM;
  2310. error = user_path_dir(new_root, &new);
  2311. if (error)
  2312. goto out0;
  2313. error = user_path_dir(put_old, &old);
  2314. if (error)
  2315. goto out1;
  2316. error = security_sb_pivotroot(&old, &new);
  2317. if (error)
  2318. goto out2;
  2319. get_fs_root(current->fs, &root);
  2320. old_mp = lock_mount(&old);
  2321. error = PTR_ERR(old_mp);
  2322. if (IS_ERR(old_mp))
  2323. goto out3;
  2324. error = -EINVAL;
  2325. new_mnt = real_mount(new.mnt);
  2326. root_mnt = real_mount(root.mnt);
  2327. old_mnt = real_mount(old.mnt);
  2328. if (IS_MNT_SHARED(old_mnt) ||
  2329. IS_MNT_SHARED(new_mnt->mnt_parent) ||
  2330. IS_MNT_SHARED(root_mnt->mnt_parent))
  2331. goto out4;
  2332. if (!check_mnt(root_mnt) || !check_mnt(new_mnt))
  2333. goto out4;
  2334. if (new_mnt->mnt.mnt_flags & MNT_LOCKED)
  2335. goto out4;
  2336. error = -ENOENT;
  2337. if (d_unlinked(new.dentry))
  2338. goto out4;
  2339. error = -EBUSY;
  2340. if (new_mnt == root_mnt || old_mnt == root_mnt)
  2341. goto out4; /* loop, on the same file system */
  2342. error = -EINVAL;
  2343. if (root.mnt->mnt_root != root.dentry)
  2344. goto out4; /* not a mountpoint */
  2345. if (!mnt_has_parent(root_mnt))
  2346. goto out4; /* not attached */
  2347. root_mp = root_mnt->mnt_mp;
  2348. if (new.mnt->mnt_root != new.dentry)
  2349. goto out4; /* not a mountpoint */
  2350. if (!mnt_has_parent(new_mnt))
  2351. goto out4; /* not attached */
  2352. /* make sure we can reach put_old from new_root */
  2353. if (!is_path_reachable(old_mnt, old.dentry, &new))
  2354. goto out4;
  2355. root_mp->m_count++; /* pin it so it won't go away */
  2356. br_write_lock(&vfsmount_lock);
  2357. detach_mnt(new_mnt, &parent_path);
  2358. detach_mnt(root_mnt, &root_parent);
  2359. if (root_mnt->mnt.mnt_flags & MNT_LOCKED) {
  2360. new_mnt->mnt.mnt_flags |= MNT_LOCKED;
  2361. root_mnt->mnt.mnt_flags &= ~MNT_LOCKED;
  2362. }
  2363. /* mount old root on put_old */
  2364. attach_mnt(root_mnt, old_mnt, old_mp);
  2365. /* mount new_root on / */
  2366. attach_mnt(new_mnt, real_mount(root_parent.mnt), root_mp);
  2367. touch_mnt_namespace(current->nsproxy->mnt_ns);
  2368. br_write_unlock(&vfsmount_lock);
  2369. chroot_fs_refs(&root, &new);
  2370. put_mountpoint(root_mp);
  2371. error = 0;
  2372. out4:
  2373. unlock_mount(old_mp);
  2374. if (!error) {
  2375. path_put(&root_parent);
  2376. path_put(&parent_path);
  2377. }
  2378. out3:
  2379. path_put(&root);
  2380. out2:
  2381. path_put(&old);
  2382. out1:
  2383. path_put(&new);
  2384. out0:
  2385. return error;
  2386. }
  2387. static void __init init_mount_tree(void)
  2388. {
  2389. struct vfsmount *mnt;
  2390. struct mnt_namespace *ns;
  2391. struct path root;
  2392. struct file_system_type *type;
  2393. type = get_fs_type("rootfs");
  2394. if (!type)
  2395. panic("Can't find rootfs type");
  2396. mnt = vfs_kern_mount(type, 0, "rootfs", NULL);
  2397. put_filesystem(type);
  2398. if (IS_ERR(mnt))
  2399. panic("Can't create rootfs");
  2400. ns = create_mnt_ns(mnt);
  2401. if (IS_ERR(ns))
  2402. panic("Can't allocate initial namespace");
  2403. init_task.nsproxy->mnt_ns = ns;
  2404. get_mnt_ns(ns);
  2405. root.mnt = mnt;
  2406. root.dentry = mnt->mnt_root;
  2407. set_fs_pwd(current->fs, &root);
  2408. set_fs_root(current->fs, &root);
  2409. }
  2410. void __init mnt_init(void)
  2411. {
  2412. unsigned u;
  2413. int err;
  2414. mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct mount),
  2415. 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
  2416. mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
  2417. mountpoint_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
  2418. if (!mount_hashtable || !mountpoint_hashtable)
  2419. panic("Failed to allocate mount hash table\n");
  2420. printk(KERN_INFO "Mount-cache hash table entries: %lu\n", HASH_SIZE);
  2421. for (u = 0; u < HASH_SIZE; u++)
  2422. INIT_LIST_HEAD(&mount_hashtable[u]);
  2423. for (u = 0; u < HASH_SIZE; u++)
  2424. INIT_LIST_HEAD(&mountpoint_hashtable[u]);
  2425. br_lock_init(&vfsmount_lock);
  2426. err = sysfs_init();
  2427. if (err)
  2428. printk(KERN_WARNING "%s: sysfs_init error: %d\n",
  2429. __func__, err);
  2430. fs_kobj = kobject_create_and_add("fs", NULL);
  2431. if (!fs_kobj)
  2432. printk(KERN_WARNING "%s: kobj create error\n", __func__);
  2433. init_rootfs();
  2434. init_mount_tree();
  2435. }
  2436. void put_mnt_ns(struct mnt_namespace *ns)
  2437. {
  2438. if (!atomic_dec_and_test(&ns->count))
  2439. return;
  2440. drop_collected_mounts(&ns->root->mnt);
  2441. free_mnt_ns(ns);
  2442. }
  2443. struct vfsmount *kern_mount_data(struct file_system_type *type, void *data)
  2444. {
  2445. struct vfsmount *mnt;
  2446. mnt = vfs_kern_mount(type, MS_KERNMOUNT, type->name, data);
  2447. if (!IS_ERR(mnt)) {
  2448. /*
  2449. * it is a longterm mount, don't release mnt until
  2450. * we unmount before file sys is unregistered
  2451. */
  2452. real_mount(mnt)->mnt_ns = MNT_NS_INTERNAL;
  2453. }
  2454. return mnt;
  2455. }
  2456. EXPORT_SYMBOL_GPL(kern_mount_data);
  2457. void kern_unmount(struct vfsmount *mnt)
  2458. {
  2459. /* release long term mount so mount point can be released */
  2460. if (!IS_ERR_OR_NULL(mnt)) {
  2461. br_write_lock(&vfsmount_lock);
  2462. real_mount(mnt)->mnt_ns = NULL;
  2463. br_write_unlock(&vfsmount_lock);
  2464. mntput(mnt);
  2465. }
  2466. }
  2467. EXPORT_SYMBOL(kern_unmount);
  2468. bool our_mnt(struct vfsmount *mnt)
  2469. {
  2470. return check_mnt(real_mount(mnt));
  2471. }
  2472. bool current_chrooted(void)
  2473. {
  2474. /* Does the current process have a non-standard root */
  2475. struct path ns_root;
  2476. struct path fs_root;
  2477. bool chrooted;
  2478. /* Find the namespace root */
  2479. ns_root.mnt = &current->nsproxy->mnt_ns->root->mnt;
  2480. ns_root.dentry = ns_root.mnt->mnt_root;
  2481. path_get(&ns_root);
  2482. while (d_mountpoint(ns_root.dentry) && follow_down_one(&ns_root))
  2483. ;
  2484. get_fs_root(current->fs, &fs_root);
  2485. chrooted = !path_equal(&fs_root, &ns_root);
  2486. path_put(&fs_root);
  2487. path_put(&ns_root);
  2488. return chrooted;
  2489. }
  2490. bool fs_fully_visible(struct file_system_type *type)
  2491. {
  2492. struct mnt_namespace *ns = current->nsproxy->mnt_ns;
  2493. struct mount *mnt;
  2494. bool visible = false;
  2495. if (unlikely(!ns))
  2496. return false;
  2497. down_read(&namespace_sem);
  2498. list_for_each_entry(mnt, &ns->list, mnt_list) {
  2499. struct mount *child;
  2500. if (mnt->mnt.mnt_sb->s_type != type)
  2501. continue;
  2502. /* This mount is not fully visible if there are any child mounts
  2503. * that cover anything except for empty directories.
  2504. */
  2505. list_for_each_entry(child, &mnt->mnt_mounts, mnt_child) {
  2506. struct inode *inode = child->mnt_mountpoint->d_inode;
  2507. if (!S_ISDIR(inode->i_mode))
  2508. goto next;
  2509. if (inode->i_nlink != 2)
  2510. goto next;
  2511. }
  2512. visible = true;
  2513. goto found;
  2514. next: ;
  2515. }
  2516. found:
  2517. up_read(&namespace_sem);
  2518. return visible;
  2519. }
  2520. static void *mntns_get(struct task_struct *task)
  2521. {
  2522. struct mnt_namespace *ns = NULL;
  2523. struct nsproxy *nsproxy;
  2524. rcu_read_lock();
  2525. nsproxy = task_nsproxy(task);
  2526. if (nsproxy) {
  2527. ns = nsproxy->mnt_ns;
  2528. get_mnt_ns(ns);
  2529. }
  2530. rcu_read_unlock();
  2531. return ns;
  2532. }
  2533. static void mntns_put(void *ns)
  2534. {
  2535. put_mnt_ns(ns);
  2536. }
  2537. static int mntns_install(struct nsproxy *nsproxy, void *ns)
  2538. {
  2539. struct fs_struct *fs = current->fs;
  2540. struct mnt_namespace *mnt_ns = ns;
  2541. struct path root;
  2542. if (!ns_capable(mnt_ns->user_ns, CAP_SYS_ADMIN) ||
  2543. !ns_capable(current_user_ns(), CAP_SYS_CHROOT) ||
  2544. !ns_capable(current_user_ns(), CAP_SYS_ADMIN))
  2545. return -EPERM;
  2546. if (fs->users != 1)
  2547. return -EINVAL;
  2548. get_mnt_ns(mnt_ns);
  2549. put_mnt_ns(nsproxy->mnt_ns);
  2550. nsproxy->mnt_ns = mnt_ns;
  2551. /* Find the root */
  2552. root.mnt = &mnt_ns->root->mnt;
  2553. root.dentry = mnt_ns->root->mnt.mnt_root;
  2554. path_get(&root);
  2555. while(d_mountpoint(root.dentry) && follow_down_one(&root))
  2556. ;
  2557. /* Update the pwd and root */
  2558. set_fs_pwd(fs, &root);
  2559. set_fs_root(fs, &root);
  2560. path_put(&root);
  2561. return 0;
  2562. }
  2563. static unsigned int mntns_inum(void *ns)
  2564. {
  2565. struct mnt_namespace *mnt_ns = ns;
  2566. return mnt_ns->proc_inum;
  2567. }
  2568. const struct proc_ns_operations mntns_operations = {
  2569. .name = "mnt",
  2570. .type = CLONE_NEWNS,
  2571. .get = mntns_get,
  2572. .put = mntns_put,
  2573. .install = mntns_install,
  2574. .inum = mntns_inum,
  2575. };