inode.c 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797
  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. CEPH_CAP_FILE_LAZYIO)) ||
  389. mapping_mapped(inode->i_mapping) ||
  390. __ceph_caps_file_wanted(ci)) {
  391. ci->i_truncate_pending++;
  392. queue_trunc = 1;
  393. }
  394. }
  395. }
  396. if (ceph_seq_cmp(truncate_seq, ci->i_truncate_seq) >= 0 &&
  397. ci->i_truncate_size != truncate_size) {
  398. dout("truncate_size %lld -> %llu\n", ci->i_truncate_size,
  399. truncate_size);
  400. ci->i_truncate_size = truncate_size;
  401. }
  402. return queue_trunc;
  403. }
  404. void ceph_fill_file_time(struct inode *inode, int issued,
  405. u64 time_warp_seq, struct timespec *ctime,
  406. struct timespec *mtime, struct timespec *atime)
  407. {
  408. struct ceph_inode_info *ci = ceph_inode(inode);
  409. int warn = 0;
  410. if (issued & (CEPH_CAP_FILE_EXCL|
  411. CEPH_CAP_FILE_WR|
  412. CEPH_CAP_FILE_BUFFER)) {
  413. if (timespec_compare(ctime, &inode->i_ctime) > 0) {
  414. dout("ctime %ld.%09ld -> %ld.%09ld inc w/ cap\n",
  415. inode->i_ctime.tv_sec, inode->i_ctime.tv_nsec,
  416. ctime->tv_sec, ctime->tv_nsec);
  417. inode->i_ctime = *ctime;
  418. }
  419. if (ceph_seq_cmp(time_warp_seq, ci->i_time_warp_seq) > 0) {
  420. /* the MDS did a utimes() */
  421. dout("mtime %ld.%09ld -> %ld.%09ld "
  422. "tw %d -> %d\n",
  423. inode->i_mtime.tv_sec, inode->i_mtime.tv_nsec,
  424. mtime->tv_sec, mtime->tv_nsec,
  425. ci->i_time_warp_seq, (int)time_warp_seq);
  426. inode->i_mtime = *mtime;
  427. inode->i_atime = *atime;
  428. ci->i_time_warp_seq = time_warp_seq;
  429. } else if (time_warp_seq == ci->i_time_warp_seq) {
  430. /* nobody did utimes(); take the max */
  431. if (timespec_compare(mtime, &inode->i_mtime) > 0) {
  432. dout("mtime %ld.%09ld -> %ld.%09ld inc\n",
  433. inode->i_mtime.tv_sec,
  434. inode->i_mtime.tv_nsec,
  435. mtime->tv_sec, mtime->tv_nsec);
  436. inode->i_mtime = *mtime;
  437. }
  438. if (timespec_compare(atime, &inode->i_atime) > 0) {
  439. dout("atime %ld.%09ld -> %ld.%09ld inc\n",
  440. inode->i_atime.tv_sec,
  441. inode->i_atime.tv_nsec,
  442. atime->tv_sec, atime->tv_nsec);
  443. inode->i_atime = *atime;
  444. }
  445. } else if (issued & CEPH_CAP_FILE_EXCL) {
  446. /* we did a utimes(); ignore mds values */
  447. } else {
  448. warn = 1;
  449. }
  450. } else {
  451. /* we have no write caps; whatever the MDS says is true */
  452. if (ceph_seq_cmp(time_warp_seq, ci->i_time_warp_seq) >= 0) {
  453. inode->i_ctime = *ctime;
  454. inode->i_mtime = *mtime;
  455. inode->i_atime = *atime;
  456. ci->i_time_warp_seq = time_warp_seq;
  457. } else {
  458. warn = 1;
  459. }
  460. }
  461. if (warn) /* time_warp_seq shouldn't go backwards */
  462. dout("%p mds time_warp_seq %llu < %u\n",
  463. inode, time_warp_seq, ci->i_time_warp_seq);
  464. }
  465. /*
  466. * Populate an inode based on info from mds. May be called on new or
  467. * existing inodes.
  468. */
  469. static int fill_inode(struct inode *inode,
  470. struct ceph_mds_reply_info_in *iinfo,
  471. struct ceph_mds_reply_dirfrag *dirinfo,
  472. struct ceph_mds_session *session,
  473. unsigned long ttl_from, int cap_fmode,
  474. struct ceph_cap_reservation *caps_reservation)
  475. {
  476. struct ceph_mds_reply_inode *info = iinfo->in;
  477. struct ceph_inode_info *ci = ceph_inode(inode);
  478. int i;
  479. int issued, implemented;
  480. struct timespec mtime, atime, ctime;
  481. u32 nsplits;
  482. struct ceph_buffer *xattr_blob = NULL;
  483. int err = 0;
  484. int queue_trunc = 0;
  485. dout("fill_inode %p ino %llx.%llx v %llu had %llu\n",
  486. inode, ceph_vinop(inode), le64_to_cpu(info->version),
  487. ci->i_version);
  488. /*
  489. * prealloc xattr data, if it looks like we'll need it. only
  490. * if len > 4 (meaning there are actually xattrs; the first 4
  491. * bytes are the xattr count).
  492. */
  493. if (iinfo->xattr_len > 4) {
  494. xattr_blob = ceph_buffer_new(iinfo->xattr_len, GFP_NOFS);
  495. if (!xattr_blob)
  496. pr_err("fill_inode ENOMEM xattr blob %d bytes\n",
  497. iinfo->xattr_len);
  498. }
  499. spin_lock(&inode->i_lock);
  500. /*
  501. * provided version will be odd if inode value is projected,
  502. * even if stable. skip the update if we have a newer info
  503. * (e.g., due to inode info racing form multiple MDSs), or if
  504. * we are getting projected (unstable) inode info.
  505. */
  506. if (le64_to_cpu(info->version) > 0 &&
  507. (ci->i_version & ~1) > le64_to_cpu(info->version))
  508. goto no_change;
  509. issued = __ceph_caps_issued(ci, &implemented);
  510. issued |= implemented | __ceph_caps_dirty(ci);
  511. /* update inode */
  512. ci->i_version = le64_to_cpu(info->version);
  513. inode->i_version++;
  514. inode->i_rdev = le32_to_cpu(info->rdev);
  515. if ((issued & CEPH_CAP_AUTH_EXCL) == 0) {
  516. inode->i_mode = le32_to_cpu(info->mode);
  517. inode->i_uid = le32_to_cpu(info->uid);
  518. inode->i_gid = le32_to_cpu(info->gid);
  519. dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
  520. inode->i_uid, inode->i_gid);
  521. }
  522. if ((issued & CEPH_CAP_LINK_EXCL) == 0)
  523. inode->i_nlink = le32_to_cpu(info->nlink);
  524. /* be careful with mtime, atime, size */
  525. ceph_decode_timespec(&atime, &info->atime);
  526. ceph_decode_timespec(&mtime, &info->mtime);
  527. ceph_decode_timespec(&ctime, &info->ctime);
  528. queue_trunc = ceph_fill_file_size(inode, issued,
  529. le32_to_cpu(info->truncate_seq),
  530. le64_to_cpu(info->truncate_size),
  531. le64_to_cpu(info->size));
  532. ceph_fill_file_time(inode, issued,
  533. le32_to_cpu(info->time_warp_seq),
  534. &ctime, &mtime, &atime);
  535. ci->i_max_size = le64_to_cpu(info->max_size);
  536. ci->i_layout = info->layout;
  537. inode->i_blkbits = fls(le32_to_cpu(info->layout.fl_stripe_unit)) - 1;
  538. /* xattrs */
  539. /* note that if i_xattrs.len <= 4, i_xattrs.data will still be NULL. */
  540. if ((issued & CEPH_CAP_XATTR_EXCL) == 0 &&
  541. le64_to_cpu(info->xattr_version) > ci->i_xattrs.version) {
  542. if (ci->i_xattrs.blob)
  543. ceph_buffer_put(ci->i_xattrs.blob);
  544. ci->i_xattrs.blob = xattr_blob;
  545. if (xattr_blob)
  546. memcpy(ci->i_xattrs.blob->vec.iov_base,
  547. iinfo->xattr_data, iinfo->xattr_len);
  548. ci->i_xattrs.version = le64_to_cpu(info->xattr_version);
  549. xattr_blob = NULL;
  550. }
  551. inode->i_mapping->a_ops = &ceph_aops;
  552. inode->i_mapping->backing_dev_info =
  553. &ceph_sb_to_client(inode->i_sb)->backing_dev_info;
  554. switch (inode->i_mode & S_IFMT) {
  555. case S_IFIFO:
  556. case S_IFBLK:
  557. case S_IFCHR:
  558. case S_IFSOCK:
  559. init_special_inode(inode, inode->i_mode, inode->i_rdev);
  560. inode->i_op = &ceph_file_iops;
  561. break;
  562. case S_IFREG:
  563. inode->i_op = &ceph_file_iops;
  564. inode->i_fop = &ceph_file_fops;
  565. break;
  566. case S_IFLNK:
  567. inode->i_op = &ceph_symlink_iops;
  568. if (!ci->i_symlink) {
  569. int symlen = iinfo->symlink_len;
  570. char *sym;
  571. BUG_ON(symlen != inode->i_size);
  572. spin_unlock(&inode->i_lock);
  573. err = -ENOMEM;
  574. sym = kmalloc(symlen+1, GFP_NOFS);
  575. if (!sym)
  576. goto out;
  577. memcpy(sym, iinfo->symlink, symlen);
  578. sym[symlen] = 0;
  579. spin_lock(&inode->i_lock);
  580. if (!ci->i_symlink)
  581. ci->i_symlink = sym;
  582. else
  583. kfree(sym); /* lost a race */
  584. }
  585. break;
  586. case S_IFDIR:
  587. inode->i_op = &ceph_dir_iops;
  588. inode->i_fop = &ceph_dir_fops;
  589. ci->i_files = le64_to_cpu(info->files);
  590. ci->i_subdirs = le64_to_cpu(info->subdirs);
  591. ci->i_rbytes = le64_to_cpu(info->rbytes);
  592. ci->i_rfiles = le64_to_cpu(info->rfiles);
  593. ci->i_rsubdirs = le64_to_cpu(info->rsubdirs);
  594. ceph_decode_timespec(&ci->i_rctime, &info->rctime);
  595. /* set dir completion flag? */
  596. if (ci->i_files == 0 && ci->i_subdirs == 0 &&
  597. ceph_snap(inode) == CEPH_NOSNAP &&
  598. (le32_to_cpu(info->cap.caps) & CEPH_CAP_FILE_SHARED) &&
  599. (issued & CEPH_CAP_FILE_EXCL) == 0 &&
  600. (ci->i_ceph_flags & CEPH_I_COMPLETE) == 0) {
  601. dout(" marking %p complete (empty)\n", inode);
  602. ci->i_ceph_flags |= CEPH_I_COMPLETE;
  603. ci->i_max_offset = 2;
  604. }
  605. /* it may be better to set st_size in getattr instead? */
  606. if (ceph_test_opt(ceph_sb_to_client(inode->i_sb), RBYTES))
  607. inode->i_size = ci->i_rbytes;
  608. break;
  609. default:
  610. pr_err("fill_inode %llx.%llx BAD mode 0%o\n",
  611. ceph_vinop(inode), inode->i_mode);
  612. }
  613. no_change:
  614. spin_unlock(&inode->i_lock);
  615. /* queue truncate if we saw i_size decrease */
  616. if (queue_trunc)
  617. ceph_queue_vmtruncate(inode);
  618. /* populate frag tree */
  619. /* FIXME: move me up, if/when version reflects fragtree changes */
  620. nsplits = le32_to_cpu(info->fragtree.nsplits);
  621. mutex_lock(&ci->i_fragtree_mutex);
  622. for (i = 0; i < nsplits; i++) {
  623. u32 id = le32_to_cpu(info->fragtree.splits[i].frag);
  624. struct ceph_inode_frag *frag = __get_or_create_frag(ci, id);
  625. if (IS_ERR(frag))
  626. continue;
  627. frag->split_by = le32_to_cpu(info->fragtree.splits[i].by);
  628. dout(" frag %x split by %d\n", frag->frag, frag->split_by);
  629. }
  630. mutex_unlock(&ci->i_fragtree_mutex);
  631. /* were we issued a capability? */
  632. if (info->cap.caps) {
  633. if (ceph_snap(inode) == CEPH_NOSNAP) {
  634. ceph_add_cap(inode, session,
  635. le64_to_cpu(info->cap.cap_id),
  636. cap_fmode,
  637. le32_to_cpu(info->cap.caps),
  638. le32_to_cpu(info->cap.wanted),
  639. le32_to_cpu(info->cap.seq),
  640. le32_to_cpu(info->cap.mseq),
  641. le64_to_cpu(info->cap.realm),
  642. info->cap.flags,
  643. caps_reservation);
  644. } else {
  645. spin_lock(&inode->i_lock);
  646. dout(" %p got snap_caps %s\n", inode,
  647. ceph_cap_string(le32_to_cpu(info->cap.caps)));
  648. ci->i_snap_caps |= le32_to_cpu(info->cap.caps);
  649. if (cap_fmode >= 0)
  650. __ceph_get_fmode(ci, cap_fmode);
  651. spin_unlock(&inode->i_lock);
  652. }
  653. } else if (cap_fmode >= 0) {
  654. pr_warning("mds issued no caps on %llx.%llx\n",
  655. ceph_vinop(inode));
  656. __ceph_get_fmode(ci, cap_fmode);
  657. }
  658. /* update delegation info? */
  659. if (dirinfo)
  660. ceph_fill_dirfrag(inode, dirinfo);
  661. err = 0;
  662. out:
  663. if (xattr_blob)
  664. ceph_buffer_put(xattr_blob);
  665. return err;
  666. }
  667. /*
  668. * caller should hold session s_mutex.
  669. */
  670. static void update_dentry_lease(struct dentry *dentry,
  671. struct ceph_mds_reply_lease *lease,
  672. struct ceph_mds_session *session,
  673. unsigned long from_time)
  674. {
  675. struct ceph_dentry_info *di = ceph_dentry(dentry);
  676. long unsigned duration = le32_to_cpu(lease->duration_ms);
  677. long unsigned ttl = from_time + (duration * HZ) / 1000;
  678. long unsigned half_ttl = from_time + (duration * HZ / 2) / 1000;
  679. struct inode *dir;
  680. /* only track leases on regular dentries */
  681. if (dentry->d_op != &ceph_dentry_ops)
  682. return;
  683. spin_lock(&dentry->d_lock);
  684. dout("update_dentry_lease %p mask %d duration %lu ms ttl %lu\n",
  685. dentry, le16_to_cpu(lease->mask), duration, ttl);
  686. /* make lease_rdcache_gen match directory */
  687. dir = dentry->d_parent->d_inode;
  688. di->lease_shared_gen = ceph_inode(dir)->i_shared_gen;
  689. if (lease->mask == 0)
  690. goto out_unlock;
  691. if (di->lease_gen == session->s_cap_gen &&
  692. time_before(ttl, dentry->d_time))
  693. goto out_unlock; /* we already have a newer lease. */
  694. if (di->lease_session && di->lease_session != session)
  695. goto out_unlock;
  696. ceph_dentry_lru_touch(dentry);
  697. if (!di->lease_session)
  698. di->lease_session = ceph_get_mds_session(session);
  699. di->lease_gen = session->s_cap_gen;
  700. di->lease_seq = le32_to_cpu(lease->seq);
  701. di->lease_renew_after = half_ttl;
  702. di->lease_renew_from = 0;
  703. dentry->d_time = ttl;
  704. out_unlock:
  705. spin_unlock(&dentry->d_lock);
  706. return;
  707. }
  708. /*
  709. * Set dentry's directory position based on the current dir's max, and
  710. * order it in d_subdirs, so that dcache_readdir behaves.
  711. */
  712. static void ceph_set_dentry_offset(struct dentry *dn)
  713. {
  714. struct dentry *dir = dn->d_parent;
  715. struct inode *inode = dn->d_parent->d_inode;
  716. struct ceph_dentry_info *di;
  717. BUG_ON(!inode);
  718. di = ceph_dentry(dn);
  719. spin_lock(&inode->i_lock);
  720. if ((ceph_inode(inode)->i_ceph_flags & CEPH_I_COMPLETE) == 0) {
  721. spin_unlock(&inode->i_lock);
  722. return;
  723. }
  724. di->offset = ceph_inode(inode)->i_max_offset++;
  725. spin_unlock(&inode->i_lock);
  726. spin_lock(&dcache_lock);
  727. spin_lock(&dn->d_lock);
  728. list_move(&dn->d_u.d_child, &dir->d_subdirs);
  729. dout("set_dentry_offset %p %lld (%p %p)\n", dn, di->offset,
  730. dn->d_u.d_child.prev, dn->d_u.d_child.next);
  731. spin_unlock(&dn->d_lock);
  732. spin_unlock(&dcache_lock);
  733. }
  734. /*
  735. * splice a dentry to an inode.
  736. * caller must hold directory i_mutex for this to be safe.
  737. *
  738. * we will only rehash the resulting dentry if @prehash is
  739. * true; @prehash will be set to false (for the benefit of
  740. * the caller) if we fail.
  741. */
  742. static struct dentry *splice_dentry(struct dentry *dn, struct inode *in,
  743. bool *prehash, bool set_offset)
  744. {
  745. struct dentry *realdn;
  746. BUG_ON(dn->d_inode);
  747. /* dn must be unhashed */
  748. if (!d_unhashed(dn))
  749. d_drop(dn);
  750. realdn = d_materialise_unique(dn, in);
  751. if (IS_ERR(realdn)) {
  752. pr_err("splice_dentry error %ld %p inode %p ino %llx.%llx\n",
  753. PTR_ERR(realdn), dn, in, ceph_vinop(in));
  754. if (prehash)
  755. *prehash = false; /* don't rehash on error */
  756. dn = realdn; /* note realdn contains the error */
  757. goto out;
  758. } else if (realdn) {
  759. dout("dn %p (%d) spliced with %p (%d) "
  760. "inode %p ino %llx.%llx\n",
  761. dn, atomic_read(&dn->d_count),
  762. realdn, atomic_read(&realdn->d_count),
  763. realdn->d_inode, ceph_vinop(realdn->d_inode));
  764. dput(dn);
  765. dn = realdn;
  766. } else {
  767. BUG_ON(!ceph_dentry(dn));
  768. dout("dn %p attached to %p ino %llx.%llx\n",
  769. dn, dn->d_inode, ceph_vinop(dn->d_inode));
  770. }
  771. if ((!prehash || *prehash) && d_unhashed(dn))
  772. d_rehash(dn);
  773. if (set_offset)
  774. ceph_set_dentry_offset(dn);
  775. out:
  776. return dn;
  777. }
  778. /*
  779. * Incorporate results into the local cache. This is either just
  780. * one inode, or a directory, dentry, and possibly linked-to inode (e.g.,
  781. * after a lookup).
  782. *
  783. * A reply may contain
  784. * a directory inode along with a dentry.
  785. * and/or a target inode
  786. *
  787. * Called with snap_rwsem (read).
  788. */
  789. int ceph_fill_trace(struct super_block *sb, struct ceph_mds_request *req,
  790. struct ceph_mds_session *session)
  791. {
  792. struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
  793. struct inode *in = NULL;
  794. struct ceph_mds_reply_inode *ininfo;
  795. struct ceph_vino vino;
  796. struct ceph_client *client = ceph_sb_to_client(sb);
  797. int i = 0;
  798. int err = 0;
  799. dout("fill_trace %p is_dentry %d is_target %d\n", req,
  800. rinfo->head->is_dentry, rinfo->head->is_target);
  801. #if 0
  802. /*
  803. * Debugging hook:
  804. *
  805. * If we resend completed ops to a recovering mds, we get no
  806. * trace. Since that is very rare, pretend this is the case
  807. * to ensure the 'no trace' handlers in the callers behave.
  808. *
  809. * Fill in inodes unconditionally to avoid breaking cap
  810. * invariants.
  811. */
  812. if (rinfo->head->op & CEPH_MDS_OP_WRITE) {
  813. pr_info("fill_trace faking empty trace on %lld %s\n",
  814. req->r_tid, ceph_mds_op_name(rinfo->head->op));
  815. if (rinfo->head->is_dentry) {
  816. rinfo->head->is_dentry = 0;
  817. err = fill_inode(req->r_locked_dir,
  818. &rinfo->diri, rinfo->dirfrag,
  819. session, req->r_request_started, -1);
  820. }
  821. if (rinfo->head->is_target) {
  822. rinfo->head->is_target = 0;
  823. ininfo = rinfo->targeti.in;
  824. vino.ino = le64_to_cpu(ininfo->ino);
  825. vino.snap = le64_to_cpu(ininfo->snapid);
  826. in = ceph_get_inode(sb, vino);
  827. err = fill_inode(in, &rinfo->targeti, NULL,
  828. session, req->r_request_started,
  829. req->r_fmode);
  830. iput(in);
  831. }
  832. }
  833. #endif
  834. if (!rinfo->head->is_target && !rinfo->head->is_dentry) {
  835. dout("fill_trace reply is empty!\n");
  836. if (rinfo->head->result == 0 && req->r_locked_dir)
  837. ceph_invalidate_dir_request(req);
  838. return 0;
  839. }
  840. if (rinfo->head->is_dentry) {
  841. struct inode *dir = req->r_locked_dir;
  842. err = fill_inode(dir, &rinfo->diri, rinfo->dirfrag,
  843. session, req->r_request_started, -1,
  844. &req->r_caps_reservation);
  845. if (err < 0)
  846. return err;
  847. }
  848. /*
  849. * ignore null lease/binding on snapdir ENOENT, or else we
  850. * will have trouble splicing in the virtual snapdir later
  851. */
  852. if (rinfo->head->is_dentry && !req->r_aborted &&
  853. (rinfo->head->is_target || strncmp(req->r_dentry->d_name.name,
  854. client->mount_args->snapdir_name,
  855. req->r_dentry->d_name.len))) {
  856. /*
  857. * lookup link rename : null -> possibly existing inode
  858. * mknod symlink mkdir : null -> new inode
  859. * unlink : linked -> null
  860. */
  861. struct inode *dir = req->r_locked_dir;
  862. struct dentry *dn = req->r_dentry;
  863. bool have_dir_cap, have_lease;
  864. BUG_ON(!dn);
  865. BUG_ON(!dir);
  866. BUG_ON(dn->d_parent->d_inode != dir);
  867. BUG_ON(ceph_ino(dir) !=
  868. le64_to_cpu(rinfo->diri.in->ino));
  869. BUG_ON(ceph_snap(dir) !=
  870. le64_to_cpu(rinfo->diri.in->snapid));
  871. /* do we have a lease on the whole dir? */
  872. have_dir_cap =
  873. (le32_to_cpu(rinfo->diri.in->cap.caps) &
  874. CEPH_CAP_FILE_SHARED);
  875. /* do we have a dn lease? */
  876. have_lease = have_dir_cap ||
  877. (le16_to_cpu(rinfo->dlease->mask) &
  878. CEPH_LOCK_DN);
  879. if (!have_lease)
  880. dout("fill_trace no dentry lease or dir cap\n");
  881. /* rename? */
  882. if (req->r_old_dentry && req->r_op == CEPH_MDS_OP_RENAME) {
  883. dout(" src %p '%.*s' dst %p '%.*s'\n",
  884. req->r_old_dentry,
  885. req->r_old_dentry->d_name.len,
  886. req->r_old_dentry->d_name.name,
  887. dn, dn->d_name.len, dn->d_name.name);
  888. dout("fill_trace doing d_move %p -> %p\n",
  889. req->r_old_dentry, dn);
  890. /* d_move screws up d_subdirs order */
  891. ceph_i_clear(dir, CEPH_I_COMPLETE);
  892. d_move(req->r_old_dentry, dn);
  893. dout(" src %p '%.*s' dst %p '%.*s'\n",
  894. req->r_old_dentry,
  895. req->r_old_dentry->d_name.len,
  896. req->r_old_dentry->d_name.name,
  897. dn, dn->d_name.len, dn->d_name.name);
  898. /* ensure target dentry is invalidated, despite
  899. rehashing bug in vfs_rename_dir */
  900. ceph_invalidate_dentry_lease(dn);
  901. /* take overwritten dentry's readdir offset */
  902. dout("dn %p gets %p offset %lld (old offset %lld)\n",
  903. req->r_old_dentry, dn, ceph_dentry(dn)->offset,
  904. ceph_dentry(req->r_old_dentry)->offset);
  905. ceph_dentry(req->r_old_dentry)->offset =
  906. ceph_dentry(dn)->offset;
  907. dn = req->r_old_dentry; /* use old_dentry */
  908. in = dn->d_inode;
  909. }
  910. /* null dentry? */
  911. if (!rinfo->head->is_target) {
  912. dout("fill_trace null dentry\n");
  913. if (dn->d_inode) {
  914. dout("d_delete %p\n", dn);
  915. d_delete(dn);
  916. } else {
  917. dout("d_instantiate %p NULL\n", dn);
  918. d_instantiate(dn, NULL);
  919. if (have_lease && d_unhashed(dn))
  920. d_rehash(dn);
  921. update_dentry_lease(dn, rinfo->dlease,
  922. session,
  923. req->r_request_started);
  924. }
  925. goto done;
  926. }
  927. /* attach proper inode */
  928. ininfo = rinfo->targeti.in;
  929. vino.ino = le64_to_cpu(ininfo->ino);
  930. vino.snap = le64_to_cpu(ininfo->snapid);
  931. if (!dn->d_inode) {
  932. in = ceph_get_inode(sb, vino);
  933. if (IS_ERR(in)) {
  934. pr_err("fill_trace bad get_inode "
  935. "%llx.%llx\n", vino.ino, vino.snap);
  936. err = PTR_ERR(in);
  937. d_delete(dn);
  938. goto done;
  939. }
  940. dn = splice_dentry(dn, in, &have_lease, true);
  941. if (IS_ERR(dn)) {
  942. err = PTR_ERR(dn);
  943. goto done;
  944. }
  945. req->r_dentry = dn; /* may have spliced */
  946. igrab(in);
  947. } else if (ceph_ino(in) == vino.ino &&
  948. ceph_snap(in) == vino.snap) {
  949. igrab(in);
  950. } else {
  951. dout(" %p links to %p %llx.%llx, not %llx.%llx\n",
  952. dn, in, ceph_ino(in), ceph_snap(in),
  953. vino.ino, vino.snap);
  954. have_lease = false;
  955. in = NULL;
  956. }
  957. if (have_lease)
  958. update_dentry_lease(dn, rinfo->dlease, session,
  959. req->r_request_started);
  960. dout(" final dn %p\n", dn);
  961. i++;
  962. } else if (req->r_op == CEPH_MDS_OP_LOOKUPSNAP ||
  963. req->r_op == CEPH_MDS_OP_MKSNAP) {
  964. struct dentry *dn = req->r_dentry;
  965. /* fill out a snapdir LOOKUPSNAP dentry */
  966. BUG_ON(!dn);
  967. BUG_ON(!req->r_locked_dir);
  968. BUG_ON(ceph_snap(req->r_locked_dir) != CEPH_SNAPDIR);
  969. ininfo = rinfo->targeti.in;
  970. vino.ino = le64_to_cpu(ininfo->ino);
  971. vino.snap = le64_to_cpu(ininfo->snapid);
  972. in = ceph_get_inode(sb, vino);
  973. if (IS_ERR(in)) {
  974. pr_err("fill_inode get_inode badness %llx.%llx\n",
  975. vino.ino, vino.snap);
  976. err = PTR_ERR(in);
  977. d_delete(dn);
  978. goto done;
  979. }
  980. dout(" linking snapped dir %p to dn %p\n", in, dn);
  981. dn = splice_dentry(dn, in, NULL, true);
  982. if (IS_ERR(dn)) {
  983. err = PTR_ERR(dn);
  984. goto done;
  985. }
  986. req->r_dentry = dn; /* may have spliced */
  987. igrab(in);
  988. rinfo->head->is_dentry = 1; /* fool notrace handlers */
  989. }
  990. if (rinfo->head->is_target) {
  991. vino.ino = le64_to_cpu(rinfo->targeti.in->ino);
  992. vino.snap = le64_to_cpu(rinfo->targeti.in->snapid);
  993. if (in == NULL || ceph_ino(in) != vino.ino ||
  994. ceph_snap(in) != vino.snap) {
  995. in = ceph_get_inode(sb, vino);
  996. if (IS_ERR(in)) {
  997. err = PTR_ERR(in);
  998. goto done;
  999. }
  1000. }
  1001. req->r_target_inode = in;
  1002. err = fill_inode(in,
  1003. &rinfo->targeti, NULL,
  1004. session, req->r_request_started,
  1005. (le32_to_cpu(rinfo->head->result) == 0) ?
  1006. req->r_fmode : -1,
  1007. &req->r_caps_reservation);
  1008. if (err < 0) {
  1009. pr_err("fill_inode badness %p %llx.%llx\n",
  1010. in, ceph_vinop(in));
  1011. goto done;
  1012. }
  1013. }
  1014. done:
  1015. dout("fill_trace done err=%d\n", err);
  1016. return err;
  1017. }
  1018. /*
  1019. * Prepopulate our cache with readdir results, leases, etc.
  1020. */
  1021. int ceph_readdir_prepopulate(struct ceph_mds_request *req,
  1022. struct ceph_mds_session *session)
  1023. {
  1024. struct dentry *parent = req->r_dentry;
  1025. struct ceph_mds_reply_info_parsed *rinfo = &req->r_reply_info;
  1026. struct qstr dname;
  1027. struct dentry *dn;
  1028. struct inode *in;
  1029. int err = 0, i;
  1030. struct inode *snapdir = NULL;
  1031. struct ceph_mds_request_head *rhead = req->r_request->front.iov_base;
  1032. u64 frag = le32_to_cpu(rhead->args.readdir.frag);
  1033. struct ceph_dentry_info *di;
  1034. if (le32_to_cpu(rinfo->head->op) == CEPH_MDS_OP_LSSNAP) {
  1035. snapdir = ceph_get_snapdir(parent->d_inode);
  1036. parent = d_find_alias(snapdir);
  1037. dout("readdir_prepopulate %d items under SNAPDIR dn %p\n",
  1038. rinfo->dir_nr, parent);
  1039. } else {
  1040. dout("readdir_prepopulate %d items under dn %p\n",
  1041. rinfo->dir_nr, parent);
  1042. if (rinfo->dir_dir)
  1043. ceph_fill_dirfrag(parent->d_inode, rinfo->dir_dir);
  1044. }
  1045. for (i = 0; i < rinfo->dir_nr; i++) {
  1046. struct ceph_vino vino;
  1047. dname.name = rinfo->dir_dname[i];
  1048. dname.len = rinfo->dir_dname_len[i];
  1049. dname.hash = full_name_hash(dname.name, dname.len);
  1050. vino.ino = le64_to_cpu(rinfo->dir_in[i].in->ino);
  1051. vino.snap = le64_to_cpu(rinfo->dir_in[i].in->snapid);
  1052. retry_lookup:
  1053. dn = d_lookup(parent, &dname);
  1054. dout("d_lookup on parent=%p name=%.*s got %p\n",
  1055. parent, dname.len, dname.name, dn);
  1056. if (!dn) {
  1057. dn = d_alloc(parent, &dname);
  1058. dout("d_alloc %p '%.*s' = %p\n", parent,
  1059. dname.len, dname.name, dn);
  1060. if (dn == NULL) {
  1061. dout("d_alloc badness\n");
  1062. err = -ENOMEM;
  1063. goto out;
  1064. }
  1065. err = ceph_init_dentry(dn);
  1066. if (err < 0) {
  1067. dput(dn);
  1068. goto out;
  1069. }
  1070. } else if (dn->d_inode &&
  1071. (ceph_ino(dn->d_inode) != vino.ino ||
  1072. ceph_snap(dn->d_inode) != vino.snap)) {
  1073. dout(" dn %p points to wrong inode %p\n",
  1074. dn, dn->d_inode);
  1075. d_delete(dn);
  1076. dput(dn);
  1077. goto retry_lookup;
  1078. } else {
  1079. /* reorder parent's d_subdirs */
  1080. spin_lock(&dcache_lock);
  1081. spin_lock(&dn->d_lock);
  1082. list_move(&dn->d_u.d_child, &parent->d_subdirs);
  1083. spin_unlock(&dn->d_lock);
  1084. spin_unlock(&dcache_lock);
  1085. }
  1086. di = dn->d_fsdata;
  1087. di->offset = ceph_make_fpos(frag, i + req->r_readdir_offset);
  1088. /* inode */
  1089. if (dn->d_inode) {
  1090. in = dn->d_inode;
  1091. } else {
  1092. in = ceph_get_inode(parent->d_sb, vino);
  1093. if (IS_ERR(in)) {
  1094. dout("new_inode badness\n");
  1095. d_delete(dn);
  1096. dput(dn);
  1097. err = PTR_ERR(in);
  1098. goto out;
  1099. }
  1100. dn = splice_dentry(dn, in, NULL, false);
  1101. if (IS_ERR(dn))
  1102. dn = NULL;
  1103. }
  1104. if (fill_inode(in, &rinfo->dir_in[i], NULL, session,
  1105. req->r_request_started, -1,
  1106. &req->r_caps_reservation) < 0) {
  1107. pr_err("fill_inode badness on %p\n", in);
  1108. goto next_item;
  1109. }
  1110. if (dn)
  1111. update_dentry_lease(dn, rinfo->dir_dlease[i],
  1112. req->r_session,
  1113. req->r_request_started);
  1114. next_item:
  1115. if (dn)
  1116. dput(dn);
  1117. }
  1118. req->r_did_prepopulate = true;
  1119. out:
  1120. if (snapdir) {
  1121. iput(snapdir);
  1122. dput(parent);
  1123. }
  1124. dout("readdir_prepopulate done\n");
  1125. return err;
  1126. }
  1127. int ceph_inode_set_size(struct inode *inode, loff_t size)
  1128. {
  1129. struct ceph_inode_info *ci = ceph_inode(inode);
  1130. int ret = 0;
  1131. spin_lock(&inode->i_lock);
  1132. dout("set_size %p %llu -> %llu\n", inode, inode->i_size, size);
  1133. inode->i_size = size;
  1134. inode->i_blocks = (size + (1 << 9) - 1) >> 9;
  1135. /* tell the MDS if we are approaching max_size */
  1136. if ((size << 1) >= ci->i_max_size &&
  1137. (ci->i_reported_size << 1) < ci->i_max_size)
  1138. ret = 1;
  1139. spin_unlock(&inode->i_lock);
  1140. return ret;
  1141. }
  1142. /*
  1143. * Write back inode data in a worker thread. (This can't be done
  1144. * in the message handler context.)
  1145. */
  1146. void ceph_queue_writeback(struct inode *inode)
  1147. {
  1148. if (queue_work(ceph_inode_to_client(inode)->wb_wq,
  1149. &ceph_inode(inode)->i_wb_work)) {
  1150. dout("ceph_queue_writeback %p\n", inode);
  1151. igrab(inode);
  1152. } else {
  1153. dout("ceph_queue_writeback %p failed\n", inode);
  1154. }
  1155. }
  1156. static void ceph_writeback_work(struct work_struct *work)
  1157. {
  1158. struct ceph_inode_info *ci = container_of(work, struct ceph_inode_info,
  1159. i_wb_work);
  1160. struct inode *inode = &ci->vfs_inode;
  1161. dout("writeback %p\n", inode);
  1162. filemap_fdatawrite(&inode->i_data);
  1163. iput(inode);
  1164. }
  1165. /*
  1166. * queue an async invalidation
  1167. */
  1168. void ceph_queue_invalidate(struct inode *inode)
  1169. {
  1170. if (queue_work(ceph_inode_to_client(inode)->pg_inv_wq,
  1171. &ceph_inode(inode)->i_pg_inv_work)) {
  1172. dout("ceph_queue_invalidate %p\n", inode);
  1173. igrab(inode);
  1174. } else {
  1175. dout("ceph_queue_invalidate %p failed\n", inode);
  1176. }
  1177. }
  1178. /*
  1179. * invalidate any pages that are not dirty or under writeback. this
  1180. * includes pages that are clean and mapped.
  1181. */
  1182. static void ceph_invalidate_nondirty_pages(struct address_space *mapping)
  1183. {
  1184. struct pagevec pvec;
  1185. pgoff_t next = 0;
  1186. int i;
  1187. pagevec_init(&pvec, 0);
  1188. while (pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
  1189. for (i = 0; i < pagevec_count(&pvec); i++) {
  1190. struct page *page = pvec.pages[i];
  1191. pgoff_t index;
  1192. int skip_page =
  1193. (PageDirty(page) || PageWriteback(page));
  1194. if (!skip_page)
  1195. skip_page = !trylock_page(page);
  1196. /*
  1197. * We really shouldn't be looking at the ->index of an
  1198. * unlocked page. But we're not allowed to lock these
  1199. * pages. So we rely upon nobody altering the ->index
  1200. * of this (pinned-by-us) page.
  1201. */
  1202. index = page->index;
  1203. if (index > next)
  1204. next = index;
  1205. next++;
  1206. if (skip_page)
  1207. continue;
  1208. generic_error_remove_page(mapping, page);
  1209. unlock_page(page);
  1210. }
  1211. pagevec_release(&pvec);
  1212. cond_resched();
  1213. }
  1214. }
  1215. /*
  1216. * Invalidate inode pages in a worker thread. (This can't be done
  1217. * in the message handler context.)
  1218. */
  1219. static void ceph_invalidate_work(struct work_struct *work)
  1220. {
  1221. struct ceph_inode_info *ci = container_of(work, struct ceph_inode_info,
  1222. i_pg_inv_work);
  1223. struct inode *inode = &ci->vfs_inode;
  1224. u32 orig_gen;
  1225. int check = 0;
  1226. spin_lock(&inode->i_lock);
  1227. dout("invalidate_pages %p gen %d revoking %d\n", inode,
  1228. ci->i_rdcache_gen, ci->i_rdcache_revoking);
  1229. if (ci->i_rdcache_gen == 0 ||
  1230. ci->i_rdcache_revoking != ci->i_rdcache_gen) {
  1231. BUG_ON(ci->i_rdcache_revoking > ci->i_rdcache_gen);
  1232. /* nevermind! */
  1233. ci->i_rdcache_revoking = 0;
  1234. spin_unlock(&inode->i_lock);
  1235. goto out;
  1236. }
  1237. orig_gen = ci->i_rdcache_gen;
  1238. spin_unlock(&inode->i_lock);
  1239. ceph_invalidate_nondirty_pages(inode->i_mapping);
  1240. spin_lock(&inode->i_lock);
  1241. if (orig_gen == ci->i_rdcache_gen) {
  1242. dout("invalidate_pages %p gen %d successful\n", inode,
  1243. ci->i_rdcache_gen);
  1244. ci->i_rdcache_gen = 0;
  1245. ci->i_rdcache_revoking = 0;
  1246. check = 1;
  1247. } else {
  1248. dout("invalidate_pages %p gen %d raced, gen now %d\n",
  1249. inode, orig_gen, ci->i_rdcache_gen);
  1250. }
  1251. spin_unlock(&inode->i_lock);
  1252. if (check)
  1253. ceph_check_caps(ci, 0, NULL);
  1254. out:
  1255. iput(inode);
  1256. }
  1257. /*
  1258. * called by trunc_wq; take i_mutex ourselves
  1259. *
  1260. * We also truncate in a separate thread as well.
  1261. */
  1262. static void ceph_vmtruncate_work(struct work_struct *work)
  1263. {
  1264. struct ceph_inode_info *ci = container_of(work, struct ceph_inode_info,
  1265. i_vmtruncate_work);
  1266. struct inode *inode = &ci->vfs_inode;
  1267. dout("vmtruncate_work %p\n", inode);
  1268. mutex_lock(&inode->i_mutex);
  1269. __ceph_do_pending_vmtruncate(inode);
  1270. mutex_unlock(&inode->i_mutex);
  1271. iput(inode);
  1272. }
  1273. /*
  1274. * Queue an async vmtruncate. If we fail to queue work, we will handle
  1275. * the truncation the next time we call __ceph_do_pending_vmtruncate.
  1276. */
  1277. void ceph_queue_vmtruncate(struct inode *inode)
  1278. {
  1279. struct ceph_inode_info *ci = ceph_inode(inode);
  1280. if (queue_work(ceph_sb_to_client(inode->i_sb)->trunc_wq,
  1281. &ci->i_vmtruncate_work)) {
  1282. dout("ceph_queue_vmtruncate %p\n", inode);
  1283. igrab(inode);
  1284. } else {
  1285. dout("ceph_queue_vmtruncate %p failed, pending=%d\n",
  1286. inode, ci->i_truncate_pending);
  1287. }
  1288. }
  1289. /*
  1290. * called with i_mutex held.
  1291. *
  1292. * Make sure any pending truncation is applied before doing anything
  1293. * that may depend on it.
  1294. */
  1295. void __ceph_do_pending_vmtruncate(struct inode *inode)
  1296. {
  1297. struct ceph_inode_info *ci = ceph_inode(inode);
  1298. u64 to;
  1299. int wrbuffer_refs, wake = 0;
  1300. retry:
  1301. spin_lock(&inode->i_lock);
  1302. if (ci->i_truncate_pending == 0) {
  1303. dout("__do_pending_vmtruncate %p none pending\n", inode);
  1304. spin_unlock(&inode->i_lock);
  1305. return;
  1306. }
  1307. /*
  1308. * make sure any dirty snapped pages are flushed before we
  1309. * possibly truncate them.. so write AND block!
  1310. */
  1311. if (ci->i_wrbuffer_ref_head < ci->i_wrbuffer_ref) {
  1312. dout("__do_pending_vmtruncate %p flushing snaps first\n",
  1313. inode);
  1314. spin_unlock(&inode->i_lock);
  1315. filemap_write_and_wait_range(&inode->i_data, 0,
  1316. inode->i_sb->s_maxbytes);
  1317. goto retry;
  1318. }
  1319. to = ci->i_truncate_size;
  1320. wrbuffer_refs = ci->i_wrbuffer_ref;
  1321. dout("__do_pending_vmtruncate %p (%d) to %lld\n", inode,
  1322. ci->i_truncate_pending, to);
  1323. spin_unlock(&inode->i_lock);
  1324. truncate_inode_pages(inode->i_mapping, to);
  1325. spin_lock(&inode->i_lock);
  1326. ci->i_truncate_pending--;
  1327. if (ci->i_truncate_pending == 0)
  1328. wake = 1;
  1329. spin_unlock(&inode->i_lock);
  1330. if (wrbuffer_refs == 0)
  1331. ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
  1332. if (wake)
  1333. wake_up_all(&ci->i_cap_wq);
  1334. }
  1335. /*
  1336. * symlinks
  1337. */
  1338. static void *ceph_sym_follow_link(struct dentry *dentry, struct nameidata *nd)
  1339. {
  1340. struct ceph_inode_info *ci = ceph_inode(dentry->d_inode);
  1341. nd_set_link(nd, ci->i_symlink);
  1342. return NULL;
  1343. }
  1344. static const struct inode_operations ceph_symlink_iops = {
  1345. .readlink = generic_readlink,
  1346. .follow_link = ceph_sym_follow_link,
  1347. };
  1348. /*
  1349. * setattr
  1350. */
  1351. int ceph_setattr(struct dentry *dentry, struct iattr *attr)
  1352. {
  1353. struct inode *inode = dentry->d_inode;
  1354. struct ceph_inode_info *ci = ceph_inode(inode);
  1355. struct inode *parent_inode = dentry->d_parent->d_inode;
  1356. const unsigned int ia_valid = attr->ia_valid;
  1357. struct ceph_mds_request *req;
  1358. struct ceph_mds_client *mdsc = &ceph_sb_to_client(dentry->d_sb)->mdsc;
  1359. int issued;
  1360. int release = 0, dirtied = 0;
  1361. int mask = 0;
  1362. int err = 0;
  1363. if (ceph_snap(inode) != CEPH_NOSNAP)
  1364. return -EROFS;
  1365. __ceph_do_pending_vmtruncate(inode);
  1366. err = inode_change_ok(inode, attr);
  1367. if (err != 0)
  1368. return err;
  1369. req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETATTR,
  1370. USE_AUTH_MDS);
  1371. if (IS_ERR(req))
  1372. return PTR_ERR(req);
  1373. spin_lock(&inode->i_lock);
  1374. issued = __ceph_caps_issued(ci, NULL);
  1375. dout("setattr %p issued %s\n", inode, ceph_cap_string(issued));
  1376. if (ia_valid & ATTR_UID) {
  1377. dout("setattr %p uid %d -> %d\n", inode,
  1378. inode->i_uid, attr->ia_uid);
  1379. if (issued & CEPH_CAP_AUTH_EXCL) {
  1380. inode->i_uid = attr->ia_uid;
  1381. dirtied |= CEPH_CAP_AUTH_EXCL;
  1382. } else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
  1383. attr->ia_uid != inode->i_uid) {
  1384. req->r_args.setattr.uid = cpu_to_le32(attr->ia_uid);
  1385. mask |= CEPH_SETATTR_UID;
  1386. release |= CEPH_CAP_AUTH_SHARED;
  1387. }
  1388. }
  1389. if (ia_valid & ATTR_GID) {
  1390. dout("setattr %p gid %d -> %d\n", inode,
  1391. inode->i_gid, attr->ia_gid);
  1392. if (issued & CEPH_CAP_AUTH_EXCL) {
  1393. inode->i_gid = attr->ia_gid;
  1394. dirtied |= CEPH_CAP_AUTH_EXCL;
  1395. } else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
  1396. attr->ia_gid != inode->i_gid) {
  1397. req->r_args.setattr.gid = cpu_to_le32(attr->ia_gid);
  1398. mask |= CEPH_SETATTR_GID;
  1399. release |= CEPH_CAP_AUTH_SHARED;
  1400. }
  1401. }
  1402. if (ia_valid & ATTR_MODE) {
  1403. dout("setattr %p mode 0%o -> 0%o\n", inode, inode->i_mode,
  1404. attr->ia_mode);
  1405. if (issued & CEPH_CAP_AUTH_EXCL) {
  1406. inode->i_mode = attr->ia_mode;
  1407. dirtied |= CEPH_CAP_AUTH_EXCL;
  1408. } else if ((issued & CEPH_CAP_AUTH_SHARED) == 0 ||
  1409. attr->ia_mode != inode->i_mode) {
  1410. req->r_args.setattr.mode = cpu_to_le32(attr->ia_mode);
  1411. mask |= CEPH_SETATTR_MODE;
  1412. release |= CEPH_CAP_AUTH_SHARED;
  1413. }
  1414. }
  1415. if (ia_valid & ATTR_ATIME) {
  1416. dout("setattr %p atime %ld.%ld -> %ld.%ld\n", inode,
  1417. inode->i_atime.tv_sec, inode->i_atime.tv_nsec,
  1418. attr->ia_atime.tv_sec, attr->ia_atime.tv_nsec);
  1419. if (issued & CEPH_CAP_FILE_EXCL) {
  1420. ci->i_time_warp_seq++;
  1421. inode->i_atime = attr->ia_atime;
  1422. dirtied |= CEPH_CAP_FILE_EXCL;
  1423. } else if ((issued & CEPH_CAP_FILE_WR) &&
  1424. timespec_compare(&inode->i_atime,
  1425. &attr->ia_atime) < 0) {
  1426. inode->i_atime = attr->ia_atime;
  1427. dirtied |= CEPH_CAP_FILE_WR;
  1428. } else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
  1429. !timespec_equal(&inode->i_atime, &attr->ia_atime)) {
  1430. ceph_encode_timespec(&req->r_args.setattr.atime,
  1431. &attr->ia_atime);
  1432. mask |= CEPH_SETATTR_ATIME;
  1433. release |= CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_RD |
  1434. CEPH_CAP_FILE_WR;
  1435. }
  1436. }
  1437. if (ia_valid & ATTR_MTIME) {
  1438. dout("setattr %p mtime %ld.%ld -> %ld.%ld\n", inode,
  1439. inode->i_mtime.tv_sec, inode->i_mtime.tv_nsec,
  1440. attr->ia_mtime.tv_sec, attr->ia_mtime.tv_nsec);
  1441. if (issued & CEPH_CAP_FILE_EXCL) {
  1442. ci->i_time_warp_seq++;
  1443. inode->i_mtime = attr->ia_mtime;
  1444. dirtied |= CEPH_CAP_FILE_EXCL;
  1445. } else if ((issued & CEPH_CAP_FILE_WR) &&
  1446. timespec_compare(&inode->i_mtime,
  1447. &attr->ia_mtime) < 0) {
  1448. inode->i_mtime = attr->ia_mtime;
  1449. dirtied |= CEPH_CAP_FILE_WR;
  1450. } else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
  1451. !timespec_equal(&inode->i_mtime, &attr->ia_mtime)) {
  1452. ceph_encode_timespec(&req->r_args.setattr.mtime,
  1453. &attr->ia_mtime);
  1454. mask |= CEPH_SETATTR_MTIME;
  1455. release |= CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_RD |
  1456. CEPH_CAP_FILE_WR;
  1457. }
  1458. }
  1459. if (ia_valid & ATTR_SIZE) {
  1460. dout("setattr %p size %lld -> %lld\n", inode,
  1461. inode->i_size, attr->ia_size);
  1462. if (attr->ia_size > inode->i_sb->s_maxbytes) {
  1463. err = -EINVAL;
  1464. goto out;
  1465. }
  1466. if ((issued & CEPH_CAP_FILE_EXCL) &&
  1467. attr->ia_size > inode->i_size) {
  1468. inode->i_size = attr->ia_size;
  1469. inode->i_blocks =
  1470. (attr->ia_size + (1 << 9) - 1) >> 9;
  1471. inode->i_ctime = attr->ia_ctime;
  1472. ci->i_reported_size = attr->ia_size;
  1473. dirtied |= CEPH_CAP_FILE_EXCL;
  1474. } else if ((issued & CEPH_CAP_FILE_SHARED) == 0 ||
  1475. attr->ia_size != inode->i_size) {
  1476. req->r_args.setattr.size = cpu_to_le64(attr->ia_size);
  1477. req->r_args.setattr.old_size =
  1478. cpu_to_le64(inode->i_size);
  1479. mask |= CEPH_SETATTR_SIZE;
  1480. release |= CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_RD |
  1481. CEPH_CAP_FILE_WR;
  1482. }
  1483. }
  1484. /* these do nothing */
  1485. if (ia_valid & ATTR_CTIME) {
  1486. bool only = (ia_valid & (ATTR_SIZE|ATTR_MTIME|ATTR_ATIME|
  1487. ATTR_MODE|ATTR_UID|ATTR_GID)) == 0;
  1488. dout("setattr %p ctime %ld.%ld -> %ld.%ld (%s)\n", inode,
  1489. inode->i_ctime.tv_sec, inode->i_ctime.tv_nsec,
  1490. attr->ia_ctime.tv_sec, attr->ia_ctime.tv_nsec,
  1491. only ? "ctime only" : "ignored");
  1492. inode->i_ctime = attr->ia_ctime;
  1493. if (only) {
  1494. /*
  1495. * if kernel wants to dirty ctime but nothing else,
  1496. * we need to choose a cap to dirty under, or do
  1497. * a almost-no-op setattr
  1498. */
  1499. if (issued & CEPH_CAP_AUTH_EXCL)
  1500. dirtied |= CEPH_CAP_AUTH_EXCL;
  1501. else if (issued & CEPH_CAP_FILE_EXCL)
  1502. dirtied |= CEPH_CAP_FILE_EXCL;
  1503. else if (issued & CEPH_CAP_XATTR_EXCL)
  1504. dirtied |= CEPH_CAP_XATTR_EXCL;
  1505. else
  1506. mask |= CEPH_SETATTR_CTIME;
  1507. }
  1508. }
  1509. if (ia_valid & ATTR_FILE)
  1510. dout("setattr %p ATTR_FILE ... hrm!\n", inode);
  1511. if (dirtied) {
  1512. __ceph_mark_dirty_caps(ci, dirtied);
  1513. inode->i_ctime = CURRENT_TIME;
  1514. }
  1515. release &= issued;
  1516. spin_unlock(&inode->i_lock);
  1517. if (mask) {
  1518. req->r_inode = igrab(inode);
  1519. req->r_inode_drop = release;
  1520. req->r_args.setattr.mask = cpu_to_le32(mask);
  1521. req->r_num_caps = 1;
  1522. err = ceph_mdsc_do_request(mdsc, parent_inode, req);
  1523. }
  1524. dout("setattr %p result=%d (%s locally, %d remote)\n", inode, err,
  1525. ceph_cap_string(dirtied), mask);
  1526. ceph_mdsc_put_request(req);
  1527. __ceph_do_pending_vmtruncate(inode);
  1528. return err;
  1529. out:
  1530. spin_unlock(&inode->i_lock);
  1531. ceph_mdsc_put_request(req);
  1532. return err;
  1533. }
  1534. /*
  1535. * Verify that we have a lease on the given mask. If not,
  1536. * do a getattr against an mds.
  1537. */
  1538. int ceph_do_getattr(struct inode *inode, int mask)
  1539. {
  1540. struct ceph_client *client = ceph_sb_to_client(inode->i_sb);
  1541. struct ceph_mds_client *mdsc = &client->mdsc;
  1542. struct ceph_mds_request *req;
  1543. int err;
  1544. if (ceph_snap(inode) == CEPH_SNAPDIR) {
  1545. dout("do_getattr inode %p SNAPDIR\n", inode);
  1546. return 0;
  1547. }
  1548. dout("do_getattr inode %p mask %s\n", inode, ceph_cap_string(mask));
  1549. if (ceph_caps_issued_mask(ceph_inode(inode), mask, 1))
  1550. return 0;
  1551. req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
  1552. if (IS_ERR(req))
  1553. return PTR_ERR(req);
  1554. req->r_inode = igrab(inode);
  1555. req->r_num_caps = 1;
  1556. req->r_args.getattr.mask = cpu_to_le32(mask);
  1557. err = ceph_mdsc_do_request(mdsc, NULL, req);
  1558. ceph_mdsc_put_request(req);
  1559. dout("do_getattr result=%d\n", err);
  1560. return err;
  1561. }
  1562. /*
  1563. * Check inode permissions. We verify we have a valid value for
  1564. * the AUTH cap, then call the generic handler.
  1565. */
  1566. int ceph_permission(struct inode *inode, int mask)
  1567. {
  1568. int err = ceph_do_getattr(inode, CEPH_CAP_AUTH_SHARED);
  1569. if (!err)
  1570. err = generic_permission(inode, mask, NULL);
  1571. return err;
  1572. }
  1573. /*
  1574. * Get all attributes. Hopefully somedata we'll have a statlite()
  1575. * and can limit the fields we require to be accurate.
  1576. */
  1577. int ceph_getattr(struct vfsmount *mnt, struct dentry *dentry,
  1578. struct kstat *stat)
  1579. {
  1580. struct inode *inode = dentry->d_inode;
  1581. struct ceph_inode_info *ci = ceph_inode(inode);
  1582. int err;
  1583. err = ceph_do_getattr(inode, CEPH_STAT_CAP_INODE_ALL);
  1584. if (!err) {
  1585. generic_fillattr(inode, stat);
  1586. stat->ino = inode->i_ino;
  1587. if (ceph_snap(inode) != CEPH_NOSNAP)
  1588. stat->dev = ceph_snap(inode);
  1589. else
  1590. stat->dev = 0;
  1591. if (S_ISDIR(inode->i_mode)) {
  1592. stat->size = ci->i_rbytes;
  1593. stat->blocks = 0;
  1594. stat->blksize = 65536;
  1595. }
  1596. }
  1597. return err;
  1598. }