inode.c 56 KB

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