inode.c 48 KB

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