blob: e071d23f61481bf23fc4407d72ea75c9d1ec2430 [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>
Andreas Gruenbacher2cdeb1e2016-04-14 00:30:17 +02008#include <linux/xattr.h>
Sage Weil2817b002009-10-06 11:31:08 -07009
10#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070011#include "mds_client.h"
Sage Weil2817b002009-10-06 11:31:08 -070012
13/*
14 * Directory operations: readdir, lookup, create, link, unlink,
15 * rename, etc.
16 */
17
18/*
19 * Ceph MDS operations are specified in terms of a base ino and
20 * relative path. Thus, the client can specify an operation on a
21 * specific inode (e.g., a getattr due to fstat(2)), or as a path
22 * relative to, say, the root directory.
23 *
24 * Normally, we limit ourselves to strict inode ops (no path component)
25 * or dentry operations (a single path component relative to an ino). The
26 * exception to this is open_root_dentry(), which will open the mount
27 * point by name.
28 */
29
Sage Weil52dfb8a2010-08-03 10:25:30 -070030const struct dentry_operations ceph_dentry_ops;
Sage Weil2817b002009-10-06 11:31:08 -070031
32/*
33 * Initialize ceph dentry state.
34 */
Al Viroad5cb122016-10-28 22:05:13 -040035static int ceph_d_init(struct dentry *dentry)
Sage Weil2817b002009-10-06 11:31:08 -070036{
37 struct ceph_dentry_info *di;
38
Geliang Tang99ec2692016-03-13 15:26:29 +080039 di = kmem_cache_zalloc(ceph_dentry_cachep, GFP_KERNEL);
Sage Weil2817b002009-10-06 11:31:08 -070040 if (!di)
41 return -ENOMEM; /* oh well */
42
Sage Weil2817b002009-10-06 11:31:08 -070043 di->dentry = dentry;
44 di->lease_session = NULL;
Miklos Szeredi9b16f03c2016-06-22 16:35:04 +020045 di->time = jiffies;
Sage Weil48d0cbd2011-07-26 11:30:15 -070046 dentry->d_fsdata = di;
Sage Weil2817b002009-10-06 11:31:08 -070047 ceph_dentry_lru_add(dentry);
Sage Weil2817b002009-10-06 11:31:08 -070048 return 0;
49}
50
Sage Weil2817b002009-10-06 11:31:08 -070051/*
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080052 * for f_pos for readdir:
53 * - hash order:
54 * (0xff << 52) | ((24 bits hash) << 28) |
55 * (the nth entry has hash collision);
56 * - frag+name order;
57 * ((frag value) << 28) | (the nth entry in frag);
Sage Weil2817b002009-10-06 11:31:08 -070058 */
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080059#define OFFSET_BITS 28
60#define OFFSET_MASK ((1 << OFFSET_BITS) - 1)
61#define HASH_ORDER (0xffull << (OFFSET_BITS + 24))
62loff_t ceph_make_fpos(unsigned high, unsigned off, bool hash_order)
63{
64 loff_t fpos = ((loff_t)high << 28) | (loff_t)off;
65 if (hash_order)
66 fpos |= HASH_ORDER;
67 return fpos;
68}
69
70static bool is_hash_order(loff_t p)
71{
72 return (p & HASH_ORDER) == HASH_ORDER;
73}
74
Sage Weil2817b002009-10-06 11:31:08 -070075static unsigned fpos_frag(loff_t p)
76{
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080077 return p >> OFFSET_BITS;
Sage Weil2817b002009-10-06 11:31:08 -070078}
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080079
80static unsigned fpos_hash(loff_t p)
81{
82 return ceph_frag_value(fpos_frag(p));
83}
84
Sage Weil2817b002009-10-06 11:31:08 -070085static unsigned fpos_off(loff_t p)
86{
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080087 return p & OFFSET_MASK;
Sage Weil2817b002009-10-06 11:31:08 -070088}
89
Yan, Zheng4d5f5df2014-02-13 19:40:26 +080090static int fpos_cmp(loff_t l, loff_t r)
91{
92 int v = ceph_frag_compare(fpos_frag(l), fpos_frag(r));
93 if (v)
94 return v;
95 return (int)(fpos_off(l) - fpos_off(r));
96}
97
Sage Weil2817b002009-10-06 11:31:08 -070098/*
Yan, Zhengfdd4e152015-06-16 20:48:56 +080099 * make note of the last dentry we read, so we can
100 * continue at the same lexicographical point,
101 * regardless of what dir changes take place on the
102 * server.
103 */
104static int note_last_dentry(struct ceph_file_info *fi, const char *name,
105 int len, unsigned next_offset)
106{
107 char *buf = kmalloc(len+1, GFP_KERNEL);
108 if (!buf)
109 return -ENOMEM;
110 kfree(fi->last_name);
111 fi->last_name = buf;
112 memcpy(fi->last_name, name, len);
113 fi->last_name[len] = 0;
114 fi->next_offset = next_offset;
115 dout("note_last_dentry '%s'\n", fi->last_name);
116 return 0;
117}
118
Yan, Zhengc530cd22016-04-28 17:43:35 +0800119
120static struct dentry *
121__dcache_find_get_entry(struct dentry *parent, u64 idx,
122 struct ceph_readdir_cache_control *cache_ctl)
123{
124 struct inode *dir = d_inode(parent);
125 struct dentry *dentry;
126 unsigned idx_mask = (PAGE_SIZE / sizeof(struct dentry *)) - 1;
127 loff_t ptr_pos = idx * sizeof(struct dentry *);
128 pgoff_t ptr_pgoff = ptr_pos >> PAGE_SHIFT;
129
130 if (ptr_pos >= i_size_read(dir))
131 return NULL;
132
133 if (!cache_ctl->page || ptr_pgoff != page_index(cache_ctl->page)) {
134 ceph_readdir_cache_release(cache_ctl);
135 cache_ctl->page = find_lock_page(&dir->i_data, ptr_pgoff);
136 if (!cache_ctl->page) {
137 dout(" page %lu not found\n", ptr_pgoff);
138 return ERR_PTR(-EAGAIN);
139 }
140 /* reading/filling the cache are serialized by
141 i_mutex, no need to use page lock */
142 unlock_page(cache_ctl->page);
143 cache_ctl->dentries = kmap(cache_ctl->page);
144 }
145
146 cache_ctl->index = idx & idx_mask;
147
148 rcu_read_lock();
149 spin_lock(&parent->d_lock);
150 /* check i_size again here, because empty directory can be
151 * marked as complete while not holding the i_mutex. */
152 if (ceph_dir_is_complete_ordered(dir) && ptr_pos < i_size_read(dir))
153 dentry = cache_ctl->dentries[cache_ctl->index];
154 else
155 dentry = NULL;
156 spin_unlock(&parent->d_lock);
157 if (dentry && !lockref_get_not_dead(&dentry->d_lockref))
158 dentry = NULL;
159 rcu_read_unlock();
160 return dentry ? : ERR_PTR(-EAGAIN);
161}
162
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800163/*
Sage Weil2817b002009-10-06 11:31:08 -0700164 * When possible, we try to satisfy a readdir by peeking at the
165 * dcache. We make this work by carefully ordering dentries on
Al Viro946e51f2014-10-26 19:19:16 -0400166 * d_child when we initially get results back from the MDS, and
Sage Weil2817b002009-10-06 11:31:08 -0700167 * falling back to a "normal" sync readdir if any dentries in the dir
168 * are dropped.
169 *
Yan, Zheng2f276c52013-03-13 19:44:32 +0800170 * Complete dir indicates that we have all dentries in the dir. It is
Sage Weil2817b002009-10-06 11:31:08 -0700171 * defined IFF we hold CEPH_CAP_FILE_SHARED (which will be revoked by
172 * the MDS if/when the directory is modified).
173 */
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800174static int __dcache_readdir(struct file *file, struct dir_context *ctx,
175 u32 shared_gen)
Sage Weil2817b002009-10-06 11:31:08 -0700176{
Al Viro77acfa22013-05-17 16:52:26 -0400177 struct ceph_file_info *fi = file->private_data;
Al Virob5830432014-10-31 01:22:04 -0400178 struct dentry *parent = file->f_path.dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000179 struct inode *dir = d_inode(parent);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800180 struct dentry *dentry, *last = NULL;
Sage Weil2817b002009-10-06 11:31:08 -0700181 struct ceph_dentry_info *di;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800182 struct ceph_readdir_cache_control cache_ctl = {};
Yan, Zhengc530cd22016-04-28 17:43:35 +0800183 u64 idx = 0;
184 int err = 0;
Sage Weil2817b002009-10-06 11:31:08 -0700185
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800186 dout("__dcache_readdir %p v%u at %llx\n", dir, shared_gen, ctx->pos);
Sage Weil2817b002009-10-06 11:31:08 -0700187
Yan, Zhengc530cd22016-04-28 17:43:35 +0800188 /* search start position */
189 if (ctx->pos > 2) {
190 u64 count = div_u64(i_size_read(dir), sizeof(struct dentry *));
191 while (count > 0) {
192 u64 step = count >> 1;
193 dentry = __dcache_find_get_entry(parent, idx + step,
194 &cache_ctl);
195 if (!dentry) {
196 /* use linar search */
197 idx = 0;
198 break;
199 }
200 if (IS_ERR(dentry)) {
201 err = PTR_ERR(dentry);
202 goto out;
203 }
204 di = ceph_dentry(dentry);
205 spin_lock(&dentry->d_lock);
206 if (fpos_cmp(di->offset, ctx->pos) < 0) {
207 idx += step + 1;
208 count -= step + 1;
209 } else {
210 count = step;
211 }
212 spin_unlock(&dentry->d_lock);
213 dput(dentry);
214 }
215
216 dout("__dcache_readdir %p cache idx %llu\n", dir, idx);
Sage Weil2817b002009-10-06 11:31:08 -0700217 }
218
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800219
Yan, Zhengc530cd22016-04-28 17:43:35 +0800220 for (;;) {
221 bool emit_dentry = false;
222 dentry = __dcache_find_get_entry(parent, idx++, &cache_ctl);
223 if (!dentry) {
Sage Weil9cfa1092011-07-26 11:26:18 -0700224 fi->flags |= CEPH_F_ATEND;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800225 err = 0;
226 break;
Sage Weil2817b002009-10-06 11:31:08 -0700227 }
Yan, Zhengc530cd22016-04-28 17:43:35 +0800228 if (IS_ERR(dentry)) {
229 err = PTR_ERR(dentry);
230 goto out;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800231 }
232
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800233 di = ceph_dentry(dentry);
234 spin_lock(&dentry->d_lock);
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800235 if (di->lease_shared_gen == shared_gen &&
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800236 d_really_is_positive(dentry) &&
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800237 fpos_cmp(ctx->pos, di->offset) <= 0) {
238 emit_dentry = true;
Sage Weil2817b002009-10-06 11:31:08 -0700239 }
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800240 spin_unlock(&dentry->d_lock);
241
242 if (emit_dentry) {
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800243 dout(" %llx dentry %p %pd %p\n", di->offset,
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800244 dentry, dentry, d_inode(dentry));
245 ctx->pos = di->offset;
246 if (!dir_emit(ctx, dentry->d_name.name,
247 dentry->d_name.len,
248 ceph_translate_ino(dentry->d_sb,
249 d_inode(dentry)->i_ino),
250 d_inode(dentry)->i_mode >> 12)) {
251 dput(dentry);
252 err = 0;
253 break;
254 }
255 ctx->pos++;
256
257 if (last)
258 dput(last);
259 last = dentry;
260 } else {
261 dput(dentry);
262 }
Sage Weil2817b002009-10-06 11:31:08 -0700263 }
Yan, Zhengc530cd22016-04-28 17:43:35 +0800264out:
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800265 ceph_readdir_cache_release(&cache_ctl);
266 if (last) {
267 int ret;
268 di = ceph_dentry(last);
269 ret = note_last_dentry(fi, last->d_name.name, last->d_name.len,
270 fpos_off(di->offset) + 1);
271 if (ret < 0)
272 err = ret;
Al Viro77acfa22013-05-17 16:52:26 -0400273 dput(last);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800274 }
Sage Weil2817b002009-10-06 11:31:08 -0700275 return err;
276}
277
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800278static bool need_send_readdir(struct ceph_file_info *fi, loff_t pos)
279{
280 if (!fi->last_readdir)
281 return true;
282 if (is_hash_order(pos))
283 return !ceph_frag_contains_value(fi->frag, fpos_hash(pos));
284 else
285 return fi->frag != fpos_frag(pos);
286}
287
Al Viro77acfa22013-05-17 16:52:26 -0400288static int ceph_readdir(struct file *file, struct dir_context *ctx)
Sage Weil2817b002009-10-06 11:31:08 -0700289{
Al Viro77acfa22013-05-17 16:52:26 -0400290 struct ceph_file_info *fi = file->private_data;
291 struct inode *inode = file_inode(file);
Sage Weil2817b002009-10-06 11:31:08 -0700292 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700293 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
294 struct ceph_mds_client *mdsc = fsc->mdsc;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800295 int i;
Sage Weil2817b002009-10-06 11:31:08 -0700296 int err;
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800297 unsigned frag = -1;
Sage Weil2817b002009-10-06 11:31:08 -0700298 struct ceph_mds_reply_info_parsed *rinfo;
Sage Weil2817b002009-10-06 11:31:08 -0700299
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800300 dout("readdir %p file %p pos %llx\n", inode, file, ctx->pos);
Sage Weil9cfa1092011-07-26 11:26:18 -0700301 if (fi->flags & CEPH_F_ATEND)
Sage Weil2817b002009-10-06 11:31:08 -0700302 return 0;
303
304 /* always start with . and .. */
Al Viro77acfa22013-05-17 16:52:26 -0400305 if (ctx->pos == 0) {
Sage Weil2817b002009-10-06 11:31:08 -0700306 dout("readdir off 0 -> '.'\n");
Al Viro77acfa22013-05-17 16:52:26 -0400307 if (!dir_emit(ctx, ".", 1,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800308 ceph_translate_ino(inode->i_sb, inode->i_ino),
Al Viro77acfa22013-05-17 16:52:26 -0400309 inode->i_mode >> 12))
Sage Weil2817b002009-10-06 11:31:08 -0700310 return 0;
Al Viro77acfa22013-05-17 16:52:26 -0400311 ctx->pos = 1;
Sage Weil2817b002009-10-06 11:31:08 -0700312 }
Al Viro77acfa22013-05-17 16:52:26 -0400313 if (ctx->pos == 1) {
Al Virob5830432014-10-31 01:22:04 -0400314 ino_t ino = parent_ino(file->f_path.dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700315 dout("readdir off 1 -> '..'\n");
Al Viro77acfa22013-05-17 16:52:26 -0400316 if (!dir_emit(ctx, "..", 2,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800317 ceph_translate_ino(inode->i_sb, ino),
Al Viro77acfa22013-05-17 16:52:26 -0400318 inode->i_mode >> 12))
Sage Weil2817b002009-10-06 11:31:08 -0700319 return 0;
Al Viro77acfa22013-05-17 16:52:26 -0400320 ctx->pos = 2;
Sage Weil2817b002009-10-06 11:31:08 -0700321 }
322
323 /* can we use the dcache? */
Sage Weilbe655592011-11-30 09:47:09 -0800324 spin_lock(&ci->i_ceph_lock);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800325 if (ceph_test_mount_opt(fsc, DCACHE) &&
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700326 !ceph_test_mount_opt(fsc, NOASYNCREADDIR) &&
Sage Weila0dff782010-07-22 13:47:21 -0700327 ceph_snap(inode) != CEPH_SNAPDIR &&
Yan, Zheng70db4f32014-10-21 18:09:56 -0700328 __ceph_dir_is_complete_ordered(ci) &&
Sage Weil2817b002009-10-06 11:31:08 -0700329 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1)) {
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800330 u32 shared_gen = ci->i_shared_gen;
Sage Weilbe655592011-11-30 09:47:09 -0800331 spin_unlock(&ci->i_ceph_lock);
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800332 err = __dcache_readdir(file, ctx, shared_gen);
Sage Weilefa4c122010-10-18 14:04:31 -0700333 if (err != -EAGAIN)
Sage Weil2817b002009-10-06 11:31:08 -0700334 return err;
Sage Weilefa4c122010-10-18 14:04:31 -0700335 } else {
Sage Weilbe655592011-11-30 09:47:09 -0800336 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700337 }
Sage Weil2817b002009-10-06 11:31:08 -0700338
339 /* proceed with a normal readdir */
Sage Weil2817b002009-10-06 11:31:08 -0700340more:
341 /* do we have the correct frag content buffered? */
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800342 if (need_send_readdir(fi, ctx->pos)) {
Sage Weil2817b002009-10-06 11:31:08 -0700343 struct ceph_mds_request *req;
344 int op = ceph_snap(inode) == CEPH_SNAPDIR ?
345 CEPH_MDS_OP_LSSNAP : CEPH_MDS_OP_READDIR;
346
347 /* discard old result, if any */
Sage Weil393f6622010-03-10 12:03:32 -0800348 if (fi->last_readdir) {
Sage Weil2817b002009-10-06 11:31:08 -0700349 ceph_mdsc_put_request(fi->last_readdir);
Sage Weil393f6622010-03-10 12:03:32 -0800350 fi->last_readdir = NULL;
351 }
Sage Weil2817b002009-10-06 11:31:08 -0700352
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800353 if (is_hash_order(ctx->pos)) {
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800354 /* fragtree isn't always accurate. choose frag
355 * based on previous reply when possible. */
356 if (frag == (unsigned)-1)
357 frag = ceph_choose_frag(ci, fpos_hash(ctx->pos),
358 NULL, NULL);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800359 } else {
360 frag = fpos_frag(ctx->pos);
361 }
362
Sage Weil2817b002009-10-06 11:31:08 -0700363 dout("readdir fetching %llx.%llx frag %x offset '%s'\n",
364 ceph_vinop(inode), frag, fi->last_name);
365 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
366 if (IS_ERR(req))
367 return PTR_ERR(req);
Yan, Zheng54008392014-03-29 13:41:15 +0800368 err = ceph_alloc_readdir_reply_buffer(req, inode);
369 if (err) {
370 ceph_mdsc_put_request(req);
371 return err;
372 }
Sage Weil2817b002009-10-06 11:31:08 -0700373 /* hints to request -> mds selection code */
374 req->r_direct_mode = USE_AUTH_MDS;
375 req->r_direct_hash = ceph_frag_value(frag);
Jeff Laytonbc2de10d2017-02-01 13:49:09 -0500376 __set_bit(CEPH_MDS_R_DIRECT_IS_HASH, &req->r_req_flags);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400377 if (fi->last_name) {
Yan, Zheng687265e2015-06-13 17:27:05 +0800378 req->r_path2 = kstrdup(fi->last_name, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400379 if (!req->r_path2) {
380 ceph_mdsc_put_request(req);
381 return -ENOMEM;
382 }
Yan, Zheng79162542017-04-05 12:54:05 -0400383 } else if (is_hash_order(ctx->pos)) {
384 req->r_args.readdir.offset_hash =
385 cpu_to_le32(fpos_hash(ctx->pos));
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400386 }
Yan, Zheng79162542017-04-05 12:54:05 -0400387
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800388 req->r_dir_release_cnt = fi->dir_release_count;
389 req->r_dir_ordered_cnt = fi->dir_ordered_count;
390 req->r_readdir_cache_idx = fi->readdir_cache_idx;
Sage Weil2817b002009-10-06 11:31:08 -0700391 req->r_readdir_offset = fi->next_offset;
392 req->r_args.readdir.frag = cpu_to_le32(frag);
Yan, Zheng956d39d2016-04-27 17:48:30 +0800393 req->r_args.readdir.flags =
394 cpu_to_le16(CEPH_READDIR_REPLY_BITFLAGS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400395
396 req->r_inode = inode;
397 ihold(inode);
398 req->r_dentry = dget(file->f_path.dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700399 err = ceph_mdsc_do_request(mdsc, NULL, req);
400 if (err < 0) {
401 ceph_mdsc_put_request(req);
402 return err;
403 }
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800404 dout("readdir got and parsed readdir result=%d on "
405 "frag %x, end=%d, complete=%d, hash_order=%d\n",
406 err, frag,
Sage Weil2817b002009-10-06 11:31:08 -0700407 (int)req->r_reply_info.dir_end,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800408 (int)req->r_reply_info.dir_complete,
409 (int)req->r_reply_info.hash_order);
Sage Weil2817b002009-10-06 11:31:08 -0700410
Yan, Zheng81c6aea2013-09-18 09:44:13 +0800411 rinfo = &req->r_reply_info;
412 if (le32_to_cpu(rinfo->dir_dir->frag) != frag) {
413 frag = le32_to_cpu(rinfo->dir_dir->frag);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800414 if (!rinfo->hash_order) {
415 fi->next_offset = req->r_readdir_offset;
416 /* adjust ctx->pos to beginning of frag */
417 ctx->pos = ceph_make_fpos(frag,
418 fi->next_offset,
419 false);
420 }
Yan, Zheng81c6aea2013-09-18 09:44:13 +0800421 }
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800422
Yan, Zhengf0494202014-02-27 16:26:24 +0800423 fi->frag = frag;
Sage Weil2817b002009-10-06 11:31:08 -0700424 fi->last_readdir = req;
425
Jeff Laytonbc2de10d2017-02-01 13:49:09 -0500426 if (test_bit(CEPH_MDS_R_DID_PREPOPULATE, &req->r_req_flags)) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800427 fi->readdir_cache_idx = req->r_readdir_cache_idx;
428 if (fi->readdir_cache_idx < 0) {
429 /* preclude from marking dir ordered */
430 fi->dir_ordered_count = 0;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800431 } else if (ceph_frag_is_leftmost(frag) &&
432 fi->next_offset == 2) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800433 /* note dir version at start of readdir so
434 * we can tell if any dentries get dropped */
435 fi->dir_release_count = req->r_dir_release_cnt;
436 fi->dir_ordered_count = req->r_dir_ordered_cnt;
437 }
438 } else {
439 dout("readdir !did_prepopulate");
440 /* disable readdir cache */
441 fi->readdir_cache_idx = -1;
442 /* preclude from marking dir complete */
443 fi->dir_release_count = 0;
444 }
445
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800446 /* note next offset and last dentry name */
447 if (rinfo->dir_nr > 0) {
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800448 struct ceph_mds_reply_dir_entry *rde =
449 rinfo->dir_entries + (rinfo->dir_nr-1);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800450 unsigned next_offset = req->r_reply_info.dir_end ?
451 2 : (fpos_off(rde->offset) + 1);
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800452 err = note_last_dentry(fi, rde->name, rde->name_len,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800453 next_offset);
Sage Weil2817b002009-10-06 11:31:08 -0700454 if (err)
455 return err;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800456 } else if (req->r_reply_info.dir_end) {
457 fi->next_offset = 2;
458 /* keep last name */
Sage Weil2817b002009-10-06 11:31:08 -0700459 }
460 }
461
462 rinfo = &fi->last_readdir->r_reply_info;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800463 dout("readdir frag %x num %d pos %llx chunk first %llx\n",
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800464 fi->frag, rinfo->dir_nr, ctx->pos,
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800465 rinfo->dir_nr ? rinfo->dir_entries[0].offset : 0LL);
Al Viro77acfa22013-05-17 16:52:26 -0400466
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800467 i = 0;
468 /* search start position */
469 if (rinfo->dir_nr > 0) {
470 int step, nr = rinfo->dir_nr;
471 while (nr > 0) {
472 step = nr >> 1;
473 if (rinfo->dir_entries[i + step].offset < ctx->pos) {
474 i += step + 1;
475 nr -= step + 1;
476 } else {
477 nr = step;
478 }
479 }
480 }
481 for (; i < rinfo->dir_nr; i++) {
482 struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
Sage Weil3105c192010-11-18 09:15:07 -0800483 struct ceph_vino vino;
484 ino_t ino;
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800485 u32 ftype;
Sage Weil3105c192010-11-18 09:15:07 -0800486
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800487 BUG_ON(rde->offset < ctx->pos);
488
489 ctx->pos = rde->offset;
490 dout("readdir (%d/%d) -> %llx '%.*s' %p\n",
491 i, rinfo->dir_nr, ctx->pos,
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800492 rde->name_len, rde->name, &rde->inode.in);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800493
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800494 BUG_ON(!rde->inode.in);
495 ftype = le32_to_cpu(rde->inode.in->mode) >> 12;
496 vino.ino = le64_to_cpu(rde->inode.in->ino);
497 vino.snap = le64_to_cpu(rde->inode.in->snapid);
Sage Weil3105c192010-11-18 09:15:07 -0800498 ino = ceph_vino_to_ino(vino);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800499
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800500 if (!dir_emit(ctx, rde->name, rde->name_len,
501 ceph_translate_ino(inode->i_sb, ino), ftype)) {
Sage Weil2817b002009-10-06 11:31:08 -0700502 dout("filldir stopping us...\n");
503 return 0;
504 }
Al Viro77acfa22013-05-17 16:52:26 -0400505 ctx->pos++;
Sage Weil2817b002009-10-06 11:31:08 -0700506 }
507
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800508 ceph_mdsc_put_request(fi->last_readdir);
509 fi->last_readdir = NULL;
510
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800511 if (fi->next_offset > 2) {
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800512 frag = fi->frag;
Sage Weil2817b002009-10-06 11:31:08 -0700513 goto more;
514 }
515
516 /* more frags? */
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800517 if (!ceph_frag_is_rightmost(fi->frag)) {
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800518 frag = ceph_frag_next(fi->frag);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800519 if (is_hash_order(ctx->pos)) {
520 loff_t new_pos = ceph_make_fpos(ceph_frag_value(frag),
521 fi->next_offset, true);
522 if (new_pos > ctx->pos)
523 ctx->pos = new_pos;
524 /* keep last_name */
525 } else {
526 ctx->pos = ceph_make_fpos(frag, fi->next_offset, false);
527 kfree(fi->last_name);
528 fi->last_name = NULL;
529 }
Sage Weil2817b002009-10-06 11:31:08 -0700530 dout("readdir next frag is %x\n", frag);
531 goto more;
532 }
Sage Weil9cfa1092011-07-26 11:26:18 -0700533 fi->flags |= CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700534
535 /*
536 * if dir_release_count still matches the dir, no dentries
537 * were released during the whole readdir, and we should have
538 * the complete dir contents in our cache.
539 */
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800540 if (atomic64_read(&ci->i_release_count) == fi->dir_release_count) {
541 spin_lock(&ci->i_ceph_lock);
542 if (fi->dir_ordered_count == atomic64_read(&ci->i_ordered_count)) {
Yan, Zheng70db4f32014-10-21 18:09:56 -0700543 dout(" marking %p complete and ordered\n", inode);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800544 /* use i_size to track number of entries in
545 * readdir cache */
546 BUG_ON(fi->readdir_cache_idx < 0);
547 i_size_write(inode, fi->readdir_cache_idx *
548 sizeof(struct dentry*));
549 } else {
Yan, Zheng70db4f32014-10-21 18:09:56 -0700550 dout(" marking %p complete\n", inode);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800551 }
Yan, Zheng70db4f32014-10-21 18:09:56 -0700552 __ceph_dir_set_complete(ci, fi->dir_release_count,
553 fi->dir_ordered_count);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800554 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700555 }
Sage Weil2817b002009-10-06 11:31:08 -0700556
Al Viro77acfa22013-05-17 16:52:26 -0400557 dout("readdir %p file %p done.\n", inode, file);
Sage Weil2817b002009-10-06 11:31:08 -0700558 return 0;
559}
560
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800561static void reset_readdir(struct ceph_file_info *fi)
Sage Weil2817b002009-10-06 11:31:08 -0700562{
563 if (fi->last_readdir) {
564 ceph_mdsc_put_request(fi->last_readdir);
565 fi->last_readdir = NULL;
566 }
567 kfree(fi->last_name);
Sage Weila1629c32010-11-11 15:24:06 -0800568 fi->last_name = NULL;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800569 fi->dir_release_count = 0;
570 fi->readdir_cache_idx = -1;
Yan, Zhenga78600e2016-04-27 17:32:34 +0800571 fi->next_offset = 2; /* compensate for . and .. */
Sage Weil9cfa1092011-07-26 11:26:18 -0700572 fi->flags &= ~CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700573}
574
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800575/*
576 * discard buffered readdir content on seekdir(0), or seek to new frag,
577 * or seek prior to current chunk
578 */
579static bool need_reset_readdir(struct ceph_file_info *fi, loff_t new_pos)
580{
581 struct ceph_mds_reply_info_parsed *rinfo;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800582 loff_t chunk_offset;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800583 if (new_pos == 0)
584 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800585 if (is_hash_order(new_pos)) {
586 /* no need to reset last_name for a forward seek when
587 * dentries are sotred in hash order */
Nicolas Iooss0f5aa882016-08-28 18:47:12 +0200588 } else if (fi->frag != fpos_frag(new_pos)) {
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800589 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800590 }
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800591 rinfo = fi->last_readdir ? &fi->last_readdir->r_reply_info : NULL;
592 if (!rinfo || !rinfo->dir_nr)
593 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800594 chunk_offset = rinfo->dir_entries[0].offset;
595 return new_pos < chunk_offset ||
596 is_hash_order(new_pos) != is_hash_order(chunk_offset);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800597}
598
Andrew Morton965c8e52012-12-17 15:59:39 -0800599static loff_t ceph_dir_llseek(struct file *file, loff_t offset, int whence)
Sage Weil2817b002009-10-06 11:31:08 -0700600{
601 struct ceph_file_info *fi = file->private_data;
602 struct inode *inode = file->f_mapping->host;
Sage Weil2817b002009-10-06 11:31:08 -0700603 loff_t retval;
604
Al Viro59551022016-01-22 15:40:57 -0500605 inode_lock(inode);
Josef Bacik06222e42011-07-18 13:21:38 -0400606 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800607 switch (whence) {
Sage Weil2817b002009-10-06 11:31:08 -0700608 case SEEK_CUR:
609 offset += file->f_pos;
Josef Bacik06222e42011-07-18 13:21:38 -0400610 case SEEK_SET:
611 break;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800612 case SEEK_END:
613 retval = -EOPNOTSUPP;
Josef Bacik06222e42011-07-18 13:21:38 -0400614 default:
615 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700616 }
Josef Bacik06222e42011-07-18 13:21:38 -0400617
Yan, Zhengf0494202014-02-27 16:26:24 +0800618 if (offset >= 0) {
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800619 if (need_reset_readdir(fi, offset)) {
620 dout("dir_llseek dropping %p content\n", file);
621 reset_readdir(fi);
622 } else if (is_hash_order(offset) && offset > file->f_pos) {
623 /* for hash offset, we don't know if a forward seek
624 * is within same frag */
625 fi->dir_release_count = 0;
626 fi->readdir_cache_idx = -1;
627 }
628
Sage Weil2817b002009-10-06 11:31:08 -0700629 if (offset != file->f_pos) {
630 file->f_pos = offset;
631 file->f_version = 0;
Sage Weil9cfa1092011-07-26 11:26:18 -0700632 fi->flags &= ~CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700633 }
634 retval = offset;
Sage Weil2817b002009-10-06 11:31:08 -0700635 }
Josef Bacik06222e42011-07-18 13:21:38 -0400636out:
Al Viro59551022016-01-22 15:40:57 -0500637 inode_unlock(inode);
Sage Weil2817b002009-10-06 11:31:08 -0700638 return retval;
639}
640
641/*
Sage Weil468640e2011-07-26 11:28:11 -0700642 * Handle lookups for the hidden .snap directory.
Sage Weil2817b002009-10-06 11:31:08 -0700643 */
Sage Weil468640e2011-07-26 11:28:11 -0700644int ceph_handle_snapdir(struct ceph_mds_request *req,
645 struct dentry *dentry, int err)
Sage Weil2817b002009-10-06 11:31:08 -0700646{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700647 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
David Howells2b0143b2015-03-17 22:25:59 +0000648 struct inode *parent = d_inode(dentry->d_parent); /* we hold i_mutex */
Sage Weil2817b002009-10-06 11:31:08 -0700649
650 /* .snap dir? */
651 if (err == -ENOENT &&
Sage Weil455cec02011-03-03 13:44:35 -0800652 ceph_snap(parent) == CEPH_NOSNAP &&
Sage Weil6b805182009-10-27 11:50:50 -0700653 strcmp(dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700654 fsc->mount_options->snapdir_name) == 0) {
Sage Weil2817b002009-10-06 11:31:08 -0700655 struct inode *inode = ceph_get_snapdir(parent);
Al Viroa4555892014-10-21 20:11:25 -0400656 dout("ENOENT on snapdir %p '%pd', linking to snapdir %p\n",
657 dentry, dentry, inode);
Sage Weil9358c6d2010-03-30 13:54:41 -0700658 BUG_ON(!d_unhashed(dentry));
Sage Weil2817b002009-10-06 11:31:08 -0700659 d_add(dentry, inode);
660 err = 0;
661 }
Sage Weil468640e2011-07-26 11:28:11 -0700662 return err;
663}
Sage Weil2817b002009-10-06 11:31:08 -0700664
Sage Weil468640e2011-07-26 11:28:11 -0700665/*
666 * Figure out final result of a lookup/open request.
667 *
668 * Mainly, make sure we return the final req->r_dentry (if it already
669 * existed) in place of the original VFS-provided dentry when they
670 * differ.
671 *
672 * Gracefully handle the case where the MDS replies with -ENOENT and
673 * no trace (which it may do, at its discretion, e.g., if it doesn't
674 * care to issue a lease on the negative dentry).
675 */
676struct dentry *ceph_finish_lookup(struct ceph_mds_request *req,
677 struct dentry *dentry, int err)
678{
Sage Weil2817b002009-10-06 11:31:08 -0700679 if (err == -ENOENT) {
680 /* no trace? */
681 err = 0;
682 if (!req->r_reply_info.head->is_dentry) {
683 dout("ENOENT and no trace, dentry %p inode %p\n",
David Howells2b0143b2015-03-17 22:25:59 +0000684 dentry, d_inode(dentry));
685 if (d_really_is_positive(dentry)) {
Sage Weil2817b002009-10-06 11:31:08 -0700686 d_drop(dentry);
687 err = -ENOENT;
688 } else {
689 d_add(dentry, NULL);
690 }
691 }
692 }
693 if (err)
694 dentry = ERR_PTR(err);
695 else if (dentry != req->r_dentry)
696 dentry = dget(req->r_dentry); /* we got spliced */
697 else
698 dentry = NULL;
699 return dentry;
700}
701
Zhang Zhuoyu3b33f692016-03-25 05:18:39 -0400702static bool is_root_ceph_dentry(struct inode *inode, struct dentry *dentry)
Sage Weil1d1de9162009-12-02 11:54:25 -0800703{
704 return ceph_ino(inode) == CEPH_INO_ROOT &&
705 strncmp(dentry->d_name.name, ".ceph", 5) == 0;
706}
707
Sage Weil2817b002009-10-06 11:31:08 -0700708/*
709 * Look up a single dir entry. If there is a lookup intent, inform
710 * the MDS so that it gets our 'caps wanted' value in a single op.
711 */
712static struct dentry *ceph_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400713 unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -0700714{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700715 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
716 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700717 struct ceph_mds_request *req;
718 int op;
Yan, Zheng315f2402016-03-07 10:34:50 +0800719 int mask;
Sage Weil2817b002009-10-06 11:31:08 -0700720 int err;
721
Al Viroa4555892014-10-21 20:11:25 -0400722 dout("lookup %p dentry %p '%pd'\n",
723 dir, dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700724
725 if (dentry->d_name.len > NAME_MAX)
726 return ERR_PTR(-ENAMETOOLONG);
727
Sage Weil2817b002009-10-06 11:31:08 -0700728 /* can we conclude ENOENT locally? */
David Howells2b0143b2015-03-17 22:25:59 +0000729 if (d_really_is_negative(dentry)) {
Sage Weil2817b002009-10-06 11:31:08 -0700730 struct ceph_inode_info *ci = ceph_inode(dir);
731 struct ceph_dentry_info *di = ceph_dentry(dentry);
732
Sage Weilbe655592011-11-30 09:47:09 -0800733 spin_lock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700734 dout(" dir %p flags are %d\n", dir, ci->i_ceph_flags);
735 if (strncmp(dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700736 fsc->mount_options->snapdir_name,
Sage Weil2817b002009-10-06 11:31:08 -0700737 dentry->d_name.len) &&
Sage Weil1d1de9162009-12-02 11:54:25 -0800738 !is_root_ceph_dentry(dir, dentry) &&
Yan, Zhenge2c3de02015-03-04 16:05:04 +0800739 ceph_test_mount_opt(fsc, DCACHE) &&
Yan, Zheng2f276c52013-03-13 19:44:32 +0800740 __ceph_dir_is_complete(ci) &&
Sage Weil2817b002009-10-06 11:31:08 -0700741 (__ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1))) {
Sage Weilbe655592011-11-30 09:47:09 -0800742 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700743 dout(" dir %p complete, -ENOENT\n", dir);
744 d_add(dentry, NULL);
745 di->lease_shared_gen = ci->i_shared_gen;
746 return NULL;
747 }
Sage Weilbe655592011-11-30 09:47:09 -0800748 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700749 }
750
751 op = ceph_snap(dir) == CEPH_SNAPDIR ?
752 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
753 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
754 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200755 return ERR_CAST(req);
Sage Weil2817b002009-10-06 11:31:08 -0700756 req->r_dentry = dget(dentry);
757 req->r_num_caps = 2;
Yan, Zheng315f2402016-03-07 10:34:50 +0800758
759 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
760 if (ceph_security_xattr_wanted(dir))
761 mask |= CEPH_CAP_XATTR_SHARED;
762 req->r_args.getattr.mask = cpu_to_le32(mask);
763
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500764 req->r_parent = dir;
765 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700766 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil468640e2011-07-26 11:28:11 -0700767 err = ceph_handle_snapdir(req, dentry, err);
Sage Weil2817b002009-10-06 11:31:08 -0700768 dentry = ceph_finish_lookup(req, dentry, err);
769 ceph_mdsc_put_request(req); /* will dput(dentry) */
770 dout("lookup result=%p\n", dentry);
771 return dentry;
772}
773
774/*
775 * If we do a create but get no trace back from the MDS, follow up with
776 * a lookup (the VFS expects us to link up the provided dentry).
777 */
778int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry)
779{
Al Viro00cd8dd2012-06-10 17:13:09 -0400780 struct dentry *result = ceph_lookup(dir, dentry, 0);
Sage Weil2817b002009-10-06 11:31:08 -0700781
782 if (result && !IS_ERR(result)) {
783 /*
784 * We created the item, then did a lookup, and found
785 * it was already linked to another inode we already
Yan, Zheng4d41cef2015-02-04 15:10:48 +0800786 * had in our cache (and thus got spliced). To not
787 * confuse VFS (especially when inode is a directory),
788 * we don't link our dentry to that inode, return an
789 * error instead.
790 *
791 * This event should be rare and it happens only when
792 * we talk to old MDS. Recent MDS does not send traceless
793 * reply for request that creates new inode.
Sage Weil2817b002009-10-06 11:31:08 -0700794 */
Yan, Zheng5cba3722015-02-02 11:27:56 +0800795 d_drop(result);
Yan, Zheng4d41cef2015-02-04 15:10:48 +0800796 return -ESTALE;
Sage Weil2817b002009-10-06 11:31:08 -0700797 }
798 return PTR_ERR(result);
799}
800
801static int ceph_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -0400802 umode_t mode, dev_t rdev)
Sage Weil2817b002009-10-06 11:31:08 -0700803{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700804 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
805 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700806 struct ceph_mds_request *req;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800807 struct ceph_acls_info acls = {};
Sage Weil2817b002009-10-06 11:31:08 -0700808 int err;
809
810 if (ceph_snap(dir) != CEPH_NOSNAP)
811 return -EROFS;
812
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800813 err = ceph_pre_init_acls(dir, &mode, &acls);
814 if (err < 0)
815 return err;
816
Al Viro1a67aaf2011-07-26 01:52:52 -0400817 dout("mknod in dir %p dentry %p mode 0%ho rdev %d\n",
Sage Weil2817b002009-10-06 11:31:08 -0700818 dir, dentry, mode, rdev);
819 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_MKNOD, USE_AUTH_MDS);
820 if (IS_ERR(req)) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800821 err = PTR_ERR(req);
822 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700823 }
824 req->r_dentry = dget(dentry);
825 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500826 req->r_parent = dir;
827 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700828 req->r_args.mknod.mode = cpu_to_le32(mode);
829 req->r_args.mknod.rdev = cpu_to_le32(rdev);
830 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
831 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800832 if (acls.pagelist) {
833 req->r_pagelist = acls.pagelist;
834 acls.pagelist = NULL;
835 }
Sage Weil2817b002009-10-06 11:31:08 -0700836 err = ceph_mdsc_do_request(mdsc, dir, req);
837 if (!err && !req->r_reply_info.head->is_dentry)
838 err = ceph_handle_notrace_create(dir, dentry);
839 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800840out:
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800841 if (!err)
David Howells2b0143b2015-03-17 22:25:59 +0000842 ceph_init_inode_acls(d_inode(dentry), &acls);
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800843 else
Sage Weil2817b002009-10-06 11:31:08 -0700844 d_drop(dentry);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800845 ceph_release_acls_info(&acls);
Sage Weil2817b002009-10-06 11:31:08 -0700846 return err;
847}
848
Al Viro4acdaf22011-07-26 01:42:34 -0400849static int ceph_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400850 bool excl)
Sage Weil2817b002009-10-06 11:31:08 -0700851{
Miklos Szeredi2d83bde2012-06-05 15:10:25 +0200852 return ceph_mknod(dir, dentry, mode, 0);
Sage Weil2817b002009-10-06 11:31:08 -0700853}
854
855static int ceph_symlink(struct inode *dir, struct dentry *dentry,
856 const char *dest)
857{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700858 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
859 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700860 struct ceph_mds_request *req;
861 int err;
862
863 if (ceph_snap(dir) != CEPH_NOSNAP)
864 return -EROFS;
865
866 dout("symlink in dir %p dentry %p to '%s'\n", dir, dentry, dest);
867 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SYMLINK, USE_AUTH_MDS);
868 if (IS_ERR(req)) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800869 err = PTR_ERR(req);
870 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700871 }
Yan, Zheng687265e2015-06-13 17:27:05 +0800872 req->r_path2 = kstrdup(dest, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400873 if (!req->r_path2) {
874 err = -ENOMEM;
875 ceph_mdsc_put_request(req);
876 goto out;
877 }
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500878 req->r_parent = dir;
879 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700880 req->r_dentry = dget(dentry);
881 req->r_num_caps = 2;
Sage Weil2817b002009-10-06 11:31:08 -0700882 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
883 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
884 err = ceph_mdsc_do_request(mdsc, dir, req);
885 if (!err && !req->r_reply_info.head->is_dentry)
886 err = ceph_handle_notrace_create(dir, dentry);
887 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800888out:
889 if (err)
Sage Weil2817b002009-10-06 11:31:08 -0700890 d_drop(dentry);
891 return err;
892}
893
Al Viro18bb1db2011-07-26 01:41:39 -0400894static int ceph_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Sage Weil2817b002009-10-06 11:31:08 -0700895{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700896 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
897 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700898 struct ceph_mds_request *req;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800899 struct ceph_acls_info acls = {};
Sage Weil2817b002009-10-06 11:31:08 -0700900 int err = -EROFS;
901 int op;
902
903 if (ceph_snap(dir) == CEPH_SNAPDIR) {
904 /* mkdir .snap/foo is a MKSNAP */
905 op = CEPH_MDS_OP_MKSNAP;
Al Viroa4555892014-10-21 20:11:25 -0400906 dout("mksnap dir %p snap '%pd' dn %p\n", dir,
907 dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700908 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
Al Viro18bb1db2011-07-26 01:41:39 -0400909 dout("mkdir dir %p dn %p mode 0%ho\n", dir, dentry, mode);
Sage Weil2817b002009-10-06 11:31:08 -0700910 op = CEPH_MDS_OP_MKDIR;
911 } else {
912 goto out;
913 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800914
915 mode |= S_IFDIR;
916 err = ceph_pre_init_acls(dir, &mode, &acls);
917 if (err < 0)
918 goto out;
919
Sage Weil2817b002009-10-06 11:31:08 -0700920 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
921 if (IS_ERR(req)) {
922 err = PTR_ERR(req);
923 goto out;
924 }
925
926 req->r_dentry = dget(dentry);
927 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500928 req->r_parent = dir;
929 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700930 req->r_args.mkdir.mode = cpu_to_le32(mode);
931 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
932 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800933 if (acls.pagelist) {
934 req->r_pagelist = acls.pagelist;
935 acls.pagelist = NULL;
936 }
Sage Weil2817b002009-10-06 11:31:08 -0700937 err = ceph_mdsc_do_request(mdsc, dir, req);
Yan, Zheng275dd192014-12-10 16:17:31 +0800938 if (!err &&
939 !req->r_reply_info.head->is_target &&
940 !req->r_reply_info.head->is_dentry)
Sage Weil2817b002009-10-06 11:31:08 -0700941 err = ceph_handle_notrace_create(dir, dentry);
942 ceph_mdsc_put_request(req);
943out:
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800944 if (!err)
David Howells2b0143b2015-03-17 22:25:59 +0000945 ceph_init_inode_acls(d_inode(dentry), &acls);
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800946 else
Sage Weil2817b002009-10-06 11:31:08 -0700947 d_drop(dentry);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800948 ceph_release_acls_info(&acls);
Sage Weil2817b002009-10-06 11:31:08 -0700949 return err;
950}
951
952static int ceph_link(struct dentry *old_dentry, struct inode *dir,
953 struct dentry *dentry)
954{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700955 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
956 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700957 struct ceph_mds_request *req;
958 int err;
959
960 if (ceph_snap(dir) != CEPH_NOSNAP)
961 return -EROFS;
962
963 dout("link in dir %p old_dentry %p dentry %p\n", dir,
964 old_dentry, dentry);
965 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_LINK, USE_AUTH_MDS);
966 if (IS_ERR(req)) {
967 d_drop(dentry);
968 return PTR_ERR(req);
969 }
970 req->r_dentry = dget(dentry);
971 req->r_num_caps = 2;
Sage Weil4b58c9b192013-02-05 13:41:23 -0800972 req->r_old_dentry = dget(old_dentry);
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500973 req->r_parent = dir;
974 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700975 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
976 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengad88f232013-07-21 20:25:25 +0800977 /* release LINK_SHARED on source inode (mds will lock it) */
978 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED;
Sage Weil2817b002009-10-06 11:31:08 -0700979 err = ceph_mdsc_do_request(mdsc, dir, req);
Sage Weil70b666c2011-05-27 09:24:26 -0700980 if (err) {
Sage Weil2817b002009-10-06 11:31:08 -0700981 d_drop(dentry);
Sage Weil70b666c2011-05-27 09:24:26 -0700982 } else if (!req->r_reply_info.head->is_dentry) {
David Howells2b0143b2015-03-17 22:25:59 +0000983 ihold(d_inode(old_dentry));
984 d_instantiate(dentry, d_inode(old_dentry));
Sage Weil70b666c2011-05-27 09:24:26 -0700985 }
Sage Weil2817b002009-10-06 11:31:08 -0700986 ceph_mdsc_put_request(req);
987 return err;
988}
989
990/*
991 * For a soon-to-be unlinked file, drop the AUTH_RDCACHE caps. If it
992 * looks like the link count will hit 0, drop any other caps (other
993 * than PIN) we don't specifically want (due to the file still being
994 * open).
995 */
996static int drop_caps_for_unlink(struct inode *inode)
997{
998 struct ceph_inode_info *ci = ceph_inode(inode);
999 int drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
1000
Sage Weilbe655592011-11-30 09:47:09 -08001001 spin_lock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001002 if (inode->i_nlink == 1) {
1003 drop |= ~(__ceph_caps_wanted(ci) | CEPH_CAP_PIN);
1004 ci->i_ceph_flags |= CEPH_I_NODELAY;
1005 }
Sage Weilbe655592011-11-30 09:47:09 -08001006 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001007 return drop;
1008}
1009
1010/*
1011 * rmdir and unlink are differ only by the metadata op code
1012 */
1013static int ceph_unlink(struct inode *dir, struct dentry *dentry)
1014{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001015 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
1016 struct ceph_mds_client *mdsc = fsc->mdsc;
David Howells2b0143b2015-03-17 22:25:59 +00001017 struct inode *inode = d_inode(dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001018 struct ceph_mds_request *req;
1019 int err = -EROFS;
1020 int op;
1021
1022 if (ceph_snap(dir) == CEPH_SNAPDIR) {
1023 /* rmdir .snap/foo is RMSNAP */
Al Viroa4555892014-10-21 20:11:25 -04001024 dout("rmsnap dir %p '%pd' dn %p\n", dir, dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001025 op = CEPH_MDS_OP_RMSNAP;
1026 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
1027 dout("unlink/rmdir dir %p dn %p inode %p\n",
1028 dir, dentry, inode);
David Howellse36cb0b2015-01-29 12:02:35 +00001029 op = d_is_dir(dentry) ?
Sage Weil2817b002009-10-06 11:31:08 -07001030 CEPH_MDS_OP_RMDIR : CEPH_MDS_OP_UNLINK;
1031 } else
1032 goto out;
1033 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
1034 if (IS_ERR(req)) {
1035 err = PTR_ERR(req);
1036 goto out;
1037 }
1038 req->r_dentry = dget(dentry);
1039 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001040 req->r_parent = dir;
1041 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -07001042 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1043 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1044 req->r_inode_drop = drop_caps_for_unlink(inode);
1045 err = ceph_mdsc_do_request(mdsc, dir, req);
1046 if (!err && !req->r_reply_info.head->is_dentry)
1047 d_delete(dentry);
1048 ceph_mdsc_put_request(req);
1049out:
1050 return err;
1051}
1052
1053static int ceph_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001054 struct inode *new_dir, struct dentry *new_dentry,
1055 unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001056{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001057 struct ceph_fs_client *fsc = ceph_sb_to_client(old_dir->i_sb);
1058 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001059 struct ceph_mds_request *req;
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001060 int op = CEPH_MDS_OP_RENAME;
Sage Weil2817b002009-10-06 11:31:08 -07001061 int err;
1062
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001063 if (flags)
1064 return -EINVAL;
1065
Sage Weil2817b002009-10-06 11:31:08 -07001066 if (ceph_snap(old_dir) != ceph_snap(new_dir))
1067 return -EXDEV;
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001068 if (ceph_snap(old_dir) != CEPH_NOSNAP) {
1069 if (old_dir == new_dir && ceph_snap(old_dir) == CEPH_SNAPDIR)
1070 op = CEPH_MDS_OP_RENAMESNAP;
1071 else
1072 return -EROFS;
1073 }
Sage Weil2817b002009-10-06 11:31:08 -07001074 dout("rename dir %p dentry %p to dir %p dentry %p\n",
1075 old_dir, old_dentry, new_dir, new_dentry);
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001076 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
Sage Weil2817b002009-10-06 11:31:08 -07001077 if (IS_ERR(req))
1078 return PTR_ERR(req);
Sage Weil180061a2013-02-05 13:36:05 -08001079 ihold(old_dir);
Sage Weil2817b002009-10-06 11:31:08 -07001080 req->r_dentry = dget(new_dentry);
1081 req->r_num_caps = 2;
1082 req->r_old_dentry = dget(old_dentry);
Sage Weil180061a2013-02-05 13:36:05 -08001083 req->r_old_dentry_dir = old_dir;
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001084 req->r_parent = new_dir;
1085 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -07001086 req->r_old_dentry_drop = CEPH_CAP_FILE_SHARED;
1087 req->r_old_dentry_unless = CEPH_CAP_FILE_EXCL;
1088 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1089 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1090 /* release LINK_RDCACHE on source inode (mds will lock it) */
1091 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED;
David Howells2b0143b2015-03-17 22:25:59 +00001092 if (d_really_is_positive(new_dentry))
1093 req->r_inode_drop = drop_caps_for_unlink(d_inode(new_dentry));
Sage Weil2817b002009-10-06 11:31:08 -07001094 err = ceph_mdsc_do_request(mdsc, old_dir, req);
1095 if (!err && !req->r_reply_info.head->is_dentry) {
1096 /*
1097 * Normally d_move() is done by fill_trace (called by
1098 * do_request, above). If there is no trace, we need
1099 * to do it here.
1100 */
Sage Weilea1409f2010-04-28 16:12:06 -07001101
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001102 /* d_move screws up sibling dentries' offsets */
1103 ceph_dir_clear_complete(old_dir);
1104 ceph_dir_clear_complete(new_dir);
1105
Sage Weil2817b002009-10-06 11:31:08 -07001106 d_move(old_dentry, new_dentry);
Sage Weilea1409f2010-04-28 16:12:06 -07001107
1108 /* ensure target dentry is invalidated, despite
1109 rehashing bug in vfs_rename_dir */
Sage Weil81a6cf22010-05-14 09:35:38 -07001110 ceph_invalidate_dentry_lease(new_dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001111 }
1112 ceph_mdsc_put_request(req);
1113 return err;
1114}
1115
Sage Weil81a6cf22010-05-14 09:35:38 -07001116/*
1117 * Ensure a dentry lease will no longer revalidate.
1118 */
1119void ceph_invalidate_dentry_lease(struct dentry *dentry)
1120{
1121 spin_lock(&dentry->d_lock);
Miklos Szeredi9b16f03c2016-06-22 16:35:04 +02001122 ceph_dentry(dentry)->time = jiffies;
Sage Weil81a6cf22010-05-14 09:35:38 -07001123 ceph_dentry(dentry)->lease_shared_gen = 0;
1124 spin_unlock(&dentry->d_lock);
1125}
Sage Weil2817b002009-10-06 11:31:08 -07001126
1127/*
1128 * Check if dentry lease is valid. If not, delete the lease. Try to
1129 * renew if the least is more than half up.
1130 */
Jeff Layton14fb9c92016-07-01 09:39:20 -04001131static int dentry_lease_is_valid(struct dentry *dentry, unsigned int flags,
1132 struct inode *dir)
Sage Weil2817b002009-10-06 11:31:08 -07001133{
1134 struct ceph_dentry_info *di;
1135 struct ceph_mds_session *s;
1136 int valid = 0;
1137 u32 gen;
1138 unsigned long ttl;
1139 struct ceph_mds_session *session = NULL;
Sage Weil2817b002009-10-06 11:31:08 -07001140 u32 seq = 0;
1141
1142 spin_lock(&dentry->d_lock);
1143 di = ceph_dentry(dentry);
Jeff Layton14fb9c92016-07-01 09:39:20 -04001144 if (di && di->lease_session) {
Sage Weil2817b002009-10-06 11:31:08 -07001145 s = di->lease_session;
Alex Elderd8fb02a2012-01-12 17:48:10 -08001146 spin_lock(&s->s_gen_ttl_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001147 gen = s->s_cap_gen;
1148 ttl = s->s_cap_ttl;
Alex Elderd8fb02a2012-01-12 17:48:10 -08001149 spin_unlock(&s->s_gen_ttl_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001150
1151 if (di->lease_gen == gen &&
Miklos Szeredi9b16f03c2016-06-22 16:35:04 +02001152 time_before(jiffies, di->time) &&
Sage Weil2817b002009-10-06 11:31:08 -07001153 time_before(jiffies, ttl)) {
1154 valid = 1;
1155 if (di->lease_renew_after &&
1156 time_after(jiffies, di->lease_renew_after)) {
Jeff Layton14fb9c92016-07-01 09:39:20 -04001157 /*
1158 * We should renew. If we're in RCU walk mode
1159 * though, we can't do that so just return
1160 * -ECHILD.
1161 */
1162 if (flags & LOOKUP_RCU) {
1163 valid = -ECHILD;
1164 } else {
1165 session = ceph_get_mds_session(s);
1166 seq = di->lease_seq;
1167 di->lease_renew_after = 0;
1168 di->lease_renew_from = jiffies;
1169 }
Sage Weil2817b002009-10-06 11:31:08 -07001170 }
Sage Weil2817b002009-10-06 11:31:08 -07001171 }
1172 }
1173 spin_unlock(&dentry->d_lock);
1174
1175 if (session) {
1176 ceph_mdsc_lease_send_msg(session, dir, dentry,
1177 CEPH_MDS_LEASE_RENEW, seq);
1178 ceph_put_mds_session(session);
1179 }
1180 dout("dentry_lease_is_valid - dentry %p = %d\n", dentry, valid);
1181 return valid;
1182}
1183
1184/*
1185 * Check if directory-wide content lease/cap is valid.
1186 */
1187static int dir_lease_is_valid(struct inode *dir, struct dentry *dentry)
1188{
1189 struct ceph_inode_info *ci = ceph_inode(dir);
1190 struct ceph_dentry_info *di = ceph_dentry(dentry);
1191 int valid = 0;
1192
Sage Weilbe655592011-11-30 09:47:09 -08001193 spin_lock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001194 if (ci->i_shared_gen == di->lease_shared_gen)
1195 valid = __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1);
Sage Weilbe655592011-11-30 09:47:09 -08001196 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001197 dout("dir_lease_is_valid dir %p v%u dentry %p v%u = %d\n",
1198 dir, (unsigned)ci->i_shared_gen, dentry,
1199 (unsigned)di->lease_shared_gen, valid);
1200 return valid;
1201}
1202
1203/*
1204 * Check if cached dentry can be trusted.
1205 */
Al Viro0b728e12012-06-10 16:03:43 -04001206static int ceph_d_revalidate(struct dentry *dentry, unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001207{
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001208 int valid = 0;
Yan, Zheng641235d2016-03-16 16:40:23 +08001209 struct dentry *parent;
Nick Piggin34286d62011-01-07 17:49:57 +11001210 struct inode *dir;
1211
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001212 if (flags & LOOKUP_RCU) {
Seraphime Kirkovski52953d52016-12-26 10:26:34 +01001213 parent = READ_ONCE(dentry->d_parent);
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001214 dir = d_inode_rcu(parent);
1215 if (!dir)
1216 return -ECHILD;
1217 } else {
1218 parent = dget_parent(dentry);
1219 dir = d_inode(parent);
1220 }
Nick Piggin34286d62011-01-07 17:49:57 +11001221
Al Viroa4555892014-10-21 20:11:25 -04001222 dout("d_revalidate %p '%pd' inode %p offset %lld\n", dentry,
David Howells2b0143b2015-03-17 22:25:59 +00001223 dentry, d_inode(dentry), ceph_dentry(dentry)->offset);
Sage Weil2817b002009-10-06 11:31:08 -07001224
1225 /* always trust cached snapped dentries, snapdir dentry */
1226 if (ceph_snap(dir) != CEPH_NOSNAP) {
Al Viroa4555892014-10-21 20:11:25 -04001227 dout("d_revalidate %p '%pd' inode %p is SNAPPED\n", dentry,
David Howells2b0143b2015-03-17 22:25:59 +00001228 dentry, d_inode(dentry));
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001229 valid = 1;
David Howells2b0143b2015-03-17 22:25:59 +00001230 } else if (d_really_is_positive(dentry) &&
1231 ceph_snap(d_inode(dentry)) == CEPH_SNAPDIR) {
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001232 valid = 1;
Jeff Layton14fb9c92016-07-01 09:39:20 -04001233 } else {
1234 valid = dentry_lease_is_valid(dentry, flags, dir);
1235 if (valid == -ECHILD)
1236 return valid;
1237 if (valid || dir_lease_is_valid(dir, dentry)) {
1238 if (d_really_is_positive(dentry))
1239 valid = ceph_is_any_caps(d_inode(dentry));
1240 else
1241 valid = 1;
1242 }
Sage Weil2817b002009-10-06 11:31:08 -07001243 }
Sage Weil2817b002009-10-06 11:31:08 -07001244
Yan, Zheng200fd272016-03-17 14:41:59 +08001245 if (!valid) {
1246 struct ceph_mds_client *mdsc =
1247 ceph_sb_to_client(dir->i_sb)->mdsc;
1248 struct ceph_mds_request *req;
Jeff Layton10976802017-01-12 14:42:38 -05001249 int op, err;
1250 u32 mask;
Yan, Zheng200fd272016-03-17 14:41:59 +08001251
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001252 if (flags & LOOKUP_RCU)
1253 return -ECHILD;
1254
Yan, Zheng200fd272016-03-17 14:41:59 +08001255 op = ceph_snap(dir) == CEPH_SNAPDIR ?
Jeff Layton5eb9f602017-01-30 09:47:25 -05001256 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
Yan, Zheng200fd272016-03-17 14:41:59 +08001257 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
1258 if (!IS_ERR(req)) {
1259 req->r_dentry = dget(dentry);
Jeff Layton5eb9f602017-01-30 09:47:25 -05001260 req->r_num_caps = 2;
1261 req->r_parent = dir;
Yan, Zheng200fd272016-03-17 14:41:59 +08001262
1263 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
1264 if (ceph_security_xattr_wanted(dir))
1265 mask |= CEPH_CAP_XATTR_SHARED;
Jeff Layton10976802017-01-12 14:42:38 -05001266 req->r_args.getattr.mask = cpu_to_le32(mask);
Yan, Zheng200fd272016-03-17 14:41:59 +08001267
Yan, Zheng200fd272016-03-17 14:41:59 +08001268 err = ceph_mdsc_do_request(mdsc, NULL, req);
Jeff Laytonc3f46882016-11-30 15:56:46 -05001269 switch (err) {
1270 case 0:
1271 if (d_really_is_positive(dentry) &&
1272 d_inode(dentry) == req->r_target_inode)
1273 valid = 1;
1274 break;
1275 case -ENOENT:
1276 if (d_really_is_negative(dentry))
1277 valid = 1;
1278 /* Fallthrough */
1279 default:
1280 break;
Yan, Zheng200fd272016-03-17 14:41:59 +08001281 }
1282 ceph_mdsc_put_request(req);
1283 dout("d_revalidate %p lookup result=%d\n",
1284 dentry, err);
1285 }
1286 }
1287
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001288 dout("d_revalidate %p %s\n", dentry, valid ? "valid" : "invalid");
Yan, Zheng9215aee2013-11-30 12:47:41 +08001289 if (valid) {
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001290 ceph_dentry_lru_touch(dentry);
Yan, Zheng9215aee2013-11-30 12:47:41 +08001291 } else {
1292 ceph_dir_clear_complete(dir);
Yan, Zheng9215aee2013-11-30 12:47:41 +08001293 }
Yan, Zheng641235d2016-03-16 16:40:23 +08001294
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001295 if (!(flags & LOOKUP_RCU))
1296 dput(parent);
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001297 return valid;
Sage Weil2817b002009-10-06 11:31:08 -07001298}
1299
1300/*
Sage Weil147851d2011-03-15 14:57:41 -07001301 * Release our ceph_dentry_info.
Sage Weil2817b002009-10-06 11:31:08 -07001302 */
Sage Weil147851d2011-03-15 14:57:41 -07001303static void ceph_d_release(struct dentry *dentry)
Sage Weil2817b002009-10-06 11:31:08 -07001304{
1305 struct ceph_dentry_info *di = ceph_dentry(dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001306
Sage Weil147851d2011-03-15 14:57:41 -07001307 dout("d_release %p\n", dentry);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001308 ceph_dentry_lru_del(dentry);
Jeff Layton5b484a52016-07-01 09:39:20 -04001309
1310 spin_lock(&dentry->d_lock);
1311 dentry->d_fsdata = NULL;
1312 spin_unlock(&dentry->d_lock);
1313
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001314 if (di->lease_session)
1315 ceph_put_mds_session(di->lease_session);
1316 kmem_cache_free(ceph_dentry_cachep, di);
Sage Weil2817b002009-10-06 11:31:08 -07001317}
1318
Sage Weilb58dc412011-03-15 15:53:40 -07001319/*
1320 * When the VFS prunes a dentry from the cache, we need to clear the
1321 * complete flag on the parent directory.
1322 *
1323 * Called under dentry->d_lock.
1324 */
1325static void ceph_d_prune(struct dentry *dentry)
1326{
Sage Weil774ac212011-11-11 09:48:08 -08001327 dout("ceph_d_prune %p\n", dentry);
Sage Weilb58dc412011-03-15 15:53:40 -07001328
1329 /* do we have a valid parent? */
Sage Weil8842b3b2012-06-07 13:43:35 -07001330 if (IS_ROOT(dentry))
Sage Weilb58dc412011-03-15 15:53:40 -07001331 return;
1332
Yan, Zheng2f276c52013-03-13 19:44:32 +08001333 /* if we are not hashed, we don't affect dir's completeness */
Sage Weilb58dc412011-03-15 15:53:40 -07001334 if (d_unhashed(dentry))
1335 return;
1336
Al Viro18fc8ab2016-10-28 21:52:50 -04001337 if (ceph_snap(d_inode(dentry->d_parent)) == CEPH_SNAPDIR)
1338 return;
1339
Sage Weilb58dc412011-03-15 15:53:40 -07001340 /*
1341 * we hold d_lock, so d_parent is stable, and d_fsdata is never
1342 * cleared until d_release
1343 */
David Howells2b0143b2015-03-17 22:25:59 +00001344 ceph_dir_clear_complete(d_inode(dentry->d_parent));
Sage Weilb58dc412011-03-15 15:53:40 -07001345}
Sage Weil2817b002009-10-06 11:31:08 -07001346
1347/*
1348 * read() on a dir. This weird interface hack only works if mounted
1349 * with '-o dirstat'.
1350 */
1351static ssize_t ceph_read_dir(struct file *file, char __user *buf, size_t size,
1352 loff_t *ppos)
1353{
1354 struct ceph_file_info *cf = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -05001355 struct inode *inode = file_inode(file);
Sage Weil2817b002009-10-06 11:31:08 -07001356 struct ceph_inode_info *ci = ceph_inode(inode);
1357 int left;
Sage Weilae598082011-05-12 14:28:05 -07001358 const int bufsize = 1024;
Sage Weil2817b002009-10-06 11:31:08 -07001359
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001360 if (!ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb), DIRSTAT))
Sage Weil2817b002009-10-06 11:31:08 -07001361 return -EISDIR;
1362
1363 if (!cf->dir_info) {
Yan, Zheng687265e2015-06-13 17:27:05 +08001364 cf->dir_info = kmalloc(bufsize, GFP_KERNEL);
Sage Weil2817b002009-10-06 11:31:08 -07001365 if (!cf->dir_info)
1366 return -ENOMEM;
1367 cf->dir_info_len =
Sage Weilae598082011-05-12 14:28:05 -07001368 snprintf(cf->dir_info, bufsize,
Sage Weil2817b002009-10-06 11:31:08 -07001369 "entries: %20lld\n"
1370 " files: %20lld\n"
1371 " subdirs: %20lld\n"
1372 "rentries: %20lld\n"
1373 " rfiles: %20lld\n"
1374 " rsubdirs: %20lld\n"
1375 "rbytes: %20lld\n"
1376 "rctime: %10ld.%09ld\n",
1377 ci->i_files + ci->i_subdirs,
1378 ci->i_files,
1379 ci->i_subdirs,
1380 ci->i_rfiles + ci->i_rsubdirs,
1381 ci->i_rfiles,
1382 ci->i_rsubdirs,
1383 ci->i_rbytes,
1384 (long)ci->i_rctime.tv_sec,
1385 (long)ci->i_rctime.tv_nsec);
1386 }
1387
1388 if (*ppos >= cf->dir_info_len)
1389 return 0;
1390 size = min_t(unsigned, size, cf->dir_info_len-*ppos);
1391 left = copy_to_user(buf, cf->dir_info + *ppos, size);
1392 if (left == size)
1393 return -EFAULT;
1394 *ppos += (size - left);
1395 return size - left;
1396}
1397
1398/*
Sage Weil2817b002009-10-06 11:31:08 -07001399 * We maintain a private dentry LRU.
1400 *
1401 * FIXME: this needs to be changed to a per-mds lru to be useful.
1402 */
1403void ceph_dentry_lru_add(struct dentry *dn)
1404{
1405 struct ceph_dentry_info *di = ceph_dentry(dn);
1406 struct ceph_mds_client *mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001407
Al Viroa4555892014-10-21 20:11:25 -04001408 dout("dentry_lru_add %p %p '%pd'\n", di, dn, dn);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001409 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1410 spin_lock(&mdsc->dentry_lru_lock);
1411 list_add_tail(&di->lru, &mdsc->dentry_lru);
1412 mdsc->num_dentry++;
1413 spin_unlock(&mdsc->dentry_lru_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001414}
1415
1416void ceph_dentry_lru_touch(struct dentry *dn)
1417{
1418 struct ceph_dentry_info *di = ceph_dentry(dn);
1419 struct ceph_mds_client *mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001420
Al Viroa4555892014-10-21 20:11:25 -04001421 dout("dentry_lru_touch %p %p '%pd' (offset %lld)\n", di, dn, dn,
1422 di->offset);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001423 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1424 spin_lock(&mdsc->dentry_lru_lock);
1425 list_move_tail(&di->lru, &mdsc->dentry_lru);
1426 spin_unlock(&mdsc->dentry_lru_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001427}
1428
1429void ceph_dentry_lru_del(struct dentry *dn)
1430{
1431 struct ceph_dentry_info *di = ceph_dentry(dn);
1432 struct ceph_mds_client *mdsc;
1433
Al Viroa4555892014-10-21 20:11:25 -04001434 dout("dentry_lru_del %p %p '%pd'\n", di, dn, dn);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001435 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1436 spin_lock(&mdsc->dentry_lru_lock);
1437 list_del_init(&di->lru);
1438 mdsc->num_dentry--;
1439 spin_unlock(&mdsc->dentry_lru_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001440}
1441
Sage Weil6c0f3af2010-11-16 11:14:34 -08001442/*
1443 * Return name hash for a given dentry. This is dependent on
1444 * the parent directory's hash function.
1445 */
Sage Weile5f86dc2011-07-26 11:30:55 -07001446unsigned ceph_dentry_hash(struct inode *dir, struct dentry *dn)
Sage Weil6c0f3af2010-11-16 11:14:34 -08001447{
Sage Weil6c0f3af2010-11-16 11:14:34 -08001448 struct ceph_inode_info *dci = ceph_inode(dir);
1449
1450 switch (dci->i_dir_layout.dl_dir_hash) {
1451 case 0: /* for backward compat */
1452 case CEPH_STR_HASH_LINUX:
1453 return dn->d_name.hash;
1454
1455 default:
1456 return ceph_str_hash(dci->i_dir_layout.dl_dir_hash,
1457 dn->d_name.name, dn->d_name.len);
1458 }
1459}
1460
Sage Weil2817b002009-10-06 11:31:08 -07001461const struct file_operations ceph_dir_fops = {
1462 .read = ceph_read_dir,
Al Viro77acfa22013-05-17 16:52:26 -04001463 .iterate = ceph_readdir,
Sage Weil2817b002009-10-06 11:31:08 -07001464 .llseek = ceph_dir_llseek,
1465 .open = ceph_open,
1466 .release = ceph_release,
1467 .unlocked_ioctl = ceph_ioctl,
Yan, Zhengda819c82015-05-27 11:19:34 +08001468 .fsync = ceph_fsync,
Sage Weil2817b002009-10-06 11:31:08 -07001469};
1470
Yan, Zheng38c48b52015-01-14 13:46:04 +08001471const struct file_operations ceph_snapdir_fops = {
1472 .iterate = ceph_readdir,
1473 .llseek = ceph_dir_llseek,
1474 .open = ceph_open,
1475 .release = ceph_release,
1476};
1477
Sage Weil2817b002009-10-06 11:31:08 -07001478const struct inode_operations ceph_dir_iops = {
1479 .lookup = ceph_lookup,
1480 .permission = ceph_permission,
1481 .getattr = ceph_getattr,
1482 .setattr = ceph_setattr,
Sage Weil2817b002009-10-06 11:31:08 -07001483 .listxattr = ceph_listxattr,
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001484 .get_acl = ceph_get_acl,
Sage Weil72466d02014-01-29 06:22:25 -08001485 .set_acl = ceph_set_acl,
Sage Weil2817b002009-10-06 11:31:08 -07001486 .mknod = ceph_mknod,
1487 .symlink = ceph_symlink,
1488 .mkdir = ceph_mkdir,
1489 .link = ceph_link,
1490 .unlink = ceph_unlink,
1491 .rmdir = ceph_unlink,
1492 .rename = ceph_rename,
1493 .create = ceph_create,
Miklos Szeredi2d83bde2012-06-05 15:10:25 +02001494 .atomic_open = ceph_atomic_open,
Sage Weil2817b002009-10-06 11:31:08 -07001495};
1496
Yan, Zheng38c48b52015-01-14 13:46:04 +08001497const struct inode_operations ceph_snapdir_iops = {
1498 .lookup = ceph_lookup,
1499 .permission = ceph_permission,
1500 .getattr = ceph_getattr,
1501 .mkdir = ceph_mkdir,
1502 .rmdir = ceph_unlink,
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001503 .rename = ceph_rename,
Yan, Zheng38c48b52015-01-14 13:46:04 +08001504};
1505
Sage Weil52dfb8a2010-08-03 10:25:30 -07001506const struct dentry_operations ceph_dentry_ops = {
Sage Weil2817b002009-10-06 11:31:08 -07001507 .d_revalidate = ceph_d_revalidate,
Sage Weil147851d2011-03-15 14:57:41 -07001508 .d_release = ceph_d_release,
Sage Weilb58dc412011-03-15 15:53:40 -07001509 .d_prune = ceph_d_prune,
Al Viroad5cb122016-10-28 22:05:13 -04001510 .d_init = ceph_d_init,
Sage Weil2817b002009-10-06 11:31:08 -07001511};