blob: 4ca0b8ff9a7270c7479fa13920cce5570df8e1ee [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
Yan, Zheng37c4efc2019-01-31 16:55:51 +080032static bool __dentry_lease_is_valid(struct ceph_dentry_info *di);
33static int __dir_lease_try_check(const struct dentry *dentry);
34
Sage Weil2817b002009-10-06 11:31:08 -070035/*
36 * Initialize ceph dentry state.
37 */
Al Viroad5cb122016-10-28 22:05:13 -040038static int ceph_d_init(struct dentry *dentry)
Sage Weil2817b002009-10-06 11:31:08 -070039{
40 struct ceph_dentry_info *di;
41
Geliang Tang99ec2692016-03-13 15:26:29 +080042 di = kmem_cache_zalloc(ceph_dentry_cachep, GFP_KERNEL);
Sage Weil2817b002009-10-06 11:31:08 -070043 if (!di)
44 return -ENOMEM; /* oh well */
45
Sage Weil2817b002009-10-06 11:31:08 -070046 di->dentry = dentry;
47 di->lease_session = NULL;
Miklos Szeredi9b16f03c2016-06-22 16:35:04 +020048 di->time = jiffies;
Sage Weil48d0cbd2011-07-26 11:30:15 -070049 dentry->d_fsdata = di;
Yan, Zheng37c4efc2019-01-31 16:55:51 +080050 INIT_LIST_HEAD(&di->lease_list);
Sage Weil2817b002009-10-06 11:31:08 -070051 return 0;
52}
53
Sage Weil2817b002009-10-06 11:31:08 -070054/*
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080055 * for f_pos for readdir:
56 * - hash order:
57 * (0xff << 52) | ((24 bits hash) << 28) |
58 * (the nth entry has hash collision);
59 * - frag+name order;
60 * ((frag value) << 28) | (the nth entry in frag);
Sage Weil2817b002009-10-06 11:31:08 -070061 */
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080062#define OFFSET_BITS 28
63#define OFFSET_MASK ((1 << OFFSET_BITS) - 1)
64#define HASH_ORDER (0xffull << (OFFSET_BITS + 24))
65loff_t ceph_make_fpos(unsigned high, unsigned off, bool hash_order)
66{
67 loff_t fpos = ((loff_t)high << 28) | (loff_t)off;
68 if (hash_order)
69 fpos |= HASH_ORDER;
70 return fpos;
71}
72
73static bool is_hash_order(loff_t p)
74{
75 return (p & HASH_ORDER) == HASH_ORDER;
76}
77
Sage Weil2817b002009-10-06 11:31:08 -070078static unsigned fpos_frag(loff_t p)
79{
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080080 return p >> OFFSET_BITS;
Sage Weil2817b002009-10-06 11:31:08 -070081}
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080082
83static unsigned fpos_hash(loff_t p)
84{
85 return ceph_frag_value(fpos_frag(p));
86}
87
Sage Weil2817b002009-10-06 11:31:08 -070088static unsigned fpos_off(loff_t p)
89{
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080090 return p & OFFSET_MASK;
Sage Weil2817b002009-10-06 11:31:08 -070091}
92
Yan, Zheng4d5f5df2014-02-13 19:40:26 +080093static int fpos_cmp(loff_t l, loff_t r)
94{
95 int v = ceph_frag_compare(fpos_frag(l), fpos_frag(r));
96 if (v)
97 return v;
98 return (int)(fpos_off(l) - fpos_off(r));
99}
100
Sage Weil2817b002009-10-06 11:31:08 -0700101/*
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800102 * make note of the last dentry we read, so we can
103 * continue at the same lexicographical point,
104 * regardless of what dir changes take place on the
105 * server.
106 */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800107static int note_last_dentry(struct ceph_dir_file_info *dfi, const char *name,
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800108 int len, unsigned next_offset)
109{
110 char *buf = kmalloc(len+1, GFP_KERNEL);
111 if (!buf)
112 return -ENOMEM;
Chengguang Xubb48bd42018-03-13 10:42:44 +0800113 kfree(dfi->last_name);
114 dfi->last_name = buf;
115 memcpy(dfi->last_name, name, len);
116 dfi->last_name[len] = 0;
117 dfi->next_offset = next_offset;
118 dout("note_last_dentry '%s'\n", dfi->last_name);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800119 return 0;
120}
121
Yan, Zhengc530cd22016-04-28 17:43:35 +0800122
123static struct dentry *
124__dcache_find_get_entry(struct dentry *parent, u64 idx,
125 struct ceph_readdir_cache_control *cache_ctl)
126{
127 struct inode *dir = d_inode(parent);
128 struct dentry *dentry;
129 unsigned idx_mask = (PAGE_SIZE / sizeof(struct dentry *)) - 1;
130 loff_t ptr_pos = idx * sizeof(struct dentry *);
131 pgoff_t ptr_pgoff = ptr_pos >> PAGE_SHIFT;
132
133 if (ptr_pos >= i_size_read(dir))
134 return NULL;
135
136 if (!cache_ctl->page || ptr_pgoff != page_index(cache_ctl->page)) {
137 ceph_readdir_cache_release(cache_ctl);
138 cache_ctl->page = find_lock_page(&dir->i_data, ptr_pgoff);
139 if (!cache_ctl->page) {
140 dout(" page %lu not found\n", ptr_pgoff);
141 return ERR_PTR(-EAGAIN);
142 }
143 /* reading/filling the cache are serialized by
144 i_mutex, no need to use page lock */
145 unlock_page(cache_ctl->page);
146 cache_ctl->dentries = kmap(cache_ctl->page);
147 }
148
149 cache_ctl->index = idx & idx_mask;
150
151 rcu_read_lock();
152 spin_lock(&parent->d_lock);
153 /* check i_size again here, because empty directory can be
154 * marked as complete while not holding the i_mutex. */
155 if (ceph_dir_is_complete_ordered(dir) && ptr_pos < i_size_read(dir))
156 dentry = cache_ctl->dentries[cache_ctl->index];
157 else
158 dentry = NULL;
159 spin_unlock(&parent->d_lock);
160 if (dentry && !lockref_get_not_dead(&dentry->d_lockref))
161 dentry = NULL;
162 rcu_read_unlock();
163 return dentry ? : ERR_PTR(-EAGAIN);
164}
165
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800166/*
Sage Weil2817b002009-10-06 11:31:08 -0700167 * When possible, we try to satisfy a readdir by peeking at the
168 * dcache. We make this work by carefully ordering dentries on
Al Viro946e51f2014-10-26 19:19:16 -0400169 * d_child when we initially get results back from the MDS, and
Sage Weil2817b002009-10-06 11:31:08 -0700170 * falling back to a "normal" sync readdir if any dentries in the dir
171 * are dropped.
172 *
Yan, Zheng2f276c52013-03-13 19:44:32 +0800173 * Complete dir indicates that we have all dentries in the dir. It is
Sage Weil2817b002009-10-06 11:31:08 -0700174 * defined IFF we hold CEPH_CAP_FILE_SHARED (which will be revoked by
175 * the MDS if/when the directory is modified).
176 */
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800177static int __dcache_readdir(struct file *file, struct dir_context *ctx,
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800178 int shared_gen)
Sage Weil2817b002009-10-06 11:31:08 -0700179{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800180 struct ceph_dir_file_info *dfi = file->private_data;
Al Virob5830432014-10-31 01:22:04 -0400181 struct dentry *parent = file->f_path.dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000182 struct inode *dir = d_inode(parent);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800183 struct dentry *dentry, *last = NULL;
Sage Weil2817b002009-10-06 11:31:08 -0700184 struct ceph_dentry_info *di;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800185 struct ceph_readdir_cache_control cache_ctl = {};
Yan, Zhengc530cd22016-04-28 17:43:35 +0800186 u64 idx = 0;
187 int err = 0;
Sage Weil2817b002009-10-06 11:31:08 -0700188
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800189 dout("__dcache_readdir %p v%u at %llx\n", dir, (unsigned)shared_gen, ctx->pos);
Sage Weil2817b002009-10-06 11:31:08 -0700190
Yan, Zhengc530cd22016-04-28 17:43:35 +0800191 /* search start position */
192 if (ctx->pos > 2) {
193 u64 count = div_u64(i_size_read(dir), sizeof(struct dentry *));
194 while (count > 0) {
195 u64 step = count >> 1;
196 dentry = __dcache_find_get_entry(parent, idx + step,
197 &cache_ctl);
198 if (!dentry) {
199 /* use linar search */
200 idx = 0;
201 break;
202 }
203 if (IS_ERR(dentry)) {
204 err = PTR_ERR(dentry);
205 goto out;
206 }
207 di = ceph_dentry(dentry);
208 spin_lock(&dentry->d_lock);
209 if (fpos_cmp(di->offset, ctx->pos) < 0) {
210 idx += step + 1;
211 count -= step + 1;
212 } else {
213 count = step;
214 }
215 spin_unlock(&dentry->d_lock);
216 dput(dentry);
217 }
218
219 dout("__dcache_readdir %p cache idx %llu\n", dir, idx);
Sage Weil2817b002009-10-06 11:31:08 -0700220 }
221
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800222
Yan, Zhengc530cd22016-04-28 17:43:35 +0800223 for (;;) {
224 bool emit_dentry = false;
225 dentry = __dcache_find_get_entry(parent, idx++, &cache_ctl);
226 if (!dentry) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800227 dfi->file_info.flags |= CEPH_F_ATEND;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800228 err = 0;
229 break;
Sage Weil2817b002009-10-06 11:31:08 -0700230 }
Yan, Zhengc530cd22016-04-28 17:43:35 +0800231 if (IS_ERR(dentry)) {
232 err = PTR_ERR(dentry);
233 goto out;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800234 }
235
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800236 spin_lock(&dentry->d_lock);
Yan, Zheng5495c2d2017-11-27 11:23:48 +0800237 di = ceph_dentry(dentry);
238 if (d_unhashed(dentry) ||
239 d_really_is_negative(dentry) ||
240 di->lease_shared_gen != shared_gen) {
241 spin_unlock(&dentry->d_lock);
242 dput(dentry);
243 err = -EAGAIN;
244 goto out;
245 }
246 if (fpos_cmp(ctx->pos, di->offset) <= 0) {
Yan, Zheng37c4efc2019-01-31 16:55:51 +0800247 __ceph_dentry_dir_lease_touch(di);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800248 emit_dentry = true;
Sage Weil2817b002009-10-06 11:31:08 -0700249 }
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800250 spin_unlock(&dentry->d_lock);
251
252 if (emit_dentry) {
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800253 dout(" %llx dentry %p %pd %p\n", di->offset,
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800254 dentry, dentry, d_inode(dentry));
255 ctx->pos = di->offset;
256 if (!dir_emit(ctx, dentry->d_name.name,
257 dentry->d_name.len,
258 ceph_translate_ino(dentry->d_sb,
259 d_inode(dentry)->i_ino),
260 d_inode(dentry)->i_mode >> 12)) {
261 dput(dentry);
262 err = 0;
263 break;
264 }
265 ctx->pos++;
266
267 if (last)
268 dput(last);
269 last = dentry;
270 } else {
271 dput(dentry);
272 }
Sage Weil2817b002009-10-06 11:31:08 -0700273 }
Yan, Zhengc530cd22016-04-28 17:43:35 +0800274out:
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800275 ceph_readdir_cache_release(&cache_ctl);
276 if (last) {
277 int ret;
278 di = ceph_dentry(last);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800279 ret = note_last_dentry(dfi, last->d_name.name, last->d_name.len,
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800280 fpos_off(di->offset) + 1);
281 if (ret < 0)
282 err = ret;
Al Viro77acfa22013-05-17 16:52:26 -0400283 dput(last);
Yan, Zheng84583cfb2017-07-06 11:12:21 +0800284 /* last_name no longer match cache index */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800285 if (dfi->readdir_cache_idx >= 0) {
286 dfi->readdir_cache_idx = -1;
287 dfi->dir_release_count = 0;
Yan, Zheng84583cfb2017-07-06 11:12:21 +0800288 }
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800289 }
Sage Weil2817b002009-10-06 11:31:08 -0700290 return err;
291}
292
Chengguang Xubb48bd42018-03-13 10:42:44 +0800293static bool need_send_readdir(struct ceph_dir_file_info *dfi, loff_t pos)
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800294{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800295 if (!dfi->last_readdir)
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800296 return true;
297 if (is_hash_order(pos))
Chengguang Xubb48bd42018-03-13 10:42:44 +0800298 return !ceph_frag_contains_value(dfi->frag, fpos_hash(pos));
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800299 else
Chengguang Xubb48bd42018-03-13 10:42:44 +0800300 return dfi->frag != fpos_frag(pos);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800301}
302
Al Viro77acfa22013-05-17 16:52:26 -0400303static int ceph_readdir(struct file *file, struct dir_context *ctx)
Sage Weil2817b002009-10-06 11:31:08 -0700304{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800305 struct ceph_dir_file_info *dfi = file->private_data;
Al Viro77acfa22013-05-17 16:52:26 -0400306 struct inode *inode = file_inode(file);
Sage Weil2817b002009-10-06 11:31:08 -0700307 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700308 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
309 struct ceph_mds_client *mdsc = fsc->mdsc;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800310 int i;
Sage Weil2817b002009-10-06 11:31:08 -0700311 int err;
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800312 unsigned frag = -1;
Sage Weil2817b002009-10-06 11:31:08 -0700313 struct ceph_mds_reply_info_parsed *rinfo;
Sage Weil2817b002009-10-06 11:31:08 -0700314
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800315 dout("readdir %p file %p pos %llx\n", inode, file, ctx->pos);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800316 if (dfi->file_info.flags & CEPH_F_ATEND)
Sage Weil2817b002009-10-06 11:31:08 -0700317 return 0;
318
319 /* always start with . and .. */
Al Viro77acfa22013-05-17 16:52:26 -0400320 if (ctx->pos == 0) {
Sage Weil2817b002009-10-06 11:31:08 -0700321 dout("readdir off 0 -> '.'\n");
Al Viro77acfa22013-05-17 16:52:26 -0400322 if (!dir_emit(ctx, ".", 1,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800323 ceph_translate_ino(inode->i_sb, inode->i_ino),
Al Viro77acfa22013-05-17 16:52:26 -0400324 inode->i_mode >> 12))
Sage Weil2817b002009-10-06 11:31:08 -0700325 return 0;
Al Viro77acfa22013-05-17 16:52:26 -0400326 ctx->pos = 1;
Sage Weil2817b002009-10-06 11:31:08 -0700327 }
Al Viro77acfa22013-05-17 16:52:26 -0400328 if (ctx->pos == 1) {
Al Virob5830432014-10-31 01:22:04 -0400329 ino_t ino = parent_ino(file->f_path.dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700330 dout("readdir off 1 -> '..'\n");
Al Viro77acfa22013-05-17 16:52:26 -0400331 if (!dir_emit(ctx, "..", 2,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800332 ceph_translate_ino(inode->i_sb, ino),
Al Viro77acfa22013-05-17 16:52:26 -0400333 inode->i_mode >> 12))
Sage Weil2817b002009-10-06 11:31:08 -0700334 return 0;
Al Viro77acfa22013-05-17 16:52:26 -0400335 ctx->pos = 2;
Sage Weil2817b002009-10-06 11:31:08 -0700336 }
337
338 /* can we use the dcache? */
Sage Weilbe655592011-11-30 09:47:09 -0800339 spin_lock(&ci->i_ceph_lock);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800340 if (ceph_test_mount_opt(fsc, DCACHE) &&
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700341 !ceph_test_mount_opt(fsc, NOASYNCREADDIR) &&
Sage Weila0dff782010-07-22 13:47:21 -0700342 ceph_snap(inode) != CEPH_SNAPDIR &&
Yan, Zheng70db4f32014-10-21 18:09:56 -0700343 __ceph_dir_is_complete_ordered(ci) &&
Sage Weil2817b002009-10-06 11:31:08 -0700344 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1)) {
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800345 int shared_gen = atomic_read(&ci->i_shared_gen);
Sage Weilbe655592011-11-30 09:47:09 -0800346 spin_unlock(&ci->i_ceph_lock);
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800347 err = __dcache_readdir(file, ctx, shared_gen);
Sage Weilefa4c122010-10-18 14:04:31 -0700348 if (err != -EAGAIN)
Sage Weil2817b002009-10-06 11:31:08 -0700349 return err;
Sage Weilefa4c122010-10-18 14:04:31 -0700350 } else {
Sage Weilbe655592011-11-30 09:47:09 -0800351 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700352 }
Sage Weil2817b002009-10-06 11:31:08 -0700353
354 /* proceed with a normal readdir */
Sage Weil2817b002009-10-06 11:31:08 -0700355more:
356 /* do we have the correct frag content buffered? */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800357 if (need_send_readdir(dfi, ctx->pos)) {
Sage Weil2817b002009-10-06 11:31:08 -0700358 struct ceph_mds_request *req;
359 int op = ceph_snap(inode) == CEPH_SNAPDIR ?
360 CEPH_MDS_OP_LSSNAP : CEPH_MDS_OP_READDIR;
361
362 /* discard old result, if any */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800363 if (dfi->last_readdir) {
364 ceph_mdsc_put_request(dfi->last_readdir);
365 dfi->last_readdir = NULL;
Sage Weil393f6622010-03-10 12:03:32 -0800366 }
Sage Weil2817b002009-10-06 11:31:08 -0700367
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800368 if (is_hash_order(ctx->pos)) {
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800369 /* fragtree isn't always accurate. choose frag
370 * based on previous reply when possible. */
371 if (frag == (unsigned)-1)
372 frag = ceph_choose_frag(ci, fpos_hash(ctx->pos),
373 NULL, NULL);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800374 } else {
375 frag = fpos_frag(ctx->pos);
376 }
377
Sage Weil2817b002009-10-06 11:31:08 -0700378 dout("readdir fetching %llx.%llx frag %x offset '%s'\n",
Chengguang Xubb48bd42018-03-13 10:42:44 +0800379 ceph_vinop(inode), frag, dfi->last_name);
Sage Weil2817b002009-10-06 11:31:08 -0700380 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
381 if (IS_ERR(req))
382 return PTR_ERR(req);
Yan, Zheng54008392014-03-29 13:41:15 +0800383 err = ceph_alloc_readdir_reply_buffer(req, inode);
384 if (err) {
385 ceph_mdsc_put_request(req);
386 return err;
387 }
Sage Weil2817b002009-10-06 11:31:08 -0700388 /* hints to request -> mds selection code */
389 req->r_direct_mode = USE_AUTH_MDS;
Yan, Zheng5d37ca12017-07-26 12:48:08 +0800390 if (op == CEPH_MDS_OP_READDIR) {
391 req->r_direct_hash = ceph_frag_value(frag);
392 __set_bit(CEPH_MDS_R_DIRECT_IS_HASH, &req->r_req_flags);
Yan, Zheng87c91a92017-11-23 18:28:16 +0800393 req->r_inode_drop = CEPH_CAP_FILE_EXCL;
Yan, Zheng5d37ca12017-07-26 12:48:08 +0800394 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800395 if (dfi->last_name) {
396 req->r_path2 = kstrdup(dfi->last_name, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400397 if (!req->r_path2) {
398 ceph_mdsc_put_request(req);
399 return -ENOMEM;
400 }
Yan, Zheng79162542017-04-05 12:54:05 -0400401 } else if (is_hash_order(ctx->pos)) {
402 req->r_args.readdir.offset_hash =
403 cpu_to_le32(fpos_hash(ctx->pos));
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400404 }
Yan, Zheng79162542017-04-05 12:54:05 -0400405
Chengguang Xubb48bd42018-03-13 10:42:44 +0800406 req->r_dir_release_cnt = dfi->dir_release_count;
407 req->r_dir_ordered_cnt = dfi->dir_ordered_count;
408 req->r_readdir_cache_idx = dfi->readdir_cache_idx;
409 req->r_readdir_offset = dfi->next_offset;
Sage Weil2817b002009-10-06 11:31:08 -0700410 req->r_args.readdir.frag = cpu_to_le32(frag);
Yan, Zheng956d39d2016-04-27 17:48:30 +0800411 req->r_args.readdir.flags =
412 cpu_to_le16(CEPH_READDIR_REPLY_BITFLAGS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400413
414 req->r_inode = inode;
415 ihold(inode);
416 req->r_dentry = dget(file->f_path.dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700417 err = ceph_mdsc_do_request(mdsc, NULL, req);
418 if (err < 0) {
419 ceph_mdsc_put_request(req);
420 return err;
421 }
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800422 dout("readdir got and parsed readdir result=%d on "
423 "frag %x, end=%d, complete=%d, hash_order=%d\n",
424 err, frag,
Sage Weil2817b002009-10-06 11:31:08 -0700425 (int)req->r_reply_info.dir_end,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800426 (int)req->r_reply_info.dir_complete,
427 (int)req->r_reply_info.hash_order);
Sage Weil2817b002009-10-06 11:31:08 -0700428
Yan, Zheng81c6aea2013-09-18 09:44:13 +0800429 rinfo = &req->r_reply_info;
430 if (le32_to_cpu(rinfo->dir_dir->frag) != frag) {
431 frag = le32_to_cpu(rinfo->dir_dir->frag);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800432 if (!rinfo->hash_order) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800433 dfi->next_offset = req->r_readdir_offset;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800434 /* adjust ctx->pos to beginning of frag */
435 ctx->pos = ceph_make_fpos(frag,
Chengguang Xubb48bd42018-03-13 10:42:44 +0800436 dfi->next_offset,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800437 false);
438 }
Yan, Zheng81c6aea2013-09-18 09:44:13 +0800439 }
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800440
Chengguang Xubb48bd42018-03-13 10:42:44 +0800441 dfi->frag = frag;
442 dfi->last_readdir = req;
Sage Weil2817b002009-10-06 11:31:08 -0700443
Jeff Laytonbc2de10d2017-02-01 13:49:09 -0500444 if (test_bit(CEPH_MDS_R_DID_PREPOPULATE, &req->r_req_flags)) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800445 dfi->readdir_cache_idx = req->r_readdir_cache_idx;
446 if (dfi->readdir_cache_idx < 0) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800447 /* preclude from marking dir ordered */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800448 dfi->dir_ordered_count = 0;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800449 } else if (ceph_frag_is_leftmost(frag) &&
Chengguang Xubb48bd42018-03-13 10:42:44 +0800450 dfi->next_offset == 2) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800451 /* note dir version at start of readdir so
452 * we can tell if any dentries get dropped */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800453 dfi->dir_release_count = req->r_dir_release_cnt;
454 dfi->dir_ordered_count = req->r_dir_ordered_cnt;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800455 }
456 } else {
Chengguang Xu4c069a52018-01-30 16:29:17 +0800457 dout("readdir !did_prepopulate\n");
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800458 /* disable readdir cache */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800459 dfi->readdir_cache_idx = -1;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800460 /* preclude from marking dir complete */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800461 dfi->dir_release_count = 0;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800462 }
463
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800464 /* note next offset and last dentry name */
465 if (rinfo->dir_nr > 0) {
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800466 struct ceph_mds_reply_dir_entry *rde =
467 rinfo->dir_entries + (rinfo->dir_nr-1);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800468 unsigned next_offset = req->r_reply_info.dir_end ?
469 2 : (fpos_off(rde->offset) + 1);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800470 err = note_last_dentry(dfi, rde->name, rde->name_len,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800471 next_offset);
Sage Weil2817b002009-10-06 11:31:08 -0700472 if (err)
473 return err;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800474 } else if (req->r_reply_info.dir_end) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800475 dfi->next_offset = 2;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800476 /* keep last name */
Sage Weil2817b002009-10-06 11:31:08 -0700477 }
478 }
479
Chengguang Xubb48bd42018-03-13 10:42:44 +0800480 rinfo = &dfi->last_readdir->r_reply_info;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800481 dout("readdir frag %x num %d pos %llx chunk first %llx\n",
Chengguang Xubb48bd42018-03-13 10:42:44 +0800482 dfi->frag, rinfo->dir_nr, ctx->pos,
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800483 rinfo->dir_nr ? rinfo->dir_entries[0].offset : 0LL);
Al Viro77acfa22013-05-17 16:52:26 -0400484
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800485 i = 0;
486 /* search start position */
487 if (rinfo->dir_nr > 0) {
488 int step, nr = rinfo->dir_nr;
489 while (nr > 0) {
490 step = nr >> 1;
491 if (rinfo->dir_entries[i + step].offset < ctx->pos) {
492 i += step + 1;
493 nr -= step + 1;
494 } else {
495 nr = step;
496 }
497 }
498 }
499 for (; i < rinfo->dir_nr; i++) {
500 struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
Sage Weil3105c192010-11-18 09:15:07 -0800501 struct ceph_vino vino;
502 ino_t ino;
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800503 u32 ftype;
Sage Weil3105c192010-11-18 09:15:07 -0800504
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800505 BUG_ON(rde->offset < ctx->pos);
506
507 ctx->pos = rde->offset;
508 dout("readdir (%d/%d) -> %llx '%.*s' %p\n",
509 i, rinfo->dir_nr, ctx->pos,
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800510 rde->name_len, rde->name, &rde->inode.in);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800511
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800512 BUG_ON(!rde->inode.in);
513 ftype = le32_to_cpu(rde->inode.in->mode) >> 12;
514 vino.ino = le64_to_cpu(rde->inode.in->ino);
515 vino.snap = le64_to_cpu(rde->inode.in->snapid);
Sage Weil3105c192010-11-18 09:15:07 -0800516 ino = ceph_vino_to_ino(vino);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800517
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800518 if (!dir_emit(ctx, rde->name, rde->name_len,
519 ceph_translate_ino(inode->i_sb, ino), ftype)) {
Sage Weil2817b002009-10-06 11:31:08 -0700520 dout("filldir stopping us...\n");
521 return 0;
522 }
Al Viro77acfa22013-05-17 16:52:26 -0400523 ctx->pos++;
Sage Weil2817b002009-10-06 11:31:08 -0700524 }
525
Chengguang Xubb48bd42018-03-13 10:42:44 +0800526 ceph_mdsc_put_request(dfi->last_readdir);
527 dfi->last_readdir = NULL;
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800528
Chengguang Xubb48bd42018-03-13 10:42:44 +0800529 if (dfi->next_offset > 2) {
530 frag = dfi->frag;
Sage Weil2817b002009-10-06 11:31:08 -0700531 goto more;
532 }
533
534 /* more frags? */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800535 if (!ceph_frag_is_rightmost(dfi->frag)) {
536 frag = ceph_frag_next(dfi->frag);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800537 if (is_hash_order(ctx->pos)) {
538 loff_t new_pos = ceph_make_fpos(ceph_frag_value(frag),
Chengguang Xubb48bd42018-03-13 10:42:44 +0800539 dfi->next_offset, true);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800540 if (new_pos > ctx->pos)
541 ctx->pos = new_pos;
542 /* keep last_name */
543 } else {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800544 ctx->pos = ceph_make_fpos(frag, dfi->next_offset,
545 false);
546 kfree(dfi->last_name);
547 dfi->last_name = NULL;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800548 }
Sage Weil2817b002009-10-06 11:31:08 -0700549 dout("readdir next frag is %x\n", frag);
550 goto more;
551 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800552 dfi->file_info.flags |= CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700553
554 /*
555 * if dir_release_count still matches the dir, no dentries
556 * were released during the whole readdir, and we should have
557 * the complete dir contents in our cache.
558 */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800559 if (atomic64_read(&ci->i_release_count) ==
560 dfi->dir_release_count) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800561 spin_lock(&ci->i_ceph_lock);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800562 if (dfi->dir_ordered_count ==
563 atomic64_read(&ci->i_ordered_count)) {
Yan, Zheng70db4f32014-10-21 18:09:56 -0700564 dout(" marking %p complete and ordered\n", inode);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800565 /* use i_size to track number of entries in
566 * readdir cache */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800567 BUG_ON(dfi->readdir_cache_idx < 0);
568 i_size_write(inode, dfi->readdir_cache_idx *
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800569 sizeof(struct dentry*));
570 } else {
Yan, Zheng70db4f32014-10-21 18:09:56 -0700571 dout(" marking %p complete\n", inode);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800572 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800573 __ceph_dir_set_complete(ci, dfi->dir_release_count,
574 dfi->dir_ordered_count);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800575 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700576 }
Sage Weil2817b002009-10-06 11:31:08 -0700577
Al Viro77acfa22013-05-17 16:52:26 -0400578 dout("readdir %p file %p done.\n", inode, file);
Sage Weil2817b002009-10-06 11:31:08 -0700579 return 0;
580}
581
Chengguang Xubb48bd42018-03-13 10:42:44 +0800582static void reset_readdir(struct ceph_dir_file_info *dfi)
Sage Weil2817b002009-10-06 11:31:08 -0700583{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800584 if (dfi->last_readdir) {
585 ceph_mdsc_put_request(dfi->last_readdir);
586 dfi->last_readdir = NULL;
Sage Weil2817b002009-10-06 11:31:08 -0700587 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800588 kfree(dfi->last_name);
589 dfi->last_name = NULL;
590 dfi->dir_release_count = 0;
591 dfi->readdir_cache_idx = -1;
592 dfi->next_offset = 2; /* compensate for . and .. */
593 dfi->file_info.flags &= ~CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700594}
595
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800596/*
597 * discard buffered readdir content on seekdir(0), or seek to new frag,
598 * or seek prior to current chunk
599 */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800600static bool need_reset_readdir(struct ceph_dir_file_info *dfi, loff_t new_pos)
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800601{
602 struct ceph_mds_reply_info_parsed *rinfo;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800603 loff_t chunk_offset;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800604 if (new_pos == 0)
605 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800606 if (is_hash_order(new_pos)) {
607 /* no need to reset last_name for a forward seek when
608 * dentries are sotred in hash order */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800609 } else if (dfi->frag != fpos_frag(new_pos)) {
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800610 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800611 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800612 rinfo = dfi->last_readdir ? &dfi->last_readdir->r_reply_info : NULL;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800613 if (!rinfo || !rinfo->dir_nr)
614 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800615 chunk_offset = rinfo->dir_entries[0].offset;
616 return new_pos < chunk_offset ||
617 is_hash_order(new_pos) != is_hash_order(chunk_offset);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800618}
619
Andrew Morton965c8e52012-12-17 15:59:39 -0800620static loff_t ceph_dir_llseek(struct file *file, loff_t offset, int whence)
Sage Weil2817b002009-10-06 11:31:08 -0700621{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800622 struct ceph_dir_file_info *dfi = file->private_data;
Sage Weil2817b002009-10-06 11:31:08 -0700623 struct inode *inode = file->f_mapping->host;
Sage Weil2817b002009-10-06 11:31:08 -0700624 loff_t retval;
625
Al Viro59551022016-01-22 15:40:57 -0500626 inode_lock(inode);
Josef Bacik06222e42011-07-18 13:21:38 -0400627 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800628 switch (whence) {
Sage Weil2817b002009-10-06 11:31:08 -0700629 case SEEK_CUR:
630 offset += file->f_pos;
Josef Bacik06222e42011-07-18 13:21:38 -0400631 case SEEK_SET:
632 break;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800633 case SEEK_END:
634 retval = -EOPNOTSUPP;
Josef Bacik06222e42011-07-18 13:21:38 -0400635 default:
636 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700637 }
Josef Bacik06222e42011-07-18 13:21:38 -0400638
Yan, Zhengf0494202014-02-27 16:26:24 +0800639 if (offset >= 0) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800640 if (need_reset_readdir(dfi, offset)) {
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800641 dout("dir_llseek dropping %p content\n", file);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800642 reset_readdir(dfi);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800643 } else if (is_hash_order(offset) && offset > file->f_pos) {
644 /* for hash offset, we don't know if a forward seek
645 * is within same frag */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800646 dfi->dir_release_count = 0;
647 dfi->readdir_cache_idx = -1;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800648 }
649
Sage Weil2817b002009-10-06 11:31:08 -0700650 if (offset != file->f_pos) {
651 file->f_pos = offset;
652 file->f_version = 0;
Chengguang Xubb48bd42018-03-13 10:42:44 +0800653 dfi->file_info.flags &= ~CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700654 }
655 retval = offset;
Sage Weil2817b002009-10-06 11:31:08 -0700656 }
Josef Bacik06222e42011-07-18 13:21:38 -0400657out:
Al Viro59551022016-01-22 15:40:57 -0500658 inode_unlock(inode);
Sage Weil2817b002009-10-06 11:31:08 -0700659 return retval;
660}
661
662/*
Sage Weil468640e2011-07-26 11:28:11 -0700663 * Handle lookups for the hidden .snap directory.
Sage Weil2817b002009-10-06 11:31:08 -0700664 */
Sage Weil468640e2011-07-26 11:28:11 -0700665int ceph_handle_snapdir(struct ceph_mds_request *req,
666 struct dentry *dentry, int err)
Sage Weil2817b002009-10-06 11:31:08 -0700667{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700668 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
David Howells2b0143b2015-03-17 22:25:59 +0000669 struct inode *parent = d_inode(dentry->d_parent); /* we hold i_mutex */
Sage Weil2817b002009-10-06 11:31:08 -0700670
671 /* .snap dir? */
672 if (err == -ENOENT &&
Sage Weil455cec02011-03-03 13:44:35 -0800673 ceph_snap(parent) == CEPH_NOSNAP &&
Sage Weil6b805182009-10-27 11:50:50 -0700674 strcmp(dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700675 fsc->mount_options->snapdir_name) == 0) {
Sage Weil2817b002009-10-06 11:31:08 -0700676 struct inode *inode = ceph_get_snapdir(parent);
Al Viroa4555892014-10-21 20:11:25 -0400677 dout("ENOENT on snapdir %p '%pd', linking to snapdir %p\n",
678 dentry, dentry, inode);
Sage Weil9358c6d2010-03-30 13:54:41 -0700679 BUG_ON(!d_unhashed(dentry));
Sage Weil2817b002009-10-06 11:31:08 -0700680 d_add(dentry, inode);
681 err = 0;
682 }
Sage Weil468640e2011-07-26 11:28:11 -0700683 return err;
684}
Sage Weil2817b002009-10-06 11:31:08 -0700685
Sage Weil468640e2011-07-26 11:28:11 -0700686/*
687 * Figure out final result of a lookup/open request.
688 *
689 * Mainly, make sure we return the final req->r_dentry (if it already
690 * existed) in place of the original VFS-provided dentry when they
691 * differ.
692 *
693 * Gracefully handle the case where the MDS replies with -ENOENT and
694 * no trace (which it may do, at its discretion, e.g., if it doesn't
695 * care to issue a lease on the negative dentry).
696 */
697struct dentry *ceph_finish_lookup(struct ceph_mds_request *req,
698 struct dentry *dentry, int err)
699{
Sage Weil2817b002009-10-06 11:31:08 -0700700 if (err == -ENOENT) {
701 /* no trace? */
702 err = 0;
703 if (!req->r_reply_info.head->is_dentry) {
704 dout("ENOENT and no trace, dentry %p inode %p\n",
David Howells2b0143b2015-03-17 22:25:59 +0000705 dentry, d_inode(dentry));
706 if (d_really_is_positive(dentry)) {
Sage Weil2817b002009-10-06 11:31:08 -0700707 d_drop(dentry);
708 err = -ENOENT;
709 } else {
710 d_add(dentry, NULL);
711 }
712 }
713 }
714 if (err)
715 dentry = ERR_PTR(err);
716 else if (dentry != req->r_dentry)
717 dentry = dget(req->r_dentry); /* we got spliced */
718 else
719 dentry = NULL;
720 return dentry;
721}
722
Zhang Zhuoyu3b33f692016-03-25 05:18:39 -0400723static bool is_root_ceph_dentry(struct inode *inode, struct dentry *dentry)
Sage Weil1d1de9162009-12-02 11:54:25 -0800724{
725 return ceph_ino(inode) == CEPH_INO_ROOT &&
726 strncmp(dentry->d_name.name, ".ceph", 5) == 0;
727}
728
Sage Weil2817b002009-10-06 11:31:08 -0700729/*
730 * Look up a single dir entry. If there is a lookup intent, inform
731 * the MDS so that it gets our 'caps wanted' value in a single op.
732 */
733static struct dentry *ceph_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400734 unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -0700735{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700736 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
737 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700738 struct ceph_mds_request *req;
739 int op;
Yan, Zheng315f2402016-03-07 10:34:50 +0800740 int mask;
Sage Weil2817b002009-10-06 11:31:08 -0700741 int err;
742
Al Viroa4555892014-10-21 20:11:25 -0400743 dout("lookup %p dentry %p '%pd'\n",
744 dir, dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700745
746 if (dentry->d_name.len > NAME_MAX)
747 return ERR_PTR(-ENAMETOOLONG);
748
Sage Weil2817b002009-10-06 11:31:08 -0700749 /* can we conclude ENOENT locally? */
David Howells2b0143b2015-03-17 22:25:59 +0000750 if (d_really_is_negative(dentry)) {
Sage Weil2817b002009-10-06 11:31:08 -0700751 struct ceph_inode_info *ci = ceph_inode(dir);
752 struct ceph_dentry_info *di = ceph_dentry(dentry);
753
Sage Weilbe655592011-11-30 09:47:09 -0800754 spin_lock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700755 dout(" dir %p flags are %d\n", dir, ci->i_ceph_flags);
756 if (strncmp(dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700757 fsc->mount_options->snapdir_name,
Sage Weil2817b002009-10-06 11:31:08 -0700758 dentry->d_name.len) &&
Sage Weil1d1de9162009-12-02 11:54:25 -0800759 !is_root_ceph_dentry(dir, dentry) &&
Yan, Zhenge2c3de02015-03-04 16:05:04 +0800760 ceph_test_mount_opt(fsc, DCACHE) &&
Yan, Zheng2f276c52013-03-13 19:44:32 +0800761 __ceph_dir_is_complete(ci) &&
Sage Weil2817b002009-10-06 11:31:08 -0700762 (__ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1))) {
Sage Weilbe655592011-11-30 09:47:09 -0800763 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700764 dout(" dir %p complete, -ENOENT\n", dir);
765 d_add(dentry, NULL);
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800766 di->lease_shared_gen = atomic_read(&ci->i_shared_gen);
Sage Weil2817b002009-10-06 11:31:08 -0700767 return NULL;
768 }
Sage Weilbe655592011-11-30 09:47:09 -0800769 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700770 }
771
772 op = ceph_snap(dir) == CEPH_SNAPDIR ?
773 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
774 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
775 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200776 return ERR_CAST(req);
Sage Weil2817b002009-10-06 11:31:08 -0700777 req->r_dentry = dget(dentry);
778 req->r_num_caps = 2;
Yan, Zheng315f2402016-03-07 10:34:50 +0800779
780 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
781 if (ceph_security_xattr_wanted(dir))
782 mask |= CEPH_CAP_XATTR_SHARED;
783 req->r_args.getattr.mask = cpu_to_le32(mask);
784
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500785 req->r_parent = dir;
786 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700787 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil468640e2011-07-26 11:28:11 -0700788 err = ceph_handle_snapdir(req, dentry, err);
Sage Weil2817b002009-10-06 11:31:08 -0700789 dentry = ceph_finish_lookup(req, dentry, err);
790 ceph_mdsc_put_request(req); /* will dput(dentry) */
791 dout("lookup result=%p\n", dentry);
792 return dentry;
793}
794
795/*
796 * If we do a create but get no trace back from the MDS, follow up with
797 * a lookup (the VFS expects us to link up the provided dentry).
798 */
799int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry)
800{
Al Viro00cd8dd2012-06-10 17:13:09 -0400801 struct dentry *result = ceph_lookup(dir, dentry, 0);
Sage Weil2817b002009-10-06 11:31:08 -0700802
803 if (result && !IS_ERR(result)) {
804 /*
805 * We created the item, then did a lookup, and found
806 * it was already linked to another inode we already
Yan, Zheng4d41cef2015-02-04 15:10:48 +0800807 * had in our cache (and thus got spliced). To not
808 * confuse VFS (especially when inode is a directory),
809 * we don't link our dentry to that inode, return an
810 * error instead.
811 *
812 * This event should be rare and it happens only when
813 * we talk to old MDS. Recent MDS does not send traceless
814 * reply for request that creates new inode.
Sage Weil2817b002009-10-06 11:31:08 -0700815 */
Yan, Zheng5cba3722015-02-02 11:27:56 +0800816 d_drop(result);
Yan, Zheng4d41cef2015-02-04 15:10:48 +0800817 return -ESTALE;
Sage Weil2817b002009-10-06 11:31:08 -0700818 }
819 return PTR_ERR(result);
820}
821
822static int ceph_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -0400823 umode_t mode, dev_t rdev)
Sage Weil2817b002009-10-06 11:31:08 -0700824{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700825 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
826 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700827 struct ceph_mds_request *req;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800828 struct ceph_acl_sec_ctx as_ctx = {};
Sage Weil2817b002009-10-06 11:31:08 -0700829 int err;
830
831 if (ceph_snap(dir) != CEPH_NOSNAP)
832 return -EROFS;
833
Chengguang Xu04598712018-07-09 22:17:30 +0800834 if (ceph_quota_is_max_files_exceeded(dir)) {
835 err = -EDQUOT;
836 goto out;
837 }
Luis Henriquesb7a29212018-01-05 10:47:19 +0000838
Yan, Zheng5c31e922019-05-26 15:35:39 +0800839 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800840 if (err < 0)
Chengguang Xu04598712018-07-09 22:17:30 +0800841 goto out;
Yan, Zhengac6713c2019-05-26 16:27:56 +0800842 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
843 if (err < 0)
844 goto out;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800845
Al Viro1a67aaf2011-07-26 01:52:52 -0400846 dout("mknod in dir %p dentry %p mode 0%ho rdev %d\n",
Sage Weil2817b002009-10-06 11:31:08 -0700847 dir, dentry, mode, rdev);
848 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_MKNOD, USE_AUTH_MDS);
849 if (IS_ERR(req)) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800850 err = PTR_ERR(req);
851 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700852 }
853 req->r_dentry = dget(dentry);
854 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500855 req->r_parent = dir;
856 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700857 req->r_args.mknod.mode = cpu_to_le32(mode);
858 req->r_args.mknod.rdev = cpu_to_le32(rdev);
Yan, Zheng222b7f92017-11-23 17:47:15 +0800859 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -0700860 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800861 if (as_ctx.pagelist) {
862 req->r_pagelist = as_ctx.pagelist;
863 as_ctx.pagelist = NULL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800864 }
Sage Weil2817b002009-10-06 11:31:08 -0700865 err = ceph_mdsc_do_request(mdsc, dir, req);
866 if (!err && !req->r_reply_info.head->is_dentry)
867 err = ceph_handle_notrace_create(dir, dentry);
868 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800869out:
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800870 if (!err)
Yan, Zheng5c31e922019-05-26 15:35:39 +0800871 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800872 else
Sage Weil2817b002009-10-06 11:31:08 -0700873 d_drop(dentry);
Yan, Zheng5c31e922019-05-26 15:35:39 +0800874 ceph_release_acl_sec_ctx(&as_ctx);
Sage Weil2817b002009-10-06 11:31:08 -0700875 return err;
876}
877
Al Viro4acdaf22011-07-26 01:42:34 -0400878static int ceph_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400879 bool excl)
Sage Weil2817b002009-10-06 11:31:08 -0700880{
Miklos Szeredi2d83bde2012-06-05 15:10:25 +0200881 return ceph_mknod(dir, dentry, mode, 0);
Sage Weil2817b002009-10-06 11:31:08 -0700882}
883
884static int ceph_symlink(struct inode *dir, struct dentry *dentry,
885 const char *dest)
886{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700887 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
888 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700889 struct ceph_mds_request *req;
Yan, Zhengac6713c2019-05-26 16:27:56 +0800890 struct ceph_acl_sec_ctx as_ctx = {};
Sage Weil2817b002009-10-06 11:31:08 -0700891 int err;
892
893 if (ceph_snap(dir) != CEPH_NOSNAP)
894 return -EROFS;
895
Chengguang Xu67fcd152018-07-09 22:17:31 +0800896 if (ceph_quota_is_max_files_exceeded(dir)) {
897 err = -EDQUOT;
898 goto out;
899 }
Luis Henriquesb7a29212018-01-05 10:47:19 +0000900
Yan, Zhengac6713c2019-05-26 16:27:56 +0800901 err = ceph_security_init_secctx(dentry, S_IFLNK | 0777, &as_ctx);
902 if (err < 0)
903 goto out;
904
Sage Weil2817b002009-10-06 11:31:08 -0700905 dout("symlink in dir %p dentry %p to '%s'\n", dir, dentry, dest);
906 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SYMLINK, USE_AUTH_MDS);
907 if (IS_ERR(req)) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800908 err = PTR_ERR(req);
909 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700910 }
Yan, Zheng687265e2015-06-13 17:27:05 +0800911 req->r_path2 = kstrdup(dest, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400912 if (!req->r_path2) {
913 err = -ENOMEM;
914 ceph_mdsc_put_request(req);
915 goto out;
916 }
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500917 req->r_parent = dir;
918 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700919 req->r_dentry = dget(dentry);
920 req->r_num_caps = 2;
Yan, Zheng222b7f92017-11-23 17:47:15 +0800921 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -0700922 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
923 err = ceph_mdsc_do_request(mdsc, dir, req);
924 if (!err && !req->r_reply_info.head->is_dentry)
925 err = ceph_handle_notrace_create(dir, dentry);
926 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800927out:
928 if (err)
Sage Weil2817b002009-10-06 11:31:08 -0700929 d_drop(dentry);
Yan, Zhengac6713c2019-05-26 16:27:56 +0800930 ceph_release_acl_sec_ctx(&as_ctx);
Sage Weil2817b002009-10-06 11:31:08 -0700931 return err;
932}
933
Al Viro18bb1db2011-07-26 01:41:39 -0400934static int ceph_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Sage Weil2817b002009-10-06 11:31:08 -0700935{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700936 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
937 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700938 struct ceph_mds_request *req;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800939 struct ceph_acl_sec_ctx as_ctx = {};
Sage Weil2817b002009-10-06 11:31:08 -0700940 int err = -EROFS;
941 int op;
942
943 if (ceph_snap(dir) == CEPH_SNAPDIR) {
944 /* mkdir .snap/foo is a MKSNAP */
945 op = CEPH_MDS_OP_MKSNAP;
Al Viroa4555892014-10-21 20:11:25 -0400946 dout("mksnap dir %p snap '%pd' dn %p\n", dir,
947 dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700948 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
Al Viro18bb1db2011-07-26 01:41:39 -0400949 dout("mkdir dir %p dn %p mode 0%ho\n", dir, dentry, mode);
Sage Weil2817b002009-10-06 11:31:08 -0700950 op = CEPH_MDS_OP_MKDIR;
951 } else {
952 goto out;
953 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800954
Yan, Zheng25963662018-01-12 16:26:17 +0800955 if (op == CEPH_MDS_OP_MKDIR &&
956 ceph_quota_is_max_files_exceeded(dir)) {
Luis Henriquesb7a29212018-01-05 10:47:19 +0000957 err = -EDQUOT;
958 goto out;
959 }
960
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800961 mode |= S_IFDIR;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800962 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800963 if (err < 0)
964 goto out;
Yan, Zhengac6713c2019-05-26 16:27:56 +0800965 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
966 if (err < 0)
967 goto out;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800968
Sage Weil2817b002009-10-06 11:31:08 -0700969 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
970 if (IS_ERR(req)) {
971 err = PTR_ERR(req);
972 goto out;
973 }
974
975 req->r_dentry = dget(dentry);
976 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500977 req->r_parent = dir;
978 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700979 req->r_args.mkdir.mode = cpu_to_le32(mode);
Yan, Zheng222b7f92017-11-23 17:47:15 +0800980 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -0700981 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800982 if (as_ctx.pagelist) {
983 req->r_pagelist = as_ctx.pagelist;
984 as_ctx.pagelist = NULL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800985 }
Sage Weil2817b002009-10-06 11:31:08 -0700986 err = ceph_mdsc_do_request(mdsc, dir, req);
Yan, Zheng275dd192014-12-10 16:17:31 +0800987 if (!err &&
988 !req->r_reply_info.head->is_target &&
989 !req->r_reply_info.head->is_dentry)
Sage Weil2817b002009-10-06 11:31:08 -0700990 err = ceph_handle_notrace_create(dir, dentry);
991 ceph_mdsc_put_request(req);
992out:
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800993 if (!err)
Yan, Zheng5c31e922019-05-26 15:35:39 +0800994 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800995 else
Sage Weil2817b002009-10-06 11:31:08 -0700996 d_drop(dentry);
Yan, Zheng5c31e922019-05-26 15:35:39 +0800997 ceph_release_acl_sec_ctx(&as_ctx);
Sage Weil2817b002009-10-06 11:31:08 -0700998 return err;
999}
1000
1001static int ceph_link(struct dentry *old_dentry, struct inode *dir,
1002 struct dentry *dentry)
1003{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001004 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
1005 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001006 struct ceph_mds_request *req;
1007 int err;
1008
1009 if (ceph_snap(dir) != CEPH_NOSNAP)
1010 return -EROFS;
1011
1012 dout("link in dir %p old_dentry %p dentry %p\n", dir,
1013 old_dentry, dentry);
1014 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_LINK, USE_AUTH_MDS);
1015 if (IS_ERR(req)) {
1016 d_drop(dentry);
1017 return PTR_ERR(req);
1018 }
1019 req->r_dentry = dget(dentry);
1020 req->r_num_caps = 2;
Sage Weil4b58c9b192013-02-05 13:41:23 -08001021 req->r_old_dentry = dget(old_dentry);
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001022 req->r_parent = dir;
1023 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -07001024 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1025 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengad88f232013-07-21 20:25:25 +08001026 /* release LINK_SHARED on source inode (mds will lock it) */
Yan, Zhengd19a0b52017-11-23 17:59:13 +08001027 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -07001028 err = ceph_mdsc_do_request(mdsc, dir, req);
Sage Weil70b666c2011-05-27 09:24:26 -07001029 if (err) {
Sage Weil2817b002009-10-06 11:31:08 -07001030 d_drop(dentry);
Sage Weil70b666c2011-05-27 09:24:26 -07001031 } else if (!req->r_reply_info.head->is_dentry) {
David Howells2b0143b2015-03-17 22:25:59 +00001032 ihold(d_inode(old_dentry));
1033 d_instantiate(dentry, d_inode(old_dentry));
Sage Weil70b666c2011-05-27 09:24:26 -07001034 }
Sage Weil2817b002009-10-06 11:31:08 -07001035 ceph_mdsc_put_request(req);
1036 return err;
1037}
1038
1039/*
Sage Weil2817b002009-10-06 11:31:08 -07001040 * rmdir and unlink are differ only by the metadata op code
1041 */
1042static int ceph_unlink(struct inode *dir, struct dentry *dentry)
1043{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001044 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
1045 struct ceph_mds_client *mdsc = fsc->mdsc;
David Howells2b0143b2015-03-17 22:25:59 +00001046 struct inode *inode = d_inode(dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001047 struct ceph_mds_request *req;
1048 int err = -EROFS;
1049 int op;
1050
1051 if (ceph_snap(dir) == CEPH_SNAPDIR) {
1052 /* rmdir .snap/foo is RMSNAP */
Al Viroa4555892014-10-21 20:11:25 -04001053 dout("rmsnap dir %p '%pd' dn %p\n", dir, dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001054 op = CEPH_MDS_OP_RMSNAP;
1055 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
1056 dout("unlink/rmdir dir %p dn %p inode %p\n",
1057 dir, dentry, inode);
David Howellse36cb0b2015-01-29 12:02:35 +00001058 op = d_is_dir(dentry) ?
Sage Weil2817b002009-10-06 11:31:08 -07001059 CEPH_MDS_OP_RMDIR : CEPH_MDS_OP_UNLINK;
1060 } else
1061 goto out;
1062 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
1063 if (IS_ERR(req)) {
1064 err = PTR_ERR(req);
1065 goto out;
1066 }
1067 req->r_dentry = dget(dentry);
1068 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001069 req->r_parent = dir;
1070 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -07001071 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1072 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Zhi Zhang6ef0bc62018-01-24 21:24:33 +08001073 req->r_inode_drop = ceph_drop_caps_for_unlink(inode);
Sage Weil2817b002009-10-06 11:31:08 -07001074 err = ceph_mdsc_do_request(mdsc, dir, req);
1075 if (!err && !req->r_reply_info.head->is_dentry)
1076 d_delete(dentry);
1077 ceph_mdsc_put_request(req);
1078out:
1079 return err;
1080}
1081
1082static int ceph_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001083 struct inode *new_dir, struct dentry *new_dentry,
1084 unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001085{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001086 struct ceph_fs_client *fsc = ceph_sb_to_client(old_dir->i_sb);
1087 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001088 struct ceph_mds_request *req;
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001089 int op = CEPH_MDS_OP_RENAME;
Sage Weil2817b002009-10-06 11:31:08 -07001090 int err;
1091
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001092 if (flags)
1093 return -EINVAL;
1094
Sage Weil2817b002009-10-06 11:31:08 -07001095 if (ceph_snap(old_dir) != ceph_snap(new_dir))
1096 return -EXDEV;
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001097 if (ceph_snap(old_dir) != CEPH_NOSNAP) {
1098 if (old_dir == new_dir && ceph_snap(old_dir) == CEPH_SNAPDIR)
1099 op = CEPH_MDS_OP_RENAMESNAP;
1100 else
1101 return -EROFS;
1102 }
Luis Henriquescafe21a2018-01-05 10:47:20 +00001103 /* don't allow cross-quota renames */
1104 if ((old_dir != new_dir) &&
1105 (!ceph_quota_is_same_realm(old_dir, new_dir)))
1106 return -EXDEV;
1107
Sage Weil2817b002009-10-06 11:31:08 -07001108 dout("rename dir %p dentry %p to dir %p dentry %p\n",
1109 old_dir, old_dentry, new_dir, new_dentry);
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001110 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
Sage Weil2817b002009-10-06 11:31:08 -07001111 if (IS_ERR(req))
1112 return PTR_ERR(req);
Sage Weil180061a2013-02-05 13:36:05 -08001113 ihold(old_dir);
Sage Weil2817b002009-10-06 11:31:08 -07001114 req->r_dentry = dget(new_dentry);
1115 req->r_num_caps = 2;
1116 req->r_old_dentry = dget(old_dentry);
Sage Weil180061a2013-02-05 13:36:05 -08001117 req->r_old_dentry_dir = old_dir;
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001118 req->r_parent = new_dir;
1119 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -07001120 req->r_old_dentry_drop = CEPH_CAP_FILE_SHARED;
1121 req->r_old_dentry_unless = CEPH_CAP_FILE_EXCL;
1122 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1123 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1124 /* release LINK_RDCACHE on source inode (mds will lock it) */
Yan, Zhengd19a0b52017-11-23 17:59:13 +08001125 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
Zhi Zhang6ef0bc62018-01-24 21:24:33 +08001126 if (d_really_is_positive(new_dentry)) {
1127 req->r_inode_drop =
1128 ceph_drop_caps_for_unlink(d_inode(new_dentry));
1129 }
Sage Weil2817b002009-10-06 11:31:08 -07001130 err = ceph_mdsc_do_request(mdsc, old_dir, req);
1131 if (!err && !req->r_reply_info.head->is_dentry) {
1132 /*
1133 * Normally d_move() is done by fill_trace (called by
1134 * do_request, above). If there is no trace, we need
1135 * to do it here.
1136 */
1137 d_move(old_dentry, new_dentry);
1138 }
1139 ceph_mdsc_put_request(req);
1140 return err;
1141}
1142
Sage Weil81a6cf22010-05-14 09:35:38 -07001143/*
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001144 * Move dentry to tail of mdsc->dentry_leases list when lease is updated.
1145 * Leases at front of the list will expire first. (Assume all leases have
1146 * similar duration)
1147 *
1148 * Called under dentry->d_lock.
1149 */
1150void __ceph_dentry_lease_touch(struct ceph_dentry_info *di)
1151{
1152 struct dentry *dn = di->dentry;
1153 struct ceph_mds_client *mdsc;
1154
1155 dout("dentry_lease_touch %p %p '%pd'\n", di, dn, dn);
1156
1157 di->flags |= CEPH_DENTRY_LEASE_LIST;
1158 if (di->flags & CEPH_DENTRY_SHRINK_LIST) {
1159 di->flags |= CEPH_DENTRY_REFERENCED;
1160 return;
1161 }
1162
1163 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1164 spin_lock(&mdsc->dentry_list_lock);
1165 list_move_tail(&di->lease_list, &mdsc->dentry_leases);
1166 spin_unlock(&mdsc->dentry_list_lock);
1167}
1168
1169static void __dentry_dir_lease_touch(struct ceph_mds_client* mdsc,
1170 struct ceph_dentry_info *di)
1171{
1172 di->flags &= ~(CEPH_DENTRY_LEASE_LIST | CEPH_DENTRY_REFERENCED);
1173 di->lease_gen = 0;
1174 di->time = jiffies;
1175 list_move_tail(&di->lease_list, &mdsc->dentry_dir_leases);
1176}
1177
1178/*
1179 * When dir lease is used, add dentry to tail of mdsc->dentry_dir_leases
1180 * list if it's not in the list, otherwise set 'referenced' flag.
1181 *
1182 * Called under dentry->d_lock.
1183 */
1184void __ceph_dentry_dir_lease_touch(struct ceph_dentry_info *di)
1185{
1186 struct dentry *dn = di->dentry;
1187 struct ceph_mds_client *mdsc;
1188
1189 dout("dentry_dir_lease_touch %p %p '%pd' (offset %lld)\n",
1190 di, dn, dn, di->offset);
1191
1192 if (!list_empty(&di->lease_list)) {
1193 if (di->flags & CEPH_DENTRY_LEASE_LIST) {
1194 /* don't remove dentry from dentry lease list
1195 * if its lease is valid */
1196 if (__dentry_lease_is_valid(di))
1197 return;
1198 } else {
1199 di->flags |= CEPH_DENTRY_REFERENCED;
1200 return;
1201 }
1202 }
1203
1204 if (di->flags & CEPH_DENTRY_SHRINK_LIST) {
1205 di->flags |= CEPH_DENTRY_REFERENCED;
1206 di->flags &= ~CEPH_DENTRY_LEASE_LIST;
1207 return;
1208 }
1209
1210 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1211 spin_lock(&mdsc->dentry_list_lock);
1212 __dentry_dir_lease_touch(mdsc, di),
1213 spin_unlock(&mdsc->dentry_list_lock);
1214}
1215
1216static void __dentry_lease_unlist(struct ceph_dentry_info *di)
1217{
1218 struct ceph_mds_client *mdsc;
1219 if (di->flags & CEPH_DENTRY_SHRINK_LIST)
1220 return;
1221 if (list_empty(&di->lease_list))
1222 return;
1223
1224 mdsc = ceph_sb_to_client(di->dentry->d_sb)->mdsc;
1225 spin_lock(&mdsc->dentry_list_lock);
1226 list_del_init(&di->lease_list);
1227 spin_unlock(&mdsc->dentry_list_lock);
1228}
1229
1230enum {
1231 KEEP = 0,
1232 DELETE = 1,
1233 TOUCH = 2,
1234 STOP = 4,
1235};
1236
1237struct ceph_lease_walk_control {
1238 bool dir_lease;
Yan, Zhengfe330322019-02-01 14:57:15 +08001239 bool expire_dir_lease;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001240 unsigned long nr_to_scan;
1241 unsigned long dir_lease_ttl;
1242};
1243
1244static unsigned long
1245__dentry_leases_walk(struct ceph_mds_client *mdsc,
1246 struct ceph_lease_walk_control *lwc,
1247 int (*check)(struct dentry*, void*))
1248{
1249 struct ceph_dentry_info *di, *tmp;
1250 struct dentry *dentry, *last = NULL;
1251 struct list_head* list;
1252 LIST_HEAD(dispose);
1253 unsigned long freed = 0;
1254 int ret = 0;
1255
1256 list = lwc->dir_lease ? &mdsc->dentry_dir_leases : &mdsc->dentry_leases;
1257 spin_lock(&mdsc->dentry_list_lock);
1258 list_for_each_entry_safe(di, tmp, list, lease_list) {
1259 if (!lwc->nr_to_scan)
1260 break;
1261 --lwc->nr_to_scan;
1262
1263 dentry = di->dentry;
1264 if (last == dentry)
1265 break;
1266
1267 if (!spin_trylock(&dentry->d_lock))
1268 continue;
1269
Al Viro516162b92019-06-27 22:25:23 -04001270 if (__lockref_is_dead(&dentry->d_lockref)) {
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001271 list_del_init(&di->lease_list);
1272 goto next;
1273 }
1274
1275 ret = check(dentry, lwc);
1276 if (ret & TOUCH) {
1277 /* move it into tail of dir lease list */
1278 __dentry_dir_lease_touch(mdsc, di);
1279 if (!last)
1280 last = dentry;
1281 }
1282 if (ret & DELETE) {
1283 /* stale lease */
1284 di->flags &= ~CEPH_DENTRY_REFERENCED;
1285 if (dentry->d_lockref.count > 0) {
1286 /* update_dentry_lease() will re-add
1287 * it to lease list, or
1288 * ceph_d_delete() will return 1 when
1289 * last reference is dropped */
1290 list_del_init(&di->lease_list);
1291 } else {
1292 di->flags |= CEPH_DENTRY_SHRINK_LIST;
1293 list_move_tail(&di->lease_list, &dispose);
1294 dget_dlock(dentry);
1295 }
1296 }
1297next:
1298 spin_unlock(&dentry->d_lock);
1299 if (ret & STOP)
1300 break;
1301 }
1302 spin_unlock(&mdsc->dentry_list_lock);
1303
1304 while (!list_empty(&dispose)) {
1305 di = list_first_entry(&dispose, struct ceph_dentry_info,
1306 lease_list);
1307 dentry = di->dentry;
1308 spin_lock(&dentry->d_lock);
1309
1310 list_del_init(&di->lease_list);
1311 di->flags &= ~CEPH_DENTRY_SHRINK_LIST;
1312 if (di->flags & CEPH_DENTRY_REFERENCED) {
1313 spin_lock(&mdsc->dentry_list_lock);
1314 if (di->flags & CEPH_DENTRY_LEASE_LIST) {
1315 list_add_tail(&di->lease_list,
1316 &mdsc->dentry_leases);
1317 } else {
1318 __dentry_dir_lease_touch(mdsc, di);
1319 }
1320 spin_unlock(&mdsc->dentry_list_lock);
1321 } else {
1322 freed++;
1323 }
1324
1325 spin_unlock(&dentry->d_lock);
1326 /* ceph_d_delete() does the trick */
1327 dput(dentry);
1328 }
1329 return freed;
1330}
1331
1332static int __dentry_lease_check(struct dentry *dentry, void *arg)
1333{
1334 struct ceph_dentry_info *di = ceph_dentry(dentry);
1335 int ret;
1336
1337 if (__dentry_lease_is_valid(di))
1338 return STOP;
1339 ret = __dir_lease_try_check(dentry);
1340 if (ret == -EBUSY)
1341 return KEEP;
1342 if (ret > 0)
1343 return TOUCH;
1344 return DELETE;
1345}
1346
1347static int __dir_lease_check(struct dentry *dentry, void *arg)
1348{
1349 struct ceph_lease_walk_control *lwc = arg;
1350 struct ceph_dentry_info *di = ceph_dentry(dentry);
1351
1352 int ret = __dir_lease_try_check(dentry);
1353 if (ret == -EBUSY)
1354 return KEEP;
1355 if (ret > 0) {
1356 if (time_before(jiffies, di->time + lwc->dir_lease_ttl))
1357 return STOP;
1358 /* Move dentry to tail of dir lease list if we don't want
1359 * to delete it. So dentries in the list are checked in a
1360 * round robin manner */
Yan, Zhengfe330322019-02-01 14:57:15 +08001361 if (!lwc->expire_dir_lease)
1362 return TOUCH;
1363 if (dentry->d_lockref.count > 0 ||
1364 (di->flags & CEPH_DENTRY_REFERENCED))
1365 return TOUCH;
1366 /* invalidate dir lease */
1367 di->lease_shared_gen = 0;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001368 }
1369 return DELETE;
1370}
1371
1372int ceph_trim_dentries(struct ceph_mds_client *mdsc)
1373{
1374 struct ceph_lease_walk_control lwc;
Yan, Zhengfe330322019-02-01 14:57:15 +08001375 unsigned long count;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001376 unsigned long freed;
1377
Yan, Zhengfe330322019-02-01 14:57:15 +08001378 spin_lock(&mdsc->caps_list_lock);
1379 if (mdsc->caps_use_max > 0 &&
1380 mdsc->caps_use_count > mdsc->caps_use_max)
1381 count = mdsc->caps_use_count - mdsc->caps_use_max;
1382 else
1383 count = 0;
1384 spin_unlock(&mdsc->caps_list_lock);
1385
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001386 lwc.dir_lease = false;
1387 lwc.nr_to_scan = CEPH_CAPS_PER_RELEASE * 2;
1388 freed = __dentry_leases_walk(mdsc, &lwc, __dentry_lease_check);
1389 if (!lwc.nr_to_scan) /* more invalid leases */
1390 return -EAGAIN;
1391
1392 if (lwc.nr_to_scan < CEPH_CAPS_PER_RELEASE)
1393 lwc.nr_to_scan = CEPH_CAPS_PER_RELEASE;
1394
1395 lwc.dir_lease = true;
Yan, Zhengfe330322019-02-01 14:57:15 +08001396 lwc.expire_dir_lease = freed < count;
1397 lwc.dir_lease_ttl = mdsc->fsc->mount_options->caps_wanted_delay_max * HZ;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001398 freed +=__dentry_leases_walk(mdsc, &lwc, __dir_lease_check);
1399 if (!lwc.nr_to_scan) /* more to check */
1400 return -EAGAIN;
1401
1402 return freed > 0 ? 1 : 0;
1403}
1404
1405/*
Sage Weil81a6cf22010-05-14 09:35:38 -07001406 * Ensure a dentry lease will no longer revalidate.
1407 */
1408void ceph_invalidate_dentry_lease(struct dentry *dentry)
1409{
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001410 struct ceph_dentry_info *di = ceph_dentry(dentry);
Sage Weil81a6cf22010-05-14 09:35:38 -07001411 spin_lock(&dentry->d_lock);
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001412 di->time = jiffies;
1413 di->lease_shared_gen = 0;
1414 __dentry_lease_unlist(di);
Sage Weil81a6cf22010-05-14 09:35:38 -07001415 spin_unlock(&dentry->d_lock);
1416}
Sage Weil2817b002009-10-06 11:31:08 -07001417
1418/*
1419 * Check if dentry lease is valid. If not, delete the lease. Try to
1420 * renew if the least is more than half up.
1421 */
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001422static bool __dentry_lease_is_valid(struct ceph_dentry_info *di)
1423{
1424 struct ceph_mds_session *session;
1425
1426 if (!di->lease_gen)
1427 return false;
1428
1429 session = di->lease_session;
1430 if (session) {
1431 u32 gen;
1432 unsigned long ttl;
1433
1434 spin_lock(&session->s_gen_ttl_lock);
1435 gen = session->s_cap_gen;
1436 ttl = session->s_cap_ttl;
1437 spin_unlock(&session->s_gen_ttl_lock);
1438
1439 if (di->lease_gen == gen &&
1440 time_before(jiffies, ttl) &&
1441 time_before(jiffies, di->time))
1442 return true;
1443 }
1444 di->lease_gen = 0;
1445 return false;
1446}
1447
Yan, Zheng8f2a98ef2019-05-23 10:45:24 +08001448static int dentry_lease_is_valid(struct dentry *dentry, unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001449{
1450 struct ceph_dentry_info *di;
Sage Weil2817b002009-10-06 11:31:08 -07001451 struct ceph_mds_session *session = NULL;
Sage Weil2817b002009-10-06 11:31:08 -07001452 u32 seq = 0;
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001453 int valid = 0;
Sage Weil2817b002009-10-06 11:31:08 -07001454
1455 spin_lock(&dentry->d_lock);
1456 di = ceph_dentry(dentry);
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001457 if (di && __dentry_lease_is_valid(di)) {
1458 valid = 1;
Sage Weil2817b002009-10-06 11:31:08 -07001459
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001460 if (di->lease_renew_after &&
1461 time_after(jiffies, di->lease_renew_after)) {
1462 /*
1463 * We should renew. If we're in RCU walk mode
1464 * though, we can't do that so just return
1465 * -ECHILD.
1466 */
1467 if (flags & LOOKUP_RCU) {
1468 valid = -ECHILD;
1469 } else {
1470 session = ceph_get_mds_session(di->lease_session);
1471 seq = di->lease_seq;
1472 di->lease_renew_after = 0;
1473 di->lease_renew_from = jiffies;
Sage Weil2817b002009-10-06 11:31:08 -07001474 }
Sage Weil2817b002009-10-06 11:31:08 -07001475 }
1476 }
1477 spin_unlock(&dentry->d_lock);
1478
1479 if (session) {
Yan, Zheng8f2a98ef2019-05-23 10:45:24 +08001480 ceph_mdsc_lease_send_msg(session, dentry,
Sage Weil2817b002009-10-06 11:31:08 -07001481 CEPH_MDS_LEASE_RENEW, seq);
1482 ceph_put_mds_session(session);
1483 }
1484 dout("dentry_lease_is_valid - dentry %p = %d\n", dentry, valid);
1485 return valid;
1486}
1487
1488/*
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001489 * Called under dentry->d_lock.
1490 */
1491static int __dir_lease_try_check(const struct dentry *dentry)
1492{
1493 struct ceph_dentry_info *di = ceph_dentry(dentry);
1494 struct inode *dir;
1495 struct ceph_inode_info *ci;
1496 int valid = 0;
1497
1498 if (!di->lease_shared_gen)
1499 return 0;
1500 if (IS_ROOT(dentry))
1501 return 0;
1502
1503 dir = d_inode(dentry->d_parent);
1504 ci = ceph_inode(dir);
1505
1506 if (spin_trylock(&ci->i_ceph_lock)) {
1507 if (atomic_read(&ci->i_shared_gen) == di->lease_shared_gen &&
1508 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 0))
1509 valid = 1;
1510 spin_unlock(&ci->i_ceph_lock);
1511 } else {
1512 valid = -EBUSY;
1513 }
1514
1515 if (!valid)
1516 di->lease_shared_gen = 0;
1517 return valid;
1518}
1519
1520/*
Sage Weil2817b002009-10-06 11:31:08 -07001521 * Check if directory-wide content lease/cap is valid.
1522 */
1523static int dir_lease_is_valid(struct inode *dir, struct dentry *dentry)
1524{
1525 struct ceph_inode_info *ci = ceph_inode(dir);
Yan, Zhengfeab6ac2019-05-22 17:26:27 +08001526 int valid;
1527 int shared_gen;
Sage Weil2817b002009-10-06 11:31:08 -07001528
Sage Weilbe655592011-11-30 09:47:09 -08001529 spin_lock(&ci->i_ceph_lock);
Yan, Zhengfeab6ac2019-05-22 17:26:27 +08001530 valid = __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1);
1531 shared_gen = atomic_read(&ci->i_shared_gen);
Sage Weilbe655592011-11-30 09:47:09 -08001532 spin_unlock(&ci->i_ceph_lock);
Yan, Zhengfeab6ac2019-05-22 17:26:27 +08001533 if (valid) {
1534 struct ceph_dentry_info *di;
1535 spin_lock(&dentry->d_lock);
1536 di = ceph_dentry(dentry);
1537 if (dir == d_inode(dentry->d_parent) &&
1538 di && di->lease_shared_gen == shared_gen)
1539 __ceph_dentry_dir_lease_touch(di);
1540 else
1541 valid = 0;
1542 spin_unlock(&dentry->d_lock);
1543 }
1544 dout("dir_lease_is_valid dir %p v%u dentry %p = %d\n",
1545 dir, (unsigned)atomic_read(&ci->i_shared_gen), dentry, valid);
Sage Weil2817b002009-10-06 11:31:08 -07001546 return valid;
1547}
1548
1549/*
1550 * Check if cached dentry can be trusted.
1551 */
Al Viro0b728e12012-06-10 16:03:43 -04001552static int ceph_d_revalidate(struct dentry *dentry, unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001553{
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001554 int valid = 0;
Yan, Zheng641235d2016-03-16 16:40:23 +08001555 struct dentry *parent;
Nick Piggin34286d62011-01-07 17:49:57 +11001556 struct inode *dir;
1557
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001558 if (flags & LOOKUP_RCU) {
Seraphime Kirkovski52953d52016-12-26 10:26:34 +01001559 parent = READ_ONCE(dentry->d_parent);
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001560 dir = d_inode_rcu(parent);
1561 if (!dir)
1562 return -ECHILD;
1563 } else {
1564 parent = dget_parent(dentry);
1565 dir = d_inode(parent);
1566 }
Nick Piggin34286d62011-01-07 17:49:57 +11001567
Al Viroa4555892014-10-21 20:11:25 -04001568 dout("d_revalidate %p '%pd' inode %p offset %lld\n", dentry,
David Howells2b0143b2015-03-17 22:25:59 +00001569 dentry, d_inode(dentry), ceph_dentry(dentry)->offset);
Sage Weil2817b002009-10-06 11:31:08 -07001570
1571 /* always trust cached snapped dentries, snapdir dentry */
1572 if (ceph_snap(dir) != CEPH_NOSNAP) {
Al Viroa4555892014-10-21 20:11:25 -04001573 dout("d_revalidate %p '%pd' inode %p is SNAPPED\n", dentry,
David Howells2b0143b2015-03-17 22:25:59 +00001574 dentry, d_inode(dentry));
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001575 valid = 1;
David Howells2b0143b2015-03-17 22:25:59 +00001576 } else if (d_really_is_positive(dentry) &&
1577 ceph_snap(d_inode(dentry)) == CEPH_SNAPDIR) {
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001578 valid = 1;
Jeff Layton14fb9c92016-07-01 09:39:20 -04001579 } else {
Yan, Zheng8f2a98ef2019-05-23 10:45:24 +08001580 valid = dentry_lease_is_valid(dentry, flags);
Jeff Layton14fb9c92016-07-01 09:39:20 -04001581 if (valid == -ECHILD)
1582 return valid;
1583 if (valid || dir_lease_is_valid(dir, dentry)) {
1584 if (d_really_is_positive(dentry))
1585 valid = ceph_is_any_caps(d_inode(dentry));
1586 else
1587 valid = 1;
1588 }
Sage Weil2817b002009-10-06 11:31:08 -07001589 }
Sage Weil2817b002009-10-06 11:31:08 -07001590
Yan, Zheng200fd272016-03-17 14:41:59 +08001591 if (!valid) {
1592 struct ceph_mds_client *mdsc =
1593 ceph_sb_to_client(dir->i_sb)->mdsc;
1594 struct ceph_mds_request *req;
Jeff Layton10976802017-01-12 14:42:38 -05001595 int op, err;
1596 u32 mask;
Yan, Zheng200fd272016-03-17 14:41:59 +08001597
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001598 if (flags & LOOKUP_RCU)
1599 return -ECHILD;
1600
Yan, Zheng200fd272016-03-17 14:41:59 +08001601 op = ceph_snap(dir) == CEPH_SNAPDIR ?
Jeff Layton5eb9f602017-01-30 09:47:25 -05001602 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
Yan, Zheng200fd272016-03-17 14:41:59 +08001603 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
1604 if (!IS_ERR(req)) {
1605 req->r_dentry = dget(dentry);
Jeff Layton5eb9f602017-01-30 09:47:25 -05001606 req->r_num_caps = 2;
1607 req->r_parent = dir;
Yan, Zheng200fd272016-03-17 14:41:59 +08001608
1609 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
1610 if (ceph_security_xattr_wanted(dir))
1611 mask |= CEPH_CAP_XATTR_SHARED;
Jeff Layton10976802017-01-12 14:42:38 -05001612 req->r_args.getattr.mask = cpu_to_le32(mask);
Yan, Zheng200fd272016-03-17 14:41:59 +08001613
Yan, Zheng200fd272016-03-17 14:41:59 +08001614 err = ceph_mdsc_do_request(mdsc, NULL, req);
Jeff Laytonc3f46882016-11-30 15:56:46 -05001615 switch (err) {
1616 case 0:
1617 if (d_really_is_positive(dentry) &&
1618 d_inode(dentry) == req->r_target_inode)
1619 valid = 1;
1620 break;
1621 case -ENOENT:
1622 if (d_really_is_negative(dentry))
1623 valid = 1;
1624 /* Fallthrough */
1625 default:
1626 break;
Yan, Zheng200fd272016-03-17 14:41:59 +08001627 }
1628 ceph_mdsc_put_request(req);
1629 dout("d_revalidate %p lookup result=%d\n",
1630 dentry, err);
1631 }
1632 }
1633
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001634 dout("d_revalidate %p %s\n", dentry, valid ? "valid" : "invalid");
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001635 if (!valid)
Yan, Zheng9215aee2013-11-30 12:47:41 +08001636 ceph_dir_clear_complete(dir);
Yan, Zheng641235d2016-03-16 16:40:23 +08001637
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001638 if (!(flags & LOOKUP_RCU))
1639 dput(parent);
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001640 return valid;
Sage Weil2817b002009-10-06 11:31:08 -07001641}
1642
1643/*
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001644 * Delete unused dentry that doesn't have valid lease
1645 *
1646 * Called under dentry->d_lock.
1647 */
1648static int ceph_d_delete(const struct dentry *dentry)
1649{
1650 struct ceph_dentry_info *di;
1651
1652 /* won't release caps */
1653 if (d_really_is_negative(dentry))
1654 return 0;
1655 if (ceph_snap(d_inode(dentry)) != CEPH_NOSNAP)
1656 return 0;
1657 /* vaild lease? */
1658 di = ceph_dentry(dentry);
1659 if (di) {
1660 if (__dentry_lease_is_valid(di))
1661 return 0;
1662 if (__dir_lease_try_check(dentry))
1663 return 0;
1664 }
1665 return 1;
1666}
1667
1668/*
Sage Weil147851d2011-03-15 14:57:41 -07001669 * Release our ceph_dentry_info.
Sage Weil2817b002009-10-06 11:31:08 -07001670 */
Sage Weil147851d2011-03-15 14:57:41 -07001671static void ceph_d_release(struct dentry *dentry)
Sage Weil2817b002009-10-06 11:31:08 -07001672{
1673 struct ceph_dentry_info *di = ceph_dentry(dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001674
Sage Weil147851d2011-03-15 14:57:41 -07001675 dout("d_release %p\n", dentry);
Jeff Layton5b484a52016-07-01 09:39:20 -04001676
1677 spin_lock(&dentry->d_lock);
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001678 __dentry_lease_unlist(di);
Jeff Layton5b484a52016-07-01 09:39:20 -04001679 dentry->d_fsdata = NULL;
1680 spin_unlock(&dentry->d_lock);
1681
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001682 if (di->lease_session)
1683 ceph_put_mds_session(di->lease_session);
1684 kmem_cache_free(ceph_dentry_cachep, di);
Sage Weil2817b002009-10-06 11:31:08 -07001685}
1686
Sage Weilb58dc412011-03-15 15:53:40 -07001687/*
1688 * When the VFS prunes a dentry from the cache, we need to clear the
1689 * complete flag on the parent directory.
1690 *
1691 * Called under dentry->d_lock.
1692 */
1693static void ceph_d_prune(struct dentry *dentry)
1694{
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001695 struct ceph_inode_info *dir_ci;
1696 struct ceph_dentry_info *di;
1697
1698 dout("ceph_d_prune %pd %p\n", dentry, dentry);
Sage Weilb58dc412011-03-15 15:53:40 -07001699
1700 /* do we have a valid parent? */
Sage Weil8842b3b2012-06-07 13:43:35 -07001701 if (IS_ROOT(dentry))
Sage Weilb58dc412011-03-15 15:53:40 -07001702 return;
1703
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001704 /* we hold d_lock, so d_parent is stable */
1705 dir_ci = ceph_inode(d_inode(dentry->d_parent));
1706 if (dir_ci->i_vino.snap == CEPH_SNAPDIR)
Sage Weilb58dc412011-03-15 15:53:40 -07001707 return;
1708
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001709 /* who calls d_delete() should also disable dcache readdir */
1710 if (d_really_is_negative(dentry))
Al Viro18fc8ab2016-10-28 21:52:50 -04001711 return;
1712
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001713 /* d_fsdata does not get cleared until d_release */
1714 if (!d_unhashed(dentry)) {
1715 __ceph_dir_clear_complete(dir_ci);
1716 return;
1717 }
1718
1719 /* Disable dcache readdir just in case that someone called d_drop()
1720 * or d_invalidate(), but MDS didn't revoke CEPH_CAP_FILE_SHARED
1721 * properly (dcache readdir is still enabled) */
1722 di = ceph_dentry(dentry);
1723 if (di->offset > 0 &&
1724 di->lease_shared_gen == atomic_read(&dir_ci->i_shared_gen))
1725 __ceph_dir_clear_ordered(dir_ci);
Sage Weilb58dc412011-03-15 15:53:40 -07001726}
Sage Weil2817b002009-10-06 11:31:08 -07001727
1728/*
1729 * read() on a dir. This weird interface hack only works if mounted
1730 * with '-o dirstat'.
1731 */
1732static ssize_t ceph_read_dir(struct file *file, char __user *buf, size_t size,
1733 loff_t *ppos)
1734{
Chengguang Xubb48bd42018-03-13 10:42:44 +08001735 struct ceph_dir_file_info *dfi = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -05001736 struct inode *inode = file_inode(file);
Sage Weil2817b002009-10-06 11:31:08 -07001737 struct ceph_inode_info *ci = ceph_inode(inode);
1738 int left;
Sage Weilae598082011-05-12 14:28:05 -07001739 const int bufsize = 1024;
Sage Weil2817b002009-10-06 11:31:08 -07001740
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001741 if (!ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb), DIRSTAT))
Sage Weil2817b002009-10-06 11:31:08 -07001742 return -EISDIR;
1743
Chengguang Xubb48bd42018-03-13 10:42:44 +08001744 if (!dfi->dir_info) {
1745 dfi->dir_info = kmalloc(bufsize, GFP_KERNEL);
1746 if (!dfi->dir_info)
Sage Weil2817b002009-10-06 11:31:08 -07001747 return -ENOMEM;
Chengguang Xubb48bd42018-03-13 10:42:44 +08001748 dfi->dir_info_len =
1749 snprintf(dfi->dir_info, bufsize,
Sage Weil2817b002009-10-06 11:31:08 -07001750 "entries: %20lld\n"
1751 " files: %20lld\n"
1752 " subdirs: %20lld\n"
1753 "rentries: %20lld\n"
1754 " rfiles: %20lld\n"
1755 " rsubdirs: %20lld\n"
1756 "rbytes: %20lld\n"
Arnd Bergmann9bbeab42018-07-13 22:18:36 +02001757 "rctime: %10lld.%09ld\n",
Sage Weil2817b002009-10-06 11:31:08 -07001758 ci->i_files + ci->i_subdirs,
1759 ci->i_files,
1760 ci->i_subdirs,
1761 ci->i_rfiles + ci->i_rsubdirs,
1762 ci->i_rfiles,
1763 ci->i_rsubdirs,
1764 ci->i_rbytes,
Arnd Bergmann9bbeab42018-07-13 22:18:36 +02001765 ci->i_rctime.tv_sec,
1766 ci->i_rctime.tv_nsec);
Sage Weil2817b002009-10-06 11:31:08 -07001767 }
1768
Chengguang Xubb48bd42018-03-13 10:42:44 +08001769 if (*ppos >= dfi->dir_info_len)
Sage Weil2817b002009-10-06 11:31:08 -07001770 return 0;
Chengguang Xubb48bd42018-03-13 10:42:44 +08001771 size = min_t(unsigned, size, dfi->dir_info_len-*ppos);
1772 left = copy_to_user(buf, dfi->dir_info + *ppos, size);
Sage Weil2817b002009-10-06 11:31:08 -07001773 if (left == size)
1774 return -EFAULT;
1775 *ppos += (size - left);
1776 return size - left;
1777}
1778
Sage Weil2817b002009-10-06 11:31:08 -07001779
Sage Weil2817b002009-10-06 11:31:08 -07001780
Sage Weil6c0f3af2010-11-16 11:14:34 -08001781/*
1782 * Return name hash for a given dentry. This is dependent on
1783 * the parent directory's hash function.
1784 */
Sage Weile5f86dc2011-07-26 11:30:55 -07001785unsigned ceph_dentry_hash(struct inode *dir, struct dentry *dn)
Sage Weil6c0f3af2010-11-16 11:14:34 -08001786{
Sage Weil6c0f3af2010-11-16 11:14:34 -08001787 struct ceph_inode_info *dci = ceph_inode(dir);
Jeff Layton76a495d2019-04-17 12:58:28 -04001788 unsigned hash;
Sage Weil6c0f3af2010-11-16 11:14:34 -08001789
1790 switch (dci->i_dir_layout.dl_dir_hash) {
1791 case 0: /* for backward compat */
1792 case CEPH_STR_HASH_LINUX:
1793 return dn->d_name.hash;
1794
1795 default:
Jeff Layton76a495d2019-04-17 12:58:28 -04001796 spin_lock(&dn->d_lock);
1797 hash = ceph_str_hash(dci->i_dir_layout.dl_dir_hash,
Sage Weil6c0f3af2010-11-16 11:14:34 -08001798 dn->d_name.name, dn->d_name.len);
Jeff Layton76a495d2019-04-17 12:58:28 -04001799 spin_unlock(&dn->d_lock);
1800 return hash;
Sage Weil6c0f3af2010-11-16 11:14:34 -08001801 }
1802}
1803
Sage Weil2817b002009-10-06 11:31:08 -07001804const struct file_operations ceph_dir_fops = {
1805 .read = ceph_read_dir,
Al Viro77acfa22013-05-17 16:52:26 -04001806 .iterate = ceph_readdir,
Sage Weil2817b002009-10-06 11:31:08 -07001807 .llseek = ceph_dir_llseek,
1808 .open = ceph_open,
1809 .release = ceph_release,
1810 .unlocked_ioctl = ceph_ioctl,
Yan, Zhengda819c82015-05-27 11:19:34 +08001811 .fsync = ceph_fsync,
Yan, Zheng597817d2018-05-15 11:30:43 +08001812 .lock = ceph_lock,
1813 .flock = ceph_flock,
Sage Weil2817b002009-10-06 11:31:08 -07001814};
1815
Yan, Zheng38c48b52015-01-14 13:46:04 +08001816const struct file_operations ceph_snapdir_fops = {
1817 .iterate = ceph_readdir,
1818 .llseek = ceph_dir_llseek,
1819 .open = ceph_open,
1820 .release = ceph_release,
1821};
1822
Sage Weil2817b002009-10-06 11:31:08 -07001823const struct inode_operations ceph_dir_iops = {
1824 .lookup = ceph_lookup,
1825 .permission = ceph_permission,
1826 .getattr = ceph_getattr,
1827 .setattr = ceph_setattr,
Sage Weil2817b002009-10-06 11:31:08 -07001828 .listxattr = ceph_listxattr,
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001829 .get_acl = ceph_get_acl,
Sage Weil72466d02014-01-29 06:22:25 -08001830 .set_acl = ceph_set_acl,
Sage Weil2817b002009-10-06 11:31:08 -07001831 .mknod = ceph_mknod,
1832 .symlink = ceph_symlink,
1833 .mkdir = ceph_mkdir,
1834 .link = ceph_link,
1835 .unlink = ceph_unlink,
1836 .rmdir = ceph_unlink,
1837 .rename = ceph_rename,
1838 .create = ceph_create,
Miklos Szeredi2d83bde2012-06-05 15:10:25 +02001839 .atomic_open = ceph_atomic_open,
Sage Weil2817b002009-10-06 11:31:08 -07001840};
1841
Yan, Zheng38c48b52015-01-14 13:46:04 +08001842const struct inode_operations ceph_snapdir_iops = {
1843 .lookup = ceph_lookup,
1844 .permission = ceph_permission,
1845 .getattr = ceph_getattr,
1846 .mkdir = ceph_mkdir,
1847 .rmdir = ceph_unlink,
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001848 .rename = ceph_rename,
Yan, Zheng38c48b52015-01-14 13:46:04 +08001849};
1850
Sage Weil52dfb8a2010-08-03 10:25:30 -07001851const struct dentry_operations ceph_dentry_ops = {
Sage Weil2817b002009-10-06 11:31:08 -07001852 .d_revalidate = ceph_d_revalidate,
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001853 .d_delete = ceph_d_delete,
Sage Weil147851d2011-03-15 14:57:41 -07001854 .d_release = ceph_d_release,
Sage Weilb58dc412011-03-15 15:53:40 -07001855 .d_prune = ceph_d_prune,
Al Viroad5cb122016-10-28 22:05:13 -04001856 .d_init = ceph_d_init,
Sage Weil2817b002009-10-06 11:31:08 -07001857};