inode.c 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/ceph/ceph_debug.h>
  3. #include <linux/module.h>
  4. #include <linux/fs.h>
  5. #include <linux/slab.h>
  6. #include <linux/string.h>
  7. #include <linux/uaccess.h>
  8. #include <linux/kernel.h>
  9. #include <linux/writeback.h>
  10. #include <linux/vmalloc.h>
  11. #include <linux/xattr.h>
  12. #include <linux/posix_acl.h>
  13. #include <linux/random.h>
  14. #include <linux/sort.h>
  15. #include "super.h"
  16. #include "mds_client.h"
  17. #include "cache.h"
  18. #include <linux/ceph/decode.h>
  19. /*
  20. * Ceph inode operations
  21. *
  22. * Implement basic inode helpers (get, alloc) and inode ops (getattr,
  23. * setattr, etc.), xattr helpers, and helpers for assimilating
  24. * metadata returned by the MDS into our cache.
  25. *
  26. * Also define helpers for doing asynchronous writeback, invalidation,
  27. * and truncation for the benefit of those who can't afford to block
  28. * (typically because they are in the message handler path).
  29. */
  30. static const struct inode_operations ceph_symlink_iops;
  31. static void ceph_invalidate_work(struct work_struct *work);
  32. static void ceph_writeback_work(struct work_struct *work);
  33. static void ceph_vmtruncate_work(struct work_struct *work);
  34. /*
  35. * find or create an inode, given the ceph ino number
  36. */
  37. static int ceph_set_ino_cb(struct inode *inode, void *data)
  38. {
  39. ceph_inode(inode)->i_vino = *(struct ceph_vino *)data;
  40. inode->i_ino = ceph_vino_to_ino(*(struct ceph_vino *)data);
  41. return 0;
  42. }
  43. struct inode *ceph_get_inode(struct super_block *sb, struct ceph_vino vino)
  44. {
  45. struct inode *inode;
  46. ino_t t = ceph_vino_to_ino(vino);
  47. inode = iget5_locked(sb, t, ceph_ino_compare, ceph_set_ino_cb, &vino);
  48. if (!inode)
  49. return ERR_PTR(-ENOMEM);
  50. if (inode->i_state & I_NEW) {
  51. dout("get_inode created new inode %p %llx.%llx ino %llx\n",
  52. inode, ceph_vinop(inode), (u64)inode->i_ino);
  53. unlock_new_inode(inode);
  54. }
  55. dout("get_inode on %lu=%llx.%llx got %p\n", inode->i_ino, vino.ino,
  56. vino.snap, inode);
  57. return inode;
  58. }
  59. /*
  60. * get/constuct snapdir inode for a given directory
  61. */
  62. struct inode *ceph_get_snapdir(struct inode *parent)
  63. {
  64. struct ceph_vino vino = {
  65. .ino = ceph_ino(parent),
  66. .snap = CEPH_SNAPDIR,
  67. };
  68. struct inode *inode = ceph_get_inode(parent->i_sb, vino);
  69. struct ceph_inode_info *ci = ceph_inode(inode);
  70. BUG_ON(!S_ISDIR(parent->i_mode));
  71. if (IS_ERR(inode))
  72. return inode;
  73. inode->i_mode = parent->i_mode;
  74. inode->i_uid = parent->i_uid;
  75. inode->i_gid = parent->i_gid;
  76. inode->i_op = &ceph_snapdir_iops;
  77. inode->i_fop = &ceph_snapdir_fops;
  78. ci->i_snap_caps = CEPH_CAP_PIN; /* so we can open */
  79. ci->i_rbytes = 0;
  80. return inode;
  81. }
  82. const struct inode_operations ceph_file_iops = {
  83. .permission = ceph_permission,
  84. .setattr = ceph_setattr,
  85. .getattr = ceph_getattr,
  86. .listxattr = ceph_listxattr,
  87. .get_acl = ceph_get_acl,
  88. .set_acl = ceph_set_acl,
  89. };
  90. /*
  91. * We use a 'frag tree' to keep track of the MDS's directory fragments
  92. * for a given inode (usually there is just a single fragment). We
  93. * need to know when a child frag is delegated to a new MDS, or when
  94. * it is flagged as replicated, so we can direct our requests
  95. * accordingly.
  96. */
  97. /*
  98. * find/create a frag in the tree
  99. */
  100. static struct ceph_inode_frag *__get_or_create_frag(struct ceph_inode_info *ci,
  101. u32 f)
  102. {
  103. struct rb_node **p;
  104. struct rb_node *parent = NULL;
  105. struct ceph_inode_frag *frag;
  106. int c;
  107. p = &ci->i_fragtree.rb_node;
  108. while (*p) {
  109. parent = *p;
  110. frag = rb_entry(parent, struct ceph_inode_frag, node);
  111. c = ceph_frag_compare(f, frag->frag);
  112. if (c < 0)
  113. p = &(*p)->rb_left;
  114. else if (c > 0)
  115. p = &(*p)->rb_right;
  116. else
  117. return frag;
  118. }
  119. frag = kmalloc(sizeof(*frag), GFP_NOFS);
  120. if (!frag)
  121. return ERR_PTR(-ENOMEM);
  122. frag->frag = f;
  123. frag->split_by = 0;
  124. frag->mds = -1;
  125. frag->ndist = 0;
  126. rb_link_node(&frag->node, parent, p);
  127. rb_insert_color(&frag->node, &ci->i_fragtree);
  128. dout("get_or_create_frag added %llx.%llx frag %x\n",
  129. ceph_vinop(&ci->vfs_inode), f);
  130. return frag;
  131. }
  132. /*
  133. * find a specific frag @f
  134. */
  135. struct ceph_inode_frag *__ceph_find_frag(struct ceph_inode_info *ci, u32 f)
  136. {
  137. struct rb_node *n = ci->i_fragtree.rb_node;
  138. while (n) {
  139. struct ceph_inode_frag *frag =
  140. rb_entry(n, struct ceph_inode_frag, node);
  141. int c = ceph_frag_compare(f, frag->frag);
  142. if (c < 0)
  143. n = n->rb_left;
  144. else if (c > 0)
  145. n = n->rb_right;
  146. else
  147. return frag;
  148. }
  149. return NULL;
  150. }
  151. /*
  152. * Choose frag containing the given value @v. If @pfrag is
  153. * specified, copy the frag delegation info to the caller if
  154. * it is present.
  155. */
  156. static u32 __ceph_choose_frag(struct ceph_inode_info *ci, u32 v,
  157. struct ceph_inode_frag *pfrag, int *found)
  158. {
  159. u32 t = ceph_frag_make(0, 0);
  160. struct ceph_inode_frag *frag;
  161. unsigned nway, i;
  162. u32 n;
  163. if (found)
  164. *found = 0;
  165. while (1) {
  166. WARN_ON(!ceph_frag_contains_value(t, v));
  167. frag = __ceph_find_frag(ci, t);
  168. if (!frag)
  169. break; /* t is a leaf */
  170. if (frag->split_by == 0) {
  171. if (pfrag)
  172. memcpy(pfrag, frag, sizeof(*pfrag));
  173. if (found)
  174. *found = 1;
  175. break;
  176. }
  177. /* choose child */
  178. nway = 1 << frag->split_by;
  179. dout("choose_frag(%x) %x splits by %d (%d ways)\n", v, t,
  180. frag->split_by, nway);
  181. for (i = 0; i < nway; i++) {
  182. n = ceph_frag_make_child(t, frag->split_by, i);
  183. if (ceph_frag_contains_value(n, v)) {
  184. t = n;
  185. break;
  186. }
  187. }
  188. BUG_ON(i == nway);
  189. }
  190. dout("choose_frag(%x) = %x\n", v, t);
  191. return t;
  192. }
  193. u32 ceph_choose_frag(struct ceph_inode_info *ci, u32 v,
  194. struct ceph_inode_frag *pfrag, int *found)
  195. {
  196. u32 ret;
  197. mutex_lock(&ci->i_fragtree_mutex);
  198. ret = __ceph_choose_frag(ci, v, pfrag, found);
  199. mutex_unlock(&ci->i_fragtree_mutex);
  200. return ret;
  201. }
  202. /*
  203. * Process dirfrag (delegation) info from the mds. Include leaf
  204. * fragment in tree ONLY if ndist > 0. Otherwise, only
  205. * branches/splits are included in i_fragtree)
  206. */
  207. static int ceph_fill_dirfrag(struct inode *inode,
  208. struct ceph_mds_reply_dirfrag *dirinfo)
  209. {
  210. struct ceph_inode_info *ci = ceph_inode(inode);
  211. struct ceph_inode_frag *frag;
  212. u32 id = le32_to_cpu(dirinfo->frag);
  213. int mds = le32_to_cpu(dirinfo->auth);
  214. int ndist = le32_to_cpu(dirinfo->ndist);
  215. int diri_auth = -1;
  216. int i;
  217. int err = 0;
  218. spin_lock(&ci->i_ceph_lock);
  219. if (ci->i_auth_cap)
  220. diri_auth = ci->i_auth_cap->mds;
  221. spin_unlock(&ci->i_ceph_lock);
  222. if (mds == -1) /* CDIR_AUTH_PARENT */
  223. mds = diri_auth;
  224. mutex_lock(&ci->i_fragtree_mutex);
  225. if (ndist == 0 && mds == diri_auth) {
  226. /* no delegation info needed. */
  227. frag = __ceph_find_frag(ci, id);
  228. if (!frag)
  229. goto out;
  230. if (frag->split_by == 0) {
  231. /* tree leaf, remove */
  232. dout("fill_dirfrag removed %llx.%llx frag %x"
  233. " (no ref)\n", ceph_vinop(inode), id);
  234. rb_erase(&frag->node, &ci->i_fragtree);
  235. kfree(frag);
  236. } else {
  237. /* tree branch, keep and clear */
  238. dout("fill_dirfrag cleared %llx.%llx frag %x"
  239. " referral\n", ceph_vinop(inode), id);
  240. frag->mds = -1;
  241. frag->ndist = 0;
  242. }
  243. goto out;
  244. }
  245. /* find/add this frag to store mds delegation info */
  246. frag = __get_or_create_frag(ci, id);
  247. if (IS_ERR(frag)) {
  248. /* this is not the end of the world; we can continue
  249. with bad/inaccurate delegation info */
  250. pr_err("fill_dirfrag ENOMEM on mds ref %llx.%llx fg %x\n",
  251. ceph_vinop(inode), le32_to_cpu(dirinfo->frag));
  252. err = -ENOMEM;
  253. goto out;
  254. }
  255. frag->mds = mds;
  256. frag->ndist = min_t(u32, ndist, CEPH_MAX_DIRFRAG_REP);
  257. for (i = 0; i < frag->ndist; i++)
  258. frag->dist[i] = le32_to_cpu(dirinfo->dist[i]);
  259. dout("fill_dirfrag %llx.%llx frag %x ndist=%d\n",
  260. ceph_vinop(inode), frag->frag, frag->ndist);
  261. out:
  262. mutex_unlock(&ci->i_fragtree_mutex);
  263. return err;
  264. }
  265. static int frag_tree_split_cmp(const void *l, const void *r)
  266. {
  267. struct ceph_frag_tree_split *ls = (struct ceph_frag_tree_split*)l;
  268. struct ceph_frag_tree_split *rs = (struct ceph_frag_tree_split*)r;
  269. return ceph_frag_compare(le32_to_cpu(ls->frag),
  270. le32_to_cpu(rs->frag));
  271. }
  272. static bool is_frag_child(u32 f, struct ceph_inode_frag *frag)
  273. {
  274. if (!frag)
  275. return f == ceph_frag_make(0, 0);
  276. if (ceph_frag_bits(f) != ceph_frag_bits(frag->frag) + frag->split_by)
  277. return false;
  278. return ceph_frag_contains_value(frag->frag, ceph_frag_value(f));
  279. }
  280. static int ceph_fill_fragtree(struct inode *inode,
  281. struct ceph_frag_tree_head *fragtree,
  282. struct ceph_mds_reply_dirfrag *dirinfo)
  283. {
  284. struct ceph_inode_info *ci = ceph_inode(inode);
  285. struct ceph_inode_frag *frag, *prev_frag = NULL;
  286. struct rb_node *rb_node;
  287. unsigned i, split_by, nsplits;
  288. u32 id;
  289. bool update = false;
  290. mutex_lock(&ci->i_fragtree_mutex);
  291. nsplits = le32_to_cpu(fragtree->nsplits);
  292. if (nsplits != ci->i_fragtree_nsplits) {
  293. update = true;
  294. } else if (nsplits) {
  295. i = prandom_u32() % nsplits;
  296. id = le32_to_cpu(fragtree->splits[i].frag);
  297. if (!__ceph_find_frag(ci, id))
  298. update = true;
  299. } else if (!RB_EMPTY_ROOT(&ci->i_fragtree)) {
  300. rb_node = rb_first(&ci->i_fragtree);
  301. frag = rb_entry(rb_node, struct ceph_inode_frag, node);
  302. if (frag->frag != ceph_frag_make(0, 0) || rb_next(rb_node))
  303. update = true;
  304. }
  305. if (!update && dirinfo) {
  306. id = le32_to_cpu(dirinfo->frag);
  307. if (id != __ceph_choose_frag(ci, id, NULL, NULL))
  308. update = true;
  309. }
  310. if (!update)
  311. goto out_unlock;
  312. if (nsplits > 1) {
  313. sort(fragtree->splits, nsplits, sizeof(fragtree->splits[0]),
  314. frag_tree_split_cmp, NULL);
  315. }
  316. dout("fill_fragtree %llx.%llx\n", ceph_vinop(inode));
  317. rb_node = rb_first(&ci->i_fragtree);
  318. for (i = 0; i < nsplits; i++) {
  319. id = le32_to_cpu(fragtree->splits[i].frag);
  320. split_by = le32_to_cpu(fragtree->splits[i].by);
  321. if (split_by == 0 || ceph_frag_bits(id) + split_by > 24) {
  322. pr_err("fill_fragtree %llx.%llx invalid split %d/%u, "
  323. "frag %x split by %d\n", ceph_vinop(inode),
  324. i, nsplits, id, split_by);
  325. continue;
  326. }
  327. frag = NULL;
  328. while (rb_node) {
  329. frag = rb_entry(rb_node, struct ceph_inode_frag, node);
  330. if (ceph_frag_compare(frag->frag, id) >= 0) {
  331. if (frag->frag != id)
  332. frag = NULL;
  333. else
  334. rb_node = rb_next(rb_node);
  335. break;
  336. }
  337. rb_node = rb_next(rb_node);
  338. /* delete stale split/leaf node */
  339. if (frag->split_by > 0 ||
  340. !is_frag_child(frag->frag, prev_frag)) {
  341. rb_erase(&frag->node, &ci->i_fragtree);
  342. if (frag->split_by > 0)
  343. ci->i_fragtree_nsplits--;
  344. kfree(frag);
  345. }
  346. frag = NULL;
  347. }
  348. if (!frag) {
  349. frag = __get_or_create_frag(ci, id);
  350. if (IS_ERR(frag))
  351. continue;
  352. }
  353. if (frag->split_by == 0)
  354. ci->i_fragtree_nsplits++;
  355. frag->split_by = split_by;
  356. dout(" frag %x split by %d\n", frag->frag, frag->split_by);
  357. prev_frag = frag;
  358. }
  359. while (rb_node) {
  360. frag = rb_entry(rb_node, struct ceph_inode_frag, node);
  361. rb_node = rb_next(rb_node);
  362. /* delete stale split/leaf node */
  363. if (frag->split_by > 0 ||
  364. !is_frag_child(frag->frag, prev_frag)) {
  365. rb_erase(&frag->node, &ci->i_fragtree);
  366. if (frag->split_by > 0)
  367. ci->i_fragtree_nsplits--;
  368. kfree(frag);
  369. }
  370. }
  371. out_unlock:
  372. mutex_unlock(&ci->i_fragtree_mutex);
  373. return 0;
  374. }
  375. /*
  376. * initialize a newly allocated inode.
  377. */
  378. struct inode *ceph_alloc_inode(struct super_block *sb)
  379. {
  380. struct ceph_inode_info *ci;
  381. int i;
  382. ci = kmem_cache_alloc(ceph_inode_cachep, GFP_NOFS);
  383. if (!ci)
  384. return NULL;
  385. dout("alloc_inode %p\n", &ci->vfs_inode);
  386. spin_lock_init(&ci->i_ceph_lock);
  387. ci->i_version = 0;
  388. ci->i_inline_version = 0;
  389. ci->i_time_warp_seq = 0;
  390. ci->i_ceph_flags = 0;
  391. atomic64_set(&ci->i_ordered_count, 1);
  392. atomic64_set(&ci->i_release_count, 1);
  393. atomic64_set(&ci->i_complete_seq[0], 0);
  394. atomic64_set(&ci->i_complete_seq[1], 0);
  395. ci->i_symlink = NULL;
  396. ci->i_max_bytes = 0;
  397. ci->i_max_files = 0;
  398. memset(&ci->i_dir_layout, 0, sizeof(ci->i_dir_layout));
  399. RCU_INIT_POINTER(ci->i_layout.pool_ns, NULL);
  400. ci->i_fragtree = RB_ROOT;
  401. mutex_init(&ci->i_fragtree_mutex);
  402. ci->i_xattrs.blob = NULL;
  403. ci->i_xattrs.prealloc_blob = NULL;
  404. ci->i_xattrs.dirty = false;
  405. ci->i_xattrs.index = RB_ROOT;
  406. ci->i_xattrs.count = 0;
  407. ci->i_xattrs.names_size = 0;
  408. ci->i_xattrs.vals_size = 0;
  409. ci->i_xattrs.version = 0;
  410. ci->i_xattrs.index_version = 0;
  411. ci->i_caps = RB_ROOT;
  412. ci->i_auth_cap = NULL;
  413. ci->i_dirty_caps = 0;
  414. ci->i_flushing_caps = 0;
  415. INIT_LIST_HEAD(&ci->i_dirty_item);
  416. INIT_LIST_HEAD(&ci->i_flushing_item);
  417. ci->i_prealloc_cap_flush = NULL;
  418. INIT_LIST_HEAD(&ci->i_cap_flush_list);
  419. init_waitqueue_head(&ci->i_cap_wq);
  420. ci->i_hold_caps_min = 0;
  421. ci->i_hold_caps_max = 0;
  422. INIT_LIST_HEAD(&ci->i_cap_delay_list);
  423. INIT_LIST_HEAD(&ci->i_cap_snaps);
  424. ci->i_head_snapc = NULL;
  425. ci->i_snap_caps = 0;
  426. for (i = 0; i < CEPH_FILE_MODE_BITS; i++)
  427. ci->i_nr_by_mode[i] = 0;
  428. mutex_init(&ci->i_truncate_mutex);
  429. ci->i_truncate_seq = 0;
  430. ci->i_truncate_size = 0;
  431. ci->i_truncate_pending = 0;
  432. ci->i_max_size = 0;
  433. ci->i_reported_size = 0;
  434. ci->i_wanted_max_size = 0;
  435. ci->i_requested_max_size = 0;
  436. ci->i_pin_ref = 0;
  437. ci->i_rd_ref = 0;
  438. ci->i_rdcache_ref = 0;
  439. ci->i_wr_ref = 0;
  440. ci->i_wb_ref = 0;
  441. ci->i_wrbuffer_ref = 0;
  442. ci->i_wrbuffer_ref_head = 0;
  443. atomic_set(&ci->i_filelock_ref, 0);
  444. atomic_set(&ci->i_shared_gen, 0);
  445. ci->i_rdcache_gen = 0;
  446. ci->i_rdcache_revoking = 0;
  447. INIT_LIST_HEAD(&ci->i_unsafe_dirops);
  448. INIT_LIST_HEAD(&ci->i_unsafe_iops);
  449. spin_lock_init(&ci->i_unsafe_lock);
  450. ci->i_snap_realm = NULL;
  451. INIT_LIST_HEAD(&ci->i_snap_realm_item);
  452. INIT_LIST_HEAD(&ci->i_snap_flush_item);
  453. INIT_WORK(&ci->i_wb_work, ceph_writeback_work);
  454. INIT_WORK(&ci->i_pg_inv_work, ceph_invalidate_work);
  455. INIT_WORK(&ci->i_vmtruncate_work, ceph_vmtruncate_work);
  456. ceph_fscache_inode_init(ci);
  457. return &ci->vfs_inode;
  458. }
  459. static void ceph_i_callback(struct rcu_head *head)
  460. {
  461. struct inode *inode = container_of(head, struct inode, i_rcu);
  462. struct ceph_inode_info *ci = ceph_inode(inode);
  463. kmem_cache_free(ceph_inode_cachep, ci);
  464. }
  465. void ceph_destroy_inode(struct inode *inode)
  466. {
  467. struct ceph_inode_info *ci = ceph_inode(inode);
  468. struct ceph_inode_frag *frag;
  469. struct rb_node *n;
  470. dout("destroy_inode %p ino %llx.%llx\n", inode, ceph_vinop(inode));
  471. ceph_fscache_unregister_inode_cookie(ci);
  472. ceph_queue_caps_release(inode);
  473. if (__ceph_has_any_quota(ci))
  474. ceph_adjust_quota_realms_count(inode, false);
  475. /*
  476. * we may still have a snap_realm reference if there are stray
  477. * caps in i_snap_caps.
  478. */
  479. if (ci->i_snap_realm) {
  480. struct ceph_mds_client *mdsc =
  481. ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
  482. struct ceph_snap_realm *realm = ci->i_snap_realm;
  483. dout(" dropping residual ref to snap realm %p\n", realm);
  484. spin_lock(&realm->inodes_with_caps_lock);
  485. list_del_init(&ci->i_snap_realm_item);
  486. ci->i_snap_realm = NULL;
  487. if (realm->ino == ci->i_vino.ino)
  488. realm->inode = NULL;
  489. spin_unlock(&realm->inodes_with_caps_lock);
  490. ceph_put_snap_realm(mdsc, realm);
  491. }
  492. kfree(ci->i_symlink);
  493. while ((n = rb_first(&ci->i_fragtree)) != NULL) {
  494. frag = rb_entry(n, struct ceph_inode_frag, node);
  495. rb_erase(n, &ci->i_fragtree);
  496. kfree(frag);
  497. }
  498. ci->i_fragtree_nsplits = 0;
  499. __ceph_destroy_xattrs(ci);
  500. if (ci->i_xattrs.blob)
  501. ceph_buffer_put(ci->i_xattrs.blob);
  502. if (ci->i_xattrs.prealloc_blob)
  503. ceph_buffer_put(ci->i_xattrs.prealloc_blob);
  504. ceph_put_string(rcu_dereference_raw(ci->i_layout.pool_ns));
  505. call_rcu(&inode->i_rcu, ceph_i_callback);
  506. }
  507. int ceph_drop_inode(struct inode *inode)
  508. {
  509. /*
  510. * Positve dentry and corresponding inode are always accompanied
  511. * in MDS reply. So no need to keep inode in the cache after
  512. * dropping all its aliases.
  513. */
  514. return 1;
  515. }
  516. static inline blkcnt_t calc_inode_blocks(u64 size)
  517. {
  518. return (size + (1<<9) - 1) >> 9;
  519. }
  520. /*
  521. * Helpers to fill in size, ctime, mtime, and atime. We have to be
  522. * careful because either the client or MDS may have more up to date
  523. * info, depending on which capabilities are held, and whether
  524. * time_warp_seq or truncate_seq have increased. (Ordinarily, mtime
  525. * and size are monotonically increasing, except when utimes() or
  526. * truncate() increments the corresponding _seq values.)
  527. */
  528. int ceph_fill_file_size(struct inode *inode, int issued,
  529. u32 truncate_seq, u64 truncate_size, u64 size)
  530. {
  531. struct ceph_inode_info *ci = ceph_inode(inode);
  532. int queue_trunc = 0;
  533. if (ceph_seq_cmp(truncate_seq, ci->i_truncate_seq) > 0 ||
  534. (truncate_seq == ci->i_truncate_seq && size > inode->i_size)) {
  535. dout("size %lld -> %llu\n", inode->i_size, size);
  536. if (size > 0 && S_ISDIR(inode->i_mode)) {
  537. pr_err("fill_file_size non-zero size for directory\n");
  538. size = 0;
  539. }
  540. i_size_write(inode, size);
  541. inode->i_blocks = calc_inode_blocks(size);
  542. ci->i_reported_size = size;
  543. if (truncate_seq != ci->i_truncate_seq) {
  544. dout("truncate_seq %u -> %u\n",
  545. ci->i_truncate_seq, truncate_seq);
  546. ci->i_truncate_seq = truncate_seq;
  547. /* the MDS should have revoked these caps */
  548. WARN_ON_ONCE(issued & (CEPH_CAP_FILE_EXCL |
  549. CEPH_CAP_FILE_RD |
  550. CEPH_CAP_FILE_WR |
  551. CEPH_CAP_FILE_LAZYIO));
  552. /*
  553. * If we hold relevant caps, or in the case where we're
  554. * not the only client referencing this file and we
  555. * don't hold those caps, then we need to check whether
  556. * the file is either opened or mmaped
  557. */
  558. if ((issued & (CEPH_CAP_FILE_CACHE|
  559. CEPH_CAP_FILE_BUFFER)) ||
  560. mapping_mapped(inode->i_mapping) ||
  561. __ceph_caps_file_wanted(ci)) {
  562. ci->i_truncate_pending++;
  563. queue_trunc = 1;
  564. }
  565. }
  566. }
  567. if (ceph_seq_cmp(truncate_seq, ci->i_truncate_seq) >= 0 &&
  568. ci->i_truncate_size != truncate_size) {
  569. dout("truncate_size %lld -> %llu\n", ci->i_truncate_size,
  570. truncate_size);
  571. ci->i_truncate_size = truncate_size;
  572. }
  573. if (queue_trunc)
  574. ceph_fscache_invalidate(inode);
  575. return queue_trunc;
  576. }
  577. void ceph_fill_file_time(struct inode *inode, int issued,
  578. u64 time_warp_seq, struct timespec *ctime,
  579. struct timespec *mtime, struct timespec *atime)
  580. {
  581. struct ceph_inode_info *ci = ceph_inode(inode);
  582. int warn = 0;
  583. if (issued & (CEPH_CAP_FILE_EXCL|
  584. CEPH_CAP_FILE_WR|
  585. CEPH_CAP_FILE_BUFFER|
  586. CEPH_CAP_AUTH_EXCL|
  587. CEPH_CAP_XATTR_EXCL)) {
  588. if (ci->i_version == 0 ||
  589. timespec_compare(ctime, &inode->i_ctime) > 0) {
  590. dout("ctime %ld.%09ld -> %ld.%09ld inc w/ cap\n",
  591. inode->i_ctime.tv_sec, inode->i_ctime.tv_nsec,
  592. ctime->tv_sec, ctime->tv_nsec);
  593. inode->i_ctime = *ctime;
  594. }
  595. if (ci->i_version == 0 ||
  596. ceph_seq_cmp(time_warp_seq, ci->i_time_warp_seq) > 0) {
  597. /* the MDS did a utimes() */
  598. dout("mtime %ld.%09ld -> %ld.%09ld "
  599. "tw %d -> %d\n",
  600. inode->i_mtime.tv_sec, inode->i_mtime.tv_nsec,
  601. mtime->tv_sec, mtime->tv_nsec,
  602. ci->i_time_warp_seq, (int)time_warp_seq);
  603. inode->i_mtime = *mtime;
  604. inode->i_atime = *atime;
  605. ci->i_time_warp_seq = time_warp_seq;
  606. } else if (time_warp_seq == ci->i_time_warp_seq) {
  607. /* nobody did utimes(); take the max */
  608. if (timespec_compare(mtime, &inode->i_mtime) > 0) {
  609. dout("mtime %ld.%09ld -> %ld.%09ld inc\n",
  610. inode->i_mtime.tv_sec,
  611. inode->i_mtime.tv_nsec,
  612. mtime->tv_sec, mtime->tv_nsec);
  613. inode->i_mtime = *mtime;
  614. }
  615. if (timespec_compare(atime, &inode->i_atime) > 0) {
  616. dout("atime %ld.%09ld -> %ld.%09ld inc\n",
  617. inode->i_atime.tv_sec,
  618. inode->i_atime.tv_nsec,
  619. atime->tv_sec, atime->tv_nsec);
  620. inode->i_atime = *atime;
  621. }
  622. } else if (issued & CEPH_CAP_FILE_EXCL) {
  623. /* we did a utimes(); ignore mds values */
  624. } else {
  625. warn = 1;
  626. }
  627. } else {
  628. /* we have no write|excl caps; whatever the MDS says is true */
  629. if (ceph_seq_cmp(time_warp_seq, ci->i_time_warp_seq) >= 0) {
  630. inode->i_ctime = *ctime;
  631. inode->i_mtime = *mtime;
  632. inode->i_atime = *atime;
  633. ci->i_time_warp_seq = time_warp_seq;
  634. } else {
  635. warn = 1;
  636. }
  637. }
  638. if (warn) /* time_warp_seq shouldn't go backwards */
  639. dout("%p mds time_warp_seq %llu < %u\n",
  640. inode, time_warp_seq, ci->i_time_warp_seq);
  641. }
  642. /*
  643. * Populate an inode based on info from mds. May be called on new or
  644. * existing inodes.
  645. */
  646. static int fill_inode(struct inode *inode, struct page *locked_page,
  647. struct ceph_mds_reply_info_in *iinfo,
  648. struct ceph_mds_reply_dirfrag *dirinfo,
  649. struct ceph_mds_session *session,
  650. unsigned long ttl_from, int cap_fmode,
  651. struct ceph_cap_reservation *caps_reservation)
  652. {
  653. struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
  654. struct ceph_mds_reply_inode *info = iinfo->in;
  655. struct ceph_inode_info *ci = ceph_inode(inode);
  656. int issued, new_issued, info_caps;
  657. struct timespec mtime, atime, ctime;
  658. struct ceph_buffer *xattr_blob = NULL;
  659. struct ceph_string *pool_ns = NULL;
  660. struct ceph_cap *new_cap = NULL;
  661. int err = 0;
  662. bool wake = false;
  663. bool queue_trunc = false;
  664. bool new_version = false;
  665. bool fill_inline = false;
  666. dout("fill_inode %p ino %llx.%llx v %llu had %llu\n",
  667. inode, ceph_vinop(inode), le64_to_cpu(info->version),
  668. ci->i_version);
  669. info_caps = le32_to_cpu(info->cap.caps);
  670. /* prealloc new cap struct */
  671. if (info_caps && ceph_snap(inode) == CEPH_NOSNAP)
  672. new_cap = ceph_get_cap(mdsc, caps_reservation);
  673. /*
  674. * prealloc xattr data, if it looks like we'll need it. only
  675. * if len > 4 (meaning there are actually xattrs; the first 4
  676. * bytes are the xattr count).
  677. */
  678. if (iinfo->xattr_len > 4) {
  679. xattr_blob = ceph_buffer_new(iinfo->xattr_len, GFP_NOFS);
  680. if (!xattr_blob)
  681. pr_err("fill_inode ENOMEM xattr blob %d bytes\n",
  682. iinfo->xattr_len);
  683. }
  684. if (iinfo->pool_ns_len > 0)
  685. pool_ns = ceph_find_or_create_string(iinfo->pool_ns_data,
  686. iinfo->pool_ns_len);
  687. spin_lock(&ci->i_ceph_lock);
  688. /*
  689. * provided version will be odd if inode value is projected,
  690. * even if stable. skip the update if we have newer stable
  691. * info (ours>=theirs, e.g. due to racing mds replies), unless
  692. * we are getting projected (unstable) info (in which case the
  693. * version is odd, and we want ours>theirs).
  694. * us them
  695. * 2 2 skip
  696. * 3 2 skip
  697. * 3 3 update
  698. */
  699. if (ci->i_version == 0 ||
  700. ((info->cap.flags & CEPH_CAP_FLAG_AUTH) &&
  701. le64_to_cpu(info->version) > (ci->i_version & ~1)))
  702. new_version = true;
  703. __ceph_caps_issued(ci, &issued);
  704. issued |= __ceph_caps_dirty(ci);
  705. new_issued = ~issued & info_caps;
  706. /* update inode */
  707. inode->i_rdev = le32_to_cpu(info->rdev);
  708. inode->i_blkbits = fls(le32_to_cpu(info->layout.fl_stripe_unit)) - 1;
  709. __ceph_update_quota(ci, iinfo->max_bytes, iinfo->max_files);
  710. if ((new_version || (new_issued & CEPH_CAP_AUTH_SHARED)) &&
  711. (issued & CEPH_CAP_AUTH_EXCL) == 0) {
  712. inode->i_mode = le32_to_cpu(info->mode);
  713. inode->i_uid = make_kuid(&init_user_ns, le32_to_cpu(info->uid));
  714. inode->i_gid = make_kgid(&init_user_ns, le32_to_cpu(info->gid));
  715. dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
  716. from_kuid(&init_user_ns, inode->i_uid),
  717. from_kgid(&init_user_ns, inode->i_gid));
  718. }
  719. if ((new_version || (new_issued & CEPH_CAP_LINK_SHARED)) &&
  720. (issued & CEPH_CAP_LINK_EXCL) == 0)
  721. set_nlink(inode, le32_to_cpu(info->nlink));
  722. if (new_version || (new_issued & CEPH_CAP_ANY_RD)) {
  723. /* be careful with mtime, atime, size */
  724. ceph_decode_timespec(&atime, &info->atime);
  725. ceph_decode_timespec(&mtime, &info->mtime);
  726. ceph_decode_timespec(&ctime, &info->ctime);
  727. ceph_fill_file_time(inode, issued,
  728. le32_to_cpu(info->time_warp_seq),
  729. &ctime, &mtime, &atime);
  730. }
  731. if (new_version || (info_caps & CEPH_CAP_FILE_SHARED)) {
  732. ci->i_files = le64_to_cpu(info->files);
  733. ci->i_subdirs = le64_to_cpu(info->subdirs);
  734. }
  735. if (new_version ||
  736. (new_issued & (CEPH_CAP_ANY_FILE_RD | CEPH_CAP_ANY_FILE_WR))) {
  737. s64 old_pool = ci->i_layout.pool_id;
  738. struct ceph_string *old_ns;
  739. ceph_file_layout_from_legacy(&ci->i_layout, &info->layout);
  740. old_ns = rcu_dereference_protected(ci->i_layout.pool_ns,
  741. lockdep_is_held(&ci->i_ceph_lock));
  742. rcu_assign_pointer(ci->i_layout.pool_ns, pool_ns);
  743. if (ci->i_layout.pool_id != old_pool || pool_ns != old_ns)
  744. ci->i_ceph_flags &= ~CEPH_I_POOL_PERM;
  745. pool_ns = old_ns;
  746. queue_trunc = ceph_fill_file_size(inode, issued,
  747. le32_to_cpu(info->truncate_seq),
  748. le64_to_cpu(info->truncate_size),
  749. le64_to_cpu(info->size));
  750. /* only update max_size on auth cap */
  751. if ((info->cap.flags & CEPH_CAP_FLAG_AUTH) &&
  752. ci->i_max_size != le64_to_cpu(info->max_size)) {
  753. dout("max_size %lld -> %llu\n", ci->i_max_size,
  754. le64_to_cpu(info->max_size));
  755. ci->i_max_size = le64_to_cpu(info->max_size);
  756. }
  757. }
  758. /* layout and rstat are not tracked by capability, update them if
  759. * the inode info is from auth mds */
  760. if (new_version || (info->cap.flags & CEPH_CAP_FLAG_AUTH)) {
  761. if (S_ISDIR(inode->i_mode)) {
  762. ci->i_dir_layout = iinfo->dir_layout;
  763. ci->i_rbytes = le64_to_cpu(info->rbytes);
  764. ci->i_rfiles = le64_to_cpu(info->rfiles);
  765. ci->i_rsubdirs = le64_to_cpu(info->rsubdirs);
  766. ceph_decode_timespec(&ci->i_rctime, &info->rctime);
  767. }
  768. }
  769. /* xattrs */
  770. /* note that if i_xattrs.len <= 4, i_xattrs.data will still be NULL. */
  771. if ((ci->i_xattrs.version == 0 || !(issued & CEPH_CAP_XATTR_EXCL)) &&
  772. le64_to_cpu(info->xattr_version) > ci->i_xattrs.version) {
  773. if (ci->i_xattrs.blob)
  774. ceph_buffer_put(ci->i_xattrs.blob);
  775. ci->i_xattrs.blob = xattr_blob;
  776. if (xattr_blob)
  777. memcpy(ci->i_xattrs.blob->vec.iov_base,
  778. iinfo->xattr_data, iinfo->xattr_len);
  779. ci->i_xattrs.version = le64_to_cpu(info->xattr_version);
  780. ceph_forget_all_cached_acls(inode);
  781. xattr_blob = NULL;
  782. }
  783. /* finally update i_version */
  784. if (le64_to_cpu(info->version) > ci->i_version)
  785. ci->i_version = le64_to_cpu(info->version);
  786. inode->i_mapping->a_ops = &ceph_aops;
  787. switch (inode->i_mode & S_IFMT) {
  788. case S_IFIFO:
  789. case S_IFBLK:
  790. case S_IFCHR:
  791. case S_IFSOCK:
  792. init_special_inode(inode, inode->i_mode, inode->i_rdev);
  793. inode->i_op = &ceph_file_iops;
  794. break;
  795. case S_IFREG:
  796. inode->i_op = &ceph_file_iops;
  797. inode->i_fop = &ceph_file_fops;
  798. break;
  799. case S_IFLNK:
  800. inode->i_op = &ceph_symlink_iops;
  801. if (!ci->i_symlink) {
  802. u32 symlen = iinfo->symlink_len;
  803. char *sym;
  804. spin_unlock(&ci->i_ceph_lock);
  805. if (symlen != i_size_read(inode)) {
  806. pr_err("fill_inode %llx.%llx BAD symlink "
  807. "size %lld\n", ceph_vinop(inode),
  808. i_size_read(inode));
  809. i_size_write(inode, symlen);
  810. inode->i_blocks = calc_inode_blocks(symlen);
  811. }
  812. err = -ENOMEM;
  813. sym = kstrndup(iinfo->symlink, symlen, GFP_NOFS);
  814. if (!sym)
  815. goto out;
  816. spin_lock(&ci->i_ceph_lock);
  817. if (!ci->i_symlink)
  818. ci->i_symlink = sym;
  819. else
  820. kfree(sym); /* lost a race */
  821. }
  822. inode->i_link = ci->i_symlink;
  823. break;
  824. case S_IFDIR:
  825. inode->i_op = &ceph_dir_iops;
  826. inode->i_fop = &ceph_dir_fops;
  827. break;
  828. default:
  829. pr_err("fill_inode %llx.%llx BAD mode 0%o\n",
  830. ceph_vinop(inode), inode->i_mode);
  831. }
  832. /* were we issued a capability? */
  833. if (info_caps) {
  834. if (ceph_snap(inode) == CEPH_NOSNAP) {
  835. ceph_add_cap(inode, session,
  836. le64_to_cpu(info->cap.cap_id),
  837. cap_fmode, info_caps,
  838. le32_to_cpu(info->cap.wanted),
  839. le32_to_cpu(info->cap.seq),
  840. le32_to_cpu(info->cap.mseq),
  841. le64_to_cpu(info->cap.realm),
  842. info->cap.flags, &new_cap);
  843. /* set dir completion flag? */
  844. if (S_ISDIR(inode->i_mode) &&
  845. ci->i_files == 0 && ci->i_subdirs == 0 &&
  846. (info_caps & CEPH_CAP_FILE_SHARED) &&
  847. (issued & CEPH_CAP_FILE_EXCL) == 0 &&
  848. !__ceph_dir_is_complete(ci)) {
  849. dout(" marking %p complete (empty)\n", inode);
  850. i_size_write(inode, 0);
  851. __ceph_dir_set_complete(ci,
  852. atomic64_read(&ci->i_release_count),
  853. atomic64_read(&ci->i_ordered_count));
  854. }
  855. wake = true;
  856. } else {
  857. dout(" %p got snap_caps %s\n", inode,
  858. ceph_cap_string(info_caps));
  859. ci->i_snap_caps |= info_caps;
  860. if (cap_fmode >= 0)
  861. __ceph_get_fmode(ci, cap_fmode);
  862. }
  863. } else if (cap_fmode >= 0) {
  864. pr_warn("mds issued no caps on %llx.%llx\n",
  865. ceph_vinop(inode));
  866. __ceph_get_fmode(ci, cap_fmode);
  867. }
  868. if (iinfo->inline_version > 0 &&
  869. iinfo->inline_version >= ci->i_inline_version) {
  870. int cache_caps = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
  871. ci->i_inline_version = iinfo->inline_version;
  872. if (ci->i_inline_version != CEPH_INLINE_NONE &&
  873. (locked_page || (info_caps & cache_caps)))
  874. fill_inline = true;
  875. }
  876. spin_unlock(&ci->i_ceph_lock);
  877. if (fill_inline)
  878. ceph_fill_inline_data(inode, locked_page,
  879. iinfo->inline_data, iinfo->inline_len);
  880. if (wake)
  881. wake_up_all(&ci->i_cap_wq);
  882. /* queue truncate if we saw i_size decrease */
  883. if (queue_trunc)
  884. ceph_queue_vmtruncate(inode);
  885. /* populate frag tree */
  886. if (S_ISDIR(inode->i_mode))
  887. ceph_fill_fragtree(inode, &info->fragtree, dirinfo);
  888. /* update delegation info? */
  889. if (dirinfo)
  890. ceph_fill_dirfrag(inode, dirinfo);
  891. err = 0;
  892. out:
  893. if (new_cap)
  894. ceph_put_cap(mdsc, new_cap);
  895. if (xattr_blob)
  896. ceph_buffer_put(xattr_blob);
  897. ceph_put_string(pool_ns);
  898. return err;
  899. }
  900. /*
  901. * caller should hold session s_mutex.
  902. */
  903. static void update_dentry_lease(struct dentry *dentry,
  904. struct ceph_mds_reply_lease *lease,
  905. struct ceph_mds_session *session,
  906. unsigned long from_time,
  907. struct ceph_vino *tgt_vino,
  908. struct ceph_vino *dir_vino)
  909. {
  910. struct ceph_dentry_info *di = ceph_dentry(dentry);
  911. long unsigned duration = le32_to_cpu(lease->duration_ms);
  912. long unsigned ttl = from_time + (duration * HZ) / 1000;
  913. long unsigned half_ttl = from_time + (duration * HZ / 2) / 1000;
  914. struct inode *dir;
  915. struct ceph_mds_session *old_lease_session = NULL;
  916. /*
  917. * Make sure dentry's inode matches tgt_vino. NULL tgt_vino means that
  918. * we expect a negative dentry.
  919. */
  920. if (!tgt_vino && d_really_is_positive(dentry))
  921. return;
  922. if (tgt_vino && (d_really_is_negative(dentry) ||
  923. !ceph_ino_compare(d_inode(dentry), tgt_vino)))
  924. return;
  925. spin_lock(&dentry->d_lock);
  926. dout("update_dentry_lease %p duration %lu ms ttl %lu\n",
  927. dentry, duration, ttl);
  928. dir = d_inode(dentry->d_parent);
  929. /* make sure parent matches dir_vino */
  930. if (!ceph_ino_compare(dir, dir_vino))
  931. goto out_unlock;
  932. /* only track leases on regular dentries */
  933. if (ceph_snap(dir) != CEPH_NOSNAP)
  934. goto out_unlock;
  935. di->lease_shared_gen = atomic_read(&ceph_inode(dir)->i_shared_gen);
  936. if (duration == 0)
  937. goto out_unlock;
  938. if (di->lease_gen == session->s_cap_gen &&
  939. time_before(ttl, di->time))
  940. goto out_unlock; /* we already have a newer lease. */
  941. if (di->lease_session && di->lease_session != session) {
  942. old_lease_session = di->lease_session;
  943. di->lease_session = NULL;
  944. }
  945. ceph_dentry_lru_touch(dentry);
  946. if (!di->lease_session)
  947. di->lease_session = ceph_get_mds_session(session);
  948. di->lease_gen = session->s_cap_gen;
  949. di->lease_seq = le32_to_cpu(lease->seq);
  950. di->lease_renew_after = half_ttl;
  951. di->lease_renew_from = 0;
  952. di->time = ttl;
  953. out_unlock:
  954. spin_unlock(&dentry->d_lock);
  955. if (old_lease_session)
  956. ceph_put_mds_session(old_lease_session);
  957. }
  958. /*
  959. * splice a dentry to an inode.
  960. * caller must hold directory i_mutex for this to be safe.
  961. */
  962. static struct dentry *splice_dentry(struct dentry *dn, struct inode *in)
  963. {
  964. struct dentry *realdn;
  965. BUG_ON(d_inode(dn));
  966. if (S_ISDIR(in->i_mode)) {
  967. /* If inode is directory, d_splice_alias() below will remove
  968. * 'realdn' from its origin parent. We need to ensure that
  969. * origin parent's readdir cache will not reference 'realdn'
  970. */
  971. realdn = d_find_any_alias(in);
  972. if (realdn) {
  973. struct ceph_dentry_info *di = ceph_dentry(realdn);
  974. spin_lock(&realdn->d_lock);
  975. realdn->d_op->d_prune(realdn);
  976. di->time = jiffies;
  977. di->lease_shared_gen = 0;
  978. di->offset = 0;
  979. spin_unlock(&realdn->d_lock);
  980. dput(realdn);
  981. }
  982. }
  983. /* dn must be unhashed */
  984. if (!d_unhashed(dn))
  985. d_drop(dn);
  986. realdn = d_splice_alias(in, dn);
  987. if (IS_ERR(realdn)) {
  988. pr_err("splice_dentry error %ld %p inode %p ino %llx.%llx\n",
  989. PTR_ERR(realdn), dn, in, ceph_vinop(in));
  990. dn = realdn; /* note realdn contains the error */
  991. goto out;
  992. } else if (realdn) {
  993. dout("dn %p (%d) spliced with %p (%d) "
  994. "inode %p ino %llx.%llx\n",
  995. dn, d_count(dn),
  996. realdn, d_count(realdn),
  997. d_inode(realdn), ceph_vinop(d_inode(realdn)));
  998. dput(dn);
  999. dn = realdn;
  1000. } else {
  1001. BUG_ON(!ceph_dentry(dn));
  1002. dout("dn %p attached to %p ino %llx.%llx\n",
  1003. dn, d_inode(dn), ceph_vinop(d_inode(dn)));
  1004. }
  1005. out:
  1006. return dn;
  1007. }
  1008. /*
  1009. * Incorporate results into the local cache. This is either just
  1010. * one inode, or a directory, dentry, and possibly linked-to inode (e.g.,
  1011. * after a lookup).
  1012. *
  1013. * A reply may contain
  1014. * a directory inode along with a dentry.
  1015. * and/or a target inode
  1016. *
  1017. * Called with snap_rwsem (read).
  1018. */
  1019. int ceph_fill_trace(struct super_block *sb, struct ceph_mds_request *req)
  1020. {
  1021. struct ceph_mds_session *session = req->r_session;
  1022. struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
  1023. struct inode *in = NULL;
  1024. struct ceph_vino tvino, dvino;
  1025. struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
  1026. int err = 0;
  1027. dout("fill_trace %p is_dentry %d is_target %d\n", req,
  1028. rinfo->head->is_dentry, rinfo->head->is_target);
  1029. if (!rinfo->head->is_target && !rinfo->head->is_dentry) {
  1030. dout("fill_trace reply is empty!\n");
  1031. if (rinfo->head->result == 0 && req->r_parent)
  1032. ceph_invalidate_dir_request(req);
  1033. return 0;
  1034. }
  1035. if (rinfo->head->is_dentry) {
  1036. struct inode *dir = req->r_parent;
  1037. if (dir) {
  1038. err = fill_inode(dir, NULL,
  1039. &rinfo->diri, rinfo->dirfrag,
  1040. session, req->r_request_started, -1,
  1041. &req->r_caps_reservation);
  1042. if (err < 0)
  1043. goto done;
  1044. } else {
  1045. WARN_ON_ONCE(1);
  1046. }
  1047. if (dir && req->r_op == CEPH_MDS_OP_LOOKUPNAME) {
  1048. struct qstr dname;
  1049. struct dentry *dn, *parent;
  1050. BUG_ON(!rinfo->head->is_target);
  1051. BUG_ON(req->r_dentry);
  1052. parent = d_find_any_alias(dir);
  1053. BUG_ON(!parent);
  1054. dname.name = rinfo->dname;
  1055. dname.len = rinfo->dname_len;
  1056. dname.hash = full_name_hash(parent, dname.name, dname.len);
  1057. tvino.ino = le64_to_cpu(rinfo->targeti.in->ino);
  1058. tvino.snap = le64_to_cpu(rinfo->targeti.in->snapid);
  1059. retry_lookup:
  1060. dn = d_lookup(parent, &dname);
  1061. dout("d_lookup on parent=%p name=%.*s got %p\n",
  1062. parent, dname.len, dname.name, dn);
  1063. if (!dn) {
  1064. dn = d_alloc(parent, &dname);
  1065. dout("d_alloc %p '%.*s' = %p\n", parent,
  1066. dname.len, dname.name, dn);
  1067. if (!dn) {
  1068. dput(parent);
  1069. err = -ENOMEM;
  1070. goto done;
  1071. }
  1072. err = 0;
  1073. } else if (d_really_is_positive(dn) &&
  1074. (ceph_ino(d_inode(dn)) != tvino.ino ||
  1075. ceph_snap(d_inode(dn)) != tvino.snap)) {
  1076. dout(" dn %p points to wrong inode %p\n",
  1077. dn, d_inode(dn));
  1078. ceph_dir_clear_ordered(dir);
  1079. d_delete(dn);
  1080. dput(dn);
  1081. goto retry_lookup;
  1082. }
  1083. req->r_dentry = dn;
  1084. dput(parent);
  1085. }
  1086. }
  1087. if (rinfo->head->is_target) {
  1088. tvino.ino = le64_to_cpu(rinfo->targeti.in->ino);
  1089. tvino.snap = le64_to_cpu(rinfo->targeti.in->snapid);
  1090. in = ceph_get_inode(sb, tvino);
  1091. if (IS_ERR(in)) {
  1092. err = PTR_ERR(in);
  1093. goto done;
  1094. }
  1095. req->r_target_inode = in;
  1096. err = fill_inode(in, req->r_locked_page, &rinfo->targeti, NULL,
  1097. session, req->r_request_started,
  1098. (!test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags) &&
  1099. rinfo->head->result == 0) ? req->r_fmode : -1,
  1100. &req->r_caps_reservation);
  1101. if (err < 0) {
  1102. pr_err("fill_inode badness %p %llx.%llx\n",
  1103. in, ceph_vinop(in));
  1104. goto done;
  1105. }
  1106. }
  1107. /*
  1108. * ignore null lease/binding on snapdir ENOENT, or else we
  1109. * will have trouble splicing in the virtual snapdir later
  1110. */
  1111. if (rinfo->head->is_dentry &&
  1112. !test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags) &&
  1113. test_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags) &&
  1114. (rinfo->head->is_target || strncmp(req->r_dentry->d_name.name,
  1115. fsc->mount_options->snapdir_name,
  1116. req->r_dentry->d_name.len))) {
  1117. /*
  1118. * lookup link rename : null -> possibly existing inode
  1119. * mknod symlink mkdir : null -> new inode
  1120. * unlink : linked -> null
  1121. */
  1122. struct inode *dir = req->r_parent;
  1123. struct dentry *dn = req->r_dentry;
  1124. bool have_dir_cap, have_lease;
  1125. BUG_ON(!dn);
  1126. BUG_ON(!dir);
  1127. BUG_ON(d_inode(dn->d_parent) != dir);
  1128. dvino.ino = le64_to_cpu(rinfo->diri.in->ino);
  1129. dvino.snap = le64_to_cpu(rinfo->diri.in->snapid);
  1130. BUG_ON(ceph_ino(dir) != dvino.ino);
  1131. BUG_ON(ceph_snap(dir) != dvino.snap);
  1132. /* do we have a lease on the whole dir? */
  1133. have_dir_cap =
  1134. (le32_to_cpu(rinfo->diri.in->cap.caps) &
  1135. CEPH_CAP_FILE_SHARED);
  1136. /* do we have a dn lease? */
  1137. have_lease = have_dir_cap ||
  1138. le32_to_cpu(rinfo->dlease->duration_ms);
  1139. if (!have_lease)
  1140. dout("fill_trace no dentry lease or dir cap\n");
  1141. /* rename? */
  1142. if (req->r_old_dentry && req->r_op == CEPH_MDS_OP_RENAME) {
  1143. struct inode *olddir = req->r_old_dentry_dir;
  1144. BUG_ON(!olddir);
  1145. dout(" src %p '%pd' dst %p '%pd'\n",
  1146. req->r_old_dentry,
  1147. req->r_old_dentry,
  1148. dn, dn);
  1149. dout("fill_trace doing d_move %p -> %p\n",
  1150. req->r_old_dentry, dn);
  1151. /* d_move screws up sibling dentries' offsets */
  1152. ceph_dir_clear_ordered(dir);
  1153. ceph_dir_clear_ordered(olddir);
  1154. d_move(req->r_old_dentry, dn);
  1155. dout(" src %p '%pd' dst %p '%pd'\n",
  1156. req->r_old_dentry,
  1157. req->r_old_dentry,
  1158. dn, dn);
  1159. /* ensure target dentry is invalidated, despite
  1160. rehashing bug in vfs_rename_dir */
  1161. ceph_invalidate_dentry_lease(dn);
  1162. dout("dn %p gets new offset %lld\n", req->r_old_dentry,
  1163. ceph_dentry(req->r_old_dentry)->offset);
  1164. dn = req->r_old_dentry; /* use old_dentry */
  1165. }
  1166. /* null dentry? */
  1167. if (!rinfo->head->is_target) {
  1168. dout("fill_trace null dentry\n");
  1169. if (d_really_is_positive(dn)) {
  1170. dout("d_delete %p\n", dn);
  1171. ceph_dir_clear_ordered(dir);
  1172. d_delete(dn);
  1173. } else if (have_lease) {
  1174. if (d_unhashed(dn))
  1175. d_add(dn, NULL);
  1176. update_dentry_lease(dn, rinfo->dlease,
  1177. session,
  1178. req->r_request_started,
  1179. NULL, &dvino);
  1180. }
  1181. goto done;
  1182. }
  1183. /* attach proper inode */
  1184. if (d_really_is_negative(dn)) {
  1185. ceph_dir_clear_ordered(dir);
  1186. ihold(in);
  1187. dn = splice_dentry(dn, in);
  1188. if (IS_ERR(dn)) {
  1189. err = PTR_ERR(dn);
  1190. goto done;
  1191. }
  1192. req->r_dentry = dn; /* may have spliced */
  1193. } else if (d_really_is_positive(dn) && d_inode(dn) != in) {
  1194. dout(" %p links to %p %llx.%llx, not %llx.%llx\n",
  1195. dn, d_inode(dn), ceph_vinop(d_inode(dn)),
  1196. ceph_vinop(in));
  1197. d_invalidate(dn);
  1198. have_lease = false;
  1199. }
  1200. if (have_lease) {
  1201. tvino.ino = le64_to_cpu(rinfo->targeti.in->ino);
  1202. tvino.snap = le64_to_cpu(rinfo->targeti.in->snapid);
  1203. update_dentry_lease(dn, rinfo->dlease, session,
  1204. req->r_request_started,
  1205. &tvino, &dvino);
  1206. }
  1207. dout(" final dn %p\n", dn);
  1208. } else if ((req->r_op == CEPH_MDS_OP_LOOKUPSNAP ||
  1209. req->r_op == CEPH_MDS_OP_MKSNAP) &&
  1210. !test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags)) {
  1211. struct dentry *dn = req->r_dentry;
  1212. struct inode *dir = req->r_parent;
  1213. /* fill out a snapdir LOOKUPSNAP dentry */
  1214. BUG_ON(!dn);
  1215. BUG_ON(!dir);
  1216. BUG_ON(ceph_snap(dir) != CEPH_SNAPDIR);
  1217. dout(" linking snapped dir %p to dn %p\n", in, dn);
  1218. ceph_dir_clear_ordered(dir);
  1219. ihold(in);
  1220. dn = splice_dentry(dn, in);
  1221. if (IS_ERR(dn)) {
  1222. err = PTR_ERR(dn);
  1223. goto done;
  1224. }
  1225. req->r_dentry = dn; /* may have spliced */
  1226. } else if (rinfo->head->is_dentry) {
  1227. struct ceph_vino *ptvino = NULL;
  1228. if ((le32_to_cpu(rinfo->diri.in->cap.caps) & CEPH_CAP_FILE_SHARED) ||
  1229. le32_to_cpu(rinfo->dlease->duration_ms)) {
  1230. dvino.ino = le64_to_cpu(rinfo->diri.in->ino);
  1231. dvino.snap = le64_to_cpu(rinfo->diri.in->snapid);
  1232. if (rinfo->head->is_target) {
  1233. tvino.ino = le64_to_cpu(rinfo->targeti.in->ino);
  1234. tvino.snap = le64_to_cpu(rinfo->targeti.in->snapid);
  1235. ptvino = &tvino;
  1236. }
  1237. update_dentry_lease(req->r_dentry, rinfo->dlease,
  1238. session, req->r_request_started, ptvino,
  1239. &dvino);
  1240. } else {
  1241. dout("%s: no dentry lease or dir cap\n", __func__);
  1242. }
  1243. }
  1244. done:
  1245. dout("fill_trace done err=%d\n", err);
  1246. return err;
  1247. }
  1248. /*
  1249. * Prepopulate our cache with readdir results, leases, etc.
  1250. */
  1251. static int readdir_prepopulate_inodes_only(struct ceph_mds_request *req,
  1252. struct ceph_mds_session *session)
  1253. {
  1254. struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
  1255. int i, err = 0;
  1256. for (i = 0; i < rinfo->dir_nr; i++) {
  1257. struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
  1258. struct ceph_vino vino;
  1259. struct inode *in;
  1260. int rc;
  1261. vino.ino = le64_to_cpu(rde->inode.in->ino);
  1262. vino.snap = le64_to_cpu(rde->inode.in->snapid);
  1263. in = ceph_get_inode(req->r_dentry->d_sb, vino);
  1264. if (IS_ERR(in)) {
  1265. err = PTR_ERR(in);
  1266. dout("new_inode badness got %d\n", err);
  1267. continue;
  1268. }
  1269. rc = fill_inode(in, NULL, &rde->inode, NULL, session,
  1270. req->r_request_started, -1,
  1271. &req->r_caps_reservation);
  1272. if (rc < 0) {
  1273. pr_err("fill_inode badness on %p got %d\n", in, rc);
  1274. err = rc;
  1275. }
  1276. iput(in);
  1277. }
  1278. return err;
  1279. }
  1280. void ceph_readdir_cache_release(struct ceph_readdir_cache_control *ctl)
  1281. {
  1282. if (ctl->page) {
  1283. kunmap(ctl->page);
  1284. put_page(ctl->page);
  1285. ctl->page = NULL;
  1286. }
  1287. }
  1288. static int fill_readdir_cache(struct inode *dir, struct dentry *dn,
  1289. struct ceph_readdir_cache_control *ctl,
  1290. struct ceph_mds_request *req)
  1291. {
  1292. struct ceph_inode_info *ci = ceph_inode(dir);
  1293. unsigned nsize = PAGE_SIZE / sizeof(struct dentry*);
  1294. unsigned idx = ctl->index % nsize;
  1295. pgoff_t pgoff = ctl->index / nsize;
  1296. if (!ctl->page || pgoff != page_index(ctl->page)) {
  1297. ceph_readdir_cache_release(ctl);
  1298. if (idx == 0)
  1299. ctl->page = grab_cache_page(&dir->i_data, pgoff);
  1300. else
  1301. ctl->page = find_lock_page(&dir->i_data, pgoff);
  1302. if (!ctl->page) {
  1303. ctl->index = -1;
  1304. return idx == 0 ? -ENOMEM : 0;
  1305. }
  1306. /* reading/filling the cache are serialized by
  1307. * i_mutex, no need to use page lock */
  1308. unlock_page(ctl->page);
  1309. ctl->dentries = kmap(ctl->page);
  1310. if (idx == 0)
  1311. memset(ctl->dentries, 0, PAGE_SIZE);
  1312. }
  1313. if (req->r_dir_release_cnt == atomic64_read(&ci->i_release_count) &&
  1314. req->r_dir_ordered_cnt == atomic64_read(&ci->i_ordered_count)) {
  1315. dout("readdir cache dn %p idx %d\n", dn, ctl->index);
  1316. ctl->dentries[idx] = dn;
  1317. ctl->index++;
  1318. } else {
  1319. dout("disable readdir cache\n");
  1320. ctl->index = -1;
  1321. }
  1322. return 0;
  1323. }
  1324. int ceph_readdir_prepopulate(struct ceph_mds_request *req,
  1325. struct ceph_mds_session *session)
  1326. {
  1327. struct dentry *parent = req->r_dentry;
  1328. struct ceph_inode_info *ci = ceph_inode(d_inode(parent));
  1329. struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
  1330. struct qstr dname;
  1331. struct dentry *dn;
  1332. struct inode *in;
  1333. int err = 0, skipped = 0, ret, i;
  1334. struct ceph_mds_request_head *rhead = req->r_request->front.iov_base;
  1335. u32 frag = le32_to_cpu(rhead->args.readdir.frag);
  1336. u32 last_hash = 0;
  1337. u32 fpos_offset;
  1338. struct ceph_readdir_cache_control cache_ctl = {};
  1339. if (test_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags))
  1340. return readdir_prepopulate_inodes_only(req, session);
  1341. if (rinfo->hash_order) {
  1342. if (req->r_path2) {
  1343. last_hash = ceph_str_hash(ci->i_dir_layout.dl_dir_hash,
  1344. req->r_path2,
  1345. strlen(req->r_path2));
  1346. last_hash = ceph_frag_value(last_hash);
  1347. } else if (rinfo->offset_hash) {
  1348. /* mds understands offset_hash */
  1349. WARN_ON_ONCE(req->r_readdir_offset != 2);
  1350. last_hash = le32_to_cpu(rhead->args.readdir.offset_hash);
  1351. }
  1352. }
  1353. if (rinfo->dir_dir &&
  1354. le32_to_cpu(rinfo->dir_dir->frag) != frag) {
  1355. dout("readdir_prepopulate got new frag %x -> %x\n",
  1356. frag, le32_to_cpu(rinfo->dir_dir->frag));
  1357. frag = le32_to_cpu(rinfo->dir_dir->frag);
  1358. if (!rinfo->hash_order)
  1359. req->r_readdir_offset = 2;
  1360. }
  1361. if (le32_to_cpu(rinfo->head->op) == CEPH_MDS_OP_LSSNAP) {
  1362. dout("readdir_prepopulate %d items under SNAPDIR dn %p\n",
  1363. rinfo->dir_nr, parent);
  1364. } else {
  1365. dout("readdir_prepopulate %d items under dn %p\n",
  1366. rinfo->dir_nr, parent);
  1367. if (rinfo->dir_dir)
  1368. ceph_fill_dirfrag(d_inode(parent), rinfo->dir_dir);
  1369. if (ceph_frag_is_leftmost(frag) &&
  1370. req->r_readdir_offset == 2 &&
  1371. !(rinfo->hash_order && last_hash)) {
  1372. /* note dir version at start of readdir so we can
  1373. * tell if any dentries get dropped */
  1374. req->r_dir_release_cnt =
  1375. atomic64_read(&ci->i_release_count);
  1376. req->r_dir_ordered_cnt =
  1377. atomic64_read(&ci->i_ordered_count);
  1378. req->r_readdir_cache_idx = 0;
  1379. }
  1380. }
  1381. cache_ctl.index = req->r_readdir_cache_idx;
  1382. fpos_offset = req->r_readdir_offset;
  1383. /* FIXME: release caps/leases if error occurs */
  1384. for (i = 0; i < rinfo->dir_nr; i++) {
  1385. struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
  1386. struct ceph_vino tvino, dvino;
  1387. dname.name = rde->name;
  1388. dname.len = rde->name_len;
  1389. dname.hash = full_name_hash(parent, dname.name, dname.len);
  1390. tvino.ino = le64_to_cpu(rde->inode.in->ino);
  1391. tvino.snap = le64_to_cpu(rde->inode.in->snapid);
  1392. if (rinfo->hash_order) {
  1393. u32 hash = ceph_str_hash(ci->i_dir_layout.dl_dir_hash,
  1394. rde->name, rde->name_len);
  1395. hash = ceph_frag_value(hash);
  1396. if (hash != last_hash)
  1397. fpos_offset = 2;
  1398. last_hash = hash;
  1399. rde->offset = ceph_make_fpos(hash, fpos_offset++, true);
  1400. } else {
  1401. rde->offset = ceph_make_fpos(frag, fpos_offset++, false);
  1402. }
  1403. retry_lookup:
  1404. dn = d_lookup(parent, &dname);
  1405. dout("d_lookup on parent=%p name=%.*s got %p\n",
  1406. parent, dname.len, dname.name, dn);
  1407. if (!dn) {
  1408. dn = d_alloc(parent, &dname);
  1409. dout("d_alloc %p '%.*s' = %p\n", parent,
  1410. dname.len, dname.name, dn);
  1411. if (!dn) {
  1412. dout("d_alloc badness\n");
  1413. err = -ENOMEM;
  1414. goto out;
  1415. }
  1416. } else if (d_really_is_positive(dn) &&
  1417. (ceph_ino(d_inode(dn)) != tvino.ino ||
  1418. ceph_snap(d_inode(dn)) != tvino.snap)) {
  1419. struct ceph_dentry_info *di = ceph_dentry(dn);
  1420. dout(" dn %p points to wrong inode %p\n",
  1421. dn, d_inode(dn));
  1422. spin_lock(&dn->d_lock);
  1423. if (di->offset > 0 &&
  1424. di->lease_shared_gen ==
  1425. atomic_read(&ci->i_shared_gen)) {
  1426. __ceph_dir_clear_ordered(ci);
  1427. di->offset = 0;
  1428. }
  1429. spin_unlock(&dn->d_lock);
  1430. d_delete(dn);
  1431. dput(dn);
  1432. goto retry_lookup;
  1433. }
  1434. /* inode */
  1435. if (d_really_is_positive(dn)) {
  1436. in = d_inode(dn);
  1437. } else {
  1438. in = ceph_get_inode(parent->d_sb, tvino);
  1439. if (IS_ERR(in)) {
  1440. dout("new_inode badness\n");
  1441. d_drop(dn);
  1442. dput(dn);
  1443. err = PTR_ERR(in);
  1444. goto out;
  1445. }
  1446. }
  1447. ret = fill_inode(in, NULL, &rde->inode, NULL, session,
  1448. req->r_request_started, -1,
  1449. &req->r_caps_reservation);
  1450. if (ret < 0) {
  1451. pr_err("fill_inode badness on %p\n", in);
  1452. if (d_really_is_negative(dn))
  1453. iput(in);
  1454. d_drop(dn);
  1455. err = ret;
  1456. goto next_item;
  1457. }
  1458. if (d_really_is_negative(dn)) {
  1459. struct dentry *realdn;
  1460. if (ceph_security_xattr_deadlock(in)) {
  1461. dout(" skip splicing dn %p to inode %p"
  1462. " (security xattr deadlock)\n", dn, in);
  1463. iput(in);
  1464. skipped++;
  1465. goto next_item;
  1466. }
  1467. realdn = splice_dentry(dn, in);
  1468. if (IS_ERR(realdn)) {
  1469. err = PTR_ERR(realdn);
  1470. d_drop(dn);
  1471. dn = NULL;
  1472. goto next_item;
  1473. }
  1474. dn = realdn;
  1475. }
  1476. ceph_dentry(dn)->offset = rde->offset;
  1477. dvino = ceph_vino(d_inode(parent));
  1478. update_dentry_lease(dn, rde->lease, req->r_session,
  1479. req->r_request_started, &tvino, &dvino);
  1480. if (err == 0 && skipped == 0 && cache_ctl.index >= 0) {
  1481. ret = fill_readdir_cache(d_inode(parent), dn,
  1482. &cache_ctl, req);
  1483. if (ret < 0)
  1484. err = ret;
  1485. }
  1486. next_item:
  1487. if (dn)
  1488. dput(dn);
  1489. }
  1490. out:
  1491. if (err == 0 && skipped == 0) {
  1492. set_bit(CEPH_MDS_R_DID_PREPOPULATE, &req->r_req_flags);
  1493. req->r_readdir_cache_idx = cache_ctl.index;
  1494. }
  1495. ceph_readdir_cache_release(&cache_ctl);
  1496. dout("readdir_prepopulate done\n");
  1497. return err;
  1498. }
  1499. bool ceph_inode_set_size(struct inode *inode, loff_t size)
  1500. {
  1501. struct ceph_inode_info *ci = ceph_inode(inode);
  1502. bool ret;
  1503. spin_lock(&ci->i_ceph_lock);
  1504. dout("set_size %p %llu -> %llu\n", inode, inode->i_size, size);
  1505. i_size_write(inode, size);
  1506. inode->i_blocks = calc_inode_blocks(size);
  1507. ret = __ceph_should_report_size(ci);
  1508. spin_unlock(&ci->i_ceph_lock);
  1509. return ret;
  1510. }
  1511. /*
  1512. * Write back inode data in a worker thread. (This can't be done
  1513. * in the message handler context.)
  1514. */
  1515. void ceph_queue_writeback(struct inode *inode)
  1516. {
  1517. ihold(inode);
  1518. if (queue_work(ceph_inode_to_client(inode)->wb_wq,
  1519. &ceph_inode(inode)->i_wb_work)) {
  1520. dout("ceph_queue_writeback %p\n", inode);
  1521. } else {
  1522. dout("ceph_queue_writeback %p failed\n", inode);
  1523. iput(inode);
  1524. }
  1525. }
  1526. static void ceph_writeback_work(struct work_struct *work)
  1527. {
  1528. struct ceph_inode_info *ci = container_of(work, struct ceph_inode_info,
  1529. i_wb_work);
  1530. struct inode *inode = &ci->vfs_inode;
  1531. dout("writeback %p\n", inode);
  1532. filemap_fdatawrite(&inode->i_data);
  1533. iput(inode);
  1534. }
  1535. /*
  1536. * queue an async invalidation
  1537. */
  1538. void ceph_queue_invalidate(struct inode *inode)
  1539. {
  1540. ihold(inode);
  1541. if (queue_work(ceph_inode_to_client(inode)->pg_inv_wq,
  1542. &ceph_inode(inode)->i_pg_inv_work)) {
  1543. dout("ceph_queue_invalidate %p\n", inode);
  1544. } else {
  1545. dout("ceph_queue_invalidate %p failed\n", inode);
  1546. iput(inode);
  1547. }
  1548. }
  1549. /*
  1550. * Invalidate inode pages in a worker thread. (This can't be done
  1551. * in the message handler context.)
  1552. */
  1553. static void ceph_invalidate_work(struct work_struct *work)
  1554. {
  1555. struct ceph_inode_info *ci = container_of(work, struct ceph_inode_info,
  1556. i_pg_inv_work);
  1557. struct inode *inode = &ci->vfs_inode;
  1558. struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
  1559. u32 orig_gen;
  1560. int check = 0;
  1561. mutex_lock(&ci->i_truncate_mutex);
  1562. if (READ_ONCE(fsc->mount_state) == CEPH_MOUNT_SHUTDOWN) {
  1563. pr_warn_ratelimited("invalidate_pages %p %lld forced umount\n",
  1564. inode, ceph_ino(inode));
  1565. mapping_set_error(inode->i_mapping, -EIO);
  1566. truncate_pagecache(inode, 0);
  1567. mutex_unlock(&ci->i_truncate_mutex);
  1568. goto out;
  1569. }
  1570. spin_lock(&ci->i_ceph_lock);
  1571. dout("invalidate_pages %p gen %d revoking %d\n", inode,
  1572. ci->i_rdcache_gen, ci->i_rdcache_revoking);
  1573. if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
  1574. if (__ceph_caps_revoking_other(ci, NULL, CEPH_CAP_FILE_CACHE))
  1575. check = 1;
  1576. spin_unlock(&ci->i_ceph_lock);
  1577. mutex_unlock(&ci->i_truncate_mutex);
  1578. goto out;
  1579. }
  1580. orig_gen = ci->i_rdcache_gen;
  1581. spin_unlock(&ci->i_ceph_lock);
  1582. if (invalidate_inode_pages2(inode->i_mapping) < 0) {
  1583. pr_err("invalidate_pages %p fails\n", inode);
  1584. }
  1585. spin_lock(&ci->i_ceph_lock);
  1586. if (orig_gen == ci->i_rdcache_gen &&
  1587. orig_gen == ci->i_rdcache_revoking) {
  1588. dout("invalidate_pages %p gen %d successful\n", inode,
  1589. ci->i_rdcache_gen);
  1590. ci->i_rdcache_revoking--;
  1591. check = 1;
  1592. } else {
  1593. dout("invalidate_pages %p gen %d raced, now %d revoking %d\n",
  1594. inode, orig_gen, ci->i_rdcache_gen,
  1595. ci->i_rdcache_revoking);
  1596. if (__ceph_caps_revoking_other(ci, NULL, CEPH_CAP_FILE_CACHE))
  1597. check = 1;
  1598. }
  1599. spin_unlock(&ci->i_ceph_lock);
  1600. mutex_unlock(&ci->i_truncate_mutex);
  1601. out:
  1602. if (check)
  1603. ceph_check_caps(ci, 0, NULL);
  1604. iput(inode);
  1605. }
  1606. /*
  1607. * called by trunc_wq;
  1608. *
  1609. * We also truncate in a separate thread as well.
  1610. */
  1611. static void ceph_vmtruncate_work(struct work_struct *work)
  1612. {
  1613. struct ceph_inode_info *ci = container_of(work, struct ceph_inode_info,
  1614. i_vmtruncate_work);
  1615. struct inode *inode = &ci->vfs_inode;
  1616. dout("vmtruncate_work %p\n", inode);
  1617. __ceph_do_pending_vmtruncate(inode);
  1618. iput(inode);
  1619. }
  1620. /*
  1621. * Queue an async vmtruncate. If we fail to queue work, we will handle
  1622. * the truncation the next time we call __ceph_do_pending_vmtruncate.
  1623. */
  1624. void ceph_queue_vmtruncate(struct inode *inode)
  1625. {
  1626. struct ceph_inode_info *ci = ceph_inode(inode);
  1627. ihold(inode);
  1628. if (queue_work(ceph_sb_to_client(inode->i_sb)->trunc_wq,
  1629. &ci->i_vmtruncate_work)) {
  1630. dout("ceph_queue_vmtruncate %p\n", inode);
  1631. } else {
  1632. dout("ceph_queue_vmtruncate %p failed, pending=%d\n",
  1633. inode, ci->i_truncate_pending);
  1634. iput(inode);
  1635. }
  1636. }
  1637. /*
  1638. * Make sure any pending truncation is applied before doing anything
  1639. * that may depend on it.
  1640. */
  1641. void __ceph_do_pending_vmtruncate(struct inode *inode)
  1642. {
  1643. struct ceph_inode_info *ci = ceph_inode(inode);
  1644. u64 to;
  1645. int wrbuffer_refs, finish = 0;
  1646. mutex_lock(&ci->i_truncate_mutex);
  1647. retry:
  1648. spin_lock(&ci->i_ceph_lock);
  1649. if (ci->i_truncate_pending == 0) {
  1650. dout("__do_pending_vmtruncate %p none pending\n", inode);
  1651. spin_unlock(&ci->i_ceph_lock);
  1652. mutex_unlock(&ci->i_truncate_mutex);
  1653. return;
  1654. }
  1655. /*
  1656. * make sure any dirty snapped pages are flushed before we
  1657. * possibly truncate them.. so write AND block!
  1658. */
  1659. if (ci->i_wrbuffer_ref_head < ci->i_wrbuffer_ref) {
  1660. spin_unlock(&ci->i_ceph_lock);
  1661. dout("__do_pending_vmtruncate %p flushing snaps first\n",
  1662. inode);
  1663. filemap_write_and_wait_range(&inode->i_data, 0,
  1664. inode->i_sb->s_maxbytes);
  1665. goto retry;
  1666. }
  1667. /* there should be no reader or writer */
  1668. WARN_ON_ONCE(ci->i_rd_ref || ci->i_wr_ref);
  1669. to = ci->i_truncate_size;
  1670. wrbuffer_refs = ci->i_wrbuffer_ref;
  1671. dout("__do_pending_vmtruncate %p (%d) to %lld\n", inode,
  1672. ci->i_truncate_pending, to);
  1673. spin_unlock(&ci->i_ceph_lock);
  1674. truncate_pagecache(inode, to);
  1675. spin_lock(&ci->i_ceph_lock);
  1676. if (to == ci->i_truncate_size) {
  1677. ci->i_truncate_pending = 0;
  1678. finish = 1;
  1679. }
  1680. spin_unlock(&ci->i_ceph_lock);
  1681. if (!finish)
  1682. goto retry;
  1683. mutex_unlock(&ci->i_truncate_mutex);
  1684. if (wrbuffer_refs == 0)
  1685. ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
  1686. wake_up_all(&ci->i_cap_wq);
  1687. }
  1688. /*
  1689. * symlinks
  1690. */
  1691. static const struct inode_operations ceph_symlink_iops = {
  1692. .get_link = simple_get_link,
  1693. .setattr = ceph_setattr,
  1694. .getattr = ceph_getattr,
  1695. .listxattr = ceph_listxattr,
  1696. };
  1697. int __ceph_setattr(struct inode *inode, struct iattr *attr)
  1698. {
  1699. struct ceph_inode_info *ci = ceph_inode(inode);
  1700. const unsigned int ia_valid = attr->ia_valid;
  1701. struct ceph_mds_request *req;
  1702. struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
  1703. struct ceph_cap_flush *prealloc_cf;
  1704. int issued;
  1705. int release = 0, dirtied = 0;
  1706. int mask = 0;
  1707. int err = 0;
  1708. int inode_dirty_flags = 0;
  1709. bool lock_snap_rwsem = false;
  1710. prealloc_cf = ceph_alloc_cap_flush();
  1711. if (!prealloc_cf)
  1712. return -ENOMEM;
  1713. req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETATTR,
  1714. USE_AUTH_MDS);
  1715. if (IS_ERR(req)) {
  1716. ceph_free_cap_flush(prealloc_cf);
  1717. return PTR_ERR(req);
  1718. }
  1719. spin_lock(&ci->i_ceph_lock);
  1720. issued = __ceph_caps_issued(ci, NULL);
  1721. if (!ci->i_head_snapc &&
  1722. (issued & (CEPH_CAP_ANY_EXCL | CEPH_CAP_FILE_WR))) {
  1723. lock_snap_rwsem = true;
  1724. if (!down_read_trylock(&mdsc->snap_rwsem)) {
  1725. spin_unlock(&ci->i_ceph_lock);
  1726. down_read(&mdsc->snap_rwsem);
  1727. spin_lock(&ci->i_ceph_lock);
  1728. issued = __ceph_caps_issued(ci, NULL);
  1729. }
  1730. }
  1731. dout("setattr %p issued %s\n", inode, ceph_cap_string(issued));
  1732. if (ia_valid & ATTR_UID) {
  1733. dout("setattr %p uid %d -> %d\n", inode,
  1734. from_kuid(&init_user_ns, inode->i_uid),
  1735. from_kuid(&init_user_ns, attr->ia_uid));
  1736. if (issued & CEPH_CAP_AUTH_EXCL) {
  1737. inode->i_uid = attr->ia_uid;
  1738. dirtied |= CEPH_CAP_AUTH_EXCL;
  1739. } else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
  1740. !uid_eq(attr->ia_uid, inode->i_uid)) {
  1741. req->r_args.setattr.uid = cpu_to_le32(
  1742. from_kuid(&init_user_ns, attr->ia_uid));
  1743. mask |= CEPH_SETATTR_UID;
  1744. release |= CEPH_CAP_AUTH_SHARED;
  1745. }
  1746. }
  1747. if (ia_valid & ATTR_GID) {
  1748. dout("setattr %p gid %d -> %d\n", inode,
  1749. from_kgid(&init_user_ns, inode->i_gid),
  1750. from_kgid(&init_user_ns, attr->ia_gid));
  1751. if (issued & CEPH_CAP_AUTH_EXCL) {
  1752. inode->i_gid = attr->ia_gid;
  1753. dirtied |= CEPH_CAP_AUTH_EXCL;
  1754. } else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
  1755. !gid_eq(attr->ia_gid, inode->i_gid)) {
  1756. req->r_args.setattr.gid = cpu_to_le32(
  1757. from_kgid(&init_user_ns, attr->ia_gid));
  1758. mask |= CEPH_SETATTR_GID;
  1759. release |= CEPH_CAP_AUTH_SHARED;
  1760. }
  1761. }
  1762. if (ia_valid & ATTR_MODE) {
  1763. dout("setattr %p mode 0%o -> 0%o\n", inode, inode->i_mode,
  1764. attr->ia_mode);
  1765. if (issued & CEPH_CAP_AUTH_EXCL) {
  1766. inode->i_mode = attr->ia_mode;
  1767. dirtied |= CEPH_CAP_AUTH_EXCL;
  1768. } else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
  1769. attr->ia_mode != inode->i_mode) {
  1770. inode->i_mode = attr->ia_mode;
  1771. req->r_args.setattr.mode = cpu_to_le32(attr->ia_mode);
  1772. mask |= CEPH_SETATTR_MODE;
  1773. release |= CEPH_CAP_AUTH_SHARED;
  1774. }
  1775. }
  1776. if (ia_valid & ATTR_ATIME) {
  1777. dout("setattr %p atime %ld.%ld -> %ld.%ld\n", inode,
  1778. inode->i_atime.tv_sec, inode->i_atime.tv_nsec,
  1779. attr->ia_atime.tv_sec, attr->ia_atime.tv_nsec);
  1780. if (issued & CEPH_CAP_FILE_EXCL) {
  1781. ci->i_time_warp_seq++;
  1782. inode->i_atime = attr->ia_atime;
  1783. dirtied |= CEPH_CAP_FILE_EXCL;
  1784. } else if ((issued & CEPH_CAP_FILE_WR) &&
  1785. timespec_compare(&inode->i_atime,
  1786. &attr->ia_atime) < 0) {
  1787. inode->i_atime = attr->ia_atime;
  1788. dirtied |= CEPH_CAP_FILE_WR;
  1789. } else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
  1790. !timespec_equal(&inode->i_atime, &attr->ia_atime)) {
  1791. ceph_encode_timespec(&req->r_args.setattr.atime,
  1792. &attr->ia_atime);
  1793. mask |= CEPH_SETATTR_ATIME;
  1794. release |= CEPH_CAP_FILE_SHARED |
  1795. CEPH_CAP_FILE_RD | CEPH_CAP_FILE_WR;
  1796. }
  1797. }
  1798. if (ia_valid & ATTR_MTIME) {
  1799. dout("setattr %p mtime %ld.%ld -> %ld.%ld\n", inode,
  1800. inode->i_mtime.tv_sec, inode->i_mtime.tv_nsec,
  1801. attr->ia_mtime.tv_sec, attr->ia_mtime.tv_nsec);
  1802. if (issued & CEPH_CAP_FILE_EXCL) {
  1803. ci->i_time_warp_seq++;
  1804. inode->i_mtime = attr->ia_mtime;
  1805. dirtied |= CEPH_CAP_FILE_EXCL;
  1806. } else if ((issued & CEPH_CAP_FILE_WR) &&
  1807. timespec_compare(&inode->i_mtime,
  1808. &attr->ia_mtime) < 0) {
  1809. inode->i_mtime = attr->ia_mtime;
  1810. dirtied |= CEPH_CAP_FILE_WR;
  1811. } else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
  1812. !timespec_equal(&inode->i_mtime, &attr->ia_mtime)) {
  1813. ceph_encode_timespec(&req->r_args.setattr.mtime,
  1814. &attr->ia_mtime);
  1815. mask |= CEPH_SETATTR_MTIME;
  1816. release |= CEPH_CAP_FILE_SHARED |
  1817. CEPH_CAP_FILE_RD | CEPH_CAP_FILE_WR;
  1818. }
  1819. }
  1820. if (ia_valid & ATTR_SIZE) {
  1821. dout("setattr %p size %lld -> %lld\n", inode,
  1822. inode->i_size, attr->ia_size);
  1823. if ((issued & CEPH_CAP_FILE_EXCL) &&
  1824. attr->ia_size > inode->i_size) {
  1825. i_size_write(inode, attr->ia_size);
  1826. inode->i_blocks = calc_inode_blocks(attr->ia_size);
  1827. ci->i_reported_size = attr->ia_size;
  1828. dirtied |= CEPH_CAP_FILE_EXCL;
  1829. } else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
  1830. attr->ia_size != inode->i_size) {
  1831. req->r_args.setattr.size = cpu_to_le64(attr->ia_size);
  1832. req->r_args.setattr.old_size =
  1833. cpu_to_le64(inode->i_size);
  1834. mask |= CEPH_SETATTR_SIZE;
  1835. release |= CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL |
  1836. CEPH_CAP_FILE_RD | CEPH_CAP_FILE_WR;
  1837. }
  1838. }
  1839. /* these do nothing */
  1840. if (ia_valid & ATTR_CTIME) {
  1841. bool only = (ia_valid & (ATTR_SIZE|ATTR_MTIME|ATTR_ATIME|
  1842. ATTR_MODE|ATTR_UID|ATTR_GID)) == 0;
  1843. dout("setattr %p ctime %ld.%ld -> %ld.%ld (%s)\n", inode,
  1844. inode->i_ctime.tv_sec, inode->i_ctime.tv_nsec,
  1845. attr->ia_ctime.tv_sec, attr->ia_ctime.tv_nsec,
  1846. only ? "ctime only" : "ignored");
  1847. if (only) {
  1848. /*
  1849. * if kernel wants to dirty ctime but nothing else,
  1850. * we need to choose a cap to dirty under, or do
  1851. * a almost-no-op setattr
  1852. */
  1853. if (issued & CEPH_CAP_AUTH_EXCL)
  1854. dirtied |= CEPH_CAP_AUTH_EXCL;
  1855. else if (issued & CEPH_CAP_FILE_EXCL)
  1856. dirtied |= CEPH_CAP_FILE_EXCL;
  1857. else if (issued & CEPH_CAP_XATTR_EXCL)
  1858. dirtied |= CEPH_CAP_XATTR_EXCL;
  1859. else
  1860. mask |= CEPH_SETATTR_CTIME;
  1861. }
  1862. }
  1863. if (ia_valid & ATTR_FILE)
  1864. dout("setattr %p ATTR_FILE ... hrm!\n", inode);
  1865. if (dirtied) {
  1866. inode_dirty_flags = __ceph_mark_dirty_caps(ci, dirtied,
  1867. &prealloc_cf);
  1868. inode->i_ctime = attr->ia_ctime;
  1869. }
  1870. release &= issued;
  1871. spin_unlock(&ci->i_ceph_lock);
  1872. if (lock_snap_rwsem)
  1873. up_read(&mdsc->snap_rwsem);
  1874. if (inode_dirty_flags)
  1875. __mark_inode_dirty(inode, inode_dirty_flags);
  1876. if (mask) {
  1877. req->r_inode = inode;
  1878. ihold(inode);
  1879. req->r_inode_drop = release;
  1880. req->r_args.setattr.mask = cpu_to_le32(mask);
  1881. req->r_num_caps = 1;
  1882. req->r_stamp = attr->ia_ctime;
  1883. err = ceph_mdsc_do_request(mdsc, NULL, req);
  1884. }
  1885. dout("setattr %p result=%d (%s locally, %d remote)\n", inode, err,
  1886. ceph_cap_string(dirtied), mask);
  1887. ceph_mdsc_put_request(req);
  1888. ceph_free_cap_flush(prealloc_cf);
  1889. if (err >= 0 && (mask & CEPH_SETATTR_SIZE))
  1890. __ceph_do_pending_vmtruncate(inode);
  1891. return err;
  1892. }
  1893. /*
  1894. * setattr
  1895. */
  1896. int ceph_setattr(struct dentry *dentry, struct iattr *attr)
  1897. {
  1898. struct inode *inode = d_inode(dentry);
  1899. int err;
  1900. if (ceph_snap(inode) != CEPH_NOSNAP)
  1901. return -EROFS;
  1902. err = setattr_prepare(dentry, attr);
  1903. if (err != 0)
  1904. return err;
  1905. if ((attr->ia_valid & ATTR_SIZE) &&
  1906. ceph_quota_is_max_bytes_exceeded(inode, attr->ia_size))
  1907. return -EDQUOT;
  1908. err = __ceph_setattr(inode, attr);
  1909. if (err >= 0 && (attr->ia_valid & ATTR_MODE))
  1910. err = posix_acl_chmod(inode, attr->ia_mode);
  1911. return err;
  1912. }
  1913. /*
  1914. * Verify that we have a lease on the given mask. If not,
  1915. * do a getattr against an mds.
  1916. */
  1917. int __ceph_do_getattr(struct inode *inode, struct page *locked_page,
  1918. int mask, bool force)
  1919. {
  1920. struct ceph_fs_client *fsc = ceph_sb_to_client(inode->i_sb);
  1921. struct ceph_mds_client *mdsc = fsc->mdsc;
  1922. struct ceph_mds_request *req;
  1923. int mode;
  1924. int err;
  1925. if (ceph_snap(inode) == CEPH_SNAPDIR) {
  1926. dout("do_getattr inode %p SNAPDIR\n", inode);
  1927. return 0;
  1928. }
  1929. dout("do_getattr inode %p mask %s mode 0%o\n",
  1930. inode, ceph_cap_string(mask), inode->i_mode);
  1931. if (!force && ceph_caps_issued_mask(ceph_inode(inode), mask, 1))
  1932. return 0;
  1933. mode = (mask & CEPH_STAT_RSTAT) ? USE_AUTH_MDS : USE_ANY_MDS;
  1934. req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, mode);
  1935. if (IS_ERR(req))
  1936. return PTR_ERR(req);
  1937. req->r_inode = inode;
  1938. ihold(inode);
  1939. req->r_num_caps = 1;
  1940. req->r_args.getattr.mask = cpu_to_le32(mask);
  1941. req->r_locked_page = locked_page;
  1942. err = ceph_mdsc_do_request(mdsc, NULL, req);
  1943. if (locked_page && err == 0) {
  1944. u64 inline_version = req->r_reply_info.targeti.inline_version;
  1945. if (inline_version == 0) {
  1946. /* the reply is supposed to contain inline data */
  1947. err = -EINVAL;
  1948. } else if (inline_version == CEPH_INLINE_NONE) {
  1949. err = -ENODATA;
  1950. } else {
  1951. err = req->r_reply_info.targeti.inline_len;
  1952. }
  1953. }
  1954. ceph_mdsc_put_request(req);
  1955. dout("do_getattr result=%d\n", err);
  1956. return err;
  1957. }
  1958. /*
  1959. * Check inode permissions. We verify we have a valid value for
  1960. * the AUTH cap, then call the generic handler.
  1961. */
  1962. int ceph_permission(struct inode *inode, int mask)
  1963. {
  1964. int err;
  1965. if (mask & MAY_NOT_BLOCK)
  1966. return -ECHILD;
  1967. err = ceph_do_getattr(inode, CEPH_CAP_AUTH_SHARED, false);
  1968. if (!err)
  1969. err = generic_permission(inode, mask);
  1970. return err;
  1971. }
  1972. /*
  1973. * Get all attributes. Hopefully somedata we'll have a statlite()
  1974. * and can limit the fields we require to be accurate.
  1975. */
  1976. int ceph_getattr(const struct path *path, struct kstat *stat,
  1977. u32 request_mask, unsigned int flags)
  1978. {
  1979. struct inode *inode = d_inode(path->dentry);
  1980. struct ceph_inode_info *ci = ceph_inode(inode);
  1981. int err;
  1982. err = ceph_do_getattr(inode, CEPH_STAT_CAP_INODE_ALL, false);
  1983. if (!err) {
  1984. generic_fillattr(inode, stat);
  1985. stat->ino = ceph_translate_ino(inode->i_sb, inode->i_ino);
  1986. if (ceph_snap(inode) != CEPH_NOSNAP)
  1987. stat->dev = ceph_snap(inode);
  1988. else
  1989. stat->dev = 0;
  1990. if (S_ISDIR(inode->i_mode)) {
  1991. if (ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb),
  1992. RBYTES))
  1993. stat->size = ci->i_rbytes;
  1994. else
  1995. stat->size = ci->i_files + ci->i_subdirs;
  1996. stat->blocks = 0;
  1997. stat->blksize = 65536;
  1998. /*
  1999. * Some applications rely on the number of st_nlink
  2000. * value on directories to be either 0 (if unlinked)
  2001. * or 2 + number of subdirectories.
  2002. */
  2003. if (stat->nlink == 1)
  2004. /* '.' + '..' + subdirs */
  2005. stat->nlink = 1 + 1 + ci->i_subdirs;
  2006. }
  2007. }
  2008. return err;
  2009. }