dir.c 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725
  1. /* -*- mode: c; c-basic-offset: 8; -*-
  2. * vim: noexpandtab sw=8 ts=8 sts=0:
  3. *
  4. * dir.c - Operations for configfs directories.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public
  17. * License along with this program; if not, write to the
  18. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. * Boston, MA 021110-1307, USA.
  20. *
  21. * Based on sysfs:
  22. * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
  23. *
  24. * configfs Copyright (C) 2005 Oracle. All rights reserved.
  25. */
  26. #undef DEBUG
  27. #include <linux/fs.h>
  28. #include <linux/mount.h>
  29. #include <linux/module.h>
  30. #include <linux/slab.h>
  31. #include <linux/err.h>
  32. #include <linux/configfs.h>
  33. #include "configfs_internal.h"
  34. DECLARE_RWSEM(configfs_rename_sem);
  35. /*
  36. * Protects mutations of configfs_dirent linkage together with proper i_mutex
  37. * Also protects mutations of symlinks linkage to target configfs_dirent
  38. * Mutators of configfs_dirent linkage must *both* have the proper inode locked
  39. * and configfs_dirent_lock locked, in that order.
  40. * This allows one to safely traverse configfs_dirent trees and symlinks without
  41. * having to lock inodes.
  42. *
  43. * Protects setting of CONFIGFS_USET_DROPPING: checking the flag
  44. * unlocked is not reliable unless in detach_groups() called from
  45. * rmdir()/unregister() and from configfs_attach_group()
  46. */
  47. DEFINE_SPINLOCK(configfs_dirent_lock);
  48. static void configfs_d_iput(struct dentry * dentry,
  49. struct inode * inode)
  50. {
  51. struct configfs_dirent *sd = dentry->d_fsdata;
  52. if (sd) {
  53. /* Coordinate with configfs_readdir */
  54. spin_lock(&configfs_dirent_lock);
  55. /* Coordinate with configfs_attach_attr where will increase
  56. * sd->s_count and update sd->s_dentry to new allocated one.
  57. * Only set sd->dentry to null when this dentry is the only
  58. * sd owner.
  59. * If not do so, configfs_d_iput may run just after
  60. * configfs_attach_attr and set sd->s_dentry to null
  61. * even it's still in use.
  62. */
  63. if (atomic_read(&sd->s_count) <= 2)
  64. sd->s_dentry = NULL;
  65. spin_unlock(&configfs_dirent_lock);
  66. configfs_put(sd);
  67. }
  68. iput(inode);
  69. }
  70. const struct dentry_operations configfs_dentry_ops = {
  71. .d_iput = configfs_d_iput,
  72. .d_delete = always_delete_dentry,
  73. };
  74. #ifdef CONFIG_LOCKDEP
  75. /*
  76. * Helpers to make lockdep happy with our recursive locking of default groups'
  77. * inodes (see configfs_attach_group() and configfs_detach_group()).
  78. * We put default groups i_mutexes in separate classes according to their depth
  79. * from the youngest non-default group ancestor.
  80. *
  81. * For a non-default group A having default groups A/B, A/C, and A/C/D, default
  82. * groups A/B and A/C will have their inode's mutex in class
  83. * default_group_class[0], and default group A/C/D will be in
  84. * default_group_class[1].
  85. *
  86. * The lock classes are declared and assigned in inode.c, according to the
  87. * s_depth value.
  88. * The s_depth value is initialized to -1, adjusted to >= 0 when attaching
  89. * default groups, and reset to -1 when all default groups are attached. During
  90. * attachment, if configfs_create() sees s_depth > 0, the lock class of the new
  91. * inode's mutex is set to default_group_class[s_depth - 1].
  92. */
  93. static void configfs_init_dirent_depth(struct configfs_dirent *sd)
  94. {
  95. sd->s_depth = -1;
  96. }
  97. static void configfs_set_dir_dirent_depth(struct configfs_dirent *parent_sd,
  98. struct configfs_dirent *sd)
  99. {
  100. int parent_depth = parent_sd->s_depth;
  101. if (parent_depth >= 0)
  102. sd->s_depth = parent_depth + 1;
  103. }
  104. static void
  105. configfs_adjust_dir_dirent_depth_before_populate(struct configfs_dirent *sd)
  106. {
  107. /*
  108. * item's i_mutex class is already setup, so s_depth is now only
  109. * used to set new sub-directories s_depth, which is always done
  110. * with item's i_mutex locked.
  111. */
  112. /*
  113. * sd->s_depth == -1 iff we are a non default group.
  114. * else (we are a default group) sd->s_depth > 0 (see
  115. * create_dir()).
  116. */
  117. if (sd->s_depth == -1)
  118. /*
  119. * We are a non default group and we are going to create
  120. * default groups.
  121. */
  122. sd->s_depth = 0;
  123. }
  124. static void
  125. configfs_adjust_dir_dirent_depth_after_populate(struct configfs_dirent *sd)
  126. {
  127. /* We will not create default groups anymore. */
  128. sd->s_depth = -1;
  129. }
  130. #else /* CONFIG_LOCKDEP */
  131. static void configfs_init_dirent_depth(struct configfs_dirent *sd)
  132. {
  133. }
  134. static void configfs_set_dir_dirent_depth(struct configfs_dirent *parent_sd,
  135. struct configfs_dirent *sd)
  136. {
  137. }
  138. static void
  139. configfs_adjust_dir_dirent_depth_before_populate(struct configfs_dirent *sd)
  140. {
  141. }
  142. static void
  143. configfs_adjust_dir_dirent_depth_after_populate(struct configfs_dirent *sd)
  144. {
  145. }
  146. #endif /* CONFIG_LOCKDEP */
  147. /*
  148. * Allocates a new configfs_dirent and links it to the parent configfs_dirent
  149. */
  150. static struct configfs_dirent *configfs_new_dirent(struct configfs_dirent *parent_sd,
  151. void *element, int type)
  152. {
  153. struct configfs_dirent * sd;
  154. sd = kmem_cache_zalloc(configfs_dir_cachep, GFP_KERNEL);
  155. if (!sd)
  156. return ERR_PTR(-ENOMEM);
  157. atomic_set(&sd->s_count, 1);
  158. INIT_LIST_HEAD(&sd->s_links);
  159. INIT_LIST_HEAD(&sd->s_children);
  160. sd->s_element = element;
  161. sd->s_type = type;
  162. configfs_init_dirent_depth(sd);
  163. spin_lock(&configfs_dirent_lock);
  164. if (parent_sd->s_type & CONFIGFS_USET_DROPPING) {
  165. spin_unlock(&configfs_dirent_lock);
  166. kmem_cache_free(configfs_dir_cachep, sd);
  167. return ERR_PTR(-ENOENT);
  168. }
  169. list_add(&sd->s_sibling, &parent_sd->s_children);
  170. spin_unlock(&configfs_dirent_lock);
  171. return sd;
  172. }
  173. /*
  174. *
  175. * Return -EEXIST if there is already a configfs element with the same
  176. * name for the same parent.
  177. *
  178. * called with parent inode's i_mutex held
  179. */
  180. static int configfs_dirent_exists(struct configfs_dirent *parent_sd,
  181. const unsigned char *new)
  182. {
  183. struct configfs_dirent * sd;
  184. list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
  185. if (sd->s_element) {
  186. const unsigned char *existing = configfs_get_name(sd);
  187. if (strcmp(existing, new))
  188. continue;
  189. else
  190. return -EEXIST;
  191. }
  192. }
  193. return 0;
  194. }
  195. int configfs_make_dirent(struct configfs_dirent * parent_sd,
  196. struct dentry * dentry, void * element,
  197. umode_t mode, int type)
  198. {
  199. struct configfs_dirent * sd;
  200. sd = configfs_new_dirent(parent_sd, element, type);
  201. if (IS_ERR(sd))
  202. return PTR_ERR(sd);
  203. sd->s_mode = mode;
  204. sd->s_dentry = dentry;
  205. if (dentry)
  206. dentry->d_fsdata = configfs_get(sd);
  207. return 0;
  208. }
  209. static void init_dir(struct inode * inode)
  210. {
  211. inode->i_op = &configfs_dir_inode_operations;
  212. inode->i_fop = &configfs_dir_operations;
  213. /* directory inodes start off with i_nlink == 2 (for "." entry) */
  214. inc_nlink(inode);
  215. }
  216. static void configfs_init_file(struct inode * inode)
  217. {
  218. inode->i_size = PAGE_SIZE;
  219. inode->i_fop = &configfs_file_operations;
  220. }
  221. static void init_symlink(struct inode * inode)
  222. {
  223. inode->i_op = &configfs_symlink_inode_operations;
  224. }
  225. /**
  226. * configfs_create_dir - create a directory for an config_item.
  227. * @item: config_itemwe're creating directory for.
  228. * @dentry: config_item's dentry.
  229. *
  230. * Note: user-created entries won't be allowed under this new directory
  231. * until it is validated by configfs_dir_set_ready()
  232. */
  233. static int configfs_create_dir(struct config_item *item, struct dentry *dentry)
  234. {
  235. int error;
  236. umode_t mode = S_IFDIR| S_IRWXU | S_IRUGO | S_IXUGO;
  237. struct dentry *p = dentry->d_parent;
  238. BUG_ON(!item);
  239. error = configfs_dirent_exists(p->d_fsdata, dentry->d_name.name);
  240. if (unlikely(error))
  241. return error;
  242. error = configfs_make_dirent(p->d_fsdata, dentry, item, mode,
  243. CONFIGFS_DIR | CONFIGFS_USET_CREATING);
  244. if (unlikely(error))
  245. return error;
  246. configfs_set_dir_dirent_depth(p->d_fsdata, dentry->d_fsdata);
  247. error = configfs_create(dentry, mode, init_dir);
  248. if (!error) {
  249. inc_nlink(d_inode(p));
  250. item->ci_dentry = dentry;
  251. } else {
  252. struct configfs_dirent *sd = dentry->d_fsdata;
  253. if (sd) {
  254. spin_lock(&configfs_dirent_lock);
  255. list_del_init(&sd->s_sibling);
  256. spin_unlock(&configfs_dirent_lock);
  257. configfs_put(sd);
  258. }
  259. }
  260. return error;
  261. }
  262. /*
  263. * Allow userspace to create new entries under a new directory created with
  264. * configfs_create_dir(), and under all of its chidlren directories recursively.
  265. * @sd configfs_dirent of the new directory to validate
  266. *
  267. * Caller must hold configfs_dirent_lock.
  268. */
  269. static void configfs_dir_set_ready(struct configfs_dirent *sd)
  270. {
  271. struct configfs_dirent *child_sd;
  272. sd->s_type &= ~CONFIGFS_USET_CREATING;
  273. list_for_each_entry(child_sd, &sd->s_children, s_sibling)
  274. if (child_sd->s_type & CONFIGFS_USET_CREATING)
  275. configfs_dir_set_ready(child_sd);
  276. }
  277. /*
  278. * Check that a directory does not belong to a directory hierarchy being
  279. * attached and not validated yet.
  280. * @sd configfs_dirent of the directory to check
  281. *
  282. * @return non-zero iff the directory was validated
  283. *
  284. * Note: takes configfs_dirent_lock, so the result may change from false to true
  285. * in two consecutive calls, but never from true to false.
  286. */
  287. int configfs_dirent_is_ready(struct configfs_dirent *sd)
  288. {
  289. int ret;
  290. spin_lock(&configfs_dirent_lock);
  291. ret = !(sd->s_type & CONFIGFS_USET_CREATING);
  292. spin_unlock(&configfs_dirent_lock);
  293. return ret;
  294. }
  295. int configfs_create_link(struct configfs_symlink *sl,
  296. struct dentry *parent,
  297. struct dentry *dentry)
  298. {
  299. int err = 0;
  300. umode_t mode = S_IFLNK | S_IRWXUGO;
  301. err = configfs_make_dirent(parent->d_fsdata, dentry, sl, mode,
  302. CONFIGFS_ITEM_LINK);
  303. if (!err) {
  304. err = configfs_create(dentry, mode, init_symlink);
  305. if (err) {
  306. struct configfs_dirent *sd = dentry->d_fsdata;
  307. if (sd) {
  308. spin_lock(&configfs_dirent_lock);
  309. list_del_init(&sd->s_sibling);
  310. spin_unlock(&configfs_dirent_lock);
  311. configfs_put(sd);
  312. }
  313. }
  314. }
  315. return err;
  316. }
  317. static void remove_dir(struct dentry * d)
  318. {
  319. struct dentry * parent = dget(d->d_parent);
  320. struct configfs_dirent * sd;
  321. sd = d->d_fsdata;
  322. spin_lock(&configfs_dirent_lock);
  323. list_del_init(&sd->s_sibling);
  324. spin_unlock(&configfs_dirent_lock);
  325. configfs_put(sd);
  326. if (d_really_is_positive(d))
  327. simple_rmdir(d_inode(parent),d);
  328. pr_debug(" o %pd removing done (%d)\n", d, d_count(d));
  329. dput(parent);
  330. }
  331. /**
  332. * configfs_remove_dir - remove an config_item's directory.
  333. * @item: config_item we're removing.
  334. *
  335. * The only thing special about this is that we remove any files in
  336. * the directory before we remove the directory, and we've inlined
  337. * what used to be configfs_rmdir() below, instead of calling separately.
  338. *
  339. * Caller holds the mutex of the item's inode
  340. */
  341. static void configfs_remove_dir(struct config_item * item)
  342. {
  343. struct dentry * dentry = dget(item->ci_dentry);
  344. if (!dentry)
  345. return;
  346. remove_dir(dentry);
  347. /**
  348. * Drop reference from dget() on entrance.
  349. */
  350. dput(dentry);
  351. }
  352. /* attaches attribute's configfs_dirent to the dentry corresponding to the
  353. * attribute file
  354. */
  355. static int configfs_attach_attr(struct configfs_dirent * sd, struct dentry * dentry)
  356. {
  357. struct configfs_attribute * attr = sd->s_element;
  358. int error;
  359. spin_lock(&configfs_dirent_lock);
  360. dentry->d_fsdata = configfs_get(sd);
  361. sd->s_dentry = dentry;
  362. spin_unlock(&configfs_dirent_lock);
  363. error = configfs_create(dentry, (attr->ca_mode & S_IALLUGO) | S_IFREG,
  364. configfs_init_file);
  365. if (error) {
  366. configfs_put(sd);
  367. return error;
  368. }
  369. d_rehash(dentry);
  370. return 0;
  371. }
  372. static struct dentry * configfs_lookup(struct inode *dir,
  373. struct dentry *dentry,
  374. unsigned int flags)
  375. {
  376. struct configfs_dirent * parent_sd = dentry->d_parent->d_fsdata;
  377. struct configfs_dirent * sd;
  378. int found = 0;
  379. int err;
  380. /*
  381. * Fake invisibility if dir belongs to a group/default groups hierarchy
  382. * being attached
  383. *
  384. * This forbids userspace to read/write attributes of items which may
  385. * not complete their initialization, since the dentries of the
  386. * attributes won't be instantiated.
  387. */
  388. err = -ENOENT;
  389. if (!configfs_dirent_is_ready(parent_sd))
  390. goto out;
  391. list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
  392. if (sd->s_type & CONFIGFS_NOT_PINNED) {
  393. const unsigned char * name = configfs_get_name(sd);
  394. if (strcmp(name, dentry->d_name.name))
  395. continue;
  396. found = 1;
  397. err = configfs_attach_attr(sd, dentry);
  398. break;
  399. }
  400. }
  401. if (!found) {
  402. /*
  403. * If it doesn't exist and it isn't a NOT_PINNED item,
  404. * it must be negative.
  405. */
  406. if (dentry->d_name.len > NAME_MAX)
  407. return ERR_PTR(-ENAMETOOLONG);
  408. d_add(dentry, NULL);
  409. return NULL;
  410. }
  411. out:
  412. return ERR_PTR(err);
  413. }
  414. /*
  415. * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
  416. * attributes and are removed by rmdir(). We recurse, setting
  417. * CONFIGFS_USET_DROPPING on all children that are candidates for
  418. * default detach.
  419. * If there is an error, the caller will reset the flags via
  420. * configfs_detach_rollback().
  421. */
  422. static int configfs_detach_prep(struct dentry *dentry, struct mutex **wait_mutex)
  423. {
  424. struct configfs_dirent *parent_sd = dentry->d_fsdata;
  425. struct configfs_dirent *sd;
  426. int ret;
  427. /* Mark that we're trying to drop the group */
  428. parent_sd->s_type |= CONFIGFS_USET_DROPPING;
  429. ret = -EBUSY;
  430. if (!list_empty(&parent_sd->s_links))
  431. goto out;
  432. ret = 0;
  433. list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
  434. if (!sd->s_element ||
  435. (sd->s_type & CONFIGFS_NOT_PINNED))
  436. continue;
  437. if (sd->s_type & CONFIGFS_USET_DEFAULT) {
  438. /* Abort if racing with mkdir() */
  439. if (sd->s_type & CONFIGFS_USET_IN_MKDIR) {
  440. if (wait_mutex)
  441. *wait_mutex = &d_inode(sd->s_dentry)->i_mutex;
  442. return -EAGAIN;
  443. }
  444. /*
  445. * Yup, recursive. If there's a problem, blame
  446. * deep nesting of default_groups
  447. */
  448. ret = configfs_detach_prep(sd->s_dentry, wait_mutex);
  449. if (!ret)
  450. continue;
  451. } else
  452. ret = -ENOTEMPTY;
  453. break;
  454. }
  455. out:
  456. return ret;
  457. }
  458. /*
  459. * Walk the tree, resetting CONFIGFS_USET_DROPPING wherever it was
  460. * set.
  461. */
  462. static void configfs_detach_rollback(struct dentry *dentry)
  463. {
  464. struct configfs_dirent *parent_sd = dentry->d_fsdata;
  465. struct configfs_dirent *sd;
  466. parent_sd->s_type &= ~CONFIGFS_USET_DROPPING;
  467. list_for_each_entry(sd, &parent_sd->s_children, s_sibling)
  468. if (sd->s_type & CONFIGFS_USET_DEFAULT)
  469. configfs_detach_rollback(sd->s_dentry);
  470. }
  471. static void detach_attrs(struct config_item * item)
  472. {
  473. struct dentry * dentry = dget(item->ci_dentry);
  474. struct configfs_dirent * parent_sd;
  475. struct configfs_dirent * sd, * tmp;
  476. if (!dentry)
  477. return;
  478. pr_debug("configfs %s: dropping attrs for dir\n",
  479. dentry->d_name.name);
  480. parent_sd = dentry->d_fsdata;
  481. list_for_each_entry_safe(sd, tmp, &parent_sd->s_children, s_sibling) {
  482. if (!sd->s_element || !(sd->s_type & CONFIGFS_NOT_PINNED))
  483. continue;
  484. spin_lock(&configfs_dirent_lock);
  485. list_del_init(&sd->s_sibling);
  486. spin_unlock(&configfs_dirent_lock);
  487. configfs_drop_dentry(sd, dentry);
  488. configfs_put(sd);
  489. }
  490. /**
  491. * Drop reference from dget() on entrance.
  492. */
  493. dput(dentry);
  494. }
  495. static int populate_attrs(struct config_item *item)
  496. {
  497. struct config_item_type *t = item->ci_type;
  498. struct configfs_attribute *attr;
  499. int error = 0;
  500. int i;
  501. if (!t)
  502. return -EINVAL;
  503. if (t->ct_attrs) {
  504. for (i = 0; (attr = t->ct_attrs[i]) != NULL; i++) {
  505. if ((error = configfs_create_file(item, attr)))
  506. break;
  507. }
  508. }
  509. if (error)
  510. detach_attrs(item);
  511. return error;
  512. }
  513. static int configfs_attach_group(struct config_item *parent_item,
  514. struct config_item *item,
  515. struct dentry *dentry);
  516. static void configfs_detach_group(struct config_item *item);
  517. static void detach_groups(struct config_group *group)
  518. {
  519. struct dentry * dentry = dget(group->cg_item.ci_dentry);
  520. struct dentry *child;
  521. struct configfs_dirent *parent_sd;
  522. struct configfs_dirent *sd, *tmp;
  523. if (!dentry)
  524. return;
  525. parent_sd = dentry->d_fsdata;
  526. list_for_each_entry_safe(sd, tmp, &parent_sd->s_children, s_sibling) {
  527. if (!sd->s_element ||
  528. !(sd->s_type & CONFIGFS_USET_DEFAULT))
  529. continue;
  530. child = sd->s_dentry;
  531. mutex_lock(&d_inode(child)->i_mutex);
  532. configfs_detach_group(sd->s_element);
  533. d_inode(child)->i_flags |= S_DEAD;
  534. dont_mount(child);
  535. mutex_unlock(&d_inode(child)->i_mutex);
  536. d_delete(child);
  537. dput(child);
  538. }
  539. /**
  540. * Drop reference from dget() on entrance.
  541. */
  542. dput(dentry);
  543. }
  544. /*
  545. * This fakes mkdir(2) on a default_groups[] entry. It
  546. * creates a dentry, attachs it, and then does fixup
  547. * on the sd->s_type.
  548. *
  549. * We could, perhaps, tweak our parent's ->mkdir for a minute and
  550. * try using vfs_mkdir. Just a thought.
  551. */
  552. static int create_default_group(struct config_group *parent_group,
  553. struct config_group *group)
  554. {
  555. int ret;
  556. struct configfs_dirent *sd;
  557. /* We trust the caller holds a reference to parent */
  558. struct dentry *child, *parent = parent_group->cg_item.ci_dentry;
  559. if (!group->cg_item.ci_name)
  560. group->cg_item.ci_name = group->cg_item.ci_namebuf;
  561. ret = -ENOMEM;
  562. child = d_alloc_name(parent, group->cg_item.ci_name);
  563. if (child) {
  564. d_add(child, NULL);
  565. ret = configfs_attach_group(&parent_group->cg_item,
  566. &group->cg_item, child);
  567. if (!ret) {
  568. sd = child->d_fsdata;
  569. sd->s_type |= CONFIGFS_USET_DEFAULT;
  570. } else {
  571. BUG_ON(d_inode(child));
  572. d_drop(child);
  573. dput(child);
  574. }
  575. }
  576. return ret;
  577. }
  578. static int populate_groups(struct config_group *group)
  579. {
  580. struct config_group *new_group;
  581. int ret = 0;
  582. int i;
  583. if (group->default_groups) {
  584. for (i = 0; group->default_groups[i]; i++) {
  585. new_group = group->default_groups[i];
  586. ret = create_default_group(group, new_group);
  587. if (ret) {
  588. detach_groups(group);
  589. break;
  590. }
  591. }
  592. }
  593. return ret;
  594. }
  595. /*
  596. * All of link_obj/unlink_obj/link_group/unlink_group require that
  597. * subsys->su_mutex is held.
  598. */
  599. static void unlink_obj(struct config_item *item)
  600. {
  601. struct config_group *group;
  602. group = item->ci_group;
  603. if (group) {
  604. list_del_init(&item->ci_entry);
  605. item->ci_group = NULL;
  606. item->ci_parent = NULL;
  607. /* Drop the reference for ci_entry */
  608. config_item_put(item);
  609. /* Drop the reference for ci_parent */
  610. config_group_put(group);
  611. }
  612. }
  613. static void link_obj(struct config_item *parent_item, struct config_item *item)
  614. {
  615. /*
  616. * Parent seems redundant with group, but it makes certain
  617. * traversals much nicer.
  618. */
  619. item->ci_parent = parent_item;
  620. /*
  621. * We hold a reference on the parent for the child's ci_parent
  622. * link.
  623. */
  624. item->ci_group = config_group_get(to_config_group(parent_item));
  625. list_add_tail(&item->ci_entry, &item->ci_group->cg_children);
  626. /*
  627. * We hold a reference on the child for ci_entry on the parent's
  628. * cg_children
  629. */
  630. config_item_get(item);
  631. }
  632. static void unlink_group(struct config_group *group)
  633. {
  634. int i;
  635. struct config_group *new_group;
  636. if (group->default_groups) {
  637. for (i = 0; group->default_groups[i]; i++) {
  638. new_group = group->default_groups[i];
  639. unlink_group(new_group);
  640. }
  641. }
  642. group->cg_subsys = NULL;
  643. unlink_obj(&group->cg_item);
  644. }
  645. static void link_group(struct config_group *parent_group, struct config_group *group)
  646. {
  647. int i;
  648. struct config_group *new_group;
  649. struct configfs_subsystem *subsys = NULL; /* gcc is a turd */
  650. link_obj(&parent_group->cg_item, &group->cg_item);
  651. if (parent_group->cg_subsys)
  652. subsys = parent_group->cg_subsys;
  653. else if (configfs_is_root(&parent_group->cg_item))
  654. subsys = to_configfs_subsystem(group);
  655. else
  656. BUG();
  657. group->cg_subsys = subsys;
  658. if (group->default_groups) {
  659. for (i = 0; group->default_groups[i]; i++) {
  660. new_group = group->default_groups[i];
  661. link_group(group, new_group);
  662. }
  663. }
  664. }
  665. /*
  666. * The goal is that configfs_attach_item() (and
  667. * configfs_attach_group()) can be called from either the VFS or this
  668. * module. That is, they assume that the items have been created,
  669. * the dentry allocated, and the dcache is all ready to go.
  670. *
  671. * If they fail, they must clean up after themselves as if they
  672. * had never been called. The caller (VFS or local function) will
  673. * handle cleaning up the dcache bits.
  674. *
  675. * configfs_detach_group() and configfs_detach_item() behave similarly on
  676. * the way out. They assume that the proper semaphores are held, they
  677. * clean up the configfs items, and they expect their callers will
  678. * handle the dcache bits.
  679. */
  680. static int configfs_attach_item(struct config_item *parent_item,
  681. struct config_item *item,
  682. struct dentry *dentry)
  683. {
  684. int ret;
  685. ret = configfs_create_dir(item, dentry);
  686. if (!ret) {
  687. ret = populate_attrs(item);
  688. if (ret) {
  689. /*
  690. * We are going to remove an inode and its dentry but
  691. * the VFS may already have hit and used them. Thus,
  692. * we must lock them as rmdir() would.
  693. */
  694. mutex_lock(&d_inode(dentry)->i_mutex);
  695. configfs_remove_dir(item);
  696. d_inode(dentry)->i_flags |= S_DEAD;
  697. dont_mount(dentry);
  698. mutex_unlock(&d_inode(dentry)->i_mutex);
  699. d_delete(dentry);
  700. }
  701. }
  702. return ret;
  703. }
  704. /* Caller holds the mutex of the item's inode */
  705. static void configfs_detach_item(struct config_item *item)
  706. {
  707. detach_attrs(item);
  708. configfs_remove_dir(item);
  709. }
  710. static int configfs_attach_group(struct config_item *parent_item,
  711. struct config_item *item,
  712. struct dentry *dentry)
  713. {
  714. int ret;
  715. struct configfs_dirent *sd;
  716. ret = configfs_attach_item(parent_item, item, dentry);
  717. if (!ret) {
  718. sd = dentry->d_fsdata;
  719. sd->s_type |= CONFIGFS_USET_DIR;
  720. /*
  721. * FYI, we're faking mkdir in populate_groups()
  722. * We must lock the group's inode to avoid races with the VFS
  723. * which can already hit the inode and try to add/remove entries
  724. * under it.
  725. *
  726. * We must also lock the inode to remove it safely in case of
  727. * error, as rmdir() would.
  728. */
  729. mutex_lock_nested(&d_inode(dentry)->i_mutex, I_MUTEX_CHILD);
  730. configfs_adjust_dir_dirent_depth_before_populate(sd);
  731. ret = populate_groups(to_config_group(item));
  732. if (ret) {
  733. configfs_detach_item(item);
  734. d_inode(dentry)->i_flags |= S_DEAD;
  735. dont_mount(dentry);
  736. }
  737. configfs_adjust_dir_dirent_depth_after_populate(sd);
  738. mutex_unlock(&d_inode(dentry)->i_mutex);
  739. if (ret)
  740. d_delete(dentry);
  741. }
  742. return ret;
  743. }
  744. /* Caller holds the mutex of the group's inode */
  745. static void configfs_detach_group(struct config_item *item)
  746. {
  747. detach_groups(to_config_group(item));
  748. configfs_detach_item(item);
  749. }
  750. /*
  751. * After the item has been detached from the filesystem view, we are
  752. * ready to tear it out of the hierarchy. Notify the client before
  753. * we do that so they can perform any cleanup that requires
  754. * navigating the hierarchy. A client does not need to provide this
  755. * callback. The subsystem semaphore MUST be held by the caller, and
  756. * references must be valid for both items. It also assumes the
  757. * caller has validated ci_type.
  758. */
  759. static void client_disconnect_notify(struct config_item *parent_item,
  760. struct config_item *item)
  761. {
  762. struct config_item_type *type;
  763. type = parent_item->ci_type;
  764. BUG_ON(!type);
  765. if (type->ct_group_ops && type->ct_group_ops->disconnect_notify)
  766. type->ct_group_ops->disconnect_notify(to_config_group(parent_item),
  767. item);
  768. }
  769. /*
  770. * Drop the initial reference from make_item()/make_group()
  771. * This function assumes that reference is held on item
  772. * and that item holds a valid reference to the parent. Also, it
  773. * assumes the caller has validated ci_type.
  774. */
  775. static void client_drop_item(struct config_item *parent_item,
  776. struct config_item *item)
  777. {
  778. struct config_item_type *type;
  779. type = parent_item->ci_type;
  780. BUG_ON(!type);
  781. /*
  782. * If ->drop_item() exists, it is responsible for the
  783. * config_item_put().
  784. */
  785. if (type->ct_group_ops && type->ct_group_ops->drop_item)
  786. type->ct_group_ops->drop_item(to_config_group(parent_item),
  787. item);
  788. else
  789. config_item_put(item);
  790. }
  791. #ifdef DEBUG
  792. static void configfs_dump_one(struct configfs_dirent *sd, int level)
  793. {
  794. pr_info("%*s\"%s\":\n", level, " ", configfs_get_name(sd));
  795. #define type_print(_type) if (sd->s_type & _type) pr_info("%*s %s\n", level, " ", #_type);
  796. type_print(CONFIGFS_ROOT);
  797. type_print(CONFIGFS_DIR);
  798. type_print(CONFIGFS_ITEM_ATTR);
  799. type_print(CONFIGFS_ITEM_LINK);
  800. type_print(CONFIGFS_USET_DIR);
  801. type_print(CONFIGFS_USET_DEFAULT);
  802. type_print(CONFIGFS_USET_DROPPING);
  803. #undef type_print
  804. }
  805. static int configfs_dump(struct configfs_dirent *sd, int level)
  806. {
  807. struct configfs_dirent *child_sd;
  808. int ret = 0;
  809. configfs_dump_one(sd, level);
  810. if (!(sd->s_type & (CONFIGFS_DIR|CONFIGFS_ROOT)))
  811. return 0;
  812. list_for_each_entry(child_sd, &sd->s_children, s_sibling) {
  813. ret = configfs_dump(child_sd, level + 2);
  814. if (ret)
  815. break;
  816. }
  817. return ret;
  818. }
  819. #endif
  820. /*
  821. * configfs_depend_item() and configfs_undepend_item()
  822. *
  823. * WARNING: Do not call these from a configfs callback!
  824. *
  825. * This describes these functions and their helpers.
  826. *
  827. * Allow another kernel system to depend on a config_item. If this
  828. * happens, the item cannot go away until the dependent can live without
  829. * it. The idea is to give client modules as simple an interface as
  830. * possible. When a system asks them to depend on an item, they just
  831. * call configfs_depend_item(). If the item is live and the client
  832. * driver is in good shape, we'll happily do the work for them.
  833. *
  834. * Why is the locking complex? Because configfs uses the VFS to handle
  835. * all locking, but this function is called outside the normal
  836. * VFS->configfs path. So it must take VFS locks to prevent the
  837. * VFS->configfs stuff (configfs_mkdir(), configfs_rmdir(), etc). This is
  838. * why you can't call these functions underneath configfs callbacks.
  839. *
  840. * Note, btw, that this can be called at *any* time, even when a configfs
  841. * subsystem isn't registered, or when configfs is loading or unloading.
  842. * Just like configfs_register_subsystem(). So we take the same
  843. * precautions. We pin the filesystem. We lock configfs_dirent_lock.
  844. * If we can find the target item in the
  845. * configfs tree, it must be part of the subsystem tree as well, so we
  846. * do not need the subsystem semaphore. Holding configfs_dirent_lock helps
  847. * locking out mkdir() and rmdir(), who might be racing us.
  848. */
  849. /*
  850. * configfs_depend_prep()
  851. *
  852. * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
  853. * attributes. This is similar but not the same to configfs_detach_prep().
  854. * Note that configfs_detach_prep() expects the parent to be locked when it
  855. * is called, but we lock the parent *inside* configfs_depend_prep(). We
  856. * do that so we can unlock it if we find nothing.
  857. *
  858. * Here we do a depth-first search of the dentry hierarchy looking for
  859. * our object.
  860. * We deliberately ignore items tagged as dropping since they are virtually
  861. * dead, as well as items in the middle of attachment since they virtually
  862. * do not exist yet. This completes the locking out of racing mkdir() and
  863. * rmdir().
  864. * Note: subdirectories in the middle of attachment start with s_type =
  865. * CONFIGFS_DIR|CONFIGFS_USET_CREATING set by create_dir(). When
  866. * CONFIGFS_USET_CREATING is set, we ignore the item. The actual set of
  867. * s_type is in configfs_new_dirent(), which has configfs_dirent_lock.
  868. *
  869. * If the target is not found, -ENOENT is bubbled up.
  870. *
  871. * This adds a requirement that all config_items be unique!
  872. *
  873. * This is recursive. There isn't
  874. * much on the stack, though, so folks that need this function - be careful
  875. * about your stack! Patches will be accepted to make it iterative.
  876. */
  877. static int configfs_depend_prep(struct dentry *origin,
  878. struct config_item *target)
  879. {
  880. struct configfs_dirent *child_sd, *sd;
  881. int ret = 0;
  882. BUG_ON(!origin || !origin->d_fsdata);
  883. sd = origin->d_fsdata;
  884. if (sd->s_element == target) /* Boo-yah */
  885. goto out;
  886. list_for_each_entry(child_sd, &sd->s_children, s_sibling) {
  887. if ((child_sd->s_type & CONFIGFS_DIR) &&
  888. !(child_sd->s_type & CONFIGFS_USET_DROPPING) &&
  889. !(child_sd->s_type & CONFIGFS_USET_CREATING)) {
  890. ret = configfs_depend_prep(child_sd->s_dentry,
  891. target);
  892. if (!ret)
  893. goto out; /* Child path boo-yah */
  894. }
  895. }
  896. /* We looped all our children and didn't find target */
  897. ret = -ENOENT;
  898. out:
  899. return ret;
  900. }
  901. int configfs_depend_item(struct configfs_subsystem *subsys,
  902. struct config_item *target)
  903. {
  904. int ret;
  905. struct configfs_dirent *p, *root_sd, *subsys_sd = NULL;
  906. struct config_item *s_item = &subsys->su_group.cg_item;
  907. struct dentry *root;
  908. /*
  909. * Pin the configfs filesystem. This means we can safely access
  910. * the root of the configfs filesystem.
  911. */
  912. root = configfs_pin_fs();
  913. if (IS_ERR(root))
  914. return PTR_ERR(root);
  915. /*
  916. * Next, lock the root directory. We're going to check that the
  917. * subsystem is really registered, and so we need to lock out
  918. * configfs_[un]register_subsystem().
  919. */
  920. mutex_lock(&d_inode(root)->i_mutex);
  921. root_sd = root->d_fsdata;
  922. list_for_each_entry(p, &root_sd->s_children, s_sibling) {
  923. if (p->s_type & CONFIGFS_DIR) {
  924. if (p->s_element == s_item) {
  925. subsys_sd = p;
  926. break;
  927. }
  928. }
  929. }
  930. if (!subsys_sd) {
  931. ret = -ENOENT;
  932. goto out_unlock_fs;
  933. }
  934. /* Ok, now we can trust subsys/s_item */
  935. spin_lock(&configfs_dirent_lock);
  936. /* Scan the tree, return 0 if found */
  937. ret = configfs_depend_prep(subsys_sd->s_dentry, target);
  938. if (ret)
  939. goto out_unlock_dirent_lock;
  940. /*
  941. * We are sure that the item is not about to be removed by rmdir(), and
  942. * not in the middle of attachment by mkdir().
  943. */
  944. p = target->ci_dentry->d_fsdata;
  945. p->s_dependent_count += 1;
  946. out_unlock_dirent_lock:
  947. spin_unlock(&configfs_dirent_lock);
  948. out_unlock_fs:
  949. mutex_unlock(&d_inode(root)->i_mutex);
  950. /*
  951. * If we succeeded, the fs is pinned via other methods. If not,
  952. * we're done with it anyway. So release_fs() is always right.
  953. */
  954. configfs_release_fs();
  955. return ret;
  956. }
  957. EXPORT_SYMBOL(configfs_depend_item);
  958. /*
  959. * Release the dependent linkage. This is much simpler than
  960. * configfs_depend_item() because we know that that the client driver is
  961. * pinned, thus the subsystem is pinned, and therefore configfs is pinned.
  962. */
  963. void configfs_undepend_item(struct configfs_subsystem *subsys,
  964. struct config_item *target)
  965. {
  966. struct configfs_dirent *sd;
  967. /*
  968. * Since we can trust everything is pinned, we just need
  969. * configfs_dirent_lock.
  970. */
  971. spin_lock(&configfs_dirent_lock);
  972. sd = target->ci_dentry->d_fsdata;
  973. BUG_ON(sd->s_dependent_count < 1);
  974. sd->s_dependent_count -= 1;
  975. /*
  976. * After this unlock, we cannot trust the item to stay alive!
  977. * DO NOT REFERENCE item after this unlock.
  978. */
  979. spin_unlock(&configfs_dirent_lock);
  980. }
  981. EXPORT_SYMBOL(configfs_undepend_item);
  982. static int configfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
  983. {
  984. int ret = 0;
  985. int module_got = 0;
  986. struct config_group *group = NULL;
  987. struct config_item *item = NULL;
  988. struct config_item *parent_item;
  989. struct configfs_subsystem *subsys;
  990. struct configfs_dirent *sd;
  991. struct config_item_type *type;
  992. struct module *subsys_owner = NULL, *new_item_owner = NULL;
  993. char *name;
  994. sd = dentry->d_parent->d_fsdata;
  995. /*
  996. * Fake invisibility if dir belongs to a group/default groups hierarchy
  997. * being attached
  998. */
  999. if (!configfs_dirent_is_ready(sd)) {
  1000. ret = -ENOENT;
  1001. goto out;
  1002. }
  1003. if (!(sd->s_type & CONFIGFS_USET_DIR)) {
  1004. ret = -EPERM;
  1005. goto out;
  1006. }
  1007. /* Get a working ref for the duration of this function */
  1008. parent_item = configfs_get_config_item(dentry->d_parent);
  1009. type = parent_item->ci_type;
  1010. subsys = to_config_group(parent_item)->cg_subsys;
  1011. BUG_ON(!subsys);
  1012. if (!type || !type->ct_group_ops ||
  1013. (!type->ct_group_ops->make_group &&
  1014. !type->ct_group_ops->make_item)) {
  1015. ret = -EPERM; /* Lack-of-mkdir returns -EPERM */
  1016. goto out_put;
  1017. }
  1018. /*
  1019. * The subsystem may belong to a different module than the item
  1020. * being created. We don't want to safely pin the new item but
  1021. * fail to pin the subsystem it sits under.
  1022. */
  1023. if (!subsys->su_group.cg_item.ci_type) {
  1024. ret = -EINVAL;
  1025. goto out_put;
  1026. }
  1027. subsys_owner = subsys->su_group.cg_item.ci_type->ct_owner;
  1028. if (!try_module_get(subsys_owner)) {
  1029. ret = -EINVAL;
  1030. goto out_put;
  1031. }
  1032. name = kmalloc(dentry->d_name.len + 1, GFP_KERNEL);
  1033. if (!name) {
  1034. ret = -ENOMEM;
  1035. goto out_subsys_put;
  1036. }
  1037. snprintf(name, dentry->d_name.len + 1, "%s", dentry->d_name.name);
  1038. mutex_lock(&subsys->su_mutex);
  1039. if (type->ct_group_ops->make_group) {
  1040. group = type->ct_group_ops->make_group(to_config_group(parent_item), name);
  1041. if (!group)
  1042. group = ERR_PTR(-ENOMEM);
  1043. if (!IS_ERR(group)) {
  1044. link_group(to_config_group(parent_item), group);
  1045. item = &group->cg_item;
  1046. } else
  1047. ret = PTR_ERR(group);
  1048. } else {
  1049. item = type->ct_group_ops->make_item(to_config_group(parent_item), name);
  1050. if (!item)
  1051. item = ERR_PTR(-ENOMEM);
  1052. if (!IS_ERR(item))
  1053. link_obj(parent_item, item);
  1054. else
  1055. ret = PTR_ERR(item);
  1056. }
  1057. mutex_unlock(&subsys->su_mutex);
  1058. kfree(name);
  1059. if (ret) {
  1060. /*
  1061. * If ret != 0, then link_obj() was never called.
  1062. * There are no extra references to clean up.
  1063. */
  1064. goto out_subsys_put;
  1065. }
  1066. /*
  1067. * link_obj() has been called (via link_group() for groups).
  1068. * From here on out, errors must clean that up.
  1069. */
  1070. type = item->ci_type;
  1071. if (!type) {
  1072. ret = -EINVAL;
  1073. goto out_unlink;
  1074. }
  1075. new_item_owner = type->ct_owner;
  1076. if (!try_module_get(new_item_owner)) {
  1077. ret = -EINVAL;
  1078. goto out_unlink;
  1079. }
  1080. /*
  1081. * I hate doing it this way, but if there is
  1082. * an error, module_put() probably should
  1083. * happen after any cleanup.
  1084. */
  1085. module_got = 1;
  1086. /*
  1087. * Make racing rmdir() fail if it did not tag parent with
  1088. * CONFIGFS_USET_DROPPING
  1089. * Note: if CONFIGFS_USET_DROPPING is already set, attach_group() will
  1090. * fail and let rmdir() terminate correctly
  1091. */
  1092. spin_lock(&configfs_dirent_lock);
  1093. /* This will make configfs_detach_prep() fail */
  1094. sd->s_type |= CONFIGFS_USET_IN_MKDIR;
  1095. spin_unlock(&configfs_dirent_lock);
  1096. if (group)
  1097. ret = configfs_attach_group(parent_item, item, dentry);
  1098. else
  1099. ret = configfs_attach_item(parent_item, item, dentry);
  1100. spin_lock(&configfs_dirent_lock);
  1101. sd->s_type &= ~CONFIGFS_USET_IN_MKDIR;
  1102. if (!ret)
  1103. configfs_dir_set_ready(dentry->d_fsdata);
  1104. spin_unlock(&configfs_dirent_lock);
  1105. out_unlink:
  1106. if (ret) {
  1107. /* Tear down everything we built up */
  1108. mutex_lock(&subsys->su_mutex);
  1109. client_disconnect_notify(parent_item, item);
  1110. if (group)
  1111. unlink_group(group);
  1112. else
  1113. unlink_obj(item);
  1114. client_drop_item(parent_item, item);
  1115. mutex_unlock(&subsys->su_mutex);
  1116. if (module_got)
  1117. module_put(new_item_owner);
  1118. }
  1119. out_subsys_put:
  1120. if (ret)
  1121. module_put(subsys_owner);
  1122. out_put:
  1123. /*
  1124. * link_obj()/link_group() took a reference from child->parent,
  1125. * so the parent is safely pinned. We can drop our working
  1126. * reference.
  1127. */
  1128. config_item_put(parent_item);
  1129. out:
  1130. return ret;
  1131. }
  1132. static int configfs_rmdir(struct inode *dir, struct dentry *dentry)
  1133. {
  1134. struct config_item *parent_item;
  1135. struct config_item *item;
  1136. struct configfs_subsystem *subsys;
  1137. struct configfs_dirent *sd;
  1138. struct module *subsys_owner = NULL, *dead_item_owner = NULL;
  1139. int ret;
  1140. sd = dentry->d_fsdata;
  1141. if (sd->s_type & CONFIGFS_USET_DEFAULT)
  1142. return -EPERM;
  1143. /* Get a working ref until we have the child */
  1144. parent_item = configfs_get_config_item(dentry->d_parent);
  1145. subsys = to_config_group(parent_item)->cg_subsys;
  1146. BUG_ON(!subsys);
  1147. if (!parent_item->ci_type) {
  1148. config_item_put(parent_item);
  1149. return -EINVAL;
  1150. }
  1151. /* configfs_mkdir() shouldn't have allowed this */
  1152. BUG_ON(!subsys->su_group.cg_item.ci_type);
  1153. subsys_owner = subsys->su_group.cg_item.ci_type->ct_owner;
  1154. /*
  1155. * Ensure that no racing symlink() will make detach_prep() fail while
  1156. * the new link is temporarily attached
  1157. */
  1158. do {
  1159. struct mutex *wait_mutex;
  1160. mutex_lock(&configfs_symlink_mutex);
  1161. spin_lock(&configfs_dirent_lock);
  1162. /*
  1163. * Here's where we check for dependents. We're protected by
  1164. * configfs_dirent_lock.
  1165. * If no dependent, atomically tag the item as dropping.
  1166. */
  1167. ret = sd->s_dependent_count ? -EBUSY : 0;
  1168. if (!ret) {
  1169. ret = configfs_detach_prep(dentry, &wait_mutex);
  1170. if (ret)
  1171. configfs_detach_rollback(dentry);
  1172. }
  1173. spin_unlock(&configfs_dirent_lock);
  1174. mutex_unlock(&configfs_symlink_mutex);
  1175. if (ret) {
  1176. if (ret != -EAGAIN) {
  1177. config_item_put(parent_item);
  1178. return ret;
  1179. }
  1180. /* Wait until the racing operation terminates */
  1181. mutex_lock(wait_mutex);
  1182. mutex_unlock(wait_mutex);
  1183. }
  1184. } while (ret == -EAGAIN);
  1185. /* Get a working ref for the duration of this function */
  1186. item = configfs_get_config_item(dentry);
  1187. /* Drop reference from above, item already holds one. */
  1188. config_item_put(parent_item);
  1189. if (item->ci_type)
  1190. dead_item_owner = item->ci_type->ct_owner;
  1191. if (sd->s_type & CONFIGFS_USET_DIR) {
  1192. configfs_detach_group(item);
  1193. mutex_lock(&subsys->su_mutex);
  1194. client_disconnect_notify(parent_item, item);
  1195. unlink_group(to_config_group(item));
  1196. } else {
  1197. configfs_detach_item(item);
  1198. mutex_lock(&subsys->su_mutex);
  1199. client_disconnect_notify(parent_item, item);
  1200. unlink_obj(item);
  1201. }
  1202. client_drop_item(parent_item, item);
  1203. mutex_unlock(&subsys->su_mutex);
  1204. /* Drop our reference from above */
  1205. config_item_put(item);
  1206. module_put(dead_item_owner);
  1207. module_put(subsys_owner);
  1208. return 0;
  1209. }
  1210. const struct inode_operations configfs_dir_inode_operations = {
  1211. .mkdir = configfs_mkdir,
  1212. .rmdir = configfs_rmdir,
  1213. .symlink = configfs_symlink,
  1214. .unlink = configfs_unlink,
  1215. .lookup = configfs_lookup,
  1216. .setattr = configfs_setattr,
  1217. };
  1218. const struct inode_operations configfs_root_inode_operations = {
  1219. .lookup = configfs_lookup,
  1220. .setattr = configfs_setattr,
  1221. };
  1222. #if 0
  1223. int configfs_rename_dir(struct config_item * item, const char *new_name)
  1224. {
  1225. int error = 0;
  1226. struct dentry * new_dentry, * parent;
  1227. if (!strcmp(config_item_name(item), new_name))
  1228. return -EINVAL;
  1229. if (!item->parent)
  1230. return -EINVAL;
  1231. down_write(&configfs_rename_sem);
  1232. parent = item->parent->dentry;
  1233. mutex_lock(&d_inode(parent)->i_mutex);
  1234. new_dentry = lookup_one_len(new_name, parent, strlen(new_name));
  1235. if (!IS_ERR(new_dentry)) {
  1236. if (d_really_is_negative(new_dentry)) {
  1237. error = config_item_set_name(item, "%s", new_name);
  1238. if (!error) {
  1239. d_add(new_dentry, NULL);
  1240. d_move(item->dentry, new_dentry);
  1241. }
  1242. else
  1243. d_delete(new_dentry);
  1244. } else
  1245. error = -EEXIST;
  1246. dput(new_dentry);
  1247. }
  1248. mutex_unlock(&d_inode(parent)->i_mutex);
  1249. up_write(&configfs_rename_sem);
  1250. return error;
  1251. }
  1252. #endif
  1253. static int configfs_dir_open(struct inode *inode, struct file *file)
  1254. {
  1255. struct dentry * dentry = file->f_path.dentry;
  1256. struct configfs_dirent * parent_sd = dentry->d_fsdata;
  1257. int err;
  1258. mutex_lock(&d_inode(dentry)->i_mutex);
  1259. /*
  1260. * Fake invisibility if dir belongs to a group/default groups hierarchy
  1261. * being attached
  1262. */
  1263. err = -ENOENT;
  1264. if (configfs_dirent_is_ready(parent_sd)) {
  1265. file->private_data = configfs_new_dirent(parent_sd, NULL, 0);
  1266. if (IS_ERR(file->private_data))
  1267. err = PTR_ERR(file->private_data);
  1268. else
  1269. err = 0;
  1270. }
  1271. mutex_unlock(&d_inode(dentry)->i_mutex);
  1272. return err;
  1273. }
  1274. static int configfs_dir_close(struct inode *inode, struct file *file)
  1275. {
  1276. struct dentry * dentry = file->f_path.dentry;
  1277. struct configfs_dirent * cursor = file->private_data;
  1278. mutex_lock(&d_inode(dentry)->i_mutex);
  1279. spin_lock(&configfs_dirent_lock);
  1280. list_del_init(&cursor->s_sibling);
  1281. spin_unlock(&configfs_dirent_lock);
  1282. mutex_unlock(&d_inode(dentry)->i_mutex);
  1283. release_configfs_dirent(cursor);
  1284. return 0;
  1285. }
  1286. /* Relationship between s_mode and the DT_xxx types */
  1287. static inline unsigned char dt_type(struct configfs_dirent *sd)
  1288. {
  1289. return (sd->s_mode >> 12) & 15;
  1290. }
  1291. static int configfs_readdir(struct file *file, struct dir_context *ctx)
  1292. {
  1293. struct dentry *dentry = file->f_path.dentry;
  1294. struct super_block *sb = dentry->d_sb;
  1295. struct configfs_dirent * parent_sd = dentry->d_fsdata;
  1296. struct configfs_dirent *cursor = file->private_data;
  1297. struct list_head *p, *q = &cursor->s_sibling;
  1298. ino_t ino = 0;
  1299. if (!dir_emit_dots(file, ctx))
  1300. return 0;
  1301. if (ctx->pos == 2) {
  1302. spin_lock(&configfs_dirent_lock);
  1303. list_move(q, &parent_sd->s_children);
  1304. spin_unlock(&configfs_dirent_lock);
  1305. }
  1306. for (p = q->next; p != &parent_sd->s_children; p = p->next) {
  1307. struct configfs_dirent *next;
  1308. const char *name;
  1309. int len;
  1310. struct inode *inode = NULL;
  1311. next = list_entry(p, struct configfs_dirent, s_sibling);
  1312. if (!next->s_element)
  1313. continue;
  1314. name = configfs_get_name(next);
  1315. len = strlen(name);
  1316. /*
  1317. * We'll have a dentry and an inode for
  1318. * PINNED items and for open attribute
  1319. * files. We lock here to prevent a race
  1320. * with configfs_d_iput() clearing
  1321. * s_dentry before calling iput().
  1322. *
  1323. * Why do we go to the trouble? If
  1324. * someone has an attribute file open,
  1325. * the inode number should match until
  1326. * they close it. Beyond that, we don't
  1327. * care.
  1328. */
  1329. spin_lock(&configfs_dirent_lock);
  1330. dentry = next->s_dentry;
  1331. if (dentry)
  1332. inode = d_inode(dentry);
  1333. if (inode)
  1334. ino = inode->i_ino;
  1335. spin_unlock(&configfs_dirent_lock);
  1336. if (!inode)
  1337. ino = iunique(sb, 2);
  1338. if (!dir_emit(ctx, name, len, ino, dt_type(next)))
  1339. return 0;
  1340. spin_lock(&configfs_dirent_lock);
  1341. list_move(q, p);
  1342. spin_unlock(&configfs_dirent_lock);
  1343. p = q;
  1344. ctx->pos++;
  1345. }
  1346. return 0;
  1347. }
  1348. static loff_t configfs_dir_lseek(struct file *file, loff_t offset, int whence)
  1349. {
  1350. struct dentry * dentry = file->f_path.dentry;
  1351. mutex_lock(&d_inode(dentry)->i_mutex);
  1352. switch (whence) {
  1353. case 1:
  1354. offset += file->f_pos;
  1355. case 0:
  1356. if (offset >= 0)
  1357. break;
  1358. default:
  1359. mutex_unlock(&d_inode(dentry)->i_mutex);
  1360. return -EINVAL;
  1361. }
  1362. if (offset != file->f_pos) {
  1363. file->f_pos = offset;
  1364. if (file->f_pos >= 2) {
  1365. struct configfs_dirent *sd = dentry->d_fsdata;
  1366. struct configfs_dirent *cursor = file->private_data;
  1367. struct list_head *p;
  1368. loff_t n = file->f_pos - 2;
  1369. spin_lock(&configfs_dirent_lock);
  1370. list_del(&cursor->s_sibling);
  1371. p = sd->s_children.next;
  1372. while (n && p != &sd->s_children) {
  1373. struct configfs_dirent *next;
  1374. next = list_entry(p, struct configfs_dirent,
  1375. s_sibling);
  1376. if (next->s_element)
  1377. n--;
  1378. p = p->next;
  1379. }
  1380. list_add_tail(&cursor->s_sibling, p);
  1381. spin_unlock(&configfs_dirent_lock);
  1382. }
  1383. }
  1384. mutex_unlock(&d_inode(dentry)->i_mutex);
  1385. return offset;
  1386. }
  1387. const struct file_operations configfs_dir_operations = {
  1388. .open = configfs_dir_open,
  1389. .release = configfs_dir_close,
  1390. .llseek = configfs_dir_lseek,
  1391. .read = generic_read_dir,
  1392. .iterate = configfs_readdir,
  1393. };
  1394. int configfs_register_subsystem(struct configfs_subsystem *subsys)
  1395. {
  1396. int err;
  1397. struct config_group *group = &subsys->su_group;
  1398. struct dentry *dentry;
  1399. struct dentry *root;
  1400. struct configfs_dirent *sd;
  1401. root = configfs_pin_fs();
  1402. if (IS_ERR(root))
  1403. return PTR_ERR(root);
  1404. if (!group->cg_item.ci_name)
  1405. group->cg_item.ci_name = group->cg_item.ci_namebuf;
  1406. sd = root->d_fsdata;
  1407. link_group(to_config_group(sd->s_element), group);
  1408. mutex_lock_nested(&d_inode(root)->i_mutex, I_MUTEX_PARENT);
  1409. err = -ENOMEM;
  1410. dentry = d_alloc_name(root, group->cg_item.ci_name);
  1411. if (dentry) {
  1412. d_add(dentry, NULL);
  1413. err = configfs_attach_group(sd->s_element, &group->cg_item,
  1414. dentry);
  1415. if (err) {
  1416. BUG_ON(d_inode(dentry));
  1417. d_drop(dentry);
  1418. dput(dentry);
  1419. } else {
  1420. spin_lock(&configfs_dirent_lock);
  1421. configfs_dir_set_ready(dentry->d_fsdata);
  1422. spin_unlock(&configfs_dirent_lock);
  1423. }
  1424. }
  1425. mutex_unlock(&d_inode(root)->i_mutex);
  1426. if (err) {
  1427. unlink_group(group);
  1428. configfs_release_fs();
  1429. }
  1430. return err;
  1431. }
  1432. void configfs_unregister_subsystem(struct configfs_subsystem *subsys)
  1433. {
  1434. struct config_group *group = &subsys->su_group;
  1435. struct dentry *dentry = group->cg_item.ci_dentry;
  1436. struct dentry *root = dentry->d_sb->s_root;
  1437. if (dentry->d_parent != root) {
  1438. pr_err("Tried to unregister non-subsystem!\n");
  1439. return;
  1440. }
  1441. mutex_lock_nested(&d_inode(root)->i_mutex,
  1442. I_MUTEX_PARENT);
  1443. mutex_lock_nested(&d_inode(dentry)->i_mutex, I_MUTEX_CHILD);
  1444. mutex_lock(&configfs_symlink_mutex);
  1445. spin_lock(&configfs_dirent_lock);
  1446. if (configfs_detach_prep(dentry, NULL)) {
  1447. pr_err("Tried to unregister non-empty subsystem!\n");
  1448. }
  1449. spin_unlock(&configfs_dirent_lock);
  1450. mutex_unlock(&configfs_symlink_mutex);
  1451. configfs_detach_group(&group->cg_item);
  1452. d_inode(dentry)->i_flags |= S_DEAD;
  1453. dont_mount(dentry);
  1454. mutex_unlock(&d_inode(dentry)->i_mutex);
  1455. d_delete(dentry);
  1456. mutex_unlock(&d_inode(root)->i_mutex);
  1457. dput(dentry);
  1458. unlink_group(group);
  1459. configfs_release_fs();
  1460. }
  1461. EXPORT_SYMBOL(configfs_register_subsystem);
  1462. EXPORT_SYMBOL(configfs_unregister_subsystem);