blob: 4248307fea909c6f1555758e536a3f733ad5f95d [file] [log] [blame]
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001#include <linux/ceph/ceph_debug.h>
Sage Weil2817b002009-10-06 11:31:08 -07002
3#include <linux/spinlock.h>
4#include <linux/fs_struct.h>
5#include <linux/namei.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09006#include <linux/slab.h>
Sage Weil2817b002009-10-06 11:31:08 -07007#include <linux/sched.h>
8
9#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070010#include "mds_client.h"
Sage Weil2817b002009-10-06 11:31:08 -070011
12/*
13 * Directory operations: readdir, lookup, create, link, unlink,
14 * rename, etc.
15 */
16
17/*
18 * Ceph MDS operations are specified in terms of a base ino and
19 * relative path. Thus, the client can specify an operation on a
20 * specific inode (e.g., a getattr due to fstat(2)), or as a path
21 * relative to, say, the root directory.
22 *
23 * Normally, we limit ourselves to strict inode ops (no path component)
24 * or dentry operations (a single path component relative to an ino). The
25 * exception to this is open_root_dentry(), which will open the mount
26 * point by name.
27 */
28
Sage Weil52dfb8a2010-08-03 10:25:30 -070029const struct dentry_operations ceph_dentry_ops;
Sage Weil2817b002009-10-06 11:31:08 -070030
31/*
32 * Initialize ceph dentry state.
33 */
34int ceph_init_dentry(struct dentry *dentry)
35{
36 struct ceph_dentry_info *di;
37
38 if (dentry->d_fsdata)
39 return 0;
40
Sage Weil36e21682010-08-24 16:23:48 -070041 di = kmem_cache_alloc(ceph_dentry_cachep, GFP_NOFS | __GFP_ZERO);
Sage Weil2817b002009-10-06 11:31:08 -070042 if (!di)
43 return -ENOMEM; /* oh well */
44
45 spin_lock(&dentry->d_lock);
Sage Weil8c6efb52010-04-23 11:36:54 -070046 if (dentry->d_fsdata) {
47 /* lost a race */
48 kmem_cache_free(ceph_dentry_cachep, di);
Sage Weil2817b002009-10-06 11:31:08 -070049 goto out_unlock;
Sage Weil8c6efb52010-04-23 11:36:54 -070050 }
Sage Weil48d0cbd2011-07-26 11:30:15 -070051
David Howells2b0143b2015-03-17 22:25:59 +000052 if (ceph_snap(d_inode(dentry->d_parent)) == CEPH_NOSNAP)
Sage Weil48d0cbd2011-07-26 11:30:15 -070053 d_set_d_op(dentry, &ceph_dentry_ops);
David Howells2b0143b2015-03-17 22:25:59 +000054 else if (ceph_snap(d_inode(dentry->d_parent)) == CEPH_SNAPDIR)
Sage Weil48d0cbd2011-07-26 11:30:15 -070055 d_set_d_op(dentry, &ceph_snapdir_dentry_ops);
56 else
57 d_set_d_op(dentry, &ceph_snap_dentry_ops);
58
Sage Weil2817b002009-10-06 11:31:08 -070059 di->dentry = dentry;
60 di->lease_session = NULL;
Sage Weil2817b002009-10-06 11:31:08 -070061 dentry->d_time = jiffies;
Sage Weil48d0cbd2011-07-26 11:30:15 -070062 /* avoid reordering d_fsdata setup so that the check above is safe */
63 smp_mb();
64 dentry->d_fsdata = di;
Sage Weil2817b002009-10-06 11:31:08 -070065 ceph_dentry_lru_add(dentry);
66out_unlock:
67 spin_unlock(&dentry->d_lock);
68 return 0;
69}
70
Sage Weil5f21c962011-07-26 11:30:29 -070071struct inode *ceph_get_dentry_parent_inode(struct dentry *dentry)
72{
73 struct inode *inode = NULL;
74
75 if (!dentry)
76 return NULL;
77
78 spin_lock(&dentry->d_lock);
Sage Weil8842b3b2012-06-07 13:43:35 -070079 if (!IS_ROOT(dentry)) {
David Howells2b0143b2015-03-17 22:25:59 +000080 inode = d_inode(dentry->d_parent);
Sage Weil5f21c962011-07-26 11:30:29 -070081 ihold(inode);
82 }
83 spin_unlock(&dentry->d_lock);
84 return inode;
85}
Sage Weil2817b002009-10-06 11:31:08 -070086
87
88/*
89 * for readdir, we encode the directory frag and offset within that
90 * frag into f_pos.
91 */
92static unsigned fpos_frag(loff_t p)
93{
94 return p >> 32;
95}
96static unsigned fpos_off(loff_t p)
97{
98 return p & 0xffffffff;
99}
100
Yan, Zheng4d5f5df2014-02-13 19:40:26 +0800101static int fpos_cmp(loff_t l, loff_t r)
102{
103 int v = ceph_frag_compare(fpos_frag(l), fpos_frag(r));
104 if (v)
105 return v;
106 return (int)(fpos_off(l) - fpos_off(r));
107}
108
Sage Weil2817b002009-10-06 11:31:08 -0700109/*
110 * When possible, we try to satisfy a readdir by peeking at the
111 * dcache. We make this work by carefully ordering dentries on
Al Viro946e51f2014-10-26 19:19:16 -0400112 * d_child when we initially get results back from the MDS, and
Sage Weil2817b002009-10-06 11:31:08 -0700113 * falling back to a "normal" sync readdir if any dentries in the dir
114 * are dropped.
115 *
Yan, Zheng2f276c52013-03-13 19:44:32 +0800116 * Complete dir indicates that we have all dentries in the dir. It is
Sage Weil2817b002009-10-06 11:31:08 -0700117 * defined IFF we hold CEPH_CAP_FILE_SHARED (which will be revoked by
118 * the MDS if/when the directory is modified).
119 */
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800120static int __dcache_readdir(struct file *file, struct dir_context *ctx,
121 u32 shared_gen)
Sage Weil2817b002009-10-06 11:31:08 -0700122{
Al Viro77acfa22013-05-17 16:52:26 -0400123 struct ceph_file_info *fi = file->private_data;
Al Virob5830432014-10-31 01:22:04 -0400124 struct dentry *parent = file->f_path.dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000125 struct inode *dir = d_inode(parent);
Sage Weil2817b002009-10-06 11:31:08 -0700126 struct list_head *p;
127 struct dentry *dentry, *last;
128 struct ceph_dentry_info *di;
129 int err = 0;
130
131 /* claim ref on last dentry we returned */
132 last = fi->dentry;
133 fi->dentry = NULL;
134
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800135 dout("__dcache_readdir %p v%u at %llu (last %p)\n",
136 dir, shared_gen, ctx->pos, last);
Sage Weil2817b002009-10-06 11:31:08 -0700137
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100138 spin_lock(&parent->d_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700139
140 /* start at beginning? */
Al Viro77acfa22013-05-17 16:52:26 -0400141 if (ctx->pos == 2 || last == NULL ||
Yan, Zheng6da52462014-04-09 09:35:19 +0800142 fpos_cmp(ctx->pos, ceph_dentry(last)->offset) < 0) {
Sage Weil2817b002009-10-06 11:31:08 -0700143 if (list_empty(&parent->d_subdirs))
144 goto out_unlock;
145 p = parent->d_subdirs.prev;
146 dout(" initial p %p/%p\n", p->prev, p->next);
147 } else {
Al Viro946e51f2014-10-26 19:19:16 -0400148 p = last->d_child.prev;
Sage Weil2817b002009-10-06 11:31:08 -0700149 }
150
151more:
Al Viro946e51f2014-10-26 19:19:16 -0400152 dentry = list_entry(p, struct dentry, d_child);
Sage Weil2817b002009-10-06 11:31:08 -0700153 di = ceph_dentry(dentry);
154 while (1) {
Sage Weil1cd39352010-05-03 22:08:02 -0700155 dout(" p %p/%p %s d_subdirs %p/%p\n", p->prev, p->next,
156 d_unhashed(dentry) ? "!hashed" : "hashed",
Sage Weil2817b002009-10-06 11:31:08 -0700157 parent->d_subdirs.prev, parent->d_subdirs.next);
158 if (p == &parent->d_subdirs) {
Sage Weil9cfa1092011-07-26 11:26:18 -0700159 fi->flags |= CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700160 goto out_unlock;
161 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100162 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800163 if (di->lease_shared_gen == shared_gen &&
David Howells2b0143b2015-03-17 22:25:59 +0000164 !d_unhashed(dentry) && d_really_is_positive(dentry) &&
165 ceph_snap(d_inode(dentry)) != CEPH_SNAPDIR &&
166 ceph_ino(d_inode(dentry)) != CEPH_INO_CEPH &&
Yan, Zheng4d5f5df2014-02-13 19:40:26 +0800167 fpos_cmp(ctx->pos, di->offset) <= 0)
Sage Weil2817b002009-10-06 11:31:08 -0700168 break;
Al Viroa4555892014-10-21 20:11:25 -0400169 dout(" skipping %p %pd at %llu (%llu)%s%s\n", dentry,
170 dentry, di->offset,
Al Viro77acfa22013-05-17 16:52:26 -0400171 ctx->pos, d_unhashed(dentry) ? " unhashed" : "",
David Howells2b0143b2015-03-17 22:25:59 +0000172 !d_inode(dentry) ? " null" : "");
Nick Pigginda502952011-01-07 17:49:33 +1100173 spin_unlock(&dentry->d_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700174 p = p->prev;
Al Viro946e51f2014-10-26 19:19:16 -0400175 dentry = list_entry(p, struct dentry, d_child);
Sage Weil2817b002009-10-06 11:31:08 -0700176 di = ceph_dentry(dentry);
177 }
178
Nick Pigginda502952011-01-07 17:49:33 +1100179 dget_dlock(dentry);
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100180 spin_unlock(&dentry->d_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100181 spin_unlock(&parent->d_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700182
Yan, Zheng0081bd82014-04-08 21:42:59 +0800183 /* make sure a dentry wasn't dropped while we didn't have parent lock */
Yan, Zheng70db4f32014-10-21 18:09:56 -0700184 if (!ceph_dir_is_complete_ordered(dir)) {
Yan, Zheng0081bd82014-04-08 21:42:59 +0800185 dout(" lost dir complete on %p; falling back to mds\n", dir);
186 dput(dentry);
187 err = -EAGAIN;
188 goto out;
189 }
190
Al Viroa4555892014-10-21 20:11:25 -0400191 dout(" %llu (%llu) dentry %p %pd %p\n", di->offset, ctx->pos,
David Howells2b0143b2015-03-17 22:25:59 +0000192 dentry, dentry, d_inode(dentry));
Al Viro77acfa22013-05-17 16:52:26 -0400193 if (!dir_emit(ctx, dentry->d_name.name,
194 dentry->d_name.len,
David Howells2b0143b2015-03-17 22:25:59 +0000195 ceph_translate_ino(dentry->d_sb, d_inode(dentry)->i_ino),
196 d_inode(dentry)->i_mode >> 12)) {
Al Viro77acfa22013-05-17 16:52:26 -0400197 if (last) {
Sage Weil2817b002009-10-06 11:31:08 -0700198 /* remember our position */
199 fi->dentry = last;
Yan, Zhengf0494202014-02-27 16:26:24 +0800200 fi->next_offset = fpos_off(di->offset);
Sage Weil2817b002009-10-06 11:31:08 -0700201 }
Al Viro77acfa22013-05-17 16:52:26 -0400202 dput(dentry);
203 return 0;
Sage Weil2817b002009-10-06 11:31:08 -0700204 }
Al Viro77acfa22013-05-17 16:52:26 -0400205
Yan, Zheng0081bd82014-04-08 21:42:59 +0800206 ctx->pos = di->offset + 1;
207
Al Viro77acfa22013-05-17 16:52:26 -0400208 if (last)
209 dput(last);
Sage Weilf5b06622010-04-12 14:24:28 -0700210 last = dentry;
211
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100212 spin_lock(&parent->d_lock);
Sage Weilefa4c122010-10-18 14:04:31 -0700213 p = p->prev; /* advance to next dentry */
214 goto more;
Sage Weil2817b002009-10-06 11:31:08 -0700215
216out_unlock:
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100217 spin_unlock(&parent->d_lock);
Sage Weilefa4c122010-10-18 14:04:31 -0700218out:
219 if (last)
Sage Weil2817b002009-10-06 11:31:08 -0700220 dput(last);
Sage Weil2817b002009-10-06 11:31:08 -0700221 return err;
222}
223
224/*
225 * make note of the last dentry we read, so we can
226 * continue at the same lexicographical point,
227 * regardless of what dir changes take place on the
228 * server.
229 */
230static int note_last_dentry(struct ceph_file_info *fi, const char *name,
231 int len)
232{
233 kfree(fi->last_name);
234 fi->last_name = kmalloc(len+1, GFP_NOFS);
235 if (!fi->last_name)
236 return -ENOMEM;
237 memcpy(fi->last_name, name, len);
238 fi->last_name[len] = 0;
239 dout("note_last_dentry '%s'\n", fi->last_name);
240 return 0;
241}
242
Al Viro77acfa22013-05-17 16:52:26 -0400243static int ceph_readdir(struct file *file, struct dir_context *ctx)
Sage Weil2817b002009-10-06 11:31:08 -0700244{
Al Viro77acfa22013-05-17 16:52:26 -0400245 struct ceph_file_info *fi = file->private_data;
246 struct inode *inode = file_inode(file);
Sage Weil2817b002009-10-06 11:31:08 -0700247 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700248 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
249 struct ceph_mds_client *mdsc = fsc->mdsc;
Al Viro77acfa22013-05-17 16:52:26 -0400250 unsigned frag = fpos_frag(ctx->pos);
251 int off = fpos_off(ctx->pos);
Sage Weil2817b002009-10-06 11:31:08 -0700252 int err;
253 u32 ftype;
254 struct ceph_mds_reply_info_parsed *rinfo;
Sage Weil2817b002009-10-06 11:31:08 -0700255
Al Viro77acfa22013-05-17 16:52:26 -0400256 dout("readdir %p file %p frag %u off %u\n", inode, file, frag, off);
Sage Weil9cfa1092011-07-26 11:26:18 -0700257 if (fi->flags & CEPH_F_ATEND)
Sage Weil2817b002009-10-06 11:31:08 -0700258 return 0;
259
260 /* always start with . and .. */
Al Viro77acfa22013-05-17 16:52:26 -0400261 if (ctx->pos == 0) {
Sage Weil2817b002009-10-06 11:31:08 -0700262 dout("readdir off 0 -> '.'\n");
Al Viro77acfa22013-05-17 16:52:26 -0400263 if (!dir_emit(ctx, ".", 1,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800264 ceph_translate_ino(inode->i_sb, inode->i_ino),
Al Viro77acfa22013-05-17 16:52:26 -0400265 inode->i_mode >> 12))
Sage Weil2817b002009-10-06 11:31:08 -0700266 return 0;
Al Viro77acfa22013-05-17 16:52:26 -0400267 ctx->pos = 1;
Sage Weil2817b002009-10-06 11:31:08 -0700268 off = 1;
269 }
Al Viro77acfa22013-05-17 16:52:26 -0400270 if (ctx->pos == 1) {
Al Virob5830432014-10-31 01:22:04 -0400271 ino_t ino = parent_ino(file->f_path.dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700272 dout("readdir off 1 -> '..'\n");
Al Viro77acfa22013-05-17 16:52:26 -0400273 if (!dir_emit(ctx, "..", 2,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800274 ceph_translate_ino(inode->i_sb, ino),
Al Viro77acfa22013-05-17 16:52:26 -0400275 inode->i_mode >> 12))
Sage Weil2817b002009-10-06 11:31:08 -0700276 return 0;
Al Viro77acfa22013-05-17 16:52:26 -0400277 ctx->pos = 2;
Sage Weil2817b002009-10-06 11:31:08 -0700278 off = 2;
279 }
280
281 /* can we use the dcache? */
Sage Weilbe655592011-11-30 09:47:09 -0800282 spin_lock(&ci->i_ceph_lock);
Al Viro77acfa22013-05-17 16:52:26 -0400283 if ((ctx->pos == 2 || fi->dentry) &&
Yan, Zhenge2c3de02015-03-04 16:05:04 +0800284 ceph_test_mount_opt(fsc, DCACHE) &&
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700285 !ceph_test_mount_opt(fsc, NOASYNCREADDIR) &&
Sage Weila0dff782010-07-22 13:47:21 -0700286 ceph_snap(inode) != CEPH_SNAPDIR &&
Yan, Zheng70db4f32014-10-21 18:09:56 -0700287 __ceph_dir_is_complete_ordered(ci) &&
Sage Weil2817b002009-10-06 11:31:08 -0700288 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1)) {
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800289 u32 shared_gen = ci->i_shared_gen;
Sage Weilbe655592011-11-30 09:47:09 -0800290 spin_unlock(&ci->i_ceph_lock);
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800291 err = __dcache_readdir(file, ctx, shared_gen);
Sage Weilefa4c122010-10-18 14:04:31 -0700292 if (err != -EAGAIN)
Sage Weil2817b002009-10-06 11:31:08 -0700293 return err;
Yan, Zheng0081bd82014-04-08 21:42:59 +0800294 frag = fpos_frag(ctx->pos);
295 off = fpos_off(ctx->pos);
Sage Weilefa4c122010-10-18 14:04:31 -0700296 } else {
Sage Weilbe655592011-11-30 09:47:09 -0800297 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700298 }
Sage Weil2817b002009-10-06 11:31:08 -0700299 if (fi->dentry) {
300 err = note_last_dentry(fi, fi->dentry->d_name.name,
301 fi->dentry->d_name.len);
302 if (err)
303 return err;
304 dput(fi->dentry);
305 fi->dentry = NULL;
306 }
307
308 /* proceed with a normal readdir */
309
Yan, Zheng70db4f32014-10-21 18:09:56 -0700310 if (ctx->pos == 2) {
311 /* note dir version at start of readdir so we can tell
312 * if any dentries get dropped */
313 fi->dir_release_count = atomic_read(&ci->i_release_count);
314 fi->dir_ordered_count = ci->i_ordered_count;
315 }
316
Sage Weil2817b002009-10-06 11:31:08 -0700317more:
318 /* do we have the correct frag content buffered? */
319 if (fi->frag != frag || fi->last_readdir == NULL) {
320 struct ceph_mds_request *req;
321 int op = ceph_snap(inode) == CEPH_SNAPDIR ?
322 CEPH_MDS_OP_LSSNAP : CEPH_MDS_OP_READDIR;
323
324 /* discard old result, if any */
Sage Weil393f6622010-03-10 12:03:32 -0800325 if (fi->last_readdir) {
Sage Weil2817b002009-10-06 11:31:08 -0700326 ceph_mdsc_put_request(fi->last_readdir);
Sage Weil393f6622010-03-10 12:03:32 -0800327 fi->last_readdir = NULL;
328 }
Sage Weil2817b002009-10-06 11:31:08 -0700329
Sage Weil2817b002009-10-06 11:31:08 -0700330 dout("readdir fetching %llx.%llx frag %x offset '%s'\n",
331 ceph_vinop(inode), frag, fi->last_name);
332 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
333 if (IS_ERR(req))
334 return PTR_ERR(req);
Yan, Zheng54008392014-03-29 13:41:15 +0800335 err = ceph_alloc_readdir_reply_buffer(req, inode);
336 if (err) {
337 ceph_mdsc_put_request(req);
338 return err;
339 }
Sage Weil2817b002009-10-06 11:31:08 -0700340 /* hints to request -> mds selection code */
341 req->r_direct_mode = USE_AUTH_MDS;
342 req->r_direct_hash = ceph_frag_value(frag);
343 req->r_direct_is_hash = true;
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400344 if (fi->last_name) {
345 req->r_path2 = kstrdup(fi->last_name, GFP_NOFS);
346 if (!req->r_path2) {
347 ceph_mdsc_put_request(req);
348 return -ENOMEM;
349 }
350 }
Sage Weil2817b002009-10-06 11:31:08 -0700351 req->r_readdir_offset = fi->next_offset;
352 req->r_args.readdir.frag = cpu_to_le32(frag);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400353
354 req->r_inode = inode;
355 ihold(inode);
356 req->r_dentry = dget(file->f_path.dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700357 err = ceph_mdsc_do_request(mdsc, NULL, req);
358 if (err < 0) {
359 ceph_mdsc_put_request(req);
360 return err;
361 }
362 dout("readdir got and parsed readdir result=%d"
363 " on frag %x, end=%d, complete=%d\n", err, frag,
364 (int)req->r_reply_info.dir_end,
365 (int)req->r_reply_info.dir_complete);
366
367 if (!req->r_did_prepopulate) {
368 dout("readdir !did_prepopulate");
Yan, Zheng2f276c52013-03-13 19:44:32 +0800369 /* preclude from marking dir complete */
370 fi->dir_release_count--;
Sage Weil2817b002009-10-06 11:31:08 -0700371 }
372
373 /* note next offset and last dentry name */
Yan, Zheng81c6aea2013-09-18 09:44:13 +0800374 rinfo = &req->r_reply_info;
375 if (le32_to_cpu(rinfo->dir_dir->frag) != frag) {
376 frag = le32_to_cpu(rinfo->dir_dir->frag);
377 if (ceph_frag_is_leftmost(frag))
378 fi->next_offset = 2;
379 else
380 fi->next_offset = 0;
381 off = fi->next_offset;
382 }
Yan, Zhengf0494202014-02-27 16:26:24 +0800383 fi->frag = frag;
Sage Weil2817b002009-10-06 11:31:08 -0700384 fi->offset = fi->next_offset;
385 fi->last_readdir = req;
386
387 if (req->r_reply_info.dir_end) {
388 kfree(fi->last_name);
389 fi->last_name = NULL;
Sage Weil7b88dad2010-11-11 16:48:59 -0800390 if (ceph_frag_is_rightmost(frag))
391 fi->next_offset = 2;
392 else
393 fi->next_offset = 0;
Sage Weil2817b002009-10-06 11:31:08 -0700394 } else {
Sage Weil2817b002009-10-06 11:31:08 -0700395 err = note_last_dentry(fi,
396 rinfo->dir_dname[rinfo->dir_nr-1],
397 rinfo->dir_dname_len[rinfo->dir_nr-1]);
398 if (err)
399 return err;
400 fi->next_offset += rinfo->dir_nr;
401 }
402 }
403
404 rinfo = &fi->last_readdir->r_reply_info;
405 dout("readdir frag %x num %d off %d chunkoff %d\n", frag,
406 rinfo->dir_nr, off, fi->offset);
Al Viro77acfa22013-05-17 16:52:26 -0400407
408 ctx->pos = ceph_make_fpos(frag, off);
Sage Weilda398222011-05-12 15:28:11 -0700409 while (off >= fi->offset && off - fi->offset < rinfo->dir_nr) {
Sage Weil2817b002009-10-06 11:31:08 -0700410 struct ceph_mds_reply_inode *in =
411 rinfo->dir_in[off - fi->offset].in;
Sage Weil3105c192010-11-18 09:15:07 -0800412 struct ceph_vino vino;
413 ino_t ino;
414
Sage Weil2817b002009-10-06 11:31:08 -0700415 dout("readdir off %d (%d/%d) -> %lld '%.*s' %p\n",
Al Viro77acfa22013-05-17 16:52:26 -0400416 off, off - fi->offset, rinfo->dir_nr, ctx->pos,
Sage Weil2817b002009-10-06 11:31:08 -0700417 rinfo->dir_dname_len[off - fi->offset],
418 rinfo->dir_dname[off - fi->offset], in);
419 BUG_ON(!in);
420 ftype = le32_to_cpu(in->mode) >> 12;
Sage Weil3105c192010-11-18 09:15:07 -0800421 vino.ino = le64_to_cpu(in->ino);
422 vino.snap = le64_to_cpu(in->snapid);
423 ino = ceph_vino_to_ino(vino);
Al Viro77acfa22013-05-17 16:52:26 -0400424 if (!dir_emit(ctx,
Sage Weil2817b002009-10-06 11:31:08 -0700425 rinfo->dir_dname[off - fi->offset],
426 rinfo->dir_dname_len[off - fi->offset],
Al Viro77acfa22013-05-17 16:52:26 -0400427 ceph_translate_ino(inode->i_sb, ino), ftype)) {
Sage Weil2817b002009-10-06 11:31:08 -0700428 dout("filldir stopping us...\n");
429 return 0;
430 }
431 off++;
Al Viro77acfa22013-05-17 16:52:26 -0400432 ctx->pos++;
Sage Weil2817b002009-10-06 11:31:08 -0700433 }
434
435 if (fi->last_name) {
436 ceph_mdsc_put_request(fi->last_readdir);
437 fi->last_readdir = NULL;
438 goto more;
439 }
440
441 /* more frags? */
442 if (!ceph_frag_is_rightmost(frag)) {
443 frag = ceph_frag_next(frag);
444 off = 0;
Al Viro77acfa22013-05-17 16:52:26 -0400445 ctx->pos = ceph_make_fpos(frag, off);
Sage Weil2817b002009-10-06 11:31:08 -0700446 dout("readdir next frag is %x\n", frag);
447 goto more;
448 }
Sage Weil9cfa1092011-07-26 11:26:18 -0700449 fi->flags |= CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700450
451 /*
452 * if dir_release_count still matches the dir, no dentries
453 * were released during the whole readdir, and we should have
454 * the complete dir contents in our cache.
455 */
Sage Weilbe655592011-11-30 09:47:09 -0800456 spin_lock(&ci->i_ceph_lock);
Yan, Zheng2f276c52013-03-13 19:44:32 +0800457 if (atomic_read(&ci->i_release_count) == fi->dir_release_count) {
Yan, Zheng70db4f32014-10-21 18:09:56 -0700458 if (ci->i_ordered_count == fi->dir_ordered_count)
459 dout(" marking %p complete and ordered\n", inode);
460 else
461 dout(" marking %p complete\n", inode);
462 __ceph_dir_set_complete(ci, fi->dir_release_count,
463 fi->dir_ordered_count);
Sage Weil2817b002009-10-06 11:31:08 -0700464 }
Sage Weilbe655592011-11-30 09:47:09 -0800465 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700466
Al Viro77acfa22013-05-17 16:52:26 -0400467 dout("readdir %p file %p done.\n", inode, file);
Sage Weil2817b002009-10-06 11:31:08 -0700468 return 0;
469}
470
Yan, Zhengdcd3cc02014-02-28 16:36:09 +0800471static void reset_readdir(struct ceph_file_info *fi, unsigned frag)
Sage Weil2817b002009-10-06 11:31:08 -0700472{
473 if (fi->last_readdir) {
474 ceph_mdsc_put_request(fi->last_readdir);
475 fi->last_readdir = NULL;
476 }
477 kfree(fi->last_name);
Sage Weila1629c32010-11-11 15:24:06 -0800478 fi->last_name = NULL;
Yan, Zhengdcd3cc02014-02-28 16:36:09 +0800479 if (ceph_frag_is_leftmost(frag))
480 fi->next_offset = 2; /* compensate for . and .. */
481 else
482 fi->next_offset = 0;
Sage Weil2817b002009-10-06 11:31:08 -0700483 if (fi->dentry) {
484 dput(fi->dentry);
485 fi->dentry = NULL;
486 }
Sage Weil9cfa1092011-07-26 11:26:18 -0700487 fi->flags &= ~CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700488}
489
Andrew Morton965c8e52012-12-17 15:59:39 -0800490static loff_t ceph_dir_llseek(struct file *file, loff_t offset, int whence)
Sage Weil2817b002009-10-06 11:31:08 -0700491{
492 struct ceph_file_info *fi = file->private_data;
493 struct inode *inode = file->f_mapping->host;
Yan, Zhengf0494202014-02-27 16:26:24 +0800494 loff_t old_offset = ceph_make_fpos(fi->frag, fi->next_offset);
Sage Weil2817b002009-10-06 11:31:08 -0700495 loff_t retval;
496
497 mutex_lock(&inode->i_mutex);
Josef Bacik06222e42011-07-18 13:21:38 -0400498 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800499 switch (whence) {
Sage Weil2817b002009-10-06 11:31:08 -0700500 case SEEK_END:
501 offset += inode->i_size + 2; /* FIXME */
502 break;
503 case SEEK_CUR:
504 offset += file->f_pos;
Josef Bacik06222e42011-07-18 13:21:38 -0400505 case SEEK_SET:
506 break;
507 default:
508 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700509 }
Josef Bacik06222e42011-07-18 13:21:38 -0400510
Yan, Zhengf0494202014-02-27 16:26:24 +0800511 if (offset >= 0) {
Sage Weil2817b002009-10-06 11:31:08 -0700512 if (offset != file->f_pos) {
513 file->f_pos = offset;
514 file->f_version = 0;
Sage Weil9cfa1092011-07-26 11:26:18 -0700515 fi->flags &= ~CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700516 }
517 retval = offset;
518
519 /*
520 * discard buffered readdir content on seekdir(0), or
521 * seek to new frag, or seek prior to current chunk.
522 */
523 if (offset == 0 ||
Yan, Zhengf0494202014-02-27 16:26:24 +0800524 fpos_frag(offset) != fi->frag ||
Sage Weil2817b002009-10-06 11:31:08 -0700525 fpos_off(offset) < fi->offset) {
526 dout("dir_llseek dropping %p content\n", file);
Yan, Zhengdcd3cc02014-02-28 16:36:09 +0800527 reset_readdir(fi, fpos_frag(offset));
Sage Weil2817b002009-10-06 11:31:08 -0700528 }
529
530 /* bump dir_release_count if we did a forward seek */
Yan, Zhengf0494202014-02-27 16:26:24 +0800531 if (fpos_cmp(offset, old_offset) > 0)
Sage Weil2817b002009-10-06 11:31:08 -0700532 fi->dir_release_count--;
533 }
Josef Bacik06222e42011-07-18 13:21:38 -0400534out:
Sage Weil2817b002009-10-06 11:31:08 -0700535 mutex_unlock(&inode->i_mutex);
536 return retval;
537}
538
539/*
Sage Weil468640e2011-07-26 11:28:11 -0700540 * Handle lookups for the hidden .snap directory.
Sage Weil2817b002009-10-06 11:31:08 -0700541 */
Sage Weil468640e2011-07-26 11:28:11 -0700542int ceph_handle_snapdir(struct ceph_mds_request *req,
543 struct dentry *dentry, int err)
Sage Weil2817b002009-10-06 11:31:08 -0700544{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700545 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
David Howells2b0143b2015-03-17 22:25:59 +0000546 struct inode *parent = d_inode(dentry->d_parent); /* we hold i_mutex */
Sage Weil2817b002009-10-06 11:31:08 -0700547
548 /* .snap dir? */
549 if (err == -ENOENT &&
Sage Weil455cec02011-03-03 13:44:35 -0800550 ceph_snap(parent) == CEPH_NOSNAP &&
Sage Weil6b805182009-10-27 11:50:50 -0700551 strcmp(dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700552 fsc->mount_options->snapdir_name) == 0) {
Sage Weil2817b002009-10-06 11:31:08 -0700553 struct inode *inode = ceph_get_snapdir(parent);
Al Viroa4555892014-10-21 20:11:25 -0400554 dout("ENOENT on snapdir %p '%pd', linking to snapdir %p\n",
555 dentry, dentry, inode);
Sage Weil9358c6d2010-03-30 13:54:41 -0700556 BUG_ON(!d_unhashed(dentry));
Sage Weil2817b002009-10-06 11:31:08 -0700557 d_add(dentry, inode);
558 err = 0;
559 }
Sage Weil468640e2011-07-26 11:28:11 -0700560 return err;
561}
Sage Weil2817b002009-10-06 11:31:08 -0700562
Sage Weil468640e2011-07-26 11:28:11 -0700563/*
564 * Figure out final result of a lookup/open request.
565 *
566 * Mainly, make sure we return the final req->r_dentry (if it already
567 * existed) in place of the original VFS-provided dentry when they
568 * differ.
569 *
570 * Gracefully handle the case where the MDS replies with -ENOENT and
571 * no trace (which it may do, at its discretion, e.g., if it doesn't
572 * care to issue a lease on the negative dentry).
573 */
574struct dentry *ceph_finish_lookup(struct ceph_mds_request *req,
575 struct dentry *dentry, int err)
576{
Sage Weil2817b002009-10-06 11:31:08 -0700577 if (err == -ENOENT) {
578 /* no trace? */
579 err = 0;
580 if (!req->r_reply_info.head->is_dentry) {
581 dout("ENOENT and no trace, dentry %p inode %p\n",
David Howells2b0143b2015-03-17 22:25:59 +0000582 dentry, d_inode(dentry));
583 if (d_really_is_positive(dentry)) {
Sage Weil2817b002009-10-06 11:31:08 -0700584 d_drop(dentry);
585 err = -ENOENT;
586 } else {
587 d_add(dentry, NULL);
588 }
589 }
590 }
591 if (err)
592 dentry = ERR_PTR(err);
593 else if (dentry != req->r_dentry)
594 dentry = dget(req->r_dentry); /* we got spliced */
595 else
596 dentry = NULL;
597 return dentry;
598}
599
Sage Weil1d1de9162009-12-02 11:54:25 -0800600static int is_root_ceph_dentry(struct inode *inode, struct dentry *dentry)
601{
602 return ceph_ino(inode) == CEPH_INO_ROOT &&
603 strncmp(dentry->d_name.name, ".ceph", 5) == 0;
604}
605
Sage Weil2817b002009-10-06 11:31:08 -0700606/*
607 * Look up a single dir entry. If there is a lookup intent, inform
608 * the MDS so that it gets our 'caps wanted' value in a single op.
609 */
610static struct dentry *ceph_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400611 unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -0700612{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700613 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
614 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700615 struct ceph_mds_request *req;
616 int op;
617 int err;
618
Al Viroa4555892014-10-21 20:11:25 -0400619 dout("lookup %p dentry %p '%pd'\n",
620 dir, dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700621
622 if (dentry->d_name.len > NAME_MAX)
623 return ERR_PTR(-ENAMETOOLONG);
624
625 err = ceph_init_dentry(dentry);
626 if (err < 0)
627 return ERR_PTR(err);
628
Sage Weil2817b002009-10-06 11:31:08 -0700629 /* can we conclude ENOENT locally? */
David Howells2b0143b2015-03-17 22:25:59 +0000630 if (d_really_is_negative(dentry)) {
Sage Weil2817b002009-10-06 11:31:08 -0700631 struct ceph_inode_info *ci = ceph_inode(dir);
632 struct ceph_dentry_info *di = ceph_dentry(dentry);
633
Sage Weilbe655592011-11-30 09:47:09 -0800634 spin_lock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700635 dout(" dir %p flags are %d\n", dir, ci->i_ceph_flags);
636 if (strncmp(dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700637 fsc->mount_options->snapdir_name,
Sage Weil2817b002009-10-06 11:31:08 -0700638 dentry->d_name.len) &&
Sage Weil1d1de9162009-12-02 11:54:25 -0800639 !is_root_ceph_dentry(dir, dentry) &&
Yan, Zhenge2c3de02015-03-04 16:05:04 +0800640 ceph_test_mount_opt(fsc, DCACHE) &&
Yan, Zheng2f276c52013-03-13 19:44:32 +0800641 __ceph_dir_is_complete(ci) &&
Sage Weil2817b002009-10-06 11:31:08 -0700642 (__ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1))) {
Sage Weilbe655592011-11-30 09:47:09 -0800643 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700644 dout(" dir %p complete, -ENOENT\n", dir);
645 d_add(dentry, NULL);
646 di->lease_shared_gen = ci->i_shared_gen;
647 return NULL;
648 }
Sage Weilbe655592011-11-30 09:47:09 -0800649 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700650 }
651
652 op = ceph_snap(dir) == CEPH_SNAPDIR ?
653 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
654 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
655 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200656 return ERR_CAST(req);
Sage Weil2817b002009-10-06 11:31:08 -0700657 req->r_dentry = dget(dentry);
658 req->r_num_caps = 2;
659 /* we only need inode linkage */
660 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
661 req->r_locked_dir = dir;
662 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil468640e2011-07-26 11:28:11 -0700663 err = ceph_handle_snapdir(req, dentry, err);
Sage Weil2817b002009-10-06 11:31:08 -0700664 dentry = ceph_finish_lookup(req, dentry, err);
665 ceph_mdsc_put_request(req); /* will dput(dentry) */
666 dout("lookup result=%p\n", dentry);
667 return dentry;
668}
669
670/*
671 * If we do a create but get no trace back from the MDS, follow up with
672 * a lookup (the VFS expects us to link up the provided dentry).
673 */
674int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry)
675{
Al Viro00cd8dd2012-06-10 17:13:09 -0400676 struct dentry *result = ceph_lookup(dir, dentry, 0);
Sage Weil2817b002009-10-06 11:31:08 -0700677
678 if (result && !IS_ERR(result)) {
679 /*
680 * We created the item, then did a lookup, and found
681 * it was already linked to another inode we already
Yan, Zheng4d41cef2015-02-04 15:10:48 +0800682 * had in our cache (and thus got spliced). To not
683 * confuse VFS (especially when inode is a directory),
684 * we don't link our dentry to that inode, return an
685 * error instead.
686 *
687 * This event should be rare and it happens only when
688 * we talk to old MDS. Recent MDS does not send traceless
689 * reply for request that creates new inode.
Sage Weil2817b002009-10-06 11:31:08 -0700690 */
Yan, Zheng5cba3722015-02-02 11:27:56 +0800691 d_drop(result);
Yan, Zheng4d41cef2015-02-04 15:10:48 +0800692 return -ESTALE;
Sage Weil2817b002009-10-06 11:31:08 -0700693 }
694 return PTR_ERR(result);
695}
696
697static int ceph_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -0400698 umode_t mode, dev_t rdev)
Sage Weil2817b002009-10-06 11:31:08 -0700699{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700700 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
701 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700702 struct ceph_mds_request *req;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800703 struct ceph_acls_info acls = {};
Sage Weil2817b002009-10-06 11:31:08 -0700704 int err;
705
706 if (ceph_snap(dir) != CEPH_NOSNAP)
707 return -EROFS;
708
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800709 err = ceph_pre_init_acls(dir, &mode, &acls);
710 if (err < 0)
711 return err;
712
Al Viro1a67aaf2011-07-26 01:52:52 -0400713 dout("mknod in dir %p dentry %p mode 0%ho rdev %d\n",
Sage Weil2817b002009-10-06 11:31:08 -0700714 dir, dentry, mode, rdev);
715 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_MKNOD, USE_AUTH_MDS);
716 if (IS_ERR(req)) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800717 err = PTR_ERR(req);
718 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700719 }
720 req->r_dentry = dget(dentry);
721 req->r_num_caps = 2;
722 req->r_locked_dir = dir;
723 req->r_args.mknod.mode = cpu_to_le32(mode);
724 req->r_args.mknod.rdev = cpu_to_le32(rdev);
725 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
726 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800727 if (acls.pagelist) {
728 req->r_pagelist = acls.pagelist;
729 acls.pagelist = NULL;
730 }
Sage Weil2817b002009-10-06 11:31:08 -0700731 err = ceph_mdsc_do_request(mdsc, dir, req);
732 if (!err && !req->r_reply_info.head->is_dentry)
733 err = ceph_handle_notrace_create(dir, dentry);
734 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800735out:
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800736 if (!err)
David Howells2b0143b2015-03-17 22:25:59 +0000737 ceph_init_inode_acls(d_inode(dentry), &acls);
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800738 else
Sage Weil2817b002009-10-06 11:31:08 -0700739 d_drop(dentry);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800740 ceph_release_acls_info(&acls);
Sage Weil2817b002009-10-06 11:31:08 -0700741 return err;
742}
743
Al Viro4acdaf22011-07-26 01:42:34 -0400744static int ceph_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400745 bool excl)
Sage Weil2817b002009-10-06 11:31:08 -0700746{
Miklos Szeredi2d83bde2012-06-05 15:10:25 +0200747 return ceph_mknod(dir, dentry, mode, 0);
Sage Weil2817b002009-10-06 11:31:08 -0700748}
749
750static int ceph_symlink(struct inode *dir, struct dentry *dentry,
751 const char *dest)
752{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700753 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
754 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700755 struct ceph_mds_request *req;
756 int err;
757
758 if (ceph_snap(dir) != CEPH_NOSNAP)
759 return -EROFS;
760
761 dout("symlink in dir %p dentry %p to '%s'\n", dir, dentry, dest);
762 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SYMLINK, USE_AUTH_MDS);
763 if (IS_ERR(req)) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800764 err = PTR_ERR(req);
765 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700766 }
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400767 req->r_path2 = kstrdup(dest, GFP_NOFS);
768 if (!req->r_path2) {
769 err = -ENOMEM;
770 ceph_mdsc_put_request(req);
771 goto out;
772 }
773 req->r_locked_dir = dir;
Sage Weil2817b002009-10-06 11:31:08 -0700774 req->r_dentry = dget(dentry);
775 req->r_num_caps = 2;
Sage Weil2817b002009-10-06 11:31:08 -0700776 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
777 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
778 err = ceph_mdsc_do_request(mdsc, dir, req);
779 if (!err && !req->r_reply_info.head->is_dentry)
780 err = ceph_handle_notrace_create(dir, dentry);
781 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800782out:
783 if (err)
Sage Weil2817b002009-10-06 11:31:08 -0700784 d_drop(dentry);
785 return err;
786}
787
Al Viro18bb1db2011-07-26 01:41:39 -0400788static int ceph_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Sage Weil2817b002009-10-06 11:31:08 -0700789{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700790 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
791 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700792 struct ceph_mds_request *req;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800793 struct ceph_acls_info acls = {};
Sage Weil2817b002009-10-06 11:31:08 -0700794 int err = -EROFS;
795 int op;
796
797 if (ceph_snap(dir) == CEPH_SNAPDIR) {
798 /* mkdir .snap/foo is a MKSNAP */
799 op = CEPH_MDS_OP_MKSNAP;
Al Viroa4555892014-10-21 20:11:25 -0400800 dout("mksnap dir %p snap '%pd' dn %p\n", dir,
801 dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700802 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
Al Viro18bb1db2011-07-26 01:41:39 -0400803 dout("mkdir dir %p dn %p mode 0%ho\n", dir, dentry, mode);
Sage Weil2817b002009-10-06 11:31:08 -0700804 op = CEPH_MDS_OP_MKDIR;
805 } else {
806 goto out;
807 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800808
809 mode |= S_IFDIR;
810 err = ceph_pre_init_acls(dir, &mode, &acls);
811 if (err < 0)
812 goto out;
813
Sage Weil2817b002009-10-06 11:31:08 -0700814 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
815 if (IS_ERR(req)) {
816 err = PTR_ERR(req);
817 goto out;
818 }
819
820 req->r_dentry = dget(dentry);
821 req->r_num_caps = 2;
822 req->r_locked_dir = dir;
823 req->r_args.mkdir.mode = cpu_to_le32(mode);
824 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
825 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800826 if (acls.pagelist) {
827 req->r_pagelist = acls.pagelist;
828 acls.pagelist = NULL;
829 }
Sage Weil2817b002009-10-06 11:31:08 -0700830 err = ceph_mdsc_do_request(mdsc, dir, req);
Yan, Zheng275dd192014-12-10 16:17:31 +0800831 if (!err &&
832 !req->r_reply_info.head->is_target &&
833 !req->r_reply_info.head->is_dentry)
Sage Weil2817b002009-10-06 11:31:08 -0700834 err = ceph_handle_notrace_create(dir, dentry);
835 ceph_mdsc_put_request(req);
836out:
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800837 if (!err)
David Howells2b0143b2015-03-17 22:25:59 +0000838 ceph_init_inode_acls(d_inode(dentry), &acls);
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800839 else
Sage Weil2817b002009-10-06 11:31:08 -0700840 d_drop(dentry);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800841 ceph_release_acls_info(&acls);
Sage Weil2817b002009-10-06 11:31:08 -0700842 return err;
843}
844
845static int ceph_link(struct dentry *old_dentry, struct inode *dir,
846 struct dentry *dentry)
847{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700848 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
849 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700850 struct ceph_mds_request *req;
851 int err;
852
853 if (ceph_snap(dir) != CEPH_NOSNAP)
854 return -EROFS;
855
856 dout("link in dir %p old_dentry %p dentry %p\n", dir,
857 old_dentry, dentry);
858 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_LINK, USE_AUTH_MDS);
859 if (IS_ERR(req)) {
860 d_drop(dentry);
861 return PTR_ERR(req);
862 }
863 req->r_dentry = dget(dentry);
864 req->r_num_caps = 2;
Sage Weil4b58c9b192013-02-05 13:41:23 -0800865 req->r_old_dentry = dget(old_dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700866 req->r_locked_dir = dir;
867 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
868 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengad88f232013-07-21 20:25:25 +0800869 /* release LINK_SHARED on source inode (mds will lock it) */
870 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED;
Sage Weil2817b002009-10-06 11:31:08 -0700871 err = ceph_mdsc_do_request(mdsc, dir, req);
Sage Weil70b666c2011-05-27 09:24:26 -0700872 if (err) {
Sage Weil2817b002009-10-06 11:31:08 -0700873 d_drop(dentry);
Sage Weil70b666c2011-05-27 09:24:26 -0700874 } else if (!req->r_reply_info.head->is_dentry) {
David Howells2b0143b2015-03-17 22:25:59 +0000875 ihold(d_inode(old_dentry));
876 d_instantiate(dentry, d_inode(old_dentry));
Sage Weil70b666c2011-05-27 09:24:26 -0700877 }
Sage Weil2817b002009-10-06 11:31:08 -0700878 ceph_mdsc_put_request(req);
879 return err;
880}
881
882/*
883 * For a soon-to-be unlinked file, drop the AUTH_RDCACHE caps. If it
884 * looks like the link count will hit 0, drop any other caps (other
885 * than PIN) we don't specifically want (due to the file still being
886 * open).
887 */
888static int drop_caps_for_unlink(struct inode *inode)
889{
890 struct ceph_inode_info *ci = ceph_inode(inode);
891 int drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
892
Sage Weilbe655592011-11-30 09:47:09 -0800893 spin_lock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700894 if (inode->i_nlink == 1) {
895 drop |= ~(__ceph_caps_wanted(ci) | CEPH_CAP_PIN);
896 ci->i_ceph_flags |= CEPH_I_NODELAY;
897 }
Sage Weilbe655592011-11-30 09:47:09 -0800898 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700899 return drop;
900}
901
902/*
903 * rmdir and unlink are differ only by the metadata op code
904 */
905static int ceph_unlink(struct inode *dir, struct dentry *dentry)
906{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700907 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
908 struct ceph_mds_client *mdsc = fsc->mdsc;
David Howells2b0143b2015-03-17 22:25:59 +0000909 struct inode *inode = d_inode(dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700910 struct ceph_mds_request *req;
911 int err = -EROFS;
912 int op;
913
914 if (ceph_snap(dir) == CEPH_SNAPDIR) {
915 /* rmdir .snap/foo is RMSNAP */
Al Viroa4555892014-10-21 20:11:25 -0400916 dout("rmsnap dir %p '%pd' dn %p\n", dir, dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700917 op = CEPH_MDS_OP_RMSNAP;
918 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
919 dout("unlink/rmdir dir %p dn %p inode %p\n",
920 dir, dentry, inode);
David Howellse36cb0b2015-01-29 12:02:35 +0000921 op = d_is_dir(dentry) ?
Sage Weil2817b002009-10-06 11:31:08 -0700922 CEPH_MDS_OP_RMDIR : CEPH_MDS_OP_UNLINK;
923 } else
924 goto out;
925 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
926 if (IS_ERR(req)) {
927 err = PTR_ERR(req);
928 goto out;
929 }
930 req->r_dentry = dget(dentry);
931 req->r_num_caps = 2;
932 req->r_locked_dir = dir;
933 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
934 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
935 req->r_inode_drop = drop_caps_for_unlink(inode);
936 err = ceph_mdsc_do_request(mdsc, dir, req);
937 if (!err && !req->r_reply_info.head->is_dentry)
938 d_delete(dentry);
939 ceph_mdsc_put_request(req);
940out:
941 return err;
942}
943
944static int ceph_rename(struct inode *old_dir, struct dentry *old_dentry,
945 struct inode *new_dir, struct dentry *new_dentry)
946{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700947 struct ceph_fs_client *fsc = ceph_sb_to_client(old_dir->i_sb);
948 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700949 struct ceph_mds_request *req;
Yan, Zheng0ea611a2015-04-07 15:36:32 +0800950 int op = CEPH_MDS_OP_RENAME;
Sage Weil2817b002009-10-06 11:31:08 -0700951 int err;
952
953 if (ceph_snap(old_dir) != ceph_snap(new_dir))
954 return -EXDEV;
Yan, Zheng0ea611a2015-04-07 15:36:32 +0800955 if (ceph_snap(old_dir) != CEPH_NOSNAP) {
956 if (old_dir == new_dir && ceph_snap(old_dir) == CEPH_SNAPDIR)
957 op = CEPH_MDS_OP_RENAMESNAP;
958 else
959 return -EROFS;
960 }
Sage Weil2817b002009-10-06 11:31:08 -0700961 dout("rename dir %p dentry %p to dir %p dentry %p\n",
962 old_dir, old_dentry, new_dir, new_dentry);
Yan, Zheng0ea611a2015-04-07 15:36:32 +0800963 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
Sage Weil2817b002009-10-06 11:31:08 -0700964 if (IS_ERR(req))
965 return PTR_ERR(req);
Sage Weil180061a2013-02-05 13:36:05 -0800966 ihold(old_dir);
Sage Weil2817b002009-10-06 11:31:08 -0700967 req->r_dentry = dget(new_dentry);
968 req->r_num_caps = 2;
969 req->r_old_dentry = dget(old_dentry);
Sage Weil180061a2013-02-05 13:36:05 -0800970 req->r_old_dentry_dir = old_dir;
Sage Weil2817b002009-10-06 11:31:08 -0700971 req->r_locked_dir = new_dir;
972 req->r_old_dentry_drop = CEPH_CAP_FILE_SHARED;
973 req->r_old_dentry_unless = CEPH_CAP_FILE_EXCL;
974 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
975 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
976 /* release LINK_RDCACHE on source inode (mds will lock it) */
977 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED;
David Howells2b0143b2015-03-17 22:25:59 +0000978 if (d_really_is_positive(new_dentry))
979 req->r_inode_drop = drop_caps_for_unlink(d_inode(new_dentry));
Sage Weil2817b002009-10-06 11:31:08 -0700980 err = ceph_mdsc_do_request(mdsc, old_dir, req);
981 if (!err && !req->r_reply_info.head->is_dentry) {
982 /*
983 * Normally d_move() is done by fill_trace (called by
984 * do_request, above). If there is no trace, we need
985 * to do it here.
986 */
Sage Weilea1409f2010-04-28 16:12:06 -0700987
Sage Weil2817b002009-10-06 11:31:08 -0700988 d_move(old_dentry, new_dentry);
Sage Weilea1409f2010-04-28 16:12:06 -0700989
990 /* ensure target dentry is invalidated, despite
991 rehashing bug in vfs_rename_dir */
Sage Weil81a6cf22010-05-14 09:35:38 -0700992 ceph_invalidate_dentry_lease(new_dentry);
Yan, Zheng0a8a70f2014-04-14 13:13:02 +0800993
994 /* d_move screws up sibling dentries' offsets */
995 ceph_dir_clear_complete(old_dir);
996 ceph_dir_clear_complete(new_dir);
997
Sage Weil2817b002009-10-06 11:31:08 -0700998 }
999 ceph_mdsc_put_request(req);
1000 return err;
1001}
1002
Sage Weil81a6cf22010-05-14 09:35:38 -07001003/*
1004 * Ensure a dentry lease will no longer revalidate.
1005 */
1006void ceph_invalidate_dentry_lease(struct dentry *dentry)
1007{
1008 spin_lock(&dentry->d_lock);
1009 dentry->d_time = jiffies;
1010 ceph_dentry(dentry)->lease_shared_gen = 0;
1011 spin_unlock(&dentry->d_lock);
1012}
Sage Weil2817b002009-10-06 11:31:08 -07001013
1014/*
1015 * Check if dentry lease is valid. If not, delete the lease. Try to
1016 * renew if the least is more than half up.
1017 */
1018static int dentry_lease_is_valid(struct dentry *dentry)
1019{
1020 struct ceph_dentry_info *di;
1021 struct ceph_mds_session *s;
1022 int valid = 0;
1023 u32 gen;
1024 unsigned long ttl;
1025 struct ceph_mds_session *session = NULL;
1026 struct inode *dir = NULL;
1027 u32 seq = 0;
1028
1029 spin_lock(&dentry->d_lock);
1030 di = ceph_dentry(dentry);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001031 if (di->lease_session) {
Sage Weil2817b002009-10-06 11:31:08 -07001032 s = di->lease_session;
Alex Elderd8fb02a2012-01-12 17:48:10 -08001033 spin_lock(&s->s_gen_ttl_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001034 gen = s->s_cap_gen;
1035 ttl = s->s_cap_ttl;
Alex Elderd8fb02a2012-01-12 17:48:10 -08001036 spin_unlock(&s->s_gen_ttl_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001037
1038 if (di->lease_gen == gen &&
1039 time_before(jiffies, dentry->d_time) &&
1040 time_before(jiffies, ttl)) {
1041 valid = 1;
1042 if (di->lease_renew_after &&
1043 time_after(jiffies, di->lease_renew_after)) {
1044 /* we should renew */
David Howells2b0143b2015-03-17 22:25:59 +00001045 dir = d_inode(dentry->d_parent);
Sage Weil2817b002009-10-06 11:31:08 -07001046 session = ceph_get_mds_session(s);
1047 seq = di->lease_seq;
1048 di->lease_renew_after = 0;
1049 di->lease_renew_from = jiffies;
1050 }
Sage Weil2817b002009-10-06 11:31:08 -07001051 }
1052 }
1053 spin_unlock(&dentry->d_lock);
1054
1055 if (session) {
1056 ceph_mdsc_lease_send_msg(session, dir, dentry,
1057 CEPH_MDS_LEASE_RENEW, seq);
1058 ceph_put_mds_session(session);
1059 }
1060 dout("dentry_lease_is_valid - dentry %p = %d\n", dentry, valid);
1061 return valid;
1062}
1063
1064/*
1065 * Check if directory-wide content lease/cap is valid.
1066 */
1067static int dir_lease_is_valid(struct inode *dir, struct dentry *dentry)
1068{
1069 struct ceph_inode_info *ci = ceph_inode(dir);
1070 struct ceph_dentry_info *di = ceph_dentry(dentry);
1071 int valid = 0;
1072
Sage Weilbe655592011-11-30 09:47:09 -08001073 spin_lock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001074 if (ci->i_shared_gen == di->lease_shared_gen)
1075 valid = __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1);
Sage Weilbe655592011-11-30 09:47:09 -08001076 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001077 dout("dir_lease_is_valid dir %p v%u dentry %p v%u = %d\n",
1078 dir, (unsigned)ci->i_shared_gen, dentry,
1079 (unsigned)di->lease_shared_gen, valid);
1080 return valid;
1081}
1082
1083/*
1084 * Check if cached dentry can be trusted.
1085 */
Al Viro0b728e12012-06-10 16:03:43 -04001086static int ceph_d_revalidate(struct dentry *dentry, unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001087{
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001088 int valid = 0;
Nick Piggin34286d62011-01-07 17:49:57 +11001089 struct inode *dir;
1090
Al Viro0b728e12012-06-10 16:03:43 -04001091 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +11001092 return -ECHILD;
1093
Al Viroa4555892014-10-21 20:11:25 -04001094 dout("d_revalidate %p '%pd' inode %p offset %lld\n", dentry,
David Howells2b0143b2015-03-17 22:25:59 +00001095 dentry, d_inode(dentry), ceph_dentry(dentry)->offset);
Sage Weil2817b002009-10-06 11:31:08 -07001096
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001097 dir = ceph_get_dentry_parent_inode(dentry);
1098
Sage Weil2817b002009-10-06 11:31:08 -07001099 /* always trust cached snapped dentries, snapdir dentry */
1100 if (ceph_snap(dir) != CEPH_NOSNAP) {
Al Viroa4555892014-10-21 20:11:25 -04001101 dout("d_revalidate %p '%pd' inode %p is SNAPPED\n", dentry,
David Howells2b0143b2015-03-17 22:25:59 +00001102 dentry, d_inode(dentry));
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001103 valid = 1;
David Howells2b0143b2015-03-17 22:25:59 +00001104 } else if (d_really_is_positive(dentry) &&
1105 ceph_snap(d_inode(dentry)) == CEPH_SNAPDIR) {
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001106 valid = 1;
1107 } else if (dentry_lease_is_valid(dentry) ||
1108 dir_lease_is_valid(dir, dentry)) {
David Howells2b0143b2015-03-17 22:25:59 +00001109 if (d_really_is_positive(dentry))
1110 valid = ceph_is_any_caps(d_inode(dentry));
Yan, Zheng9215aee2013-11-30 12:47:41 +08001111 else
1112 valid = 1;
Sage Weil2817b002009-10-06 11:31:08 -07001113 }
Sage Weil2817b002009-10-06 11:31:08 -07001114
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001115 dout("d_revalidate %p %s\n", dentry, valid ? "valid" : "invalid");
Yan, Zheng9215aee2013-11-30 12:47:41 +08001116 if (valid) {
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001117 ceph_dentry_lru_touch(dentry);
Yan, Zheng9215aee2013-11-30 12:47:41 +08001118 } else {
1119 ceph_dir_clear_complete(dir);
Yan, Zheng9215aee2013-11-30 12:47:41 +08001120 }
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001121 iput(dir);
1122 return valid;
Sage Weil2817b002009-10-06 11:31:08 -07001123}
1124
1125/*
Sage Weil147851d2011-03-15 14:57:41 -07001126 * Release our ceph_dentry_info.
Sage Weil2817b002009-10-06 11:31:08 -07001127 */
Sage Weil147851d2011-03-15 14:57:41 -07001128static void ceph_d_release(struct dentry *dentry)
Sage Weil2817b002009-10-06 11:31:08 -07001129{
1130 struct ceph_dentry_info *di = ceph_dentry(dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001131
Sage Weil147851d2011-03-15 14:57:41 -07001132 dout("d_release %p\n", dentry);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001133 ceph_dentry_lru_del(dentry);
1134 if (di->lease_session)
1135 ceph_put_mds_session(di->lease_session);
1136 kmem_cache_free(ceph_dentry_cachep, di);
1137 dentry->d_fsdata = NULL;
Sage Weil2817b002009-10-06 11:31:08 -07001138}
1139
1140static int ceph_snapdir_d_revalidate(struct dentry *dentry,
Al Viro0b728e12012-06-10 16:03:43 -04001141 unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001142{
1143 /*
1144 * Eventually, we'll want to revalidate snapped metadata
1145 * too... probably...
1146 */
1147 return 1;
1148}
1149
Sage Weilb58dc412011-03-15 15:53:40 -07001150/*
1151 * When the VFS prunes a dentry from the cache, we need to clear the
1152 * complete flag on the parent directory.
1153 *
1154 * Called under dentry->d_lock.
1155 */
1156static void ceph_d_prune(struct dentry *dentry)
1157{
Sage Weil774ac212011-11-11 09:48:08 -08001158 dout("ceph_d_prune %p\n", dentry);
Sage Weilb58dc412011-03-15 15:53:40 -07001159
1160 /* do we have a valid parent? */
Sage Weil8842b3b2012-06-07 13:43:35 -07001161 if (IS_ROOT(dentry))
Sage Weilb58dc412011-03-15 15:53:40 -07001162 return;
1163
Yan, Zheng2f276c52013-03-13 19:44:32 +08001164 /* if we are not hashed, we don't affect dir's completeness */
Sage Weilb58dc412011-03-15 15:53:40 -07001165 if (d_unhashed(dentry))
1166 return;
1167
1168 /*
1169 * we hold d_lock, so d_parent is stable, and d_fsdata is never
1170 * cleared until d_release
1171 */
David Howells2b0143b2015-03-17 22:25:59 +00001172 ceph_dir_clear_complete(d_inode(dentry->d_parent));
Sage Weilb58dc412011-03-15 15:53:40 -07001173}
Sage Weil2817b002009-10-06 11:31:08 -07001174
1175/*
1176 * read() on a dir. This weird interface hack only works if mounted
1177 * with '-o dirstat'.
1178 */
1179static ssize_t ceph_read_dir(struct file *file, char __user *buf, size_t size,
1180 loff_t *ppos)
1181{
1182 struct ceph_file_info *cf = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -05001183 struct inode *inode = file_inode(file);
Sage Weil2817b002009-10-06 11:31:08 -07001184 struct ceph_inode_info *ci = ceph_inode(inode);
1185 int left;
Sage Weilae598082011-05-12 14:28:05 -07001186 const int bufsize = 1024;
Sage Weil2817b002009-10-06 11:31:08 -07001187
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001188 if (!ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb), DIRSTAT))
Sage Weil2817b002009-10-06 11:31:08 -07001189 return -EISDIR;
1190
1191 if (!cf->dir_info) {
Sage Weilae598082011-05-12 14:28:05 -07001192 cf->dir_info = kmalloc(bufsize, GFP_NOFS);
Sage Weil2817b002009-10-06 11:31:08 -07001193 if (!cf->dir_info)
1194 return -ENOMEM;
1195 cf->dir_info_len =
Sage Weilae598082011-05-12 14:28:05 -07001196 snprintf(cf->dir_info, bufsize,
Sage Weil2817b002009-10-06 11:31:08 -07001197 "entries: %20lld\n"
1198 " files: %20lld\n"
1199 " subdirs: %20lld\n"
1200 "rentries: %20lld\n"
1201 " rfiles: %20lld\n"
1202 " rsubdirs: %20lld\n"
1203 "rbytes: %20lld\n"
1204 "rctime: %10ld.%09ld\n",
1205 ci->i_files + ci->i_subdirs,
1206 ci->i_files,
1207 ci->i_subdirs,
1208 ci->i_rfiles + ci->i_rsubdirs,
1209 ci->i_rfiles,
1210 ci->i_rsubdirs,
1211 ci->i_rbytes,
1212 (long)ci->i_rctime.tv_sec,
1213 (long)ci->i_rctime.tv_nsec);
1214 }
1215
1216 if (*ppos >= cf->dir_info_len)
1217 return 0;
1218 size = min_t(unsigned, size, cf->dir_info_len-*ppos);
1219 left = copy_to_user(buf, cf->dir_info + *ppos, size);
1220 if (left == size)
1221 return -EFAULT;
1222 *ppos += (size - left);
1223 return size - left;
1224}
1225
1226/*
1227 * an fsync() on a dir will wait for any uncommitted directory
1228 * operations to commit.
1229 */
Josef Bacik02c24a82011-07-16 20:44:56 -04001230static int ceph_dir_fsync(struct file *file, loff_t start, loff_t end,
1231 int datasync)
Sage Weil2817b002009-10-06 11:31:08 -07001232{
Al Viro496ad9a2013-01-23 17:07:38 -05001233 struct inode *inode = file_inode(file);
Sage Weil2817b002009-10-06 11:31:08 -07001234 struct ceph_inode_info *ci = ceph_inode(inode);
1235 struct list_head *head = &ci->i_unsafe_dirops;
1236 struct ceph_mds_request *req;
1237 u64 last_tid;
1238 int ret = 0;
1239
1240 dout("dir_fsync %p\n", inode);
Josef Bacik02c24a82011-07-16 20:44:56 -04001241 ret = filemap_write_and_wait_range(inode->i_mapping, start, end);
1242 if (ret)
1243 return ret;
1244 mutex_lock(&inode->i_mutex);
1245
Sage Weil2817b002009-10-06 11:31:08 -07001246 spin_lock(&ci->i_unsafe_lock);
1247 if (list_empty(head))
1248 goto out;
1249
1250 req = list_entry(head->prev,
1251 struct ceph_mds_request, r_unsafe_dir_item);
1252 last_tid = req->r_tid;
1253
1254 do {
1255 ceph_mdsc_get_request(req);
1256 spin_unlock(&ci->i_unsafe_lock);
Sage Weil2ff179e2012-01-03 10:09:07 -08001257
Sage Weil2817b002009-10-06 11:31:08 -07001258 dout("dir_fsync %p wait on tid %llu (until %llu)\n",
1259 inode, req->r_tid, last_tid);
1260 if (req->r_timeout) {
Nicholas Mc Guire57e95462015-03-10 11:18:15 -04001261 unsigned long time_left = wait_for_completion_timeout(
1262 &req->r_safe_completion,
1263 req->r_timeout);
1264 if (time_left > 0)
Sage Weil2817b002009-10-06 11:31:08 -07001265 ret = 0;
Nicholas Mc Guire57e95462015-03-10 11:18:15 -04001266 else
Sage Weil2817b002009-10-06 11:31:08 -07001267 ret = -EIO; /* timed out */
1268 } else {
1269 wait_for_completion(&req->r_safe_completion);
1270 }
Sage Weil2817b002009-10-06 11:31:08 -07001271 ceph_mdsc_put_request(req);
1272
Sage Weil2ff179e2012-01-03 10:09:07 -08001273 spin_lock(&ci->i_unsafe_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001274 if (ret || list_empty(head))
1275 break;
1276 req = list_entry(head->next,
1277 struct ceph_mds_request, r_unsafe_dir_item);
1278 } while (req->r_tid < last_tid);
1279out:
1280 spin_unlock(&ci->i_unsafe_lock);
Josef Bacik02c24a82011-07-16 20:44:56 -04001281 mutex_unlock(&inode->i_mutex);
1282
Sage Weil2817b002009-10-06 11:31:08 -07001283 return ret;
1284}
1285
1286/*
1287 * We maintain a private dentry LRU.
1288 *
1289 * FIXME: this needs to be changed to a per-mds lru to be useful.
1290 */
1291void ceph_dentry_lru_add(struct dentry *dn)
1292{
1293 struct ceph_dentry_info *di = ceph_dentry(dn);
1294 struct ceph_mds_client *mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001295
Al Viroa4555892014-10-21 20:11:25 -04001296 dout("dentry_lru_add %p %p '%pd'\n", di, dn, dn);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001297 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1298 spin_lock(&mdsc->dentry_lru_lock);
1299 list_add_tail(&di->lru, &mdsc->dentry_lru);
1300 mdsc->num_dentry++;
1301 spin_unlock(&mdsc->dentry_lru_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001302}
1303
1304void ceph_dentry_lru_touch(struct dentry *dn)
1305{
1306 struct ceph_dentry_info *di = ceph_dentry(dn);
1307 struct ceph_mds_client *mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001308
Al Viroa4555892014-10-21 20:11:25 -04001309 dout("dentry_lru_touch %p %p '%pd' (offset %lld)\n", di, dn, dn,
1310 di->offset);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001311 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1312 spin_lock(&mdsc->dentry_lru_lock);
1313 list_move_tail(&di->lru, &mdsc->dentry_lru);
1314 spin_unlock(&mdsc->dentry_lru_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001315}
1316
1317void ceph_dentry_lru_del(struct dentry *dn)
1318{
1319 struct ceph_dentry_info *di = ceph_dentry(dn);
1320 struct ceph_mds_client *mdsc;
1321
Al Viroa4555892014-10-21 20:11:25 -04001322 dout("dentry_lru_del %p %p '%pd'\n", di, dn, dn);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001323 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1324 spin_lock(&mdsc->dentry_lru_lock);
1325 list_del_init(&di->lru);
1326 mdsc->num_dentry--;
1327 spin_unlock(&mdsc->dentry_lru_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001328}
1329
Sage Weil6c0f3af2010-11-16 11:14:34 -08001330/*
1331 * Return name hash for a given dentry. This is dependent on
1332 * the parent directory's hash function.
1333 */
Sage Weile5f86dc2011-07-26 11:30:55 -07001334unsigned ceph_dentry_hash(struct inode *dir, struct dentry *dn)
Sage Weil6c0f3af2010-11-16 11:14:34 -08001335{
Sage Weil6c0f3af2010-11-16 11:14:34 -08001336 struct ceph_inode_info *dci = ceph_inode(dir);
1337
1338 switch (dci->i_dir_layout.dl_dir_hash) {
1339 case 0: /* for backward compat */
1340 case CEPH_STR_HASH_LINUX:
1341 return dn->d_name.hash;
1342
1343 default:
1344 return ceph_str_hash(dci->i_dir_layout.dl_dir_hash,
1345 dn->d_name.name, dn->d_name.len);
1346 }
1347}
1348
Sage Weil2817b002009-10-06 11:31:08 -07001349const struct file_operations ceph_dir_fops = {
1350 .read = ceph_read_dir,
Al Viro77acfa22013-05-17 16:52:26 -04001351 .iterate = ceph_readdir,
Sage Weil2817b002009-10-06 11:31:08 -07001352 .llseek = ceph_dir_llseek,
1353 .open = ceph_open,
1354 .release = ceph_release,
1355 .unlocked_ioctl = ceph_ioctl,
1356 .fsync = ceph_dir_fsync,
1357};
1358
Yan, Zheng38c48b52015-01-14 13:46:04 +08001359const struct file_operations ceph_snapdir_fops = {
1360 .iterate = ceph_readdir,
1361 .llseek = ceph_dir_llseek,
1362 .open = ceph_open,
1363 .release = ceph_release,
1364};
1365
Sage Weil2817b002009-10-06 11:31:08 -07001366const struct inode_operations ceph_dir_iops = {
1367 .lookup = ceph_lookup,
1368 .permission = ceph_permission,
1369 .getattr = ceph_getattr,
1370 .setattr = ceph_setattr,
1371 .setxattr = ceph_setxattr,
1372 .getxattr = ceph_getxattr,
1373 .listxattr = ceph_listxattr,
1374 .removexattr = ceph_removexattr,
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001375 .get_acl = ceph_get_acl,
Sage Weil72466d02014-01-29 06:22:25 -08001376 .set_acl = ceph_set_acl,
Sage Weil2817b002009-10-06 11:31:08 -07001377 .mknod = ceph_mknod,
1378 .symlink = ceph_symlink,
1379 .mkdir = ceph_mkdir,
1380 .link = ceph_link,
1381 .unlink = ceph_unlink,
1382 .rmdir = ceph_unlink,
1383 .rename = ceph_rename,
1384 .create = ceph_create,
Miklos Szeredi2d83bde2012-06-05 15:10:25 +02001385 .atomic_open = ceph_atomic_open,
Sage Weil2817b002009-10-06 11:31:08 -07001386};
1387
Yan, Zheng38c48b52015-01-14 13:46:04 +08001388const struct inode_operations ceph_snapdir_iops = {
1389 .lookup = ceph_lookup,
1390 .permission = ceph_permission,
1391 .getattr = ceph_getattr,
1392 .mkdir = ceph_mkdir,
1393 .rmdir = ceph_unlink,
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001394 .rename = ceph_rename,
Yan, Zheng38c48b52015-01-14 13:46:04 +08001395};
1396
Sage Weil52dfb8a2010-08-03 10:25:30 -07001397const struct dentry_operations ceph_dentry_ops = {
Sage Weil2817b002009-10-06 11:31:08 -07001398 .d_revalidate = ceph_d_revalidate,
Sage Weil147851d2011-03-15 14:57:41 -07001399 .d_release = ceph_d_release,
Sage Weilb58dc412011-03-15 15:53:40 -07001400 .d_prune = ceph_d_prune,
Sage Weil2817b002009-10-06 11:31:08 -07001401};
1402
Sage Weil52dfb8a2010-08-03 10:25:30 -07001403const struct dentry_operations ceph_snapdir_dentry_ops = {
Sage Weil2817b002009-10-06 11:31:08 -07001404 .d_revalidate = ceph_snapdir_d_revalidate,
Sage Weil147851d2011-03-15 14:57:41 -07001405 .d_release = ceph_d_release,
Sage Weil2817b002009-10-06 11:31:08 -07001406};
1407
Sage Weil52dfb8a2010-08-03 10:25:30 -07001408const struct dentry_operations ceph_snap_dentry_ops = {
Sage Weil147851d2011-03-15 14:57:41 -07001409 .d_release = ceph_d_release,
Sage Weilb58dc412011-03-15 15:53:40 -07001410 .d_prune = ceph_d_prune,
Sage Weil2817b002009-10-06 11:31:08 -07001411};