namespace.c 68 KB

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