blob: 82928cea02095a315fa9c631cbb19218af83774d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/ceph_debug.h>
Sage Weil2817b002009-10-06 11:31:08 -07003
4#include <linux/spinlock.h>
Sage Weil2817b002009-10-06 11:31:08 -07005#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 */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800104static int note_last_dentry(struct ceph_dir_file_info *dfi, const char *name,
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800105 int len, unsigned next_offset)
106{
107 char *buf = kmalloc(len+1, GFP_KERNEL);
108 if (!buf)
109 return -ENOMEM;
Chengguang Xubb48bd42018-03-13 10:42:44 +0800110 kfree(dfi->last_name);
111 dfi->last_name = buf;
112 memcpy(dfi->last_name, name, len);
113 dfi->last_name[len] = 0;
114 dfi->next_offset = next_offset;
115 dout("note_last_dentry '%s'\n", dfi->last_name);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800116 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,
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800175 int shared_gen)
Sage Weil2817b002009-10-06 11:31:08 -0700176{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800177 struct ceph_dir_file_info *dfi = 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, Zheng97aeb6b2017-11-27 10:47:46 +0800186 dout("__dcache_readdir %p v%u at %llx\n", dir, (unsigned)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) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800224 dfi->file_info.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 spin_lock(&dentry->d_lock);
Yan, Zheng5495c2d2017-11-27 11:23:48 +0800234 di = ceph_dentry(dentry);
235 if (d_unhashed(dentry) ||
236 d_really_is_negative(dentry) ||
237 di->lease_shared_gen != shared_gen) {
238 spin_unlock(&dentry->d_lock);
239 dput(dentry);
240 err = -EAGAIN;
241 goto out;
242 }
243 if (fpos_cmp(ctx->pos, di->offset) <= 0) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800244 emit_dentry = true;
Sage Weil2817b002009-10-06 11:31:08 -0700245 }
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800246 spin_unlock(&dentry->d_lock);
247
248 if (emit_dentry) {
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800249 dout(" %llx dentry %p %pd %p\n", di->offset,
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800250 dentry, dentry, d_inode(dentry));
251 ctx->pos = di->offset;
252 if (!dir_emit(ctx, dentry->d_name.name,
253 dentry->d_name.len,
254 ceph_translate_ino(dentry->d_sb,
255 d_inode(dentry)->i_ino),
256 d_inode(dentry)->i_mode >> 12)) {
257 dput(dentry);
258 err = 0;
259 break;
260 }
261 ctx->pos++;
262
263 if (last)
264 dput(last);
265 last = dentry;
266 } else {
267 dput(dentry);
268 }
Sage Weil2817b002009-10-06 11:31:08 -0700269 }
Yan, Zhengc530cd22016-04-28 17:43:35 +0800270out:
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800271 ceph_readdir_cache_release(&cache_ctl);
272 if (last) {
273 int ret;
274 di = ceph_dentry(last);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800275 ret = note_last_dentry(dfi, last->d_name.name, last->d_name.len,
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800276 fpos_off(di->offset) + 1);
277 if (ret < 0)
278 err = ret;
Al Viro77acfa22013-05-17 16:52:26 -0400279 dput(last);
Yan, Zheng84583cfb2017-07-06 11:12:21 +0800280 /* last_name no longer match cache index */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800281 if (dfi->readdir_cache_idx >= 0) {
282 dfi->readdir_cache_idx = -1;
283 dfi->dir_release_count = 0;
Yan, Zheng84583cfb2017-07-06 11:12:21 +0800284 }
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800285 }
Sage Weil2817b002009-10-06 11:31:08 -0700286 return err;
287}
288
Chengguang Xubb48bd42018-03-13 10:42:44 +0800289static bool need_send_readdir(struct ceph_dir_file_info *dfi, loff_t pos)
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800290{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800291 if (!dfi->last_readdir)
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800292 return true;
293 if (is_hash_order(pos))
Chengguang Xubb48bd42018-03-13 10:42:44 +0800294 return !ceph_frag_contains_value(dfi->frag, fpos_hash(pos));
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800295 else
Chengguang Xubb48bd42018-03-13 10:42:44 +0800296 return dfi->frag != fpos_frag(pos);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800297}
298
Al Viro77acfa22013-05-17 16:52:26 -0400299static int ceph_readdir(struct file *file, struct dir_context *ctx)
Sage Weil2817b002009-10-06 11:31:08 -0700300{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800301 struct ceph_dir_file_info *dfi = file->private_data;
Al Viro77acfa22013-05-17 16:52:26 -0400302 struct inode *inode = file_inode(file);
Sage Weil2817b002009-10-06 11:31:08 -0700303 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700304 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
305 struct ceph_mds_client *mdsc = fsc->mdsc;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800306 int i;
Sage Weil2817b002009-10-06 11:31:08 -0700307 int err;
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800308 unsigned frag = -1;
Sage Weil2817b002009-10-06 11:31:08 -0700309 struct ceph_mds_reply_info_parsed *rinfo;
Sage Weil2817b002009-10-06 11:31:08 -0700310
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800311 dout("readdir %p file %p pos %llx\n", inode, file, ctx->pos);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800312 if (dfi->file_info.flags & CEPH_F_ATEND)
Sage Weil2817b002009-10-06 11:31:08 -0700313 return 0;
314
315 /* always start with . and .. */
Al Viro77acfa22013-05-17 16:52:26 -0400316 if (ctx->pos == 0) {
Sage Weil2817b002009-10-06 11:31:08 -0700317 dout("readdir off 0 -> '.'\n");
Al Viro77acfa22013-05-17 16:52:26 -0400318 if (!dir_emit(ctx, ".", 1,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800319 ceph_translate_ino(inode->i_sb, inode->i_ino),
Al Viro77acfa22013-05-17 16:52:26 -0400320 inode->i_mode >> 12))
Sage Weil2817b002009-10-06 11:31:08 -0700321 return 0;
Al Viro77acfa22013-05-17 16:52:26 -0400322 ctx->pos = 1;
Sage Weil2817b002009-10-06 11:31:08 -0700323 }
Al Viro77acfa22013-05-17 16:52:26 -0400324 if (ctx->pos == 1) {
Al Virob5830432014-10-31 01:22:04 -0400325 ino_t ino = parent_ino(file->f_path.dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700326 dout("readdir off 1 -> '..'\n");
Al Viro77acfa22013-05-17 16:52:26 -0400327 if (!dir_emit(ctx, "..", 2,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800328 ceph_translate_ino(inode->i_sb, ino),
Al Viro77acfa22013-05-17 16:52:26 -0400329 inode->i_mode >> 12))
Sage Weil2817b002009-10-06 11:31:08 -0700330 return 0;
Al Viro77acfa22013-05-17 16:52:26 -0400331 ctx->pos = 2;
Sage Weil2817b002009-10-06 11:31:08 -0700332 }
333
334 /* can we use the dcache? */
Sage Weilbe655592011-11-30 09:47:09 -0800335 spin_lock(&ci->i_ceph_lock);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800336 if (ceph_test_mount_opt(fsc, DCACHE) &&
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700337 !ceph_test_mount_opt(fsc, NOASYNCREADDIR) &&
Sage Weila0dff782010-07-22 13:47:21 -0700338 ceph_snap(inode) != CEPH_SNAPDIR &&
Yan, Zheng70db4f32014-10-21 18:09:56 -0700339 __ceph_dir_is_complete_ordered(ci) &&
Sage Weil2817b002009-10-06 11:31:08 -0700340 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1)) {
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800341 int shared_gen = atomic_read(&ci->i_shared_gen);
Sage Weilbe655592011-11-30 09:47:09 -0800342 spin_unlock(&ci->i_ceph_lock);
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800343 err = __dcache_readdir(file, ctx, shared_gen);
Sage Weilefa4c122010-10-18 14:04:31 -0700344 if (err != -EAGAIN)
Sage Weil2817b002009-10-06 11:31:08 -0700345 return err;
Sage Weilefa4c122010-10-18 14:04:31 -0700346 } else {
Sage Weilbe655592011-11-30 09:47:09 -0800347 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700348 }
Sage Weil2817b002009-10-06 11:31:08 -0700349
350 /* proceed with a normal readdir */
Sage Weil2817b002009-10-06 11:31:08 -0700351more:
352 /* do we have the correct frag content buffered? */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800353 if (need_send_readdir(dfi, ctx->pos)) {
Sage Weil2817b002009-10-06 11:31:08 -0700354 struct ceph_mds_request *req;
355 int op = ceph_snap(inode) == CEPH_SNAPDIR ?
356 CEPH_MDS_OP_LSSNAP : CEPH_MDS_OP_READDIR;
357
358 /* discard old result, if any */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800359 if (dfi->last_readdir) {
360 ceph_mdsc_put_request(dfi->last_readdir);
361 dfi->last_readdir = NULL;
Sage Weil393f6622010-03-10 12:03:32 -0800362 }
Sage Weil2817b002009-10-06 11:31:08 -0700363
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800364 if (is_hash_order(ctx->pos)) {
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800365 /* fragtree isn't always accurate. choose frag
366 * based on previous reply when possible. */
367 if (frag == (unsigned)-1)
368 frag = ceph_choose_frag(ci, fpos_hash(ctx->pos),
369 NULL, NULL);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800370 } else {
371 frag = fpos_frag(ctx->pos);
372 }
373
Sage Weil2817b002009-10-06 11:31:08 -0700374 dout("readdir fetching %llx.%llx frag %x offset '%s'\n",
Chengguang Xubb48bd42018-03-13 10:42:44 +0800375 ceph_vinop(inode), frag, dfi->last_name);
Sage Weil2817b002009-10-06 11:31:08 -0700376 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
377 if (IS_ERR(req))
378 return PTR_ERR(req);
Yan, Zheng54008392014-03-29 13:41:15 +0800379 err = ceph_alloc_readdir_reply_buffer(req, inode);
380 if (err) {
381 ceph_mdsc_put_request(req);
382 return err;
383 }
Sage Weil2817b002009-10-06 11:31:08 -0700384 /* hints to request -> mds selection code */
385 req->r_direct_mode = USE_AUTH_MDS;
Yan, Zheng5d37ca12017-07-26 12:48:08 +0800386 if (op == CEPH_MDS_OP_READDIR) {
387 req->r_direct_hash = ceph_frag_value(frag);
388 __set_bit(CEPH_MDS_R_DIRECT_IS_HASH, &req->r_req_flags);
Yan, Zheng87c91a92017-11-23 18:28:16 +0800389 req->r_inode_drop = CEPH_CAP_FILE_EXCL;
Yan, Zheng5d37ca12017-07-26 12:48:08 +0800390 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800391 if (dfi->last_name) {
392 req->r_path2 = kstrdup(dfi->last_name, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400393 if (!req->r_path2) {
394 ceph_mdsc_put_request(req);
395 return -ENOMEM;
396 }
Yan, Zheng79162542017-04-05 12:54:05 -0400397 } else if (is_hash_order(ctx->pos)) {
398 req->r_args.readdir.offset_hash =
399 cpu_to_le32(fpos_hash(ctx->pos));
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400400 }
Yan, Zheng79162542017-04-05 12:54:05 -0400401
Chengguang Xubb48bd42018-03-13 10:42:44 +0800402 req->r_dir_release_cnt = dfi->dir_release_count;
403 req->r_dir_ordered_cnt = dfi->dir_ordered_count;
404 req->r_readdir_cache_idx = dfi->readdir_cache_idx;
405 req->r_readdir_offset = dfi->next_offset;
Sage Weil2817b002009-10-06 11:31:08 -0700406 req->r_args.readdir.frag = cpu_to_le32(frag);
Yan, Zheng956d39d2016-04-27 17:48:30 +0800407 req->r_args.readdir.flags =
408 cpu_to_le16(CEPH_READDIR_REPLY_BITFLAGS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400409
410 req->r_inode = inode;
411 ihold(inode);
412 req->r_dentry = dget(file->f_path.dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700413 err = ceph_mdsc_do_request(mdsc, NULL, req);
414 if (err < 0) {
415 ceph_mdsc_put_request(req);
416 return err;
417 }
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800418 dout("readdir got and parsed readdir result=%d on "
419 "frag %x, end=%d, complete=%d, hash_order=%d\n",
420 err, frag,
Sage Weil2817b002009-10-06 11:31:08 -0700421 (int)req->r_reply_info.dir_end,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800422 (int)req->r_reply_info.dir_complete,
423 (int)req->r_reply_info.hash_order);
Sage Weil2817b002009-10-06 11:31:08 -0700424
Yan, Zheng81c6aea2013-09-18 09:44:13 +0800425 rinfo = &req->r_reply_info;
426 if (le32_to_cpu(rinfo->dir_dir->frag) != frag) {
427 frag = le32_to_cpu(rinfo->dir_dir->frag);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800428 if (!rinfo->hash_order) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800429 dfi->next_offset = req->r_readdir_offset;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800430 /* adjust ctx->pos to beginning of frag */
431 ctx->pos = ceph_make_fpos(frag,
Chengguang Xubb48bd42018-03-13 10:42:44 +0800432 dfi->next_offset,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800433 false);
434 }
Yan, Zheng81c6aea2013-09-18 09:44:13 +0800435 }
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800436
Chengguang Xubb48bd42018-03-13 10:42:44 +0800437 dfi->frag = frag;
438 dfi->last_readdir = req;
Sage Weil2817b002009-10-06 11:31:08 -0700439
Jeff Laytonbc2de10d2017-02-01 13:49:09 -0500440 if (test_bit(CEPH_MDS_R_DID_PREPOPULATE, &req->r_req_flags)) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800441 dfi->readdir_cache_idx = req->r_readdir_cache_idx;
442 if (dfi->readdir_cache_idx < 0) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800443 /* preclude from marking dir ordered */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800444 dfi->dir_ordered_count = 0;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800445 } else if (ceph_frag_is_leftmost(frag) &&
Chengguang Xubb48bd42018-03-13 10:42:44 +0800446 dfi->next_offset == 2) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800447 /* note dir version at start of readdir so
448 * we can tell if any dentries get dropped */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800449 dfi->dir_release_count = req->r_dir_release_cnt;
450 dfi->dir_ordered_count = req->r_dir_ordered_cnt;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800451 }
452 } else {
Chengguang Xu4c069a52018-01-30 16:29:17 +0800453 dout("readdir !did_prepopulate\n");
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800454 /* disable readdir cache */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800455 dfi->readdir_cache_idx = -1;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800456 /* preclude from marking dir complete */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800457 dfi->dir_release_count = 0;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800458 }
459
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800460 /* note next offset and last dentry name */
461 if (rinfo->dir_nr > 0) {
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800462 struct ceph_mds_reply_dir_entry *rde =
463 rinfo->dir_entries + (rinfo->dir_nr-1);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800464 unsigned next_offset = req->r_reply_info.dir_end ?
465 2 : (fpos_off(rde->offset) + 1);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800466 err = note_last_dentry(dfi, rde->name, rde->name_len,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800467 next_offset);
Sage Weil2817b002009-10-06 11:31:08 -0700468 if (err)
469 return err;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800470 } else if (req->r_reply_info.dir_end) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800471 dfi->next_offset = 2;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800472 /* keep last name */
Sage Weil2817b002009-10-06 11:31:08 -0700473 }
474 }
475
Chengguang Xubb48bd42018-03-13 10:42:44 +0800476 rinfo = &dfi->last_readdir->r_reply_info;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800477 dout("readdir frag %x num %d pos %llx chunk first %llx\n",
Chengguang Xubb48bd42018-03-13 10:42:44 +0800478 dfi->frag, rinfo->dir_nr, ctx->pos,
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800479 rinfo->dir_nr ? rinfo->dir_entries[0].offset : 0LL);
Al Viro77acfa22013-05-17 16:52:26 -0400480
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800481 i = 0;
482 /* search start position */
483 if (rinfo->dir_nr > 0) {
484 int step, nr = rinfo->dir_nr;
485 while (nr > 0) {
486 step = nr >> 1;
487 if (rinfo->dir_entries[i + step].offset < ctx->pos) {
488 i += step + 1;
489 nr -= step + 1;
490 } else {
491 nr = step;
492 }
493 }
494 }
495 for (; i < rinfo->dir_nr; i++) {
496 struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
Sage Weil3105c192010-11-18 09:15:07 -0800497 struct ceph_vino vino;
498 ino_t ino;
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800499 u32 ftype;
Sage Weil3105c192010-11-18 09:15:07 -0800500
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800501 BUG_ON(rde->offset < ctx->pos);
502
503 ctx->pos = rde->offset;
504 dout("readdir (%d/%d) -> %llx '%.*s' %p\n",
505 i, rinfo->dir_nr, ctx->pos,
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800506 rde->name_len, rde->name, &rde->inode.in);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800507
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800508 BUG_ON(!rde->inode.in);
509 ftype = le32_to_cpu(rde->inode.in->mode) >> 12;
510 vino.ino = le64_to_cpu(rde->inode.in->ino);
511 vino.snap = le64_to_cpu(rde->inode.in->snapid);
Sage Weil3105c192010-11-18 09:15:07 -0800512 ino = ceph_vino_to_ino(vino);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800513
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800514 if (!dir_emit(ctx, rde->name, rde->name_len,
515 ceph_translate_ino(inode->i_sb, ino), ftype)) {
Sage Weil2817b002009-10-06 11:31:08 -0700516 dout("filldir stopping us...\n");
517 return 0;
518 }
Al Viro77acfa22013-05-17 16:52:26 -0400519 ctx->pos++;
Sage Weil2817b002009-10-06 11:31:08 -0700520 }
521
Chengguang Xubb48bd42018-03-13 10:42:44 +0800522 ceph_mdsc_put_request(dfi->last_readdir);
523 dfi->last_readdir = NULL;
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800524
Chengguang Xubb48bd42018-03-13 10:42:44 +0800525 if (dfi->next_offset > 2) {
526 frag = dfi->frag;
Sage Weil2817b002009-10-06 11:31:08 -0700527 goto more;
528 }
529
530 /* more frags? */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800531 if (!ceph_frag_is_rightmost(dfi->frag)) {
532 frag = ceph_frag_next(dfi->frag);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800533 if (is_hash_order(ctx->pos)) {
534 loff_t new_pos = ceph_make_fpos(ceph_frag_value(frag),
Chengguang Xubb48bd42018-03-13 10:42:44 +0800535 dfi->next_offset, true);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800536 if (new_pos > ctx->pos)
537 ctx->pos = new_pos;
538 /* keep last_name */
539 } else {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800540 ctx->pos = ceph_make_fpos(frag, dfi->next_offset,
541 false);
542 kfree(dfi->last_name);
543 dfi->last_name = NULL;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800544 }
Sage Weil2817b002009-10-06 11:31:08 -0700545 dout("readdir next frag is %x\n", frag);
546 goto more;
547 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800548 dfi->file_info.flags |= CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700549
550 /*
551 * if dir_release_count still matches the dir, no dentries
552 * were released during the whole readdir, and we should have
553 * the complete dir contents in our cache.
554 */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800555 if (atomic64_read(&ci->i_release_count) ==
556 dfi->dir_release_count) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800557 spin_lock(&ci->i_ceph_lock);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800558 if (dfi->dir_ordered_count ==
559 atomic64_read(&ci->i_ordered_count)) {
Yan, Zheng70db4f32014-10-21 18:09:56 -0700560 dout(" marking %p complete and ordered\n", inode);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800561 /* use i_size to track number of entries in
562 * readdir cache */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800563 BUG_ON(dfi->readdir_cache_idx < 0);
564 i_size_write(inode, dfi->readdir_cache_idx *
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800565 sizeof(struct dentry*));
566 } else {
Yan, Zheng70db4f32014-10-21 18:09:56 -0700567 dout(" marking %p complete\n", inode);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800568 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800569 __ceph_dir_set_complete(ci, dfi->dir_release_count,
570 dfi->dir_ordered_count);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800571 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700572 }
Sage Weil2817b002009-10-06 11:31:08 -0700573
Al Viro77acfa22013-05-17 16:52:26 -0400574 dout("readdir %p file %p done.\n", inode, file);
Sage Weil2817b002009-10-06 11:31:08 -0700575 return 0;
576}
577
Chengguang Xubb48bd42018-03-13 10:42:44 +0800578static void reset_readdir(struct ceph_dir_file_info *dfi)
Sage Weil2817b002009-10-06 11:31:08 -0700579{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800580 if (dfi->last_readdir) {
581 ceph_mdsc_put_request(dfi->last_readdir);
582 dfi->last_readdir = NULL;
Sage Weil2817b002009-10-06 11:31:08 -0700583 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800584 kfree(dfi->last_name);
585 dfi->last_name = NULL;
586 dfi->dir_release_count = 0;
587 dfi->readdir_cache_idx = -1;
588 dfi->next_offset = 2; /* compensate for . and .. */
589 dfi->file_info.flags &= ~CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700590}
591
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800592/*
593 * discard buffered readdir content on seekdir(0), or seek to new frag,
594 * or seek prior to current chunk
595 */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800596static bool need_reset_readdir(struct ceph_dir_file_info *dfi, loff_t new_pos)
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800597{
598 struct ceph_mds_reply_info_parsed *rinfo;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800599 loff_t chunk_offset;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800600 if (new_pos == 0)
601 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800602 if (is_hash_order(new_pos)) {
603 /* no need to reset last_name for a forward seek when
604 * dentries are sotred in hash order */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800605 } else if (dfi->frag != fpos_frag(new_pos)) {
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800606 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800607 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800608 rinfo = dfi->last_readdir ? &dfi->last_readdir->r_reply_info : NULL;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800609 if (!rinfo || !rinfo->dir_nr)
610 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800611 chunk_offset = rinfo->dir_entries[0].offset;
612 return new_pos < chunk_offset ||
613 is_hash_order(new_pos) != is_hash_order(chunk_offset);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800614}
615
Andrew Morton965c8e52012-12-17 15:59:39 -0800616static loff_t ceph_dir_llseek(struct file *file, loff_t offset, int whence)
Sage Weil2817b002009-10-06 11:31:08 -0700617{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800618 struct ceph_dir_file_info *dfi = file->private_data;
Sage Weil2817b002009-10-06 11:31:08 -0700619 struct inode *inode = file->f_mapping->host;
Sage Weil2817b002009-10-06 11:31:08 -0700620 loff_t retval;
621
Al Viro59551022016-01-22 15:40:57 -0500622 inode_lock(inode);
Josef Bacik06222e42011-07-18 13:21:38 -0400623 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800624 switch (whence) {
Sage Weil2817b002009-10-06 11:31:08 -0700625 case SEEK_CUR:
626 offset += file->f_pos;
Josef Bacik06222e42011-07-18 13:21:38 -0400627 case SEEK_SET:
628 break;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800629 case SEEK_END:
630 retval = -EOPNOTSUPP;
Josef Bacik06222e42011-07-18 13:21:38 -0400631 default:
632 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700633 }
Josef Bacik06222e42011-07-18 13:21:38 -0400634
Yan, Zhengf0494202014-02-27 16:26:24 +0800635 if (offset >= 0) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800636 if (need_reset_readdir(dfi, offset)) {
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800637 dout("dir_llseek dropping %p content\n", file);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800638 reset_readdir(dfi);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800639 } else if (is_hash_order(offset) && offset > file->f_pos) {
640 /* for hash offset, we don't know if a forward seek
641 * is within same frag */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800642 dfi->dir_release_count = 0;
643 dfi->readdir_cache_idx = -1;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800644 }
645
Sage Weil2817b002009-10-06 11:31:08 -0700646 if (offset != file->f_pos) {
647 file->f_pos = offset;
648 file->f_version = 0;
Chengguang Xubb48bd42018-03-13 10:42:44 +0800649 dfi->file_info.flags &= ~CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700650 }
651 retval = offset;
Sage Weil2817b002009-10-06 11:31:08 -0700652 }
Josef Bacik06222e42011-07-18 13:21:38 -0400653out:
Al Viro59551022016-01-22 15:40:57 -0500654 inode_unlock(inode);
Sage Weil2817b002009-10-06 11:31:08 -0700655 return retval;
656}
657
658/*
Sage Weil468640e2011-07-26 11:28:11 -0700659 * Handle lookups for the hidden .snap directory.
Sage Weil2817b002009-10-06 11:31:08 -0700660 */
Sage Weil468640e2011-07-26 11:28:11 -0700661int ceph_handle_snapdir(struct ceph_mds_request *req,
662 struct dentry *dentry, int err)
Sage Weil2817b002009-10-06 11:31:08 -0700663{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700664 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
David Howells2b0143b2015-03-17 22:25:59 +0000665 struct inode *parent = d_inode(dentry->d_parent); /* we hold i_mutex */
Sage Weil2817b002009-10-06 11:31:08 -0700666
667 /* .snap dir? */
668 if (err == -ENOENT &&
Sage Weil455cec02011-03-03 13:44:35 -0800669 ceph_snap(parent) == CEPH_NOSNAP &&
Sage Weil6b805182009-10-27 11:50:50 -0700670 strcmp(dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700671 fsc->mount_options->snapdir_name) == 0) {
Sage Weil2817b002009-10-06 11:31:08 -0700672 struct inode *inode = ceph_get_snapdir(parent);
Al Viroa4555892014-10-21 20:11:25 -0400673 dout("ENOENT on snapdir %p '%pd', linking to snapdir %p\n",
674 dentry, dentry, inode);
Sage Weil9358c6d2010-03-30 13:54:41 -0700675 BUG_ON(!d_unhashed(dentry));
Sage Weil2817b002009-10-06 11:31:08 -0700676 d_add(dentry, inode);
677 err = 0;
678 }
Sage Weil468640e2011-07-26 11:28:11 -0700679 return err;
680}
Sage Weil2817b002009-10-06 11:31:08 -0700681
Sage Weil468640e2011-07-26 11:28:11 -0700682/*
683 * Figure out final result of a lookup/open request.
684 *
685 * Mainly, make sure we return the final req->r_dentry (if it already
686 * existed) in place of the original VFS-provided dentry when they
687 * differ.
688 *
689 * Gracefully handle the case where the MDS replies with -ENOENT and
690 * no trace (which it may do, at its discretion, e.g., if it doesn't
691 * care to issue a lease on the negative dentry).
692 */
693struct dentry *ceph_finish_lookup(struct ceph_mds_request *req,
694 struct dentry *dentry, int err)
695{
Sage Weil2817b002009-10-06 11:31:08 -0700696 if (err == -ENOENT) {
697 /* no trace? */
698 err = 0;
699 if (!req->r_reply_info.head->is_dentry) {
700 dout("ENOENT and no trace, dentry %p inode %p\n",
David Howells2b0143b2015-03-17 22:25:59 +0000701 dentry, d_inode(dentry));
702 if (d_really_is_positive(dentry)) {
Sage Weil2817b002009-10-06 11:31:08 -0700703 d_drop(dentry);
704 err = -ENOENT;
705 } else {
706 d_add(dentry, NULL);
707 }
708 }
709 }
710 if (err)
711 dentry = ERR_PTR(err);
712 else if (dentry != req->r_dentry)
713 dentry = dget(req->r_dentry); /* we got spliced */
714 else
715 dentry = NULL;
716 return dentry;
717}
718
Zhang Zhuoyu3b33f692016-03-25 05:18:39 -0400719static bool is_root_ceph_dentry(struct inode *inode, struct dentry *dentry)
Sage Weil1d1de9162009-12-02 11:54:25 -0800720{
721 return ceph_ino(inode) == CEPH_INO_ROOT &&
722 strncmp(dentry->d_name.name, ".ceph", 5) == 0;
723}
724
Sage Weil2817b002009-10-06 11:31:08 -0700725/*
726 * Look up a single dir entry. If there is a lookup intent, inform
727 * the MDS so that it gets our 'caps wanted' value in a single op.
728 */
729static struct dentry *ceph_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400730 unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -0700731{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700732 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
733 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700734 struct ceph_mds_request *req;
735 int op;
Yan, Zheng315f2402016-03-07 10:34:50 +0800736 int mask;
Sage Weil2817b002009-10-06 11:31:08 -0700737 int err;
738
Al Viroa4555892014-10-21 20:11:25 -0400739 dout("lookup %p dentry %p '%pd'\n",
740 dir, dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700741
742 if (dentry->d_name.len > NAME_MAX)
743 return ERR_PTR(-ENAMETOOLONG);
744
Sage Weil2817b002009-10-06 11:31:08 -0700745 /* can we conclude ENOENT locally? */
David Howells2b0143b2015-03-17 22:25:59 +0000746 if (d_really_is_negative(dentry)) {
Sage Weil2817b002009-10-06 11:31:08 -0700747 struct ceph_inode_info *ci = ceph_inode(dir);
748 struct ceph_dentry_info *di = ceph_dentry(dentry);
749
Sage Weilbe655592011-11-30 09:47:09 -0800750 spin_lock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700751 dout(" dir %p flags are %d\n", dir, ci->i_ceph_flags);
752 if (strncmp(dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700753 fsc->mount_options->snapdir_name,
Sage Weil2817b002009-10-06 11:31:08 -0700754 dentry->d_name.len) &&
Sage Weil1d1de9162009-12-02 11:54:25 -0800755 !is_root_ceph_dentry(dir, dentry) &&
Yan, Zhenge2c3de02015-03-04 16:05:04 +0800756 ceph_test_mount_opt(fsc, DCACHE) &&
Yan, Zheng2f276c52013-03-13 19:44:32 +0800757 __ceph_dir_is_complete(ci) &&
Sage Weil2817b002009-10-06 11:31:08 -0700758 (__ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1))) {
Sage Weilbe655592011-11-30 09:47:09 -0800759 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700760 dout(" dir %p complete, -ENOENT\n", dir);
761 d_add(dentry, NULL);
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800762 di->lease_shared_gen = atomic_read(&ci->i_shared_gen);
Sage Weil2817b002009-10-06 11:31:08 -0700763 return NULL;
764 }
Sage Weilbe655592011-11-30 09:47:09 -0800765 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700766 }
767
768 op = ceph_snap(dir) == CEPH_SNAPDIR ?
769 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
770 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
771 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200772 return ERR_CAST(req);
Sage Weil2817b002009-10-06 11:31:08 -0700773 req->r_dentry = dget(dentry);
774 req->r_num_caps = 2;
Yan, Zheng315f2402016-03-07 10:34:50 +0800775
776 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
777 if (ceph_security_xattr_wanted(dir))
778 mask |= CEPH_CAP_XATTR_SHARED;
779 req->r_args.getattr.mask = cpu_to_le32(mask);
780
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500781 req->r_parent = dir;
782 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700783 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil468640e2011-07-26 11:28:11 -0700784 err = ceph_handle_snapdir(req, dentry, err);
Sage Weil2817b002009-10-06 11:31:08 -0700785 dentry = ceph_finish_lookup(req, dentry, err);
786 ceph_mdsc_put_request(req); /* will dput(dentry) */
787 dout("lookup result=%p\n", dentry);
788 return dentry;
789}
790
791/*
792 * If we do a create but get no trace back from the MDS, follow up with
793 * a lookup (the VFS expects us to link up the provided dentry).
794 */
795int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry)
796{
Al Viro00cd8dd2012-06-10 17:13:09 -0400797 struct dentry *result = ceph_lookup(dir, dentry, 0);
Sage Weil2817b002009-10-06 11:31:08 -0700798
799 if (result && !IS_ERR(result)) {
800 /*
801 * We created the item, then did a lookup, and found
802 * it was already linked to another inode we already
Yan, Zheng4d41cef2015-02-04 15:10:48 +0800803 * had in our cache (and thus got spliced). To not
804 * confuse VFS (especially when inode is a directory),
805 * we don't link our dentry to that inode, return an
806 * error instead.
807 *
808 * This event should be rare and it happens only when
809 * we talk to old MDS. Recent MDS does not send traceless
810 * reply for request that creates new inode.
Sage Weil2817b002009-10-06 11:31:08 -0700811 */
Yan, Zheng5cba3722015-02-02 11:27:56 +0800812 d_drop(result);
Yan, Zheng4d41cef2015-02-04 15:10:48 +0800813 return -ESTALE;
Sage Weil2817b002009-10-06 11:31:08 -0700814 }
815 return PTR_ERR(result);
816}
817
818static int ceph_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -0400819 umode_t mode, dev_t rdev)
Sage Weil2817b002009-10-06 11:31:08 -0700820{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700821 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
822 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700823 struct ceph_mds_request *req;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800824 struct ceph_acls_info acls = {};
Sage Weil2817b002009-10-06 11:31:08 -0700825 int err;
826
827 if (ceph_snap(dir) != CEPH_NOSNAP)
828 return -EROFS;
829
Chengguang Xu04598712018-07-09 22:17:30 +0800830 if (ceph_quota_is_max_files_exceeded(dir)) {
831 err = -EDQUOT;
832 goto out;
833 }
Luis Henriquesb7a29212018-01-05 10:47:19 +0000834
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800835 err = ceph_pre_init_acls(dir, &mode, &acls);
836 if (err < 0)
Chengguang Xu04598712018-07-09 22:17:30 +0800837 goto out;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800838
Al Viro1a67aaf2011-07-26 01:52:52 -0400839 dout("mknod in dir %p dentry %p mode 0%ho rdev %d\n",
Sage Weil2817b002009-10-06 11:31:08 -0700840 dir, dentry, mode, rdev);
841 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_MKNOD, USE_AUTH_MDS);
842 if (IS_ERR(req)) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800843 err = PTR_ERR(req);
844 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700845 }
846 req->r_dentry = dget(dentry);
847 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500848 req->r_parent = dir;
849 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700850 req->r_args.mknod.mode = cpu_to_le32(mode);
851 req->r_args.mknod.rdev = cpu_to_le32(rdev);
Yan, Zheng222b7f92017-11-23 17:47:15 +0800852 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -0700853 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800854 if (acls.pagelist) {
855 req->r_pagelist = acls.pagelist;
856 acls.pagelist = NULL;
857 }
Sage Weil2817b002009-10-06 11:31:08 -0700858 err = ceph_mdsc_do_request(mdsc, dir, req);
859 if (!err && !req->r_reply_info.head->is_dentry)
860 err = ceph_handle_notrace_create(dir, dentry);
861 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800862out:
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800863 if (!err)
David Howells2b0143b2015-03-17 22:25:59 +0000864 ceph_init_inode_acls(d_inode(dentry), &acls);
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800865 else
Sage Weil2817b002009-10-06 11:31:08 -0700866 d_drop(dentry);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800867 ceph_release_acls_info(&acls);
Sage Weil2817b002009-10-06 11:31:08 -0700868 return err;
869}
870
Al Viro4acdaf22011-07-26 01:42:34 -0400871static int ceph_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400872 bool excl)
Sage Weil2817b002009-10-06 11:31:08 -0700873{
Miklos Szeredi2d83bde2012-06-05 15:10:25 +0200874 return ceph_mknod(dir, dentry, mode, 0);
Sage Weil2817b002009-10-06 11:31:08 -0700875}
876
877static int ceph_symlink(struct inode *dir, struct dentry *dentry,
878 const char *dest)
879{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700880 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
881 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700882 struct ceph_mds_request *req;
883 int err;
884
885 if (ceph_snap(dir) != CEPH_NOSNAP)
886 return -EROFS;
887
Chengguang Xu67fcd152018-07-09 22:17:31 +0800888 if (ceph_quota_is_max_files_exceeded(dir)) {
889 err = -EDQUOT;
890 goto out;
891 }
Luis Henriquesb7a29212018-01-05 10:47:19 +0000892
Sage Weil2817b002009-10-06 11:31:08 -0700893 dout("symlink in dir %p dentry %p to '%s'\n", dir, dentry, dest);
894 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SYMLINK, USE_AUTH_MDS);
895 if (IS_ERR(req)) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800896 err = PTR_ERR(req);
897 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700898 }
Yan, Zheng687265e2015-06-13 17:27:05 +0800899 req->r_path2 = kstrdup(dest, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400900 if (!req->r_path2) {
901 err = -ENOMEM;
902 ceph_mdsc_put_request(req);
903 goto out;
904 }
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500905 req->r_parent = dir;
906 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700907 req->r_dentry = dget(dentry);
908 req->r_num_caps = 2;
Yan, Zheng222b7f92017-11-23 17:47:15 +0800909 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -0700910 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
911 err = ceph_mdsc_do_request(mdsc, dir, req);
912 if (!err && !req->r_reply_info.head->is_dentry)
913 err = ceph_handle_notrace_create(dir, dentry);
914 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800915out:
916 if (err)
Sage Weil2817b002009-10-06 11:31:08 -0700917 d_drop(dentry);
918 return err;
919}
920
Al Viro18bb1db2011-07-26 01:41:39 -0400921static int ceph_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Sage Weil2817b002009-10-06 11:31:08 -0700922{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700923 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
924 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700925 struct ceph_mds_request *req;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800926 struct ceph_acls_info acls = {};
Sage Weil2817b002009-10-06 11:31:08 -0700927 int err = -EROFS;
928 int op;
929
930 if (ceph_snap(dir) == CEPH_SNAPDIR) {
931 /* mkdir .snap/foo is a MKSNAP */
932 op = CEPH_MDS_OP_MKSNAP;
Al Viroa4555892014-10-21 20:11:25 -0400933 dout("mksnap dir %p snap '%pd' dn %p\n", dir,
934 dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700935 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
Al Viro18bb1db2011-07-26 01:41:39 -0400936 dout("mkdir dir %p dn %p mode 0%ho\n", dir, dentry, mode);
Sage Weil2817b002009-10-06 11:31:08 -0700937 op = CEPH_MDS_OP_MKDIR;
938 } else {
939 goto out;
940 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800941
Yan, Zheng25963662018-01-12 16:26:17 +0800942 if (op == CEPH_MDS_OP_MKDIR &&
943 ceph_quota_is_max_files_exceeded(dir)) {
Luis Henriquesb7a29212018-01-05 10:47:19 +0000944 err = -EDQUOT;
945 goto out;
946 }
947
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800948 mode |= S_IFDIR;
949 err = ceph_pre_init_acls(dir, &mode, &acls);
950 if (err < 0)
951 goto out;
952
Sage Weil2817b002009-10-06 11:31:08 -0700953 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
954 if (IS_ERR(req)) {
955 err = PTR_ERR(req);
956 goto out;
957 }
958
959 req->r_dentry = dget(dentry);
960 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500961 req->r_parent = dir;
962 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700963 req->r_args.mkdir.mode = cpu_to_le32(mode);
Yan, Zheng222b7f92017-11-23 17:47:15 +0800964 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -0700965 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800966 if (acls.pagelist) {
967 req->r_pagelist = acls.pagelist;
968 acls.pagelist = NULL;
969 }
Sage Weil2817b002009-10-06 11:31:08 -0700970 err = ceph_mdsc_do_request(mdsc, dir, req);
Yan, Zheng275dd192014-12-10 16:17:31 +0800971 if (!err &&
972 !req->r_reply_info.head->is_target &&
973 !req->r_reply_info.head->is_dentry)
Sage Weil2817b002009-10-06 11:31:08 -0700974 err = ceph_handle_notrace_create(dir, dentry);
975 ceph_mdsc_put_request(req);
976out:
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800977 if (!err)
David Howells2b0143b2015-03-17 22:25:59 +0000978 ceph_init_inode_acls(d_inode(dentry), &acls);
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800979 else
Sage Weil2817b002009-10-06 11:31:08 -0700980 d_drop(dentry);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800981 ceph_release_acls_info(&acls);
Sage Weil2817b002009-10-06 11:31:08 -0700982 return err;
983}
984
985static int ceph_link(struct dentry *old_dentry, struct inode *dir,
986 struct dentry *dentry)
987{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700988 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
989 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700990 struct ceph_mds_request *req;
991 int err;
992
993 if (ceph_snap(dir) != CEPH_NOSNAP)
994 return -EROFS;
995
996 dout("link in dir %p old_dentry %p dentry %p\n", dir,
997 old_dentry, dentry);
998 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_LINK, USE_AUTH_MDS);
999 if (IS_ERR(req)) {
1000 d_drop(dentry);
1001 return PTR_ERR(req);
1002 }
1003 req->r_dentry = dget(dentry);
1004 req->r_num_caps = 2;
Sage Weil4b58c9b192013-02-05 13:41:23 -08001005 req->r_old_dentry = dget(old_dentry);
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001006 req->r_parent = dir;
1007 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -07001008 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1009 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengad88f232013-07-21 20:25:25 +08001010 /* release LINK_SHARED on source inode (mds will lock it) */
Yan, Zhengd19a0b52017-11-23 17:59:13 +08001011 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -07001012 err = ceph_mdsc_do_request(mdsc, dir, req);
Sage Weil70b666c2011-05-27 09:24:26 -07001013 if (err) {
Sage Weil2817b002009-10-06 11:31:08 -07001014 d_drop(dentry);
Sage Weil70b666c2011-05-27 09:24:26 -07001015 } else if (!req->r_reply_info.head->is_dentry) {
David Howells2b0143b2015-03-17 22:25:59 +00001016 ihold(d_inode(old_dentry));
1017 d_instantiate(dentry, d_inode(old_dentry));
Sage Weil70b666c2011-05-27 09:24:26 -07001018 }
Sage Weil2817b002009-10-06 11:31:08 -07001019 ceph_mdsc_put_request(req);
1020 return err;
1021}
1022
1023/*
Sage Weil2817b002009-10-06 11:31:08 -07001024 * rmdir and unlink are differ only by the metadata op code
1025 */
1026static int ceph_unlink(struct inode *dir, struct dentry *dentry)
1027{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001028 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
1029 struct ceph_mds_client *mdsc = fsc->mdsc;
David Howells2b0143b2015-03-17 22:25:59 +00001030 struct inode *inode = d_inode(dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001031 struct ceph_mds_request *req;
1032 int err = -EROFS;
1033 int op;
1034
1035 if (ceph_snap(dir) == CEPH_SNAPDIR) {
1036 /* rmdir .snap/foo is RMSNAP */
Al Viroa4555892014-10-21 20:11:25 -04001037 dout("rmsnap dir %p '%pd' dn %p\n", dir, dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001038 op = CEPH_MDS_OP_RMSNAP;
1039 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
1040 dout("unlink/rmdir dir %p dn %p inode %p\n",
1041 dir, dentry, inode);
David Howellse36cb0b2015-01-29 12:02:35 +00001042 op = d_is_dir(dentry) ?
Sage Weil2817b002009-10-06 11:31:08 -07001043 CEPH_MDS_OP_RMDIR : CEPH_MDS_OP_UNLINK;
1044 } else
1045 goto out;
1046 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
1047 if (IS_ERR(req)) {
1048 err = PTR_ERR(req);
1049 goto out;
1050 }
1051 req->r_dentry = dget(dentry);
1052 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001053 req->r_parent = dir;
1054 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -07001055 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1056 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Zhi Zhang6ef0bc62018-01-24 21:24:33 +08001057 req->r_inode_drop = ceph_drop_caps_for_unlink(inode);
Sage Weil2817b002009-10-06 11:31:08 -07001058 err = ceph_mdsc_do_request(mdsc, dir, req);
1059 if (!err && !req->r_reply_info.head->is_dentry)
1060 d_delete(dentry);
1061 ceph_mdsc_put_request(req);
1062out:
1063 return err;
1064}
1065
1066static int ceph_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001067 struct inode *new_dir, struct dentry *new_dentry,
1068 unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001069{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001070 struct ceph_fs_client *fsc = ceph_sb_to_client(old_dir->i_sb);
1071 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001072 struct ceph_mds_request *req;
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001073 int op = CEPH_MDS_OP_RENAME;
Sage Weil2817b002009-10-06 11:31:08 -07001074 int err;
1075
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001076 if (flags)
1077 return -EINVAL;
1078
Sage Weil2817b002009-10-06 11:31:08 -07001079 if (ceph_snap(old_dir) != ceph_snap(new_dir))
1080 return -EXDEV;
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001081 if (ceph_snap(old_dir) != CEPH_NOSNAP) {
1082 if (old_dir == new_dir && ceph_snap(old_dir) == CEPH_SNAPDIR)
1083 op = CEPH_MDS_OP_RENAMESNAP;
1084 else
1085 return -EROFS;
1086 }
Luis Henriquescafe21a2018-01-05 10:47:20 +00001087 /* don't allow cross-quota renames */
1088 if ((old_dir != new_dir) &&
1089 (!ceph_quota_is_same_realm(old_dir, new_dir)))
1090 return -EXDEV;
1091
Sage Weil2817b002009-10-06 11:31:08 -07001092 dout("rename dir %p dentry %p to dir %p dentry %p\n",
1093 old_dir, old_dentry, new_dir, new_dentry);
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001094 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
Sage Weil2817b002009-10-06 11:31:08 -07001095 if (IS_ERR(req))
1096 return PTR_ERR(req);
Sage Weil180061a2013-02-05 13:36:05 -08001097 ihold(old_dir);
Sage Weil2817b002009-10-06 11:31:08 -07001098 req->r_dentry = dget(new_dentry);
1099 req->r_num_caps = 2;
1100 req->r_old_dentry = dget(old_dentry);
Sage Weil180061a2013-02-05 13:36:05 -08001101 req->r_old_dentry_dir = old_dir;
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001102 req->r_parent = new_dir;
1103 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -07001104 req->r_old_dentry_drop = CEPH_CAP_FILE_SHARED;
1105 req->r_old_dentry_unless = CEPH_CAP_FILE_EXCL;
1106 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1107 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1108 /* release LINK_RDCACHE on source inode (mds will lock it) */
Yan, Zhengd19a0b52017-11-23 17:59:13 +08001109 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
Zhi Zhang6ef0bc62018-01-24 21:24:33 +08001110 if (d_really_is_positive(new_dentry)) {
1111 req->r_inode_drop =
1112 ceph_drop_caps_for_unlink(d_inode(new_dentry));
1113 }
Sage Weil2817b002009-10-06 11:31:08 -07001114 err = ceph_mdsc_do_request(mdsc, old_dir, req);
1115 if (!err && !req->r_reply_info.head->is_dentry) {
1116 /*
1117 * Normally d_move() is done by fill_trace (called by
1118 * do_request, above). If there is no trace, we need
1119 * to do it here.
1120 */
1121 d_move(old_dentry, new_dentry);
1122 }
1123 ceph_mdsc_put_request(req);
1124 return err;
1125}
1126
Sage Weil81a6cf22010-05-14 09:35:38 -07001127/*
1128 * Ensure a dentry lease will no longer revalidate.
1129 */
1130void ceph_invalidate_dentry_lease(struct dentry *dentry)
1131{
1132 spin_lock(&dentry->d_lock);
Miklos Szeredi9b16f03c2016-06-22 16:35:04 +02001133 ceph_dentry(dentry)->time = jiffies;
Sage Weil81a6cf22010-05-14 09:35:38 -07001134 ceph_dentry(dentry)->lease_shared_gen = 0;
1135 spin_unlock(&dentry->d_lock);
1136}
Sage Weil2817b002009-10-06 11:31:08 -07001137
1138/*
1139 * Check if dentry lease is valid. If not, delete the lease. Try to
1140 * renew if the least is more than half up.
1141 */
Jeff Layton14fb9c92016-07-01 09:39:20 -04001142static int dentry_lease_is_valid(struct dentry *dentry, unsigned int flags,
1143 struct inode *dir)
Sage Weil2817b002009-10-06 11:31:08 -07001144{
1145 struct ceph_dentry_info *di;
1146 struct ceph_mds_session *s;
1147 int valid = 0;
1148 u32 gen;
1149 unsigned long ttl;
1150 struct ceph_mds_session *session = NULL;
Sage Weil2817b002009-10-06 11:31:08 -07001151 u32 seq = 0;
1152
1153 spin_lock(&dentry->d_lock);
1154 di = ceph_dentry(dentry);
Jeff Layton14fb9c92016-07-01 09:39:20 -04001155 if (di && di->lease_session) {
Sage Weil2817b002009-10-06 11:31:08 -07001156 s = di->lease_session;
Alex Elderd8fb02a2012-01-12 17:48:10 -08001157 spin_lock(&s->s_gen_ttl_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001158 gen = s->s_cap_gen;
1159 ttl = s->s_cap_ttl;
Alex Elderd8fb02a2012-01-12 17:48:10 -08001160 spin_unlock(&s->s_gen_ttl_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001161
1162 if (di->lease_gen == gen &&
Miklos Szeredi9b16f03c2016-06-22 16:35:04 +02001163 time_before(jiffies, di->time) &&
Sage Weil2817b002009-10-06 11:31:08 -07001164 time_before(jiffies, ttl)) {
1165 valid = 1;
1166 if (di->lease_renew_after &&
1167 time_after(jiffies, di->lease_renew_after)) {
Jeff Layton14fb9c92016-07-01 09:39:20 -04001168 /*
1169 * We should renew. If we're in RCU walk mode
1170 * though, we can't do that so just return
1171 * -ECHILD.
1172 */
1173 if (flags & LOOKUP_RCU) {
1174 valid = -ECHILD;
1175 } else {
1176 session = ceph_get_mds_session(s);
1177 seq = di->lease_seq;
1178 di->lease_renew_after = 0;
1179 di->lease_renew_from = jiffies;
1180 }
Sage Weil2817b002009-10-06 11:31:08 -07001181 }
Sage Weil2817b002009-10-06 11:31:08 -07001182 }
1183 }
1184 spin_unlock(&dentry->d_lock);
1185
1186 if (session) {
1187 ceph_mdsc_lease_send_msg(session, dir, dentry,
1188 CEPH_MDS_LEASE_RENEW, seq);
1189 ceph_put_mds_session(session);
1190 }
1191 dout("dentry_lease_is_valid - dentry %p = %d\n", dentry, valid);
1192 return valid;
1193}
1194
1195/*
1196 * Check if directory-wide content lease/cap is valid.
1197 */
1198static int dir_lease_is_valid(struct inode *dir, struct dentry *dentry)
1199{
1200 struct ceph_inode_info *ci = ceph_inode(dir);
1201 struct ceph_dentry_info *di = ceph_dentry(dentry);
1202 int valid = 0;
1203
Sage Weilbe655592011-11-30 09:47:09 -08001204 spin_lock(&ci->i_ceph_lock);
Yan, Zheng97aeb6b2017-11-27 10:47:46 +08001205 if (atomic_read(&ci->i_shared_gen) == di->lease_shared_gen)
Sage Weil2817b002009-10-06 11:31:08 -07001206 valid = __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1);
Sage Weilbe655592011-11-30 09:47:09 -08001207 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001208 dout("dir_lease_is_valid dir %p v%u dentry %p v%u = %d\n",
Yan, Zheng97aeb6b2017-11-27 10:47:46 +08001209 dir, (unsigned)atomic_read(&ci->i_shared_gen),
1210 dentry, (unsigned)di->lease_shared_gen, valid);
Sage Weil2817b002009-10-06 11:31:08 -07001211 return valid;
1212}
1213
1214/*
1215 * Check if cached dentry can be trusted.
1216 */
Al Viro0b728e12012-06-10 16:03:43 -04001217static int ceph_d_revalidate(struct dentry *dentry, unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001218{
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001219 int valid = 0;
Yan, Zheng641235d2016-03-16 16:40:23 +08001220 struct dentry *parent;
Nick Piggin34286d62011-01-07 17:49:57 +11001221 struct inode *dir;
1222
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001223 if (flags & LOOKUP_RCU) {
Seraphime Kirkovski52953d52016-12-26 10:26:34 +01001224 parent = READ_ONCE(dentry->d_parent);
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001225 dir = d_inode_rcu(parent);
1226 if (!dir)
1227 return -ECHILD;
1228 } else {
1229 parent = dget_parent(dentry);
1230 dir = d_inode(parent);
1231 }
Nick Piggin34286d62011-01-07 17:49:57 +11001232
Al Viroa4555892014-10-21 20:11:25 -04001233 dout("d_revalidate %p '%pd' inode %p offset %lld\n", dentry,
David Howells2b0143b2015-03-17 22:25:59 +00001234 dentry, d_inode(dentry), ceph_dentry(dentry)->offset);
Sage Weil2817b002009-10-06 11:31:08 -07001235
1236 /* always trust cached snapped dentries, snapdir dentry */
1237 if (ceph_snap(dir) != CEPH_NOSNAP) {
Al Viroa4555892014-10-21 20:11:25 -04001238 dout("d_revalidate %p '%pd' inode %p is SNAPPED\n", dentry,
David Howells2b0143b2015-03-17 22:25:59 +00001239 dentry, d_inode(dentry));
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001240 valid = 1;
David Howells2b0143b2015-03-17 22:25:59 +00001241 } else if (d_really_is_positive(dentry) &&
1242 ceph_snap(d_inode(dentry)) == CEPH_SNAPDIR) {
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001243 valid = 1;
Jeff Layton14fb9c92016-07-01 09:39:20 -04001244 } else {
1245 valid = dentry_lease_is_valid(dentry, flags, dir);
1246 if (valid == -ECHILD)
1247 return valid;
1248 if (valid || dir_lease_is_valid(dir, dentry)) {
1249 if (d_really_is_positive(dentry))
1250 valid = ceph_is_any_caps(d_inode(dentry));
1251 else
1252 valid = 1;
1253 }
Sage Weil2817b002009-10-06 11:31:08 -07001254 }
Sage Weil2817b002009-10-06 11:31:08 -07001255
Yan, Zheng200fd272016-03-17 14:41:59 +08001256 if (!valid) {
1257 struct ceph_mds_client *mdsc =
1258 ceph_sb_to_client(dir->i_sb)->mdsc;
1259 struct ceph_mds_request *req;
Jeff Layton10976802017-01-12 14:42:38 -05001260 int op, err;
1261 u32 mask;
Yan, Zheng200fd272016-03-17 14:41:59 +08001262
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001263 if (flags & LOOKUP_RCU)
1264 return -ECHILD;
1265
Yan, Zheng200fd272016-03-17 14:41:59 +08001266 op = ceph_snap(dir) == CEPH_SNAPDIR ?
Jeff Layton5eb9f602017-01-30 09:47:25 -05001267 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
Yan, Zheng200fd272016-03-17 14:41:59 +08001268 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
1269 if (!IS_ERR(req)) {
1270 req->r_dentry = dget(dentry);
Jeff Layton5eb9f602017-01-30 09:47:25 -05001271 req->r_num_caps = 2;
1272 req->r_parent = dir;
Yan, Zheng200fd272016-03-17 14:41:59 +08001273
1274 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
1275 if (ceph_security_xattr_wanted(dir))
1276 mask |= CEPH_CAP_XATTR_SHARED;
Jeff Layton10976802017-01-12 14:42:38 -05001277 req->r_args.getattr.mask = cpu_to_le32(mask);
Yan, Zheng200fd272016-03-17 14:41:59 +08001278
Yan, Zheng200fd272016-03-17 14:41:59 +08001279 err = ceph_mdsc_do_request(mdsc, NULL, req);
Jeff Laytonc3f46882016-11-30 15:56:46 -05001280 switch (err) {
1281 case 0:
1282 if (d_really_is_positive(dentry) &&
1283 d_inode(dentry) == req->r_target_inode)
1284 valid = 1;
1285 break;
1286 case -ENOENT:
1287 if (d_really_is_negative(dentry))
1288 valid = 1;
1289 /* Fallthrough */
1290 default:
1291 break;
Yan, Zheng200fd272016-03-17 14:41:59 +08001292 }
1293 ceph_mdsc_put_request(req);
1294 dout("d_revalidate %p lookup result=%d\n",
1295 dentry, err);
1296 }
1297 }
1298
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001299 dout("d_revalidate %p %s\n", dentry, valid ? "valid" : "invalid");
Yan, Zheng9215aee2013-11-30 12:47:41 +08001300 if (valid) {
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001301 ceph_dentry_lru_touch(dentry);
Yan, Zheng9215aee2013-11-30 12:47:41 +08001302 } else {
1303 ceph_dir_clear_complete(dir);
Yan, Zheng9215aee2013-11-30 12:47:41 +08001304 }
Yan, Zheng641235d2016-03-16 16:40:23 +08001305
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001306 if (!(flags & LOOKUP_RCU))
1307 dput(parent);
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001308 return valid;
Sage Weil2817b002009-10-06 11:31:08 -07001309}
1310
1311/*
Sage Weil147851d2011-03-15 14:57:41 -07001312 * Release our ceph_dentry_info.
Sage Weil2817b002009-10-06 11:31:08 -07001313 */
Sage Weil147851d2011-03-15 14:57:41 -07001314static void ceph_d_release(struct dentry *dentry)
Sage Weil2817b002009-10-06 11:31:08 -07001315{
1316 struct ceph_dentry_info *di = ceph_dentry(dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001317
Sage Weil147851d2011-03-15 14:57:41 -07001318 dout("d_release %p\n", dentry);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001319 ceph_dentry_lru_del(dentry);
Jeff Layton5b484a52016-07-01 09:39:20 -04001320
1321 spin_lock(&dentry->d_lock);
1322 dentry->d_fsdata = NULL;
1323 spin_unlock(&dentry->d_lock);
1324
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001325 if (di->lease_session)
1326 ceph_put_mds_session(di->lease_session);
1327 kmem_cache_free(ceph_dentry_cachep, di);
Sage Weil2817b002009-10-06 11:31:08 -07001328}
1329
Sage Weilb58dc412011-03-15 15:53:40 -07001330/*
1331 * When the VFS prunes a dentry from the cache, we need to clear the
1332 * complete flag on the parent directory.
1333 *
1334 * Called under dentry->d_lock.
1335 */
1336static void ceph_d_prune(struct dentry *dentry)
1337{
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001338 struct ceph_inode_info *dir_ci;
1339 struct ceph_dentry_info *di;
1340
1341 dout("ceph_d_prune %pd %p\n", dentry, dentry);
Sage Weilb58dc412011-03-15 15:53:40 -07001342
1343 /* do we have a valid parent? */
Sage Weil8842b3b2012-06-07 13:43:35 -07001344 if (IS_ROOT(dentry))
Sage Weilb58dc412011-03-15 15:53:40 -07001345 return;
1346
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001347 /* we hold d_lock, so d_parent is stable */
1348 dir_ci = ceph_inode(d_inode(dentry->d_parent));
1349 if (dir_ci->i_vino.snap == CEPH_SNAPDIR)
Sage Weilb58dc412011-03-15 15:53:40 -07001350 return;
1351
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001352 /* who calls d_delete() should also disable dcache readdir */
1353 if (d_really_is_negative(dentry))
Al Viro18fc8ab2016-10-28 21:52:50 -04001354 return;
1355
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001356 /* d_fsdata does not get cleared until d_release */
1357 if (!d_unhashed(dentry)) {
1358 __ceph_dir_clear_complete(dir_ci);
1359 return;
1360 }
1361
1362 /* Disable dcache readdir just in case that someone called d_drop()
1363 * or d_invalidate(), but MDS didn't revoke CEPH_CAP_FILE_SHARED
1364 * properly (dcache readdir is still enabled) */
1365 di = ceph_dentry(dentry);
1366 if (di->offset > 0 &&
1367 di->lease_shared_gen == atomic_read(&dir_ci->i_shared_gen))
1368 __ceph_dir_clear_ordered(dir_ci);
Sage Weilb58dc412011-03-15 15:53:40 -07001369}
Sage Weil2817b002009-10-06 11:31:08 -07001370
1371/*
1372 * read() on a dir. This weird interface hack only works if mounted
1373 * with '-o dirstat'.
1374 */
1375static ssize_t ceph_read_dir(struct file *file, char __user *buf, size_t size,
1376 loff_t *ppos)
1377{
Chengguang Xubb48bd42018-03-13 10:42:44 +08001378 struct ceph_dir_file_info *dfi = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -05001379 struct inode *inode = file_inode(file);
Sage Weil2817b002009-10-06 11:31:08 -07001380 struct ceph_inode_info *ci = ceph_inode(inode);
1381 int left;
Sage Weilae598082011-05-12 14:28:05 -07001382 const int bufsize = 1024;
Sage Weil2817b002009-10-06 11:31:08 -07001383
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001384 if (!ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb), DIRSTAT))
Sage Weil2817b002009-10-06 11:31:08 -07001385 return -EISDIR;
1386
Chengguang Xubb48bd42018-03-13 10:42:44 +08001387 if (!dfi->dir_info) {
1388 dfi->dir_info = kmalloc(bufsize, GFP_KERNEL);
1389 if (!dfi->dir_info)
Sage Weil2817b002009-10-06 11:31:08 -07001390 return -ENOMEM;
Chengguang Xubb48bd42018-03-13 10:42:44 +08001391 dfi->dir_info_len =
1392 snprintf(dfi->dir_info, bufsize,
Sage Weil2817b002009-10-06 11:31:08 -07001393 "entries: %20lld\n"
1394 " files: %20lld\n"
1395 " subdirs: %20lld\n"
1396 "rentries: %20lld\n"
1397 " rfiles: %20lld\n"
1398 " rsubdirs: %20lld\n"
1399 "rbytes: %20lld\n"
Arnd Bergmann9bbeab42018-07-13 22:18:36 +02001400 "rctime: %10lld.%09ld\n",
Sage Weil2817b002009-10-06 11:31:08 -07001401 ci->i_files + ci->i_subdirs,
1402 ci->i_files,
1403 ci->i_subdirs,
1404 ci->i_rfiles + ci->i_rsubdirs,
1405 ci->i_rfiles,
1406 ci->i_rsubdirs,
1407 ci->i_rbytes,
Arnd Bergmann9bbeab42018-07-13 22:18:36 +02001408 ci->i_rctime.tv_sec,
1409 ci->i_rctime.tv_nsec);
Sage Weil2817b002009-10-06 11:31:08 -07001410 }
1411
Chengguang Xubb48bd42018-03-13 10:42:44 +08001412 if (*ppos >= dfi->dir_info_len)
Sage Weil2817b002009-10-06 11:31:08 -07001413 return 0;
Chengguang Xubb48bd42018-03-13 10:42:44 +08001414 size = min_t(unsigned, size, dfi->dir_info_len-*ppos);
1415 left = copy_to_user(buf, dfi->dir_info + *ppos, size);
Sage Weil2817b002009-10-06 11:31:08 -07001416 if (left == size)
1417 return -EFAULT;
1418 *ppos += (size - left);
1419 return size - left;
1420}
1421
1422/*
Sage Weil2817b002009-10-06 11:31:08 -07001423 * We maintain a private dentry LRU.
1424 *
1425 * FIXME: this needs to be changed to a per-mds lru to be useful.
1426 */
1427void ceph_dentry_lru_add(struct dentry *dn)
1428{
1429 struct ceph_dentry_info *di = ceph_dentry(dn);
1430 struct ceph_mds_client *mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001431
Al Viroa4555892014-10-21 20:11:25 -04001432 dout("dentry_lru_add %p %p '%pd'\n", di, dn, dn);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001433 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1434 spin_lock(&mdsc->dentry_lru_lock);
1435 list_add_tail(&di->lru, &mdsc->dentry_lru);
1436 mdsc->num_dentry++;
1437 spin_unlock(&mdsc->dentry_lru_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001438}
1439
1440void ceph_dentry_lru_touch(struct dentry *dn)
1441{
1442 struct ceph_dentry_info *di = ceph_dentry(dn);
1443 struct ceph_mds_client *mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001444
Al Viroa4555892014-10-21 20:11:25 -04001445 dout("dentry_lru_touch %p %p '%pd' (offset %lld)\n", di, dn, dn,
1446 di->offset);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001447 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1448 spin_lock(&mdsc->dentry_lru_lock);
1449 list_move_tail(&di->lru, &mdsc->dentry_lru);
1450 spin_unlock(&mdsc->dentry_lru_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001451}
1452
1453void ceph_dentry_lru_del(struct dentry *dn)
1454{
1455 struct ceph_dentry_info *di = ceph_dentry(dn);
1456 struct ceph_mds_client *mdsc;
1457
Al Viroa4555892014-10-21 20:11:25 -04001458 dout("dentry_lru_del %p %p '%pd'\n", di, dn, dn);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001459 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1460 spin_lock(&mdsc->dentry_lru_lock);
1461 list_del_init(&di->lru);
1462 mdsc->num_dentry--;
1463 spin_unlock(&mdsc->dentry_lru_lock);
Sage Weil2817b002009-10-06 11:31:08 -07001464}
1465
Sage Weil6c0f3af2010-11-16 11:14:34 -08001466/*
1467 * Return name hash for a given dentry. This is dependent on
1468 * the parent directory's hash function.
1469 */
Sage Weile5f86dc2011-07-26 11:30:55 -07001470unsigned ceph_dentry_hash(struct inode *dir, struct dentry *dn)
Sage Weil6c0f3af2010-11-16 11:14:34 -08001471{
Sage Weil6c0f3af2010-11-16 11:14:34 -08001472 struct ceph_inode_info *dci = ceph_inode(dir);
1473
1474 switch (dci->i_dir_layout.dl_dir_hash) {
1475 case 0: /* for backward compat */
1476 case CEPH_STR_HASH_LINUX:
1477 return dn->d_name.hash;
1478
1479 default:
1480 return ceph_str_hash(dci->i_dir_layout.dl_dir_hash,
1481 dn->d_name.name, dn->d_name.len);
1482 }
1483}
1484
Sage Weil2817b002009-10-06 11:31:08 -07001485const struct file_operations ceph_dir_fops = {
1486 .read = ceph_read_dir,
Al Viro77acfa22013-05-17 16:52:26 -04001487 .iterate = ceph_readdir,
Sage Weil2817b002009-10-06 11:31:08 -07001488 .llseek = ceph_dir_llseek,
1489 .open = ceph_open,
1490 .release = ceph_release,
1491 .unlocked_ioctl = ceph_ioctl,
Yan, Zhengda819c82015-05-27 11:19:34 +08001492 .fsync = ceph_fsync,
Yan, Zheng597817d2018-05-15 11:30:43 +08001493 .lock = ceph_lock,
1494 .flock = ceph_flock,
Sage Weil2817b002009-10-06 11:31:08 -07001495};
1496
Yan, Zheng38c48b52015-01-14 13:46:04 +08001497const struct file_operations ceph_snapdir_fops = {
1498 .iterate = ceph_readdir,
1499 .llseek = ceph_dir_llseek,
1500 .open = ceph_open,
1501 .release = ceph_release,
1502};
1503
Sage Weil2817b002009-10-06 11:31:08 -07001504const struct inode_operations ceph_dir_iops = {
1505 .lookup = ceph_lookup,
1506 .permission = ceph_permission,
1507 .getattr = ceph_getattr,
1508 .setattr = ceph_setattr,
Sage Weil2817b002009-10-06 11:31:08 -07001509 .listxattr = ceph_listxattr,
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001510 .get_acl = ceph_get_acl,
Sage Weil72466d02014-01-29 06:22:25 -08001511 .set_acl = ceph_set_acl,
Sage Weil2817b002009-10-06 11:31:08 -07001512 .mknod = ceph_mknod,
1513 .symlink = ceph_symlink,
1514 .mkdir = ceph_mkdir,
1515 .link = ceph_link,
1516 .unlink = ceph_unlink,
1517 .rmdir = ceph_unlink,
1518 .rename = ceph_rename,
1519 .create = ceph_create,
Miklos Szeredi2d83bde2012-06-05 15:10:25 +02001520 .atomic_open = ceph_atomic_open,
Sage Weil2817b002009-10-06 11:31:08 -07001521};
1522
Yan, Zheng38c48b52015-01-14 13:46:04 +08001523const struct inode_operations ceph_snapdir_iops = {
1524 .lookup = ceph_lookup,
1525 .permission = ceph_permission,
1526 .getattr = ceph_getattr,
1527 .mkdir = ceph_mkdir,
1528 .rmdir = ceph_unlink,
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001529 .rename = ceph_rename,
Yan, Zheng38c48b52015-01-14 13:46:04 +08001530};
1531
Sage Weil52dfb8a2010-08-03 10:25:30 -07001532const struct dentry_operations ceph_dentry_ops = {
Sage Weil2817b002009-10-06 11:31:08 -07001533 .d_revalidate = ceph_d_revalidate,
Sage Weil147851d2011-03-15 14:57:41 -07001534 .d_release = ceph_d_release,
Sage Weilb58dc412011-03-15 15:53:40 -07001535 .d_prune = ceph_d_prune,
Al Viroad5cb122016-10-28 22:05:13 -04001536 .d_init = ceph_d_init,
Sage Weil2817b002009-10-06 11:31:08 -07001537};