namespace.c 71 KB

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