namespace.c 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352
  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/slab.h>
  12. #include <linux/sched.h>
  13. #include <linux/smp_lock.h>
  14. #include <linux/init.h>
  15. #include <linux/kernel.h>
  16. #include <linux/acct.h>
  17. #include <linux/capability.h>
  18. #include <linux/cpumask.h>
  19. #include <linux/module.h>
  20. #include <linux/sysfs.h>
  21. #include <linux/seq_file.h>
  22. #include <linux/mnt_namespace.h>
  23. #include <linux/namei.h>
  24. #include <linux/security.h>
  25. #include <linux/mount.h>
  26. #include <linux/ramfs.h>
  27. #include <linux/log2.h>
  28. #include <linux/idr.h>
  29. #include <asm/uaccess.h>
  30. #include <asm/unistd.h>
  31. #include "pnode.h"
  32. #include "internal.h"
  33. #define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head))
  34. #define HASH_SIZE (1UL << HASH_SHIFT)
  35. /* spinlock for vfsmount related operations, inplace of dcache_lock */
  36. __cacheline_aligned_in_smp DEFINE_SPINLOCK(vfsmount_lock);
  37. static int event;
  38. static DEFINE_IDA(mnt_id_ida);
  39. static DEFINE_IDA(mnt_group_ida);
  40. static struct list_head *mount_hashtable __read_mostly;
  41. static struct kmem_cache *mnt_cache __read_mostly;
  42. static struct rw_semaphore namespace_sem;
  43. /* /sys/fs */
  44. struct kobject *fs_kobj;
  45. EXPORT_SYMBOL_GPL(fs_kobj);
  46. static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
  47. {
  48. unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES);
  49. tmp += ((unsigned long)dentry / L1_CACHE_BYTES);
  50. tmp = tmp + (tmp >> HASH_SHIFT);
  51. return tmp & (HASH_SIZE - 1);
  52. }
  53. #define MNT_WRITER_UNDERFLOW_LIMIT -(1<<16)
  54. /* allocation is serialized by namespace_sem */
  55. static int mnt_alloc_id(struct vfsmount *mnt)
  56. {
  57. int res;
  58. retry:
  59. ida_pre_get(&mnt_id_ida, GFP_KERNEL);
  60. spin_lock(&vfsmount_lock);
  61. res = ida_get_new(&mnt_id_ida, &mnt->mnt_id);
  62. spin_unlock(&vfsmount_lock);
  63. if (res == -EAGAIN)
  64. goto retry;
  65. return res;
  66. }
  67. static void mnt_free_id(struct vfsmount *mnt)
  68. {
  69. spin_lock(&vfsmount_lock);
  70. ida_remove(&mnt_id_ida, mnt->mnt_id);
  71. spin_unlock(&vfsmount_lock);
  72. }
  73. /*
  74. * Allocate a new peer group ID
  75. *
  76. * mnt_group_ida is protected by namespace_sem
  77. */
  78. static int mnt_alloc_group_id(struct vfsmount *mnt)
  79. {
  80. if (!ida_pre_get(&mnt_group_ida, GFP_KERNEL))
  81. return -ENOMEM;
  82. return ida_get_new_above(&mnt_group_ida, 1, &mnt->mnt_group_id);
  83. }
  84. /*
  85. * Release a peer group ID
  86. */
  87. void mnt_release_group_id(struct vfsmount *mnt)
  88. {
  89. ida_remove(&mnt_group_ida, mnt->mnt_group_id);
  90. mnt->mnt_group_id = 0;
  91. }
  92. struct vfsmount *alloc_vfsmnt(const char *name)
  93. {
  94. struct vfsmount *mnt = kmem_cache_zalloc(mnt_cache, GFP_KERNEL);
  95. if (mnt) {
  96. int err;
  97. err = mnt_alloc_id(mnt);
  98. if (err)
  99. goto out_free_cache;
  100. if (name) {
  101. mnt->mnt_devname = kstrdup(name, GFP_KERNEL);
  102. if (!mnt->mnt_devname)
  103. goto out_free_id;
  104. }
  105. atomic_set(&mnt->mnt_count, 1);
  106. INIT_LIST_HEAD(&mnt->mnt_hash);
  107. INIT_LIST_HEAD(&mnt->mnt_child);
  108. INIT_LIST_HEAD(&mnt->mnt_mounts);
  109. INIT_LIST_HEAD(&mnt->mnt_list);
  110. INIT_LIST_HEAD(&mnt->mnt_expire);
  111. INIT_LIST_HEAD(&mnt->mnt_share);
  112. INIT_LIST_HEAD(&mnt->mnt_slave_list);
  113. INIT_LIST_HEAD(&mnt->mnt_slave);
  114. atomic_set(&mnt->__mnt_writers, 0);
  115. }
  116. return mnt;
  117. out_free_id:
  118. mnt_free_id(mnt);
  119. out_free_cache:
  120. kmem_cache_free(mnt_cache, mnt);
  121. return NULL;
  122. }
  123. /*
  124. * Most r/o checks on a fs are for operations that take
  125. * discrete amounts of time, like a write() or unlink().
  126. * We must keep track of when those operations start
  127. * (for permission checks) and when they end, so that
  128. * we can determine when writes are able to occur to
  129. * a filesystem.
  130. */
  131. /*
  132. * __mnt_is_readonly: check whether a mount is read-only
  133. * @mnt: the mount to check for its write status
  134. *
  135. * This shouldn't be used directly ouside of the VFS.
  136. * It does not guarantee that the filesystem will stay
  137. * r/w, just that it is right *now*. This can not and
  138. * should not be used in place of IS_RDONLY(inode).
  139. * mnt_want/drop_write() will _keep_ the filesystem
  140. * r/w.
  141. */
  142. int __mnt_is_readonly(struct vfsmount *mnt)
  143. {
  144. if (mnt->mnt_flags & MNT_READONLY)
  145. return 1;
  146. if (mnt->mnt_sb->s_flags & MS_RDONLY)
  147. return 1;
  148. return 0;
  149. }
  150. EXPORT_SYMBOL_GPL(__mnt_is_readonly);
  151. struct mnt_writer {
  152. /*
  153. * If holding multiple instances of this lock, they
  154. * must be ordered by cpu number.
  155. */
  156. spinlock_t lock;
  157. struct lock_class_key lock_class; /* compiles out with !lockdep */
  158. unsigned long count;
  159. struct vfsmount *mnt;
  160. } ____cacheline_aligned_in_smp;
  161. static DEFINE_PER_CPU(struct mnt_writer, mnt_writers);
  162. static int __init init_mnt_writers(void)
  163. {
  164. int cpu;
  165. for_each_possible_cpu(cpu) {
  166. struct mnt_writer *writer = &per_cpu(mnt_writers, cpu);
  167. spin_lock_init(&writer->lock);
  168. lockdep_set_class(&writer->lock, &writer->lock_class);
  169. writer->count = 0;
  170. }
  171. return 0;
  172. }
  173. fs_initcall(init_mnt_writers);
  174. static void unlock_mnt_writers(void)
  175. {
  176. int cpu;
  177. struct mnt_writer *cpu_writer;
  178. for_each_possible_cpu(cpu) {
  179. cpu_writer = &per_cpu(mnt_writers, cpu);
  180. spin_unlock(&cpu_writer->lock);
  181. }
  182. }
  183. static inline void __clear_mnt_count(struct mnt_writer *cpu_writer)
  184. {
  185. if (!cpu_writer->mnt)
  186. return;
  187. /*
  188. * This is in case anyone ever leaves an invalid,
  189. * old ->mnt and a count of 0.
  190. */
  191. if (!cpu_writer->count)
  192. return;
  193. atomic_add(cpu_writer->count, &cpu_writer->mnt->__mnt_writers);
  194. cpu_writer->count = 0;
  195. }
  196. /*
  197. * must hold cpu_writer->lock
  198. */
  199. static inline void use_cpu_writer_for_mount(struct mnt_writer *cpu_writer,
  200. struct vfsmount *mnt)
  201. {
  202. if (cpu_writer->mnt == mnt)
  203. return;
  204. __clear_mnt_count(cpu_writer);
  205. cpu_writer->mnt = mnt;
  206. }
  207. /*
  208. * Most r/o checks on a fs are for operations that take
  209. * discrete amounts of time, like a write() or unlink().
  210. * We must keep track of when those operations start
  211. * (for permission checks) and when they end, so that
  212. * we can determine when writes are able to occur to
  213. * a filesystem.
  214. */
  215. /**
  216. * mnt_want_write - get write access to a mount
  217. * @mnt: the mount on which to take a write
  218. *
  219. * This tells the low-level filesystem that a write is
  220. * about to be performed to it, and makes sure that
  221. * writes are allowed before returning success. When
  222. * the write operation is finished, mnt_drop_write()
  223. * must be called. This is effectively a refcount.
  224. */
  225. int mnt_want_write(struct vfsmount *mnt)
  226. {
  227. int ret = 0;
  228. struct mnt_writer *cpu_writer;
  229. cpu_writer = &get_cpu_var(mnt_writers);
  230. spin_lock(&cpu_writer->lock);
  231. if (__mnt_is_readonly(mnt)) {
  232. ret = -EROFS;
  233. goto out;
  234. }
  235. use_cpu_writer_for_mount(cpu_writer, mnt);
  236. cpu_writer->count++;
  237. out:
  238. spin_unlock(&cpu_writer->lock);
  239. put_cpu_var(mnt_writers);
  240. return ret;
  241. }
  242. EXPORT_SYMBOL_GPL(mnt_want_write);
  243. static void lock_mnt_writers(void)
  244. {
  245. int cpu;
  246. struct mnt_writer *cpu_writer;
  247. for_each_possible_cpu(cpu) {
  248. cpu_writer = &per_cpu(mnt_writers, cpu);
  249. spin_lock(&cpu_writer->lock);
  250. __clear_mnt_count(cpu_writer);
  251. cpu_writer->mnt = NULL;
  252. }
  253. }
  254. /*
  255. * These per-cpu write counts are not guaranteed to have
  256. * matched increments and decrements on any given cpu.
  257. * A file open()ed for write on one cpu and close()d on
  258. * another cpu will imbalance this count. Make sure it
  259. * does not get too far out of whack.
  260. */
  261. static void handle_write_count_underflow(struct vfsmount *mnt)
  262. {
  263. if (atomic_read(&mnt->__mnt_writers) >=
  264. MNT_WRITER_UNDERFLOW_LIMIT)
  265. return;
  266. /*
  267. * It isn't necessary to hold all of the locks
  268. * at the same time, but doing it this way makes
  269. * us share a lot more code.
  270. */
  271. lock_mnt_writers();
  272. /*
  273. * vfsmount_lock is for mnt_flags.
  274. */
  275. spin_lock(&vfsmount_lock);
  276. /*
  277. * If coalescing the per-cpu writer counts did not
  278. * get us back to a positive writer count, we have
  279. * a bug.
  280. */
  281. if ((atomic_read(&mnt->__mnt_writers) < 0) &&
  282. !(mnt->mnt_flags & MNT_IMBALANCED_WRITE_COUNT)) {
  283. WARN(1, KERN_DEBUG "leak detected on mount(%p) writers "
  284. "count: %d\n",
  285. mnt, atomic_read(&mnt->__mnt_writers));
  286. /* use the flag to keep the dmesg spam down */
  287. mnt->mnt_flags |= MNT_IMBALANCED_WRITE_COUNT;
  288. }
  289. spin_unlock(&vfsmount_lock);
  290. unlock_mnt_writers();
  291. }
  292. /**
  293. * mnt_drop_write - give up write access to a mount
  294. * @mnt: the mount on which to give up write access
  295. *
  296. * Tells the low-level filesystem that we are done
  297. * performing writes to it. Must be matched with
  298. * mnt_want_write() call above.
  299. */
  300. void mnt_drop_write(struct vfsmount *mnt)
  301. {
  302. int must_check_underflow = 0;
  303. struct mnt_writer *cpu_writer;
  304. cpu_writer = &get_cpu_var(mnt_writers);
  305. spin_lock(&cpu_writer->lock);
  306. use_cpu_writer_for_mount(cpu_writer, mnt);
  307. if (cpu_writer->count > 0) {
  308. cpu_writer->count--;
  309. } else {
  310. must_check_underflow = 1;
  311. atomic_dec(&mnt->__mnt_writers);
  312. }
  313. spin_unlock(&cpu_writer->lock);
  314. /*
  315. * Logically, we could call this each time,
  316. * but the __mnt_writers cacheline tends to
  317. * be cold, and makes this expensive.
  318. */
  319. if (must_check_underflow)
  320. handle_write_count_underflow(mnt);
  321. /*
  322. * This could be done right after the spinlock
  323. * is taken because the spinlock keeps us on
  324. * the cpu, and disables preemption. However,
  325. * putting it here bounds the amount that
  326. * __mnt_writers can underflow. Without it,
  327. * we could theoretically wrap __mnt_writers.
  328. */
  329. put_cpu_var(mnt_writers);
  330. }
  331. EXPORT_SYMBOL_GPL(mnt_drop_write);
  332. static int mnt_make_readonly(struct vfsmount *mnt)
  333. {
  334. int ret = 0;
  335. lock_mnt_writers();
  336. /*
  337. * With all the locks held, this value is stable
  338. */
  339. if (atomic_read(&mnt->__mnt_writers) > 0) {
  340. ret = -EBUSY;
  341. goto out;
  342. }
  343. /*
  344. * nobody can do a successful mnt_want_write() with all
  345. * of the counts in MNT_DENIED_WRITE and the locks held.
  346. */
  347. spin_lock(&vfsmount_lock);
  348. if (!ret)
  349. mnt->mnt_flags |= MNT_READONLY;
  350. spin_unlock(&vfsmount_lock);
  351. out:
  352. unlock_mnt_writers();
  353. return ret;
  354. }
  355. static void __mnt_unmake_readonly(struct vfsmount *mnt)
  356. {
  357. spin_lock(&vfsmount_lock);
  358. mnt->mnt_flags &= ~MNT_READONLY;
  359. spin_unlock(&vfsmount_lock);
  360. }
  361. int simple_set_mnt(struct vfsmount *mnt, struct super_block *sb)
  362. {
  363. mnt->mnt_sb = sb;
  364. mnt->mnt_root = dget(sb->s_root);
  365. return 0;
  366. }
  367. EXPORT_SYMBOL(simple_set_mnt);
  368. void free_vfsmnt(struct vfsmount *mnt)
  369. {
  370. kfree(mnt->mnt_devname);
  371. mnt_free_id(mnt);
  372. kmem_cache_free(mnt_cache, mnt);
  373. }
  374. /*
  375. * find the first or last mount at @dentry on vfsmount @mnt depending on
  376. * @dir. If @dir is set return the first mount else return the last mount.
  377. */
  378. struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
  379. int dir)
  380. {
  381. struct list_head *head = mount_hashtable + hash(mnt, dentry);
  382. struct list_head *tmp = head;
  383. struct vfsmount *p, *found = NULL;
  384. for (;;) {
  385. tmp = dir ? tmp->next : tmp->prev;
  386. p = NULL;
  387. if (tmp == head)
  388. break;
  389. p = list_entry(tmp, struct vfsmount, mnt_hash);
  390. if (p->mnt_parent == mnt && p->mnt_mountpoint == dentry) {
  391. found = p;
  392. break;
  393. }
  394. }
  395. return found;
  396. }
  397. /*
  398. * lookup_mnt increments the ref count before returning
  399. * the vfsmount struct.
  400. */
  401. struct vfsmount *lookup_mnt(struct vfsmount *mnt, struct dentry *dentry)
  402. {
  403. struct vfsmount *child_mnt;
  404. spin_lock(&vfsmount_lock);
  405. if ((child_mnt = __lookup_mnt(mnt, dentry, 1)))
  406. mntget(child_mnt);
  407. spin_unlock(&vfsmount_lock);
  408. return child_mnt;
  409. }
  410. static inline int check_mnt(struct vfsmount *mnt)
  411. {
  412. return mnt->mnt_ns == current->nsproxy->mnt_ns;
  413. }
  414. static void touch_mnt_namespace(struct mnt_namespace *ns)
  415. {
  416. if (ns) {
  417. ns->event = ++event;
  418. wake_up_interruptible(&ns->poll);
  419. }
  420. }
  421. static void __touch_mnt_namespace(struct mnt_namespace *ns)
  422. {
  423. if (ns && ns->event != event) {
  424. ns->event = event;
  425. wake_up_interruptible(&ns->poll);
  426. }
  427. }
  428. static void detach_mnt(struct vfsmount *mnt, struct path *old_path)
  429. {
  430. old_path->dentry = mnt->mnt_mountpoint;
  431. old_path->mnt = mnt->mnt_parent;
  432. mnt->mnt_parent = mnt;
  433. mnt->mnt_mountpoint = mnt->mnt_root;
  434. list_del_init(&mnt->mnt_child);
  435. list_del_init(&mnt->mnt_hash);
  436. old_path->dentry->d_mounted--;
  437. }
  438. void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry,
  439. struct vfsmount *child_mnt)
  440. {
  441. child_mnt->mnt_parent = mntget(mnt);
  442. child_mnt->mnt_mountpoint = dget(dentry);
  443. dentry->d_mounted++;
  444. }
  445. static void attach_mnt(struct vfsmount *mnt, struct path *path)
  446. {
  447. mnt_set_mountpoint(path->mnt, path->dentry, mnt);
  448. list_add_tail(&mnt->mnt_hash, mount_hashtable +
  449. hash(path->mnt, path->dentry));
  450. list_add_tail(&mnt->mnt_child, &path->mnt->mnt_mounts);
  451. }
  452. /*
  453. * the caller must hold vfsmount_lock
  454. */
  455. static void commit_tree(struct vfsmount *mnt)
  456. {
  457. struct vfsmount *parent = mnt->mnt_parent;
  458. struct vfsmount *m;
  459. LIST_HEAD(head);
  460. struct mnt_namespace *n = parent->mnt_ns;
  461. BUG_ON(parent == mnt);
  462. list_add_tail(&head, &mnt->mnt_list);
  463. list_for_each_entry(m, &head, mnt_list)
  464. m->mnt_ns = n;
  465. list_splice(&head, n->list.prev);
  466. list_add_tail(&mnt->mnt_hash, mount_hashtable +
  467. hash(parent, mnt->mnt_mountpoint));
  468. list_add_tail(&mnt->mnt_child, &parent->mnt_mounts);
  469. touch_mnt_namespace(n);
  470. }
  471. static struct vfsmount *next_mnt(struct vfsmount *p, struct vfsmount *root)
  472. {
  473. struct list_head *next = p->mnt_mounts.next;
  474. if (next == &p->mnt_mounts) {
  475. while (1) {
  476. if (p == root)
  477. return NULL;
  478. next = p->mnt_child.next;
  479. if (next != &p->mnt_parent->mnt_mounts)
  480. break;
  481. p = p->mnt_parent;
  482. }
  483. }
  484. return list_entry(next, struct vfsmount, mnt_child);
  485. }
  486. static struct vfsmount *skip_mnt_tree(struct vfsmount *p)
  487. {
  488. struct list_head *prev = p->mnt_mounts.prev;
  489. while (prev != &p->mnt_mounts) {
  490. p = list_entry(prev, struct vfsmount, mnt_child);
  491. prev = p->mnt_mounts.prev;
  492. }
  493. return p;
  494. }
  495. static struct vfsmount *clone_mnt(struct vfsmount *old, struct dentry *root,
  496. int flag)
  497. {
  498. struct super_block *sb = old->mnt_sb;
  499. struct vfsmount *mnt = alloc_vfsmnt(old->mnt_devname);
  500. if (mnt) {
  501. if (flag & (CL_SLAVE | CL_PRIVATE))
  502. mnt->mnt_group_id = 0; /* not a peer of original */
  503. else
  504. mnt->mnt_group_id = old->mnt_group_id;
  505. if ((flag & CL_MAKE_SHARED) && !mnt->mnt_group_id) {
  506. int err = mnt_alloc_group_id(mnt);
  507. if (err)
  508. goto out_free;
  509. }
  510. mnt->mnt_flags = old->mnt_flags;
  511. atomic_inc(&sb->s_active);
  512. mnt->mnt_sb = sb;
  513. mnt->mnt_root = dget(root);
  514. mnt->mnt_mountpoint = mnt->mnt_root;
  515. mnt->mnt_parent = mnt;
  516. if (flag & CL_SLAVE) {
  517. list_add(&mnt->mnt_slave, &old->mnt_slave_list);
  518. mnt->mnt_master = old;
  519. CLEAR_MNT_SHARED(mnt);
  520. } else if (!(flag & CL_PRIVATE)) {
  521. if ((flag & CL_PROPAGATION) || IS_MNT_SHARED(old))
  522. list_add(&mnt->mnt_share, &old->mnt_share);
  523. if (IS_MNT_SLAVE(old))
  524. list_add(&mnt->mnt_slave, &old->mnt_slave);
  525. mnt->mnt_master = old->mnt_master;
  526. }
  527. if (flag & CL_MAKE_SHARED)
  528. set_mnt_shared(mnt);
  529. /* stick the duplicate mount on the same expiry list
  530. * as the original if that was on one */
  531. if (flag & CL_EXPIRE) {
  532. if (!list_empty(&old->mnt_expire))
  533. list_add(&mnt->mnt_expire, &old->mnt_expire);
  534. }
  535. }
  536. return mnt;
  537. out_free:
  538. free_vfsmnt(mnt);
  539. return NULL;
  540. }
  541. static inline void __mntput(struct vfsmount *mnt)
  542. {
  543. int cpu;
  544. struct super_block *sb = mnt->mnt_sb;
  545. /*
  546. * We don't have to hold all of the locks at the
  547. * same time here because we know that we're the
  548. * last reference to mnt and that no new writers
  549. * can come in.
  550. */
  551. for_each_possible_cpu(cpu) {
  552. struct mnt_writer *cpu_writer = &per_cpu(mnt_writers, cpu);
  553. spin_lock(&cpu_writer->lock);
  554. if (cpu_writer->mnt != mnt) {
  555. spin_unlock(&cpu_writer->lock);
  556. continue;
  557. }
  558. atomic_add(cpu_writer->count, &mnt->__mnt_writers);
  559. cpu_writer->count = 0;
  560. /*
  561. * Might as well do this so that no one
  562. * ever sees the pointer and expects
  563. * it to be valid.
  564. */
  565. cpu_writer->mnt = NULL;
  566. spin_unlock(&cpu_writer->lock);
  567. }
  568. /*
  569. * This probably indicates that somebody messed
  570. * up a mnt_want/drop_write() pair. If this
  571. * happens, the filesystem was probably unable
  572. * to make r/w->r/o transitions.
  573. */
  574. WARN_ON(atomic_read(&mnt->__mnt_writers));
  575. dput(mnt->mnt_root);
  576. free_vfsmnt(mnt);
  577. deactivate_super(sb);
  578. }
  579. void mntput_no_expire(struct vfsmount *mnt)
  580. {
  581. repeat:
  582. if (atomic_dec_and_lock(&mnt->mnt_count, &vfsmount_lock)) {
  583. if (likely(!mnt->mnt_pinned)) {
  584. spin_unlock(&vfsmount_lock);
  585. __mntput(mnt);
  586. return;
  587. }
  588. atomic_add(mnt->mnt_pinned + 1, &mnt->mnt_count);
  589. mnt->mnt_pinned = 0;
  590. spin_unlock(&vfsmount_lock);
  591. acct_auto_close_mnt(mnt);
  592. security_sb_umount_close(mnt);
  593. goto repeat;
  594. }
  595. }
  596. EXPORT_SYMBOL(mntput_no_expire);
  597. void mnt_pin(struct vfsmount *mnt)
  598. {
  599. spin_lock(&vfsmount_lock);
  600. mnt->mnt_pinned++;
  601. spin_unlock(&vfsmount_lock);
  602. }
  603. EXPORT_SYMBOL(mnt_pin);
  604. void mnt_unpin(struct vfsmount *mnt)
  605. {
  606. spin_lock(&vfsmount_lock);
  607. if (mnt->mnt_pinned) {
  608. atomic_inc(&mnt->mnt_count);
  609. mnt->mnt_pinned--;
  610. }
  611. spin_unlock(&vfsmount_lock);
  612. }
  613. EXPORT_SYMBOL(mnt_unpin);
  614. static inline void mangle(struct seq_file *m, const char *s)
  615. {
  616. seq_escape(m, s, " \t\n\\");
  617. }
  618. /*
  619. * Simple .show_options callback for filesystems which don't want to
  620. * implement more complex mount option showing.
  621. *
  622. * See also save_mount_options().
  623. */
  624. int generic_show_options(struct seq_file *m, struct vfsmount *mnt)
  625. {
  626. const char *options = mnt->mnt_sb->s_options;
  627. if (options != NULL && options[0]) {
  628. seq_putc(m, ',');
  629. mangle(m, options);
  630. }
  631. return 0;
  632. }
  633. EXPORT_SYMBOL(generic_show_options);
  634. /*
  635. * If filesystem uses generic_show_options(), this function should be
  636. * called from the fill_super() callback.
  637. *
  638. * The .remount_fs callback usually needs to be handled in a special
  639. * way, to make sure, that previous options are not overwritten if the
  640. * remount fails.
  641. *
  642. * Also note, that if the filesystem's .remount_fs function doesn't
  643. * reset all options to their default value, but changes only newly
  644. * given options, then the displayed options will not reflect reality
  645. * any more.
  646. */
  647. void save_mount_options(struct super_block *sb, char *options)
  648. {
  649. kfree(sb->s_options);
  650. sb->s_options = kstrdup(options, GFP_KERNEL);
  651. }
  652. EXPORT_SYMBOL(save_mount_options);
  653. #ifdef CONFIG_PROC_FS
  654. /* iterator */
  655. static void *m_start(struct seq_file *m, loff_t *pos)
  656. {
  657. struct proc_mounts *p = m->private;
  658. down_read(&namespace_sem);
  659. return seq_list_start(&p->ns->list, *pos);
  660. }
  661. static void *m_next(struct seq_file *m, void *v, loff_t *pos)
  662. {
  663. struct proc_mounts *p = m->private;
  664. return seq_list_next(v, &p->ns->list, pos);
  665. }
  666. static void m_stop(struct seq_file *m, void *v)
  667. {
  668. up_read(&namespace_sem);
  669. }
  670. struct proc_fs_info {
  671. int flag;
  672. const char *str;
  673. };
  674. static int show_sb_opts(struct seq_file *m, struct super_block *sb)
  675. {
  676. static const struct proc_fs_info fs_info[] = {
  677. { MS_SYNCHRONOUS, ",sync" },
  678. { MS_DIRSYNC, ",dirsync" },
  679. { MS_MANDLOCK, ",mand" },
  680. { 0, NULL }
  681. };
  682. const struct proc_fs_info *fs_infop;
  683. for (fs_infop = fs_info; fs_infop->flag; fs_infop++) {
  684. if (sb->s_flags & fs_infop->flag)
  685. seq_puts(m, fs_infop->str);
  686. }
  687. return security_sb_show_options(m, sb);
  688. }
  689. static void show_mnt_opts(struct seq_file *m, struct vfsmount *mnt)
  690. {
  691. static const struct proc_fs_info mnt_info[] = {
  692. { MNT_NOSUID, ",nosuid" },
  693. { MNT_NODEV, ",nodev" },
  694. { MNT_NOEXEC, ",noexec" },
  695. { MNT_NOATIME, ",noatime" },
  696. { MNT_NODIRATIME, ",nodiratime" },
  697. { MNT_RELATIME, ",relatime" },
  698. { 0, NULL }
  699. };
  700. const struct proc_fs_info *fs_infop;
  701. for (fs_infop = mnt_info; fs_infop->flag; fs_infop++) {
  702. if (mnt->mnt_flags & fs_infop->flag)
  703. seq_puts(m, fs_infop->str);
  704. }
  705. }
  706. static void show_type(struct seq_file *m, struct super_block *sb)
  707. {
  708. mangle(m, sb->s_type->name);
  709. if (sb->s_subtype && sb->s_subtype[0]) {
  710. seq_putc(m, '.');
  711. mangle(m, sb->s_subtype);
  712. }
  713. }
  714. static int show_vfsmnt(struct seq_file *m, void *v)
  715. {
  716. struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
  717. int err = 0;
  718. struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
  719. mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
  720. seq_putc(m, ' ');
  721. seq_path(m, &mnt_path, " \t\n\\");
  722. seq_putc(m, ' ');
  723. show_type(m, mnt->mnt_sb);
  724. seq_puts(m, __mnt_is_readonly(mnt) ? " ro" : " rw");
  725. err = show_sb_opts(m, mnt->mnt_sb);
  726. if (err)
  727. goto out;
  728. show_mnt_opts(m, mnt);
  729. if (mnt->mnt_sb->s_op->show_options)
  730. err = mnt->mnt_sb->s_op->show_options(m, mnt);
  731. seq_puts(m, " 0 0\n");
  732. out:
  733. return err;
  734. }
  735. const struct seq_operations mounts_op = {
  736. .start = m_start,
  737. .next = m_next,
  738. .stop = m_stop,
  739. .show = show_vfsmnt
  740. };
  741. static int show_mountinfo(struct seq_file *m, void *v)
  742. {
  743. struct proc_mounts *p = m->private;
  744. struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
  745. struct super_block *sb = mnt->mnt_sb;
  746. struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
  747. struct path root = p->root;
  748. int err = 0;
  749. seq_printf(m, "%i %i %u:%u ", mnt->mnt_id, mnt->mnt_parent->mnt_id,
  750. MAJOR(sb->s_dev), MINOR(sb->s_dev));
  751. seq_dentry(m, mnt->mnt_root, " \t\n\\");
  752. seq_putc(m, ' ');
  753. seq_path_root(m, &mnt_path, &root, " \t\n\\");
  754. if (root.mnt != p->root.mnt || root.dentry != p->root.dentry) {
  755. /*
  756. * Mountpoint is outside root, discard that one. Ugly,
  757. * but less so than trying to do that in iterator in a
  758. * race-free way (due to renames).
  759. */
  760. return SEQ_SKIP;
  761. }
  762. seq_puts(m, mnt->mnt_flags & MNT_READONLY ? " ro" : " rw");
  763. show_mnt_opts(m, mnt);
  764. /* Tagged fields ("foo:X" or "bar") */
  765. if (IS_MNT_SHARED(mnt))
  766. seq_printf(m, " shared:%i", mnt->mnt_group_id);
  767. if (IS_MNT_SLAVE(mnt)) {
  768. int master = mnt->mnt_master->mnt_group_id;
  769. int dom = get_dominating_id(mnt, &p->root);
  770. seq_printf(m, " master:%i", master);
  771. if (dom && dom != master)
  772. seq_printf(m, " propagate_from:%i", dom);
  773. }
  774. if (IS_MNT_UNBINDABLE(mnt))
  775. seq_puts(m, " unbindable");
  776. /* Filesystem specific data */
  777. seq_puts(m, " - ");
  778. show_type(m, sb);
  779. seq_putc(m, ' ');
  780. mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none");
  781. seq_puts(m, sb->s_flags & MS_RDONLY ? " ro" : " rw");
  782. err = show_sb_opts(m, sb);
  783. if (err)
  784. goto out;
  785. if (sb->s_op->show_options)
  786. err = sb->s_op->show_options(m, mnt);
  787. seq_putc(m, '\n');
  788. out:
  789. return err;
  790. }
  791. const struct seq_operations mountinfo_op = {
  792. .start = m_start,
  793. .next = m_next,
  794. .stop = m_stop,
  795. .show = show_mountinfo,
  796. };
  797. static int show_vfsstat(struct seq_file *m, void *v)
  798. {
  799. struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list);
  800. struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt };
  801. int err = 0;
  802. /* device */
  803. if (mnt->mnt_devname) {
  804. seq_puts(m, "device ");
  805. mangle(m, mnt->mnt_devname);
  806. } else
  807. seq_puts(m, "no device");
  808. /* mount point */
  809. seq_puts(m, " mounted on ");
  810. seq_path(m, &mnt_path, " \t\n\\");
  811. seq_putc(m, ' ');
  812. /* file system type */
  813. seq_puts(m, "with fstype ");
  814. show_type(m, mnt->mnt_sb);
  815. /* optional statistics */
  816. if (mnt->mnt_sb->s_op->show_stats) {
  817. seq_putc(m, ' ');
  818. err = mnt->mnt_sb->s_op->show_stats(m, mnt);
  819. }
  820. seq_putc(m, '\n');
  821. return err;
  822. }
  823. const struct seq_operations mountstats_op = {
  824. .start = m_start,
  825. .next = m_next,
  826. .stop = m_stop,
  827. .show = show_vfsstat,
  828. };
  829. #endif /* CONFIG_PROC_FS */
  830. /**
  831. * may_umount_tree - check if a mount tree is busy
  832. * @mnt: root of mount tree
  833. *
  834. * This is called to check if a tree of mounts has any
  835. * open files, pwds, chroots or sub mounts that are
  836. * busy.
  837. */
  838. int may_umount_tree(struct vfsmount *mnt)
  839. {
  840. int actual_refs = 0;
  841. int minimum_refs = 0;
  842. struct vfsmount *p;
  843. spin_lock(&vfsmount_lock);
  844. for (p = mnt; p; p = next_mnt(p, mnt)) {
  845. actual_refs += atomic_read(&p->mnt_count);
  846. minimum_refs += 2;
  847. }
  848. spin_unlock(&vfsmount_lock);
  849. if (actual_refs > minimum_refs)
  850. return 0;
  851. return 1;
  852. }
  853. EXPORT_SYMBOL(may_umount_tree);
  854. /**
  855. * may_umount - check if a mount point is busy
  856. * @mnt: root of mount
  857. *
  858. * This is called to check if a mount point has any
  859. * open files, pwds, chroots or sub mounts. If the
  860. * mount has sub mounts this will return busy
  861. * regardless of whether the sub mounts are busy.
  862. *
  863. * Doesn't take quota and stuff into account. IOW, in some cases it will
  864. * give false negatives. The main reason why it's here is that we need
  865. * a non-destructive way to look for easily umountable filesystems.
  866. */
  867. int may_umount(struct vfsmount *mnt)
  868. {
  869. int ret = 1;
  870. spin_lock(&vfsmount_lock);
  871. if (propagate_mount_busy(mnt, 2))
  872. ret = 0;
  873. spin_unlock(&vfsmount_lock);
  874. return ret;
  875. }
  876. EXPORT_SYMBOL(may_umount);
  877. void release_mounts(struct list_head *head)
  878. {
  879. struct vfsmount *mnt;
  880. while (!list_empty(head)) {
  881. mnt = list_first_entry(head, struct vfsmount, mnt_hash);
  882. list_del_init(&mnt->mnt_hash);
  883. if (mnt->mnt_parent != mnt) {
  884. struct dentry *dentry;
  885. struct vfsmount *m;
  886. spin_lock(&vfsmount_lock);
  887. dentry = mnt->mnt_mountpoint;
  888. m = mnt->mnt_parent;
  889. mnt->mnt_mountpoint = mnt->mnt_root;
  890. mnt->mnt_parent = mnt;
  891. m->mnt_ghosts--;
  892. spin_unlock(&vfsmount_lock);
  893. dput(dentry);
  894. mntput(m);
  895. }
  896. mntput(mnt);
  897. }
  898. }
  899. void umount_tree(struct vfsmount *mnt, int propagate, struct list_head *kill)
  900. {
  901. struct vfsmount *p;
  902. for (p = mnt; p; p = next_mnt(p, mnt))
  903. list_move(&p->mnt_hash, kill);
  904. if (propagate)
  905. propagate_umount(kill);
  906. list_for_each_entry(p, kill, mnt_hash) {
  907. list_del_init(&p->mnt_expire);
  908. list_del_init(&p->mnt_list);
  909. __touch_mnt_namespace(p->mnt_ns);
  910. p->mnt_ns = NULL;
  911. list_del_init(&p->mnt_child);
  912. if (p->mnt_parent != p) {
  913. p->mnt_parent->mnt_ghosts++;
  914. p->mnt_mountpoint->d_mounted--;
  915. }
  916. change_mnt_propagation(p, MS_PRIVATE);
  917. }
  918. }
  919. static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts);
  920. static int do_umount(struct vfsmount *mnt, int flags)
  921. {
  922. struct super_block *sb = mnt->mnt_sb;
  923. int retval;
  924. LIST_HEAD(umount_list);
  925. retval = security_sb_umount(mnt, flags);
  926. if (retval)
  927. return retval;
  928. /*
  929. * Allow userspace to request a mountpoint be expired rather than
  930. * unmounting unconditionally. Unmount only happens if:
  931. * (1) the mark is already set (the mark is cleared by mntput())
  932. * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount]
  933. */
  934. if (flags & MNT_EXPIRE) {
  935. if (mnt == current->fs->root.mnt ||
  936. flags & (MNT_FORCE | MNT_DETACH))
  937. return -EINVAL;
  938. if (atomic_read(&mnt->mnt_count) != 2)
  939. return -EBUSY;
  940. if (!xchg(&mnt->mnt_expiry_mark, 1))
  941. return -EAGAIN;
  942. }
  943. /*
  944. * If we may have to abort operations to get out of this
  945. * mount, and they will themselves hold resources we must
  946. * allow the fs to do things. In the Unix tradition of
  947. * 'Gee thats tricky lets do it in userspace' the umount_begin
  948. * might fail to complete on the first run through as other tasks
  949. * must return, and the like. Thats for the mount program to worry
  950. * about for the moment.
  951. */
  952. if (flags & MNT_FORCE && sb->s_op->umount_begin) {
  953. lock_kernel();
  954. sb->s_op->umount_begin(sb);
  955. unlock_kernel();
  956. }
  957. /*
  958. * No sense to grab the lock for this test, but test itself looks
  959. * somewhat bogus. Suggestions for better replacement?
  960. * Ho-hum... In principle, we might treat that as umount + switch
  961. * to rootfs. GC would eventually take care of the old vfsmount.
  962. * Actually it makes sense, especially if rootfs would contain a
  963. * /reboot - static binary that would close all descriptors and
  964. * call reboot(9). Then init(8) could umount root and exec /reboot.
  965. */
  966. if (mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) {
  967. /*
  968. * Special case for "unmounting" root ...
  969. * we just try to remount it readonly.
  970. */
  971. down_write(&sb->s_umount);
  972. if (!(sb->s_flags & MS_RDONLY)) {
  973. lock_kernel();
  974. retval = do_remount_sb(sb, MS_RDONLY, NULL, 0);
  975. unlock_kernel();
  976. }
  977. up_write(&sb->s_umount);
  978. return retval;
  979. }
  980. down_write(&namespace_sem);
  981. spin_lock(&vfsmount_lock);
  982. event++;
  983. if (!(flags & MNT_DETACH))
  984. shrink_submounts(mnt, &umount_list);
  985. retval = -EBUSY;
  986. if (flags & MNT_DETACH || !propagate_mount_busy(mnt, 2)) {
  987. if (!list_empty(&mnt->mnt_list))
  988. umount_tree(mnt, 1, &umount_list);
  989. retval = 0;
  990. }
  991. spin_unlock(&vfsmount_lock);
  992. if (retval)
  993. security_sb_umount_busy(mnt);
  994. up_write(&namespace_sem);
  995. release_mounts(&umount_list);
  996. return retval;
  997. }
  998. /*
  999. * Now umount can handle mount points as well as block devices.
  1000. * This is important for filesystems which use unnamed block devices.
  1001. *
  1002. * We now support a flag for forced unmount like the other 'big iron'
  1003. * unixes. Our API is identical to OSF/1 to avoid making a mess of AMD
  1004. */
  1005. SYSCALL_DEFINE2(umount, char __user *, name, int, flags)
  1006. {
  1007. struct path path;
  1008. int retval;
  1009. retval = user_path(name, &path);
  1010. if (retval)
  1011. goto out;
  1012. retval = -EINVAL;
  1013. if (path.dentry != path.mnt->mnt_root)
  1014. goto dput_and_out;
  1015. if (!check_mnt(path.mnt))
  1016. goto dput_and_out;
  1017. retval = -EPERM;
  1018. if (!capable(CAP_SYS_ADMIN))
  1019. goto dput_and_out;
  1020. retval = do_umount(path.mnt, flags);
  1021. dput_and_out:
  1022. /* we mustn't call path_put() as that would clear mnt_expiry_mark */
  1023. dput(path.dentry);
  1024. mntput_no_expire(path.mnt);
  1025. out:
  1026. return retval;
  1027. }
  1028. #ifdef __ARCH_WANT_SYS_OLDUMOUNT
  1029. /*
  1030. * The 2.0 compatible umount. No flags.
  1031. */
  1032. SYSCALL_DEFINE1(oldumount, char __user *, name)
  1033. {
  1034. return sys_umount(name, 0);
  1035. }
  1036. #endif
  1037. static int mount_is_safe(struct path *path)
  1038. {
  1039. if (capable(CAP_SYS_ADMIN))
  1040. return 0;
  1041. return -EPERM;
  1042. #ifdef notyet
  1043. if (S_ISLNK(path->dentry->d_inode->i_mode))
  1044. return -EPERM;
  1045. if (path->dentry->d_inode->i_mode & S_ISVTX) {
  1046. if (current_uid() != path->dentry->d_inode->i_uid)
  1047. return -EPERM;
  1048. }
  1049. if (inode_permission(path->dentry->d_inode, MAY_WRITE))
  1050. return -EPERM;
  1051. return 0;
  1052. #endif
  1053. }
  1054. struct vfsmount *copy_tree(struct vfsmount *mnt, struct dentry *dentry,
  1055. int flag)
  1056. {
  1057. struct vfsmount *res, *p, *q, *r, *s;
  1058. struct path path;
  1059. if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(mnt))
  1060. return NULL;
  1061. res = q = clone_mnt(mnt, dentry, flag);
  1062. if (!q)
  1063. goto Enomem;
  1064. q->mnt_mountpoint = mnt->mnt_mountpoint;
  1065. p = mnt;
  1066. list_for_each_entry(r, &mnt->mnt_mounts, mnt_child) {
  1067. if (!is_subdir(r->mnt_mountpoint, dentry))
  1068. continue;
  1069. for (s = r; s; s = next_mnt(s, r)) {
  1070. if (!(flag & CL_COPY_ALL) && IS_MNT_UNBINDABLE(s)) {
  1071. s = skip_mnt_tree(s);
  1072. continue;
  1073. }
  1074. while (p != s->mnt_parent) {
  1075. p = p->mnt_parent;
  1076. q = q->mnt_parent;
  1077. }
  1078. p = s;
  1079. path.mnt = q;
  1080. path.dentry = p->mnt_mountpoint;
  1081. q = clone_mnt(p, p->mnt_root, flag);
  1082. if (!q)
  1083. goto Enomem;
  1084. spin_lock(&vfsmount_lock);
  1085. list_add_tail(&q->mnt_list, &res->mnt_list);
  1086. attach_mnt(q, &path);
  1087. spin_unlock(&vfsmount_lock);
  1088. }
  1089. }
  1090. return res;
  1091. Enomem:
  1092. if (res) {
  1093. LIST_HEAD(umount_list);
  1094. spin_lock(&vfsmount_lock);
  1095. umount_tree(res, 0, &umount_list);
  1096. spin_unlock(&vfsmount_lock);
  1097. release_mounts(&umount_list);
  1098. }
  1099. return NULL;
  1100. }
  1101. struct vfsmount *collect_mounts(struct vfsmount *mnt, struct dentry *dentry)
  1102. {
  1103. struct vfsmount *tree;
  1104. down_write(&namespace_sem);
  1105. tree = copy_tree(mnt, dentry, CL_COPY_ALL | CL_PRIVATE);
  1106. up_write(&namespace_sem);
  1107. return tree;
  1108. }
  1109. void drop_collected_mounts(struct vfsmount *mnt)
  1110. {
  1111. LIST_HEAD(umount_list);
  1112. down_write(&namespace_sem);
  1113. spin_lock(&vfsmount_lock);
  1114. umount_tree(mnt, 0, &umount_list);
  1115. spin_unlock(&vfsmount_lock);
  1116. up_write(&namespace_sem);
  1117. release_mounts(&umount_list);
  1118. }
  1119. static void cleanup_group_ids(struct vfsmount *mnt, struct vfsmount *end)
  1120. {
  1121. struct vfsmount *p;
  1122. for (p = mnt; p != end; p = next_mnt(p, mnt)) {
  1123. if (p->mnt_group_id && !IS_MNT_SHARED(p))
  1124. mnt_release_group_id(p);
  1125. }
  1126. }
  1127. static int invent_group_ids(struct vfsmount *mnt, bool recurse)
  1128. {
  1129. struct vfsmount *p;
  1130. for (p = mnt; p; p = recurse ? next_mnt(p, mnt) : NULL) {
  1131. if (!p->mnt_group_id && !IS_MNT_SHARED(p)) {
  1132. int err = mnt_alloc_group_id(p);
  1133. if (err) {
  1134. cleanup_group_ids(mnt, p);
  1135. return err;
  1136. }
  1137. }
  1138. }
  1139. return 0;
  1140. }
  1141. /*
  1142. * @source_mnt : mount tree to be attached
  1143. * @nd : place the mount tree @source_mnt is attached
  1144. * @parent_nd : if non-null, detach the source_mnt from its parent and
  1145. * store the parent mount and mountpoint dentry.
  1146. * (done when source_mnt is moved)
  1147. *
  1148. * NOTE: in the table below explains the semantics when a source mount
  1149. * of a given type is attached to a destination mount of a given type.
  1150. * ---------------------------------------------------------------------------
  1151. * | BIND MOUNT OPERATION |
  1152. * |**************************************************************************
  1153. * | source-->| shared | private | slave | unbindable |
  1154. * | dest | | | | |
  1155. * | | | | | | |
  1156. * | v | | | | |
  1157. * |**************************************************************************
  1158. * | shared | shared (++) | shared (+) | shared(+++)| invalid |
  1159. * | | | | | |
  1160. * |non-shared| shared (+) | private | slave (*) | invalid |
  1161. * ***************************************************************************
  1162. * A bind operation clones the source mount and mounts the clone on the
  1163. * destination mount.
  1164. *
  1165. * (++) the cloned mount is propagated to all the mounts in the propagation
  1166. * tree of the destination mount and the cloned mount is added to
  1167. * the peer group of the source mount.
  1168. * (+) the cloned mount is created under the destination mount and is marked
  1169. * as shared. The cloned mount is added to the peer group of the source
  1170. * mount.
  1171. * (+++) the mount is propagated to all the mounts in the propagation tree
  1172. * of the destination mount and the cloned mount is made slave
  1173. * of the same master as that of the source mount. The cloned mount
  1174. * is marked as 'shared and slave'.
  1175. * (*) the cloned mount is made a slave of the same master as that of the
  1176. * source mount.
  1177. *
  1178. * ---------------------------------------------------------------------------
  1179. * | MOVE MOUNT OPERATION |
  1180. * |**************************************************************************
  1181. * | source-->| shared | private | slave | unbindable |
  1182. * | dest | | | | |
  1183. * | | | | | | |
  1184. * | v | | | | |
  1185. * |**************************************************************************
  1186. * | shared | shared (+) | shared (+) | shared(+++) | invalid |
  1187. * | | | | | |
  1188. * |non-shared| shared (+*) | private | slave (*) | unbindable |
  1189. * ***************************************************************************
  1190. *
  1191. * (+) the mount is moved to the destination. And is then propagated to
  1192. * all the mounts in the propagation tree of the destination mount.
  1193. * (+*) the mount is moved to the destination.
  1194. * (+++) the mount is moved to the destination and is then propagated to
  1195. * all the mounts belonging to the destination mount's propagation tree.
  1196. * the mount is marked as 'shared and slave'.
  1197. * (*) the mount continues to be a slave at the new location.
  1198. *
  1199. * if the source mount is a tree, the operations explained above is
  1200. * applied to each mount in the tree.
  1201. * Must be called without spinlocks held, since this function can sleep
  1202. * in allocations.
  1203. */
  1204. static int attach_recursive_mnt(struct vfsmount *source_mnt,
  1205. struct path *path, struct path *parent_path)
  1206. {
  1207. LIST_HEAD(tree_list);
  1208. struct vfsmount *dest_mnt = path->mnt;
  1209. struct dentry *dest_dentry = path->dentry;
  1210. struct vfsmount *child, *p;
  1211. int err;
  1212. if (IS_MNT_SHARED(dest_mnt)) {
  1213. err = invent_group_ids(source_mnt, true);
  1214. if (err)
  1215. goto out;
  1216. }
  1217. err = propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list);
  1218. if (err)
  1219. goto out_cleanup_ids;
  1220. if (IS_MNT_SHARED(dest_mnt)) {
  1221. for (p = source_mnt; p; p = next_mnt(p, source_mnt))
  1222. set_mnt_shared(p);
  1223. }
  1224. spin_lock(&vfsmount_lock);
  1225. if (parent_path) {
  1226. detach_mnt(source_mnt, parent_path);
  1227. attach_mnt(source_mnt, path);
  1228. touch_mnt_namespace(current->nsproxy->mnt_ns);
  1229. } else {
  1230. mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt);
  1231. commit_tree(source_mnt);
  1232. }
  1233. list_for_each_entry_safe(child, p, &tree_list, mnt_hash) {
  1234. list_del_init(&child->mnt_hash);
  1235. commit_tree(child);
  1236. }
  1237. spin_unlock(&vfsmount_lock);
  1238. return 0;
  1239. out_cleanup_ids:
  1240. if (IS_MNT_SHARED(dest_mnt))
  1241. cleanup_group_ids(source_mnt, NULL);
  1242. out:
  1243. return err;
  1244. }
  1245. static int graft_tree(struct vfsmount *mnt, struct path *path)
  1246. {
  1247. int err;
  1248. if (mnt->mnt_sb->s_flags & MS_NOUSER)
  1249. return -EINVAL;
  1250. if (S_ISDIR(path->dentry->d_inode->i_mode) !=
  1251. S_ISDIR(mnt->mnt_root->d_inode->i_mode))
  1252. return -ENOTDIR;
  1253. err = -ENOENT;
  1254. mutex_lock(&path->dentry->d_inode->i_mutex);
  1255. if (IS_DEADDIR(path->dentry->d_inode))
  1256. goto out_unlock;
  1257. err = security_sb_check_sb(mnt, path);
  1258. if (err)
  1259. goto out_unlock;
  1260. err = -ENOENT;
  1261. if (IS_ROOT(path->dentry) || !d_unhashed(path->dentry))
  1262. err = attach_recursive_mnt(mnt, path, NULL);
  1263. out_unlock:
  1264. mutex_unlock(&path->dentry->d_inode->i_mutex);
  1265. if (!err)
  1266. security_sb_post_addmount(mnt, path);
  1267. return err;
  1268. }
  1269. /*
  1270. * recursively change the type of the mountpoint.
  1271. */
  1272. static int do_change_type(struct path *path, int flag)
  1273. {
  1274. struct vfsmount *m, *mnt = path->mnt;
  1275. int recurse = flag & MS_REC;
  1276. int type = flag & ~MS_REC;
  1277. int err = 0;
  1278. if (!capable(CAP_SYS_ADMIN))
  1279. return -EPERM;
  1280. if (path->dentry != path->mnt->mnt_root)
  1281. return -EINVAL;
  1282. down_write(&namespace_sem);
  1283. if (type == MS_SHARED) {
  1284. err = invent_group_ids(mnt, recurse);
  1285. if (err)
  1286. goto out_unlock;
  1287. }
  1288. spin_lock(&vfsmount_lock);
  1289. for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL))
  1290. change_mnt_propagation(m, type);
  1291. spin_unlock(&vfsmount_lock);
  1292. out_unlock:
  1293. up_write(&namespace_sem);
  1294. return err;
  1295. }
  1296. /*
  1297. * do loopback mount.
  1298. */
  1299. static int do_loopback(struct path *path, char *old_name,
  1300. int recurse)
  1301. {
  1302. struct path old_path;
  1303. struct vfsmount *mnt = NULL;
  1304. int err = mount_is_safe(path);
  1305. if (err)
  1306. return err;
  1307. if (!old_name || !*old_name)
  1308. return -EINVAL;
  1309. err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
  1310. if (err)
  1311. return err;
  1312. down_write(&namespace_sem);
  1313. err = -EINVAL;
  1314. if (IS_MNT_UNBINDABLE(old_path.mnt))
  1315. goto out;
  1316. if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt))
  1317. goto out;
  1318. err = -ENOMEM;
  1319. if (recurse)
  1320. mnt = copy_tree(old_path.mnt, old_path.dentry, 0);
  1321. else
  1322. mnt = clone_mnt(old_path.mnt, old_path.dentry, 0);
  1323. if (!mnt)
  1324. goto out;
  1325. err = graft_tree(mnt, path);
  1326. if (err) {
  1327. LIST_HEAD(umount_list);
  1328. spin_lock(&vfsmount_lock);
  1329. umount_tree(mnt, 0, &umount_list);
  1330. spin_unlock(&vfsmount_lock);
  1331. release_mounts(&umount_list);
  1332. }
  1333. out:
  1334. up_write(&namespace_sem);
  1335. path_put(&old_path);
  1336. return err;
  1337. }
  1338. static int change_mount_flags(struct vfsmount *mnt, int ms_flags)
  1339. {
  1340. int error = 0;
  1341. int readonly_request = 0;
  1342. if (ms_flags & MS_RDONLY)
  1343. readonly_request = 1;
  1344. if (readonly_request == __mnt_is_readonly(mnt))
  1345. return 0;
  1346. if (readonly_request)
  1347. error = mnt_make_readonly(mnt);
  1348. else
  1349. __mnt_unmake_readonly(mnt);
  1350. return error;
  1351. }
  1352. /*
  1353. * change filesystem flags. dir should be a physical root of filesystem.
  1354. * If you've mounted a non-root directory somewhere and want to do remount
  1355. * on it - tough luck.
  1356. */
  1357. static int do_remount(struct path *path, int flags, int mnt_flags,
  1358. void *data)
  1359. {
  1360. int err;
  1361. struct super_block *sb = path->mnt->mnt_sb;
  1362. if (!capable(CAP_SYS_ADMIN))
  1363. return -EPERM;
  1364. if (!check_mnt(path->mnt))
  1365. return -EINVAL;
  1366. if (path->dentry != path->mnt->mnt_root)
  1367. return -EINVAL;
  1368. down_write(&sb->s_umount);
  1369. if (flags & MS_BIND)
  1370. err = change_mount_flags(path->mnt, flags);
  1371. else
  1372. err = do_remount_sb(sb, flags, data, 0);
  1373. if (!err)
  1374. path->mnt->mnt_flags = mnt_flags;
  1375. up_write(&sb->s_umount);
  1376. if (!err) {
  1377. security_sb_post_remount(path->mnt, flags, data);
  1378. spin_lock(&vfsmount_lock);
  1379. touch_mnt_namespace(path->mnt->mnt_ns);
  1380. spin_unlock(&vfsmount_lock);
  1381. }
  1382. return err;
  1383. }
  1384. static inline int tree_contains_unbindable(struct vfsmount *mnt)
  1385. {
  1386. struct vfsmount *p;
  1387. for (p = mnt; p; p = next_mnt(p, mnt)) {
  1388. if (IS_MNT_UNBINDABLE(p))
  1389. return 1;
  1390. }
  1391. return 0;
  1392. }
  1393. static int do_move_mount(struct path *path, char *old_name)
  1394. {
  1395. struct path old_path, parent_path;
  1396. struct vfsmount *p;
  1397. int err = 0;
  1398. if (!capable(CAP_SYS_ADMIN))
  1399. return -EPERM;
  1400. if (!old_name || !*old_name)
  1401. return -EINVAL;
  1402. err = kern_path(old_name, LOOKUP_FOLLOW, &old_path);
  1403. if (err)
  1404. return err;
  1405. down_write(&namespace_sem);
  1406. while (d_mountpoint(path->dentry) &&
  1407. follow_down(&path->mnt, &path->dentry))
  1408. ;
  1409. err = -EINVAL;
  1410. if (!check_mnt(path->mnt) || !check_mnt(old_path.mnt))
  1411. goto out;
  1412. err = -ENOENT;
  1413. mutex_lock(&path->dentry->d_inode->i_mutex);
  1414. if (IS_DEADDIR(path->dentry->d_inode))
  1415. goto out1;
  1416. if (!IS_ROOT(path->dentry) && d_unhashed(path->dentry))
  1417. goto out1;
  1418. err = -EINVAL;
  1419. if (old_path.dentry != old_path.mnt->mnt_root)
  1420. goto out1;
  1421. if (old_path.mnt == old_path.mnt->mnt_parent)
  1422. goto out1;
  1423. if (S_ISDIR(path->dentry->d_inode->i_mode) !=
  1424. S_ISDIR(old_path.dentry->d_inode->i_mode))
  1425. goto out1;
  1426. /*
  1427. * Don't move a mount residing in a shared parent.
  1428. */
  1429. if (old_path.mnt->mnt_parent &&
  1430. IS_MNT_SHARED(old_path.mnt->mnt_parent))
  1431. goto out1;
  1432. /*
  1433. * Don't move a mount tree containing unbindable mounts to a destination
  1434. * mount which is shared.
  1435. */
  1436. if (IS_MNT_SHARED(path->mnt) &&
  1437. tree_contains_unbindable(old_path.mnt))
  1438. goto out1;
  1439. err = -ELOOP;
  1440. for (p = path->mnt; p->mnt_parent != p; p = p->mnt_parent)
  1441. if (p == old_path.mnt)
  1442. goto out1;
  1443. err = attach_recursive_mnt(old_path.mnt, path, &parent_path);
  1444. if (err)
  1445. goto out1;
  1446. /* if the mount is moved, it should no longer be expire
  1447. * automatically */
  1448. list_del_init(&old_path.mnt->mnt_expire);
  1449. out1:
  1450. mutex_unlock(&path->dentry->d_inode->i_mutex);
  1451. out:
  1452. up_write(&namespace_sem);
  1453. if (!err)
  1454. path_put(&parent_path);
  1455. path_put(&old_path);
  1456. return err;
  1457. }
  1458. /*
  1459. * create a new mount for userspace and request it to be added into the
  1460. * namespace's tree
  1461. */
  1462. static int do_new_mount(struct path *path, char *type, int flags,
  1463. int mnt_flags, char *name, void *data)
  1464. {
  1465. struct vfsmount *mnt;
  1466. if (!type || !memchr(type, 0, PAGE_SIZE))
  1467. return -EINVAL;
  1468. /* we need capabilities... */
  1469. if (!capable(CAP_SYS_ADMIN))
  1470. return -EPERM;
  1471. mnt = do_kern_mount(type, flags, name, data);
  1472. if (IS_ERR(mnt))
  1473. return PTR_ERR(mnt);
  1474. return do_add_mount(mnt, path, mnt_flags, NULL);
  1475. }
  1476. /*
  1477. * add a mount into a namespace's mount tree
  1478. * - provide the option of adding the new mount to an expiration list
  1479. */
  1480. int do_add_mount(struct vfsmount *newmnt, struct path *path,
  1481. int mnt_flags, struct list_head *fslist)
  1482. {
  1483. int err;
  1484. down_write(&namespace_sem);
  1485. /* Something was mounted here while we slept */
  1486. while (d_mountpoint(path->dentry) &&
  1487. follow_down(&path->mnt, &path->dentry))
  1488. ;
  1489. err = -EINVAL;
  1490. if (!check_mnt(path->mnt))
  1491. goto unlock;
  1492. /* Refuse the same filesystem on the same mount point */
  1493. err = -EBUSY;
  1494. if (path->mnt->mnt_sb == newmnt->mnt_sb &&
  1495. path->mnt->mnt_root == path->dentry)
  1496. goto unlock;
  1497. err = -EINVAL;
  1498. if (S_ISLNK(newmnt->mnt_root->d_inode->i_mode))
  1499. goto unlock;
  1500. newmnt->mnt_flags = mnt_flags;
  1501. if ((err = graft_tree(newmnt, path)))
  1502. goto unlock;
  1503. if (fslist) /* add to the specified expiration list */
  1504. list_add_tail(&newmnt->mnt_expire, fslist);
  1505. up_write(&namespace_sem);
  1506. return 0;
  1507. unlock:
  1508. up_write(&namespace_sem);
  1509. mntput(newmnt);
  1510. return err;
  1511. }
  1512. EXPORT_SYMBOL_GPL(do_add_mount);
  1513. /*
  1514. * process a list of expirable mountpoints with the intent of discarding any
  1515. * mountpoints that aren't in use and haven't been touched since last we came
  1516. * here
  1517. */
  1518. void mark_mounts_for_expiry(struct list_head *mounts)
  1519. {
  1520. struct vfsmount *mnt, *next;
  1521. LIST_HEAD(graveyard);
  1522. LIST_HEAD(umounts);
  1523. if (list_empty(mounts))
  1524. return;
  1525. down_write(&namespace_sem);
  1526. spin_lock(&vfsmount_lock);
  1527. /* extract from the expiration list every vfsmount that matches the
  1528. * following criteria:
  1529. * - only referenced by its parent vfsmount
  1530. * - still marked for expiry (marked on the last call here; marks are
  1531. * cleared by mntput())
  1532. */
  1533. list_for_each_entry_safe(mnt, next, mounts, mnt_expire) {
  1534. if (!xchg(&mnt->mnt_expiry_mark, 1) ||
  1535. propagate_mount_busy(mnt, 1))
  1536. continue;
  1537. list_move(&mnt->mnt_expire, &graveyard);
  1538. }
  1539. while (!list_empty(&graveyard)) {
  1540. mnt = list_first_entry(&graveyard, struct vfsmount, mnt_expire);
  1541. touch_mnt_namespace(mnt->mnt_ns);
  1542. umount_tree(mnt, 1, &umounts);
  1543. }
  1544. spin_unlock(&vfsmount_lock);
  1545. up_write(&namespace_sem);
  1546. release_mounts(&umounts);
  1547. }
  1548. EXPORT_SYMBOL_GPL(mark_mounts_for_expiry);
  1549. /*
  1550. * Ripoff of 'select_parent()'
  1551. *
  1552. * search the list of submounts for a given mountpoint, and move any
  1553. * shrinkable submounts to the 'graveyard' list.
  1554. */
  1555. static int select_submounts(struct vfsmount *parent, struct list_head *graveyard)
  1556. {
  1557. struct vfsmount *this_parent = parent;
  1558. struct list_head *next;
  1559. int found = 0;
  1560. repeat:
  1561. next = this_parent->mnt_mounts.next;
  1562. resume:
  1563. while (next != &this_parent->mnt_mounts) {
  1564. struct list_head *tmp = next;
  1565. struct vfsmount *mnt = list_entry(tmp, struct vfsmount, mnt_child);
  1566. next = tmp->next;
  1567. if (!(mnt->mnt_flags & MNT_SHRINKABLE))
  1568. continue;
  1569. /*
  1570. * Descend a level if the d_mounts list is non-empty.
  1571. */
  1572. if (!list_empty(&mnt->mnt_mounts)) {
  1573. this_parent = mnt;
  1574. goto repeat;
  1575. }
  1576. if (!propagate_mount_busy(mnt, 1)) {
  1577. list_move_tail(&mnt->mnt_expire, graveyard);
  1578. found++;
  1579. }
  1580. }
  1581. /*
  1582. * All done at this level ... ascend and resume the search
  1583. */
  1584. if (this_parent != parent) {
  1585. next = this_parent->mnt_child.next;
  1586. this_parent = this_parent->mnt_parent;
  1587. goto resume;
  1588. }
  1589. return found;
  1590. }
  1591. /*
  1592. * process a list of expirable mountpoints with the intent of discarding any
  1593. * submounts of a specific parent mountpoint
  1594. */
  1595. static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts)
  1596. {
  1597. LIST_HEAD(graveyard);
  1598. struct vfsmount *m;
  1599. /* extract submounts of 'mountpoint' from the expiration list */
  1600. while (select_submounts(mnt, &graveyard)) {
  1601. while (!list_empty(&graveyard)) {
  1602. m = list_first_entry(&graveyard, struct vfsmount,
  1603. mnt_expire);
  1604. touch_mnt_namespace(m->mnt_ns);
  1605. umount_tree(m, 1, umounts);
  1606. }
  1607. }
  1608. }
  1609. /*
  1610. * Some copy_from_user() implementations do not return the exact number of
  1611. * bytes remaining to copy on a fault. But copy_mount_options() requires that.
  1612. * Note that this function differs from copy_from_user() in that it will oops
  1613. * on bad values of `to', rather than returning a short copy.
  1614. */
  1615. static long exact_copy_from_user(void *to, const void __user * from,
  1616. unsigned long n)
  1617. {
  1618. char *t = to;
  1619. const char __user *f = from;
  1620. char c;
  1621. if (!access_ok(VERIFY_READ, from, n))
  1622. return n;
  1623. while (n) {
  1624. if (__get_user(c, f)) {
  1625. memset(t, 0, n);
  1626. break;
  1627. }
  1628. *t++ = c;
  1629. f++;
  1630. n--;
  1631. }
  1632. return n;
  1633. }
  1634. int copy_mount_options(const void __user * data, unsigned long *where)
  1635. {
  1636. int i;
  1637. unsigned long page;
  1638. unsigned long size;
  1639. *where = 0;
  1640. if (!data)
  1641. return 0;
  1642. if (!(page = __get_free_page(GFP_KERNEL)))
  1643. return -ENOMEM;
  1644. /* We only care that *some* data at the address the user
  1645. * gave us is valid. Just in case, we'll zero
  1646. * the remainder of the page.
  1647. */
  1648. /* copy_from_user cannot cross TASK_SIZE ! */
  1649. size = TASK_SIZE - (unsigned long)data;
  1650. if (size > PAGE_SIZE)
  1651. size = PAGE_SIZE;
  1652. i = size - exact_copy_from_user((void *)page, data, size);
  1653. if (!i) {
  1654. free_page(page);
  1655. return -EFAULT;
  1656. }
  1657. if (i != PAGE_SIZE)
  1658. memset((char *)page + i, 0, PAGE_SIZE - i);
  1659. *where = page;
  1660. return 0;
  1661. }
  1662. /*
  1663. * Flags is a 32-bit value that allows up to 31 non-fs dependent flags to
  1664. * be given to the mount() call (ie: read-only, no-dev, no-suid etc).
  1665. *
  1666. * data is a (void *) that can point to any structure up to
  1667. * PAGE_SIZE-1 bytes, which can contain arbitrary fs-dependent
  1668. * information (or be NULL).
  1669. *
  1670. * Pre-0.97 versions of mount() didn't have a flags word.
  1671. * When the flags word was introduced its top half was required
  1672. * to have the magic value 0xC0ED, and this remained so until 2.4.0-test9.
  1673. * Therefore, if this magic number is present, it carries no information
  1674. * and must be discarded.
  1675. */
  1676. long do_mount(char *dev_name, char *dir_name, char *type_page,
  1677. unsigned long flags, void *data_page)
  1678. {
  1679. struct path path;
  1680. int retval = 0;
  1681. int mnt_flags = 0;
  1682. /* Discard magic */
  1683. if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
  1684. flags &= ~MS_MGC_MSK;
  1685. /* Basic sanity checks */
  1686. if (!dir_name || !*dir_name || !memchr(dir_name, 0, PAGE_SIZE))
  1687. return -EINVAL;
  1688. if (dev_name && !memchr(dev_name, 0, PAGE_SIZE))
  1689. return -EINVAL;
  1690. if (data_page)
  1691. ((char *)data_page)[PAGE_SIZE - 1] = 0;
  1692. /* Separate the per-mountpoint flags */
  1693. if (flags & MS_NOSUID)
  1694. mnt_flags |= MNT_NOSUID;
  1695. if (flags & MS_NODEV)
  1696. mnt_flags |= MNT_NODEV;
  1697. if (flags & MS_NOEXEC)
  1698. mnt_flags |= MNT_NOEXEC;
  1699. if (flags & MS_NOATIME)
  1700. mnt_flags |= MNT_NOATIME;
  1701. if (flags & MS_NODIRATIME)
  1702. mnt_flags |= MNT_NODIRATIME;
  1703. if (flags & MS_RELATIME)
  1704. mnt_flags |= MNT_RELATIME;
  1705. if (flags & MS_RDONLY)
  1706. mnt_flags |= MNT_READONLY;
  1707. flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE |
  1708. MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT);
  1709. /* ... and get the mountpoint */
  1710. retval = kern_path(dir_name, LOOKUP_FOLLOW, &path);
  1711. if (retval)
  1712. return retval;
  1713. retval = security_sb_mount(dev_name, &path,
  1714. type_page, flags, data_page);
  1715. if (retval)
  1716. goto dput_out;
  1717. if (flags & MS_REMOUNT)
  1718. retval = do_remount(&path, flags & ~MS_REMOUNT, mnt_flags,
  1719. data_page);
  1720. else if (flags & MS_BIND)
  1721. retval = do_loopback(&path, dev_name, flags & MS_REC);
  1722. else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
  1723. retval = do_change_type(&path, flags);
  1724. else if (flags & MS_MOVE)
  1725. retval = do_move_mount(&path, dev_name);
  1726. else
  1727. retval = do_new_mount(&path, type_page, flags, mnt_flags,
  1728. dev_name, data_page);
  1729. dput_out:
  1730. path_put(&path);
  1731. return retval;
  1732. }
  1733. /*
  1734. * Allocate a new namespace structure and populate it with contents
  1735. * copied from the namespace of the passed in task structure.
  1736. */
  1737. static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
  1738. struct fs_struct *fs)
  1739. {
  1740. struct mnt_namespace *new_ns;
  1741. struct vfsmount *rootmnt = NULL, *pwdmnt = NULL;
  1742. struct vfsmount *p, *q;
  1743. new_ns = kmalloc(sizeof(struct mnt_namespace), GFP_KERNEL);
  1744. if (!new_ns)
  1745. return ERR_PTR(-ENOMEM);
  1746. atomic_set(&new_ns->count, 1);
  1747. INIT_LIST_HEAD(&new_ns->list);
  1748. init_waitqueue_head(&new_ns->poll);
  1749. new_ns->event = 0;
  1750. down_write(&namespace_sem);
  1751. /* First pass: copy the tree topology */
  1752. new_ns->root = copy_tree(mnt_ns->root, mnt_ns->root->mnt_root,
  1753. CL_COPY_ALL | CL_EXPIRE);
  1754. if (!new_ns->root) {
  1755. up_write(&namespace_sem);
  1756. kfree(new_ns);
  1757. return ERR_PTR(-ENOMEM);
  1758. }
  1759. spin_lock(&vfsmount_lock);
  1760. list_add_tail(&new_ns->list, &new_ns->root->mnt_list);
  1761. spin_unlock(&vfsmount_lock);
  1762. /*
  1763. * Second pass: switch the tsk->fs->* elements and mark new vfsmounts
  1764. * as belonging to new namespace. We have already acquired a private
  1765. * fs_struct, so tsk->fs->lock is not needed.
  1766. */
  1767. p = mnt_ns->root;
  1768. q = new_ns->root;
  1769. while (p) {
  1770. q->mnt_ns = new_ns;
  1771. if (fs) {
  1772. if (p == fs->root.mnt) {
  1773. rootmnt = p;
  1774. fs->root.mnt = mntget(q);
  1775. }
  1776. if (p == fs->pwd.mnt) {
  1777. pwdmnt = p;
  1778. fs->pwd.mnt = mntget(q);
  1779. }
  1780. }
  1781. p = next_mnt(p, mnt_ns->root);
  1782. q = next_mnt(q, new_ns->root);
  1783. }
  1784. up_write(&namespace_sem);
  1785. if (rootmnt)
  1786. mntput(rootmnt);
  1787. if (pwdmnt)
  1788. mntput(pwdmnt);
  1789. return new_ns;
  1790. }
  1791. struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
  1792. struct fs_struct *new_fs)
  1793. {
  1794. struct mnt_namespace *new_ns;
  1795. BUG_ON(!ns);
  1796. get_mnt_ns(ns);
  1797. if (!(flags & CLONE_NEWNS))
  1798. return ns;
  1799. new_ns = dup_mnt_ns(ns, new_fs);
  1800. put_mnt_ns(ns);
  1801. return new_ns;
  1802. }
  1803. SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
  1804. char __user *, type, unsigned long, flags, void __user *, data)
  1805. {
  1806. int retval;
  1807. unsigned long data_page;
  1808. unsigned long type_page;
  1809. unsigned long dev_page;
  1810. char *dir_page;
  1811. retval = copy_mount_options(type, &type_page);
  1812. if (retval < 0)
  1813. return retval;
  1814. dir_page = getname(dir_name);
  1815. retval = PTR_ERR(dir_page);
  1816. if (IS_ERR(dir_page))
  1817. goto out1;
  1818. retval = copy_mount_options(dev_name, &dev_page);
  1819. if (retval < 0)
  1820. goto out2;
  1821. retval = copy_mount_options(data, &data_page);
  1822. if (retval < 0)
  1823. goto out3;
  1824. lock_kernel();
  1825. retval = do_mount((char *)dev_page, dir_page, (char *)type_page,
  1826. flags, (void *)data_page);
  1827. unlock_kernel();
  1828. free_page(data_page);
  1829. out3:
  1830. free_page(dev_page);
  1831. out2:
  1832. putname(dir_page);
  1833. out1:
  1834. free_page(type_page);
  1835. return retval;
  1836. }
  1837. /*
  1838. * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values.
  1839. * It can block. Requires the big lock held.
  1840. */
  1841. void set_fs_root(struct fs_struct *fs, struct path *path)
  1842. {
  1843. struct path old_root;
  1844. write_lock(&fs->lock);
  1845. old_root = fs->root;
  1846. fs->root = *path;
  1847. path_get(path);
  1848. write_unlock(&fs->lock);
  1849. if (old_root.dentry)
  1850. path_put(&old_root);
  1851. }
  1852. /*
  1853. * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values.
  1854. * It can block. Requires the big lock held.
  1855. */
  1856. void set_fs_pwd(struct fs_struct *fs, struct path *path)
  1857. {
  1858. struct path old_pwd;
  1859. write_lock(&fs->lock);
  1860. old_pwd = fs->pwd;
  1861. fs->pwd = *path;
  1862. path_get(path);
  1863. write_unlock(&fs->lock);
  1864. if (old_pwd.dentry)
  1865. path_put(&old_pwd);
  1866. }
  1867. static void chroot_fs_refs(struct path *old_root, struct path *new_root)
  1868. {
  1869. struct task_struct *g, *p;
  1870. struct fs_struct *fs;
  1871. read_lock(&tasklist_lock);
  1872. do_each_thread(g, p) {
  1873. task_lock(p);
  1874. fs = p->fs;
  1875. if (fs) {
  1876. atomic_inc(&fs->count);
  1877. task_unlock(p);
  1878. if (fs->root.dentry == old_root->dentry
  1879. && fs->root.mnt == old_root->mnt)
  1880. set_fs_root(fs, new_root);
  1881. if (fs->pwd.dentry == old_root->dentry
  1882. && fs->pwd.mnt == old_root->mnt)
  1883. set_fs_pwd(fs, new_root);
  1884. put_fs_struct(fs);
  1885. } else
  1886. task_unlock(p);
  1887. } while_each_thread(g, p);
  1888. read_unlock(&tasklist_lock);
  1889. }
  1890. /*
  1891. * pivot_root Semantics:
  1892. * Moves the root file system of the current process to the directory put_old,
  1893. * makes new_root as the new root file system of the current process, and sets
  1894. * root/cwd of all processes which had them on the current root to new_root.
  1895. *
  1896. * Restrictions:
  1897. * The new_root and put_old must be directories, and must not be on the
  1898. * same file system as the current process root. The put_old must be
  1899. * underneath new_root, i.e. adding a non-zero number of /.. to the string
  1900. * pointed to by put_old must yield the same directory as new_root. No other
  1901. * file system may be mounted on put_old. After all, new_root is a mountpoint.
  1902. *
  1903. * Also, the current root cannot be on the 'rootfs' (initial ramfs) filesystem.
  1904. * See Documentation/filesystems/ramfs-rootfs-initramfs.txt for alternatives
  1905. * in this situation.
  1906. *
  1907. * Notes:
  1908. * - we don't move root/cwd if they are not at the root (reason: if something
  1909. * cared enough to change them, it's probably wrong to force them elsewhere)
  1910. * - it's okay to pick a root that isn't the root of a file system, e.g.
  1911. * /nfs/my_root where /nfs is the mount point. It must be a mountpoint,
  1912. * though, so you may need to say mount --bind /nfs/my_root /nfs/my_root
  1913. * first.
  1914. */
  1915. SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
  1916. const char __user *, put_old)
  1917. {
  1918. struct vfsmount *tmp;
  1919. struct path new, old, parent_path, root_parent, root;
  1920. int error;
  1921. if (!capable(CAP_SYS_ADMIN))
  1922. return -EPERM;
  1923. error = user_path_dir(new_root, &new);
  1924. if (error)
  1925. goto out0;
  1926. error = -EINVAL;
  1927. if (!check_mnt(new.mnt))
  1928. goto out1;
  1929. error = user_path_dir(put_old, &old);
  1930. if (error)
  1931. goto out1;
  1932. error = security_sb_pivotroot(&old, &new);
  1933. if (error) {
  1934. path_put(&old);
  1935. goto out1;
  1936. }
  1937. read_lock(&current->fs->lock);
  1938. root = current->fs->root;
  1939. path_get(&current->fs->root);
  1940. read_unlock(&current->fs->lock);
  1941. down_write(&namespace_sem);
  1942. mutex_lock(&old.dentry->d_inode->i_mutex);
  1943. error = -EINVAL;
  1944. if (IS_MNT_SHARED(old.mnt) ||
  1945. IS_MNT_SHARED(new.mnt->mnt_parent) ||
  1946. IS_MNT_SHARED(root.mnt->mnt_parent))
  1947. goto out2;
  1948. if (!check_mnt(root.mnt))
  1949. goto out2;
  1950. error = -ENOENT;
  1951. if (IS_DEADDIR(new.dentry->d_inode))
  1952. goto out2;
  1953. if (d_unhashed(new.dentry) && !IS_ROOT(new.dentry))
  1954. goto out2;
  1955. if (d_unhashed(old.dentry) && !IS_ROOT(old.dentry))
  1956. goto out2;
  1957. error = -EBUSY;
  1958. if (new.mnt == root.mnt ||
  1959. old.mnt == root.mnt)
  1960. goto out2; /* loop, on the same file system */
  1961. error = -EINVAL;
  1962. if (root.mnt->mnt_root != root.dentry)
  1963. goto out2; /* not a mountpoint */
  1964. if (root.mnt->mnt_parent == root.mnt)
  1965. goto out2; /* not attached */
  1966. if (new.mnt->mnt_root != new.dentry)
  1967. goto out2; /* not a mountpoint */
  1968. if (new.mnt->mnt_parent == new.mnt)
  1969. goto out2; /* not attached */
  1970. /* make sure we can reach put_old from new_root */
  1971. tmp = old.mnt;
  1972. spin_lock(&vfsmount_lock);
  1973. if (tmp != new.mnt) {
  1974. for (;;) {
  1975. if (tmp->mnt_parent == tmp)
  1976. goto out3; /* already mounted on put_old */
  1977. if (tmp->mnt_parent == new.mnt)
  1978. break;
  1979. tmp = tmp->mnt_parent;
  1980. }
  1981. if (!is_subdir(tmp->mnt_mountpoint, new.dentry))
  1982. goto out3;
  1983. } else if (!is_subdir(old.dentry, new.dentry))
  1984. goto out3;
  1985. detach_mnt(new.mnt, &parent_path);
  1986. detach_mnt(root.mnt, &root_parent);
  1987. /* mount old root on put_old */
  1988. attach_mnt(root.mnt, &old);
  1989. /* mount new_root on / */
  1990. attach_mnt(new.mnt, &root_parent);
  1991. touch_mnt_namespace(current->nsproxy->mnt_ns);
  1992. spin_unlock(&vfsmount_lock);
  1993. chroot_fs_refs(&root, &new);
  1994. security_sb_post_pivotroot(&root, &new);
  1995. error = 0;
  1996. path_put(&root_parent);
  1997. path_put(&parent_path);
  1998. out2:
  1999. mutex_unlock(&old.dentry->d_inode->i_mutex);
  2000. up_write(&namespace_sem);
  2001. path_put(&root);
  2002. path_put(&old);
  2003. out1:
  2004. path_put(&new);
  2005. out0:
  2006. return error;
  2007. out3:
  2008. spin_unlock(&vfsmount_lock);
  2009. goto out2;
  2010. }
  2011. static void __init init_mount_tree(void)
  2012. {
  2013. struct vfsmount *mnt;
  2014. struct mnt_namespace *ns;
  2015. struct path root;
  2016. mnt = do_kern_mount("rootfs", 0, "rootfs", NULL);
  2017. if (IS_ERR(mnt))
  2018. panic("Can't create rootfs");
  2019. ns = kmalloc(sizeof(*ns), GFP_KERNEL);
  2020. if (!ns)
  2021. panic("Can't allocate initial namespace");
  2022. atomic_set(&ns->count, 1);
  2023. INIT_LIST_HEAD(&ns->list);
  2024. init_waitqueue_head(&ns->poll);
  2025. ns->event = 0;
  2026. list_add(&mnt->mnt_list, &ns->list);
  2027. ns->root = mnt;
  2028. mnt->mnt_ns = ns;
  2029. init_task.nsproxy->mnt_ns = ns;
  2030. get_mnt_ns(ns);
  2031. root.mnt = ns->root;
  2032. root.dentry = ns->root->mnt_root;
  2033. set_fs_pwd(current->fs, &root);
  2034. set_fs_root(current->fs, &root);
  2035. }
  2036. void __init mnt_init(void)
  2037. {
  2038. unsigned u;
  2039. int err;
  2040. init_rwsem(&namespace_sem);
  2041. mnt_cache = kmem_cache_create("mnt_cache", sizeof(struct vfsmount),
  2042. 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
  2043. mount_hashtable = (struct list_head *)__get_free_page(GFP_ATOMIC);
  2044. if (!mount_hashtable)
  2045. panic("Failed to allocate mount hash table\n");
  2046. printk("Mount-cache hash table entries: %lu\n", HASH_SIZE);
  2047. for (u = 0; u < HASH_SIZE; u++)
  2048. INIT_LIST_HEAD(&mount_hashtable[u]);
  2049. err = sysfs_init();
  2050. if (err)
  2051. printk(KERN_WARNING "%s: sysfs_init error: %d\n",
  2052. __func__, err);
  2053. fs_kobj = kobject_create_and_add("fs", NULL);
  2054. if (!fs_kobj)
  2055. printk(KERN_WARNING "%s: kobj create error\n", __func__);
  2056. init_rootfs();
  2057. init_mount_tree();
  2058. }
  2059. void __put_mnt_ns(struct mnt_namespace *ns)
  2060. {
  2061. struct vfsmount *root = ns->root;
  2062. LIST_HEAD(umount_list);
  2063. ns->root = NULL;
  2064. spin_unlock(&vfsmount_lock);
  2065. down_write(&namespace_sem);
  2066. spin_lock(&vfsmount_lock);
  2067. umount_tree(root, 0, &umount_list);
  2068. spin_unlock(&vfsmount_lock);
  2069. up_write(&namespace_sem);
  2070. release_mounts(&umount_list);
  2071. kfree(ns);
  2072. }