blob: d594c26274305ac44d46c647545b503c787232bc [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
Sage Weilbe655592011-11-30 09:47:09 -0800338 spin_lock(&ci->i_ceph_lock);
Yan, Zheng719a2512020-03-05 20:21:00 +0800339 /* request Fx cap. if have Fx, we don't need to release Fs cap
340 * for later create/unlink. */
341 __ceph_touch_fmode(ci, mdsc, CEPH_FILE_MODE_WR);
342 /* can we use the dcache? */
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800343 if (ceph_test_mount_opt(fsc, DCACHE) &&
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700344 !ceph_test_mount_opt(fsc, NOASYNCREADDIR) &&
Sage Weila0dff782010-07-22 13:47:21 -0700345 ceph_snap(inode) != CEPH_SNAPDIR &&
Yan, Zheng70db4f32014-10-21 18:09:56 -0700346 __ceph_dir_is_complete_ordered(ci) &&
Sage Weil2817b002009-10-06 11:31:08 -0700347 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1)) {
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800348 int shared_gen = atomic_read(&ci->i_shared_gen);
Sage Weilbe655592011-11-30 09:47:09 -0800349 spin_unlock(&ci->i_ceph_lock);
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800350 err = __dcache_readdir(file, ctx, shared_gen);
Sage Weilefa4c122010-10-18 14:04:31 -0700351 if (err != -EAGAIN)
Sage Weil2817b002009-10-06 11:31:08 -0700352 return err;
Sage Weilefa4c122010-10-18 14:04:31 -0700353 } else {
Sage Weilbe655592011-11-30 09:47:09 -0800354 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700355 }
Sage Weil2817b002009-10-06 11:31:08 -0700356
357 /* proceed with a normal readdir */
Sage Weil2817b002009-10-06 11:31:08 -0700358more:
359 /* do we have the correct frag content buffered? */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800360 if (need_send_readdir(dfi, ctx->pos)) {
Sage Weil2817b002009-10-06 11:31:08 -0700361 struct ceph_mds_request *req;
362 int op = ceph_snap(inode) == CEPH_SNAPDIR ?
363 CEPH_MDS_OP_LSSNAP : CEPH_MDS_OP_READDIR;
364
365 /* discard old result, if any */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800366 if (dfi->last_readdir) {
367 ceph_mdsc_put_request(dfi->last_readdir);
368 dfi->last_readdir = NULL;
Sage Weil393f6622010-03-10 12:03:32 -0800369 }
Sage Weil2817b002009-10-06 11:31:08 -0700370
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800371 if (is_hash_order(ctx->pos)) {
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800372 /* fragtree isn't always accurate. choose frag
373 * based on previous reply when possible. */
374 if (frag == (unsigned)-1)
375 frag = ceph_choose_frag(ci, fpos_hash(ctx->pos),
376 NULL, NULL);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800377 } else {
378 frag = fpos_frag(ctx->pos);
379 }
380
Sage Weil2817b002009-10-06 11:31:08 -0700381 dout("readdir fetching %llx.%llx frag %x offset '%s'\n",
Chengguang Xubb48bd42018-03-13 10:42:44 +0800382 ceph_vinop(inode), frag, dfi->last_name);
Sage Weil2817b002009-10-06 11:31:08 -0700383 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
384 if (IS_ERR(req))
385 return PTR_ERR(req);
Yan, Zheng54008392014-03-29 13:41:15 +0800386 err = ceph_alloc_readdir_reply_buffer(req, inode);
387 if (err) {
388 ceph_mdsc_put_request(req);
389 return err;
390 }
Sage Weil2817b002009-10-06 11:31:08 -0700391 /* hints to request -> mds selection code */
392 req->r_direct_mode = USE_AUTH_MDS;
Yan, Zheng5d37ca12017-07-26 12:48:08 +0800393 if (op == CEPH_MDS_OP_READDIR) {
394 req->r_direct_hash = ceph_frag_value(frag);
395 __set_bit(CEPH_MDS_R_DIRECT_IS_HASH, &req->r_req_flags);
Yan, Zheng87c91a92017-11-23 18:28:16 +0800396 req->r_inode_drop = CEPH_CAP_FILE_EXCL;
Yan, Zheng5d37ca12017-07-26 12:48:08 +0800397 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800398 if (dfi->last_name) {
399 req->r_path2 = kstrdup(dfi->last_name, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400400 if (!req->r_path2) {
401 ceph_mdsc_put_request(req);
402 return -ENOMEM;
403 }
Yan, Zheng79162542017-04-05 12:54:05 -0400404 } else if (is_hash_order(ctx->pos)) {
405 req->r_args.readdir.offset_hash =
406 cpu_to_le32(fpos_hash(ctx->pos));
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400407 }
Yan, Zheng79162542017-04-05 12:54:05 -0400408
Chengguang Xubb48bd42018-03-13 10:42:44 +0800409 req->r_dir_release_cnt = dfi->dir_release_count;
410 req->r_dir_ordered_cnt = dfi->dir_ordered_count;
411 req->r_readdir_cache_idx = dfi->readdir_cache_idx;
412 req->r_readdir_offset = dfi->next_offset;
Sage Weil2817b002009-10-06 11:31:08 -0700413 req->r_args.readdir.frag = cpu_to_le32(frag);
Yan, Zheng956d39d2016-04-27 17:48:30 +0800414 req->r_args.readdir.flags =
415 cpu_to_le16(CEPH_READDIR_REPLY_BITFLAGS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400416
417 req->r_inode = inode;
418 ihold(inode);
419 req->r_dentry = dget(file->f_path.dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700420 err = ceph_mdsc_do_request(mdsc, NULL, req);
421 if (err < 0) {
422 ceph_mdsc_put_request(req);
423 return err;
424 }
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800425 dout("readdir got and parsed readdir result=%d on "
426 "frag %x, end=%d, complete=%d, hash_order=%d\n",
427 err, frag,
Sage Weil2817b002009-10-06 11:31:08 -0700428 (int)req->r_reply_info.dir_end,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800429 (int)req->r_reply_info.dir_complete,
430 (int)req->r_reply_info.hash_order);
Sage Weil2817b002009-10-06 11:31:08 -0700431
Yan, Zheng81c6aea2013-09-18 09:44:13 +0800432 rinfo = &req->r_reply_info;
433 if (le32_to_cpu(rinfo->dir_dir->frag) != frag) {
434 frag = le32_to_cpu(rinfo->dir_dir->frag);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800435 if (!rinfo->hash_order) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800436 dfi->next_offset = req->r_readdir_offset;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800437 /* adjust ctx->pos to beginning of frag */
438 ctx->pos = ceph_make_fpos(frag,
Chengguang Xubb48bd42018-03-13 10:42:44 +0800439 dfi->next_offset,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800440 false);
441 }
Yan, Zheng81c6aea2013-09-18 09:44:13 +0800442 }
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800443
Chengguang Xubb48bd42018-03-13 10:42:44 +0800444 dfi->frag = frag;
445 dfi->last_readdir = req;
Sage Weil2817b002009-10-06 11:31:08 -0700446
Jeff Laytonbc2de10d2017-02-01 13:49:09 -0500447 if (test_bit(CEPH_MDS_R_DID_PREPOPULATE, &req->r_req_flags)) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800448 dfi->readdir_cache_idx = req->r_readdir_cache_idx;
449 if (dfi->readdir_cache_idx < 0) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800450 /* preclude from marking dir ordered */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800451 dfi->dir_ordered_count = 0;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800452 } else if (ceph_frag_is_leftmost(frag) &&
Chengguang Xubb48bd42018-03-13 10:42:44 +0800453 dfi->next_offset == 2) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800454 /* note dir version at start of readdir so
455 * we can tell if any dentries get dropped */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800456 dfi->dir_release_count = req->r_dir_release_cnt;
457 dfi->dir_ordered_count = req->r_dir_ordered_cnt;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800458 }
459 } else {
Chengguang Xu4c069a52018-01-30 16:29:17 +0800460 dout("readdir !did_prepopulate\n");
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800461 /* disable readdir cache */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800462 dfi->readdir_cache_idx = -1;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800463 /* preclude from marking dir complete */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800464 dfi->dir_release_count = 0;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800465 }
466
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800467 /* note next offset and last dentry name */
468 if (rinfo->dir_nr > 0) {
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800469 struct ceph_mds_reply_dir_entry *rde =
470 rinfo->dir_entries + (rinfo->dir_nr-1);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800471 unsigned next_offset = req->r_reply_info.dir_end ?
472 2 : (fpos_off(rde->offset) + 1);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800473 err = note_last_dentry(dfi, rde->name, rde->name_len,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800474 next_offset);
Sage Weil2817b002009-10-06 11:31:08 -0700475 if (err)
476 return err;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800477 } else if (req->r_reply_info.dir_end) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800478 dfi->next_offset = 2;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800479 /* keep last name */
Sage Weil2817b002009-10-06 11:31:08 -0700480 }
481 }
482
Chengguang Xubb48bd42018-03-13 10:42:44 +0800483 rinfo = &dfi->last_readdir->r_reply_info;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800484 dout("readdir frag %x num %d pos %llx chunk first %llx\n",
Chengguang Xubb48bd42018-03-13 10:42:44 +0800485 dfi->frag, rinfo->dir_nr, ctx->pos,
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800486 rinfo->dir_nr ? rinfo->dir_entries[0].offset : 0LL);
Al Viro77acfa22013-05-17 16:52:26 -0400487
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800488 i = 0;
489 /* search start position */
490 if (rinfo->dir_nr > 0) {
491 int step, nr = rinfo->dir_nr;
492 while (nr > 0) {
493 step = nr >> 1;
494 if (rinfo->dir_entries[i + step].offset < ctx->pos) {
495 i += step + 1;
496 nr -= step + 1;
497 } else {
498 nr = step;
499 }
500 }
501 }
502 for (; i < rinfo->dir_nr; i++) {
503 struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
Sage Weil3105c192010-11-18 09:15:07 -0800504 struct ceph_vino vino;
505 ino_t ino;
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800506 u32 ftype;
Sage Weil3105c192010-11-18 09:15:07 -0800507
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800508 BUG_ON(rde->offset < ctx->pos);
509
510 ctx->pos = rde->offset;
511 dout("readdir (%d/%d) -> %llx '%.*s' %p\n",
512 i, rinfo->dir_nr, ctx->pos,
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800513 rde->name_len, rde->name, &rde->inode.in);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800514
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800515 BUG_ON(!rde->inode.in);
516 ftype = le32_to_cpu(rde->inode.in->mode) >> 12;
517 vino.ino = le64_to_cpu(rde->inode.in->ino);
518 vino.snap = le64_to_cpu(rde->inode.in->snapid);
Sage Weil3105c192010-11-18 09:15:07 -0800519 ino = ceph_vino_to_ino(vino);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800520
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800521 if (!dir_emit(ctx, rde->name, rde->name_len,
522 ceph_translate_ino(inode->i_sb, ino), ftype)) {
Sage Weil2817b002009-10-06 11:31:08 -0700523 dout("filldir stopping us...\n");
524 return 0;
525 }
Al Viro77acfa22013-05-17 16:52:26 -0400526 ctx->pos++;
Sage Weil2817b002009-10-06 11:31:08 -0700527 }
528
Chengguang Xubb48bd42018-03-13 10:42:44 +0800529 ceph_mdsc_put_request(dfi->last_readdir);
530 dfi->last_readdir = NULL;
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800531
Chengguang Xubb48bd42018-03-13 10:42:44 +0800532 if (dfi->next_offset > 2) {
533 frag = dfi->frag;
Sage Weil2817b002009-10-06 11:31:08 -0700534 goto more;
535 }
536
537 /* more frags? */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800538 if (!ceph_frag_is_rightmost(dfi->frag)) {
539 frag = ceph_frag_next(dfi->frag);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800540 if (is_hash_order(ctx->pos)) {
541 loff_t new_pos = ceph_make_fpos(ceph_frag_value(frag),
Chengguang Xubb48bd42018-03-13 10:42:44 +0800542 dfi->next_offset, true);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800543 if (new_pos > ctx->pos)
544 ctx->pos = new_pos;
545 /* keep last_name */
546 } else {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800547 ctx->pos = ceph_make_fpos(frag, dfi->next_offset,
548 false);
549 kfree(dfi->last_name);
550 dfi->last_name = NULL;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800551 }
Sage Weil2817b002009-10-06 11:31:08 -0700552 dout("readdir next frag is %x\n", frag);
553 goto more;
554 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800555 dfi->file_info.flags |= CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700556
557 /*
558 * if dir_release_count still matches the dir, no dentries
559 * were released during the whole readdir, and we should have
560 * the complete dir contents in our cache.
561 */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800562 if (atomic64_read(&ci->i_release_count) ==
563 dfi->dir_release_count) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800564 spin_lock(&ci->i_ceph_lock);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800565 if (dfi->dir_ordered_count ==
566 atomic64_read(&ci->i_ordered_count)) {
Yan, Zheng70db4f32014-10-21 18:09:56 -0700567 dout(" marking %p complete and ordered\n", inode);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800568 /* use i_size to track number of entries in
569 * readdir cache */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800570 BUG_ON(dfi->readdir_cache_idx < 0);
571 i_size_write(inode, dfi->readdir_cache_idx *
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800572 sizeof(struct dentry*));
573 } else {
Yan, Zheng70db4f32014-10-21 18:09:56 -0700574 dout(" marking %p complete\n", inode);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800575 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800576 __ceph_dir_set_complete(ci, dfi->dir_release_count,
577 dfi->dir_ordered_count);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800578 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700579 }
Sage Weil2817b002009-10-06 11:31:08 -0700580
Al Viro77acfa22013-05-17 16:52:26 -0400581 dout("readdir %p file %p done.\n", inode, file);
Sage Weil2817b002009-10-06 11:31:08 -0700582 return 0;
583}
584
Chengguang Xubb48bd42018-03-13 10:42:44 +0800585static void reset_readdir(struct ceph_dir_file_info *dfi)
Sage Weil2817b002009-10-06 11:31:08 -0700586{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800587 if (dfi->last_readdir) {
588 ceph_mdsc_put_request(dfi->last_readdir);
589 dfi->last_readdir = NULL;
Sage Weil2817b002009-10-06 11:31:08 -0700590 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800591 kfree(dfi->last_name);
592 dfi->last_name = NULL;
593 dfi->dir_release_count = 0;
594 dfi->readdir_cache_idx = -1;
595 dfi->next_offset = 2; /* compensate for . and .. */
596 dfi->file_info.flags &= ~CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700597}
598
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800599/*
600 * discard buffered readdir content on seekdir(0), or seek to new frag,
601 * or seek prior to current chunk
602 */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800603static bool need_reset_readdir(struct ceph_dir_file_info *dfi, loff_t new_pos)
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800604{
605 struct ceph_mds_reply_info_parsed *rinfo;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800606 loff_t chunk_offset;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800607 if (new_pos == 0)
608 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800609 if (is_hash_order(new_pos)) {
610 /* no need to reset last_name for a forward seek when
611 * dentries are sotred in hash order */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800612 } else if (dfi->frag != fpos_frag(new_pos)) {
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800613 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800614 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800615 rinfo = dfi->last_readdir ? &dfi->last_readdir->r_reply_info : NULL;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800616 if (!rinfo || !rinfo->dir_nr)
617 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800618 chunk_offset = rinfo->dir_entries[0].offset;
619 return new_pos < chunk_offset ||
620 is_hash_order(new_pos) != is_hash_order(chunk_offset);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800621}
622
Andrew Morton965c8e52012-12-17 15:59:39 -0800623static loff_t ceph_dir_llseek(struct file *file, loff_t offset, int whence)
Sage Weil2817b002009-10-06 11:31:08 -0700624{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800625 struct ceph_dir_file_info *dfi = file->private_data;
Sage Weil2817b002009-10-06 11:31:08 -0700626 struct inode *inode = file->f_mapping->host;
Sage Weil2817b002009-10-06 11:31:08 -0700627 loff_t retval;
628
Al Viro59551022016-01-22 15:40:57 -0500629 inode_lock(inode);
Josef Bacik06222e42011-07-18 13:21:38 -0400630 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800631 switch (whence) {
Sage Weil2817b002009-10-06 11:31:08 -0700632 case SEEK_CUR:
633 offset += file->f_pos;
Josef Bacik06222e42011-07-18 13:21:38 -0400634 case SEEK_SET:
635 break;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800636 case SEEK_END:
637 retval = -EOPNOTSUPP;
Josef Bacik06222e42011-07-18 13:21:38 -0400638 default:
639 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700640 }
Josef Bacik06222e42011-07-18 13:21:38 -0400641
Yan, Zhengf0494202014-02-27 16:26:24 +0800642 if (offset >= 0) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800643 if (need_reset_readdir(dfi, offset)) {
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800644 dout("dir_llseek dropping %p content\n", file);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800645 reset_readdir(dfi);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800646 } else if (is_hash_order(offset) && offset > file->f_pos) {
647 /* for hash offset, we don't know if a forward seek
648 * is within same frag */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800649 dfi->dir_release_count = 0;
650 dfi->readdir_cache_idx = -1;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800651 }
652
Sage Weil2817b002009-10-06 11:31:08 -0700653 if (offset != file->f_pos) {
654 file->f_pos = offset;
655 file->f_version = 0;
Chengguang Xubb48bd42018-03-13 10:42:44 +0800656 dfi->file_info.flags &= ~CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700657 }
658 retval = offset;
Sage Weil2817b002009-10-06 11:31:08 -0700659 }
Josef Bacik06222e42011-07-18 13:21:38 -0400660out:
Al Viro59551022016-01-22 15:40:57 -0500661 inode_unlock(inode);
Sage Weil2817b002009-10-06 11:31:08 -0700662 return retval;
663}
664
665/*
Sage Weil468640e2011-07-26 11:28:11 -0700666 * Handle lookups for the hidden .snap directory.
Sage Weil2817b002009-10-06 11:31:08 -0700667 */
Sage Weil468640e2011-07-26 11:28:11 -0700668int ceph_handle_snapdir(struct ceph_mds_request *req,
669 struct dentry *dentry, int err)
Sage Weil2817b002009-10-06 11:31:08 -0700670{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700671 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
David Howells2b0143b2015-03-17 22:25:59 +0000672 struct inode *parent = d_inode(dentry->d_parent); /* we hold i_mutex */
Sage Weil2817b002009-10-06 11:31:08 -0700673
674 /* .snap dir? */
675 if (err == -ENOENT &&
Sage Weil455cec02011-03-03 13:44:35 -0800676 ceph_snap(parent) == CEPH_NOSNAP &&
Sage Weil6b805182009-10-27 11:50:50 -0700677 strcmp(dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700678 fsc->mount_options->snapdir_name) == 0) {
Sage Weil2817b002009-10-06 11:31:08 -0700679 struct inode *inode = ceph_get_snapdir(parent);
Al Viroa4555892014-10-21 20:11:25 -0400680 dout("ENOENT on snapdir %p '%pd', linking to snapdir %p\n",
681 dentry, dentry, inode);
Sage Weil9358c6d2010-03-30 13:54:41 -0700682 BUG_ON(!d_unhashed(dentry));
Sage Weil2817b002009-10-06 11:31:08 -0700683 d_add(dentry, inode);
684 err = 0;
685 }
Sage Weil468640e2011-07-26 11:28:11 -0700686 return err;
687}
Sage Weil2817b002009-10-06 11:31:08 -0700688
Sage Weil468640e2011-07-26 11:28:11 -0700689/*
690 * Figure out final result of a lookup/open request.
691 *
692 * Mainly, make sure we return the final req->r_dentry (if it already
693 * existed) in place of the original VFS-provided dentry when they
694 * differ.
695 *
696 * Gracefully handle the case where the MDS replies with -ENOENT and
697 * no trace (which it may do, at its discretion, e.g., if it doesn't
698 * care to issue a lease on the negative dentry).
699 */
700struct dentry *ceph_finish_lookup(struct ceph_mds_request *req,
701 struct dentry *dentry, int err)
702{
Sage Weil2817b002009-10-06 11:31:08 -0700703 if (err == -ENOENT) {
704 /* no trace? */
705 err = 0;
706 if (!req->r_reply_info.head->is_dentry) {
707 dout("ENOENT and no trace, dentry %p inode %p\n",
David Howells2b0143b2015-03-17 22:25:59 +0000708 dentry, d_inode(dentry));
709 if (d_really_is_positive(dentry)) {
Sage Weil2817b002009-10-06 11:31:08 -0700710 d_drop(dentry);
711 err = -ENOENT;
712 } else {
713 d_add(dentry, NULL);
714 }
715 }
716 }
717 if (err)
718 dentry = ERR_PTR(err);
719 else if (dentry != req->r_dentry)
720 dentry = dget(req->r_dentry); /* we got spliced */
721 else
722 dentry = NULL;
723 return dentry;
724}
725
Zhang Zhuoyu3b33f692016-03-25 05:18:39 -0400726static bool is_root_ceph_dentry(struct inode *inode, struct dentry *dentry)
Sage Weil1d1de9162009-12-02 11:54:25 -0800727{
728 return ceph_ino(inode) == CEPH_INO_ROOT &&
729 strncmp(dentry->d_name.name, ".ceph", 5) == 0;
730}
731
Sage Weil2817b002009-10-06 11:31:08 -0700732/*
733 * Look up a single dir entry. If there is a lookup intent, inform
734 * the MDS so that it gets our 'caps wanted' value in a single op.
735 */
736static struct dentry *ceph_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400737 unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -0700738{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700739 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
740 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700741 struct ceph_mds_request *req;
742 int op;
Yan, Zheng315f2402016-03-07 10:34:50 +0800743 int mask;
Sage Weil2817b002009-10-06 11:31:08 -0700744 int err;
745
Al Viroa4555892014-10-21 20:11:25 -0400746 dout("lookup %p dentry %p '%pd'\n",
747 dir, dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700748
749 if (dentry->d_name.len > NAME_MAX)
750 return ERR_PTR(-ENAMETOOLONG);
751
Sage Weil2817b002009-10-06 11:31:08 -0700752 /* can we conclude ENOENT locally? */
David Howells2b0143b2015-03-17 22:25:59 +0000753 if (d_really_is_negative(dentry)) {
Sage Weil2817b002009-10-06 11:31:08 -0700754 struct ceph_inode_info *ci = ceph_inode(dir);
755 struct ceph_dentry_info *di = ceph_dentry(dentry);
756
Sage Weilbe655592011-11-30 09:47:09 -0800757 spin_lock(&ci->i_ceph_lock);
Jeff Layton891f3f52020-01-14 15:06:40 -0500758 dout(" dir %p flags are 0x%lx\n", dir, ci->i_ceph_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700759 if (strncmp(dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700760 fsc->mount_options->snapdir_name,
Sage Weil2817b002009-10-06 11:31:08 -0700761 dentry->d_name.len) &&
Sage Weil1d1de9162009-12-02 11:54:25 -0800762 !is_root_ceph_dentry(dir, dentry) &&
Yan, Zhenge2c3de02015-03-04 16:05:04 +0800763 ceph_test_mount_opt(fsc, DCACHE) &&
Yan, Zheng2f276c52013-03-13 19:44:32 +0800764 __ceph_dir_is_complete(ci) &&
Sage Weil2817b002009-10-06 11:31:08 -0700765 (__ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1))) {
Yan, Zheng719a2512020-03-05 20:21:00 +0800766 __ceph_touch_fmode(ci, mdsc, CEPH_FILE_MODE_RD);
Sage Weilbe655592011-11-30 09:47:09 -0800767 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700768 dout(" dir %p complete, -ENOENT\n", dir);
769 d_add(dentry, NULL);
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800770 di->lease_shared_gen = atomic_read(&ci->i_shared_gen);
Sage Weil2817b002009-10-06 11:31:08 -0700771 return NULL;
772 }
Sage Weilbe655592011-11-30 09:47:09 -0800773 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700774 }
775
776 op = ceph_snap(dir) == CEPH_SNAPDIR ?
777 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
778 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
779 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200780 return ERR_CAST(req);
Sage Weil2817b002009-10-06 11:31:08 -0700781 req->r_dentry = dget(dentry);
782 req->r_num_caps = 2;
Yan, Zheng315f2402016-03-07 10:34:50 +0800783
784 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
785 if (ceph_security_xattr_wanted(dir))
786 mask |= CEPH_CAP_XATTR_SHARED;
787 req->r_args.getattr.mask = cpu_to_le32(mask);
788
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500789 req->r_parent = dir;
790 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700791 err = ceph_mdsc_do_request(mdsc, NULL, req);
Sage Weil468640e2011-07-26 11:28:11 -0700792 err = ceph_handle_snapdir(req, dentry, err);
Sage Weil2817b002009-10-06 11:31:08 -0700793 dentry = ceph_finish_lookup(req, dentry, err);
794 ceph_mdsc_put_request(req); /* will dput(dentry) */
795 dout("lookup result=%p\n", dentry);
796 return dentry;
797}
798
799/*
800 * If we do a create but get no trace back from the MDS, follow up with
801 * a lookup (the VFS expects us to link up the provided dentry).
802 */
803int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry)
804{
Al Viro00cd8dd2012-06-10 17:13:09 -0400805 struct dentry *result = ceph_lookup(dir, dentry, 0);
Sage Weil2817b002009-10-06 11:31:08 -0700806
807 if (result && !IS_ERR(result)) {
808 /*
809 * We created the item, then did a lookup, and found
810 * it was already linked to another inode we already
Yan, Zheng4d41cef2015-02-04 15:10:48 +0800811 * had in our cache (and thus got spliced). To not
812 * confuse VFS (especially when inode is a directory),
813 * we don't link our dentry to that inode, return an
814 * error instead.
815 *
816 * This event should be rare and it happens only when
817 * we talk to old MDS. Recent MDS does not send traceless
818 * reply for request that creates new inode.
Sage Weil2817b002009-10-06 11:31:08 -0700819 */
Yan, Zheng5cba3722015-02-02 11:27:56 +0800820 d_drop(result);
Yan, Zheng4d41cef2015-02-04 15:10:48 +0800821 return -ESTALE;
Sage Weil2817b002009-10-06 11:31:08 -0700822 }
823 return PTR_ERR(result);
824}
825
826static int ceph_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -0400827 umode_t mode, dev_t rdev)
Sage Weil2817b002009-10-06 11:31:08 -0700828{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700829 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
830 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700831 struct ceph_mds_request *req;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800832 struct ceph_acl_sec_ctx as_ctx = {};
Sage Weil2817b002009-10-06 11:31:08 -0700833 int err;
834
835 if (ceph_snap(dir) != CEPH_NOSNAP)
836 return -EROFS;
837
Chengguang Xu04598712018-07-09 22:17:30 +0800838 if (ceph_quota_is_max_files_exceeded(dir)) {
839 err = -EDQUOT;
840 goto out;
841 }
Luis Henriquesb7a29212018-01-05 10:47:19 +0000842
Yan, Zheng5c31e922019-05-26 15:35:39 +0800843 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800844 if (err < 0)
Chengguang Xu04598712018-07-09 22:17:30 +0800845 goto out;
Yan, Zhengac6713c2019-05-26 16:27:56 +0800846 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
847 if (err < 0)
848 goto out;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800849
Al Viro1a67aaf2011-07-26 01:52:52 -0400850 dout("mknod in dir %p dentry %p mode 0%ho rdev %d\n",
Sage Weil2817b002009-10-06 11:31:08 -0700851 dir, dentry, mode, rdev);
852 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_MKNOD, USE_AUTH_MDS);
853 if (IS_ERR(req)) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800854 err = PTR_ERR(req);
855 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700856 }
857 req->r_dentry = dget(dentry);
858 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500859 req->r_parent = dir;
860 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700861 req->r_args.mknod.mode = cpu_to_le32(mode);
862 req->r_args.mknod.rdev = cpu_to_le32(rdev);
Yan, Zheng222b7f92017-11-23 17:47:15 +0800863 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -0700864 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800865 if (as_ctx.pagelist) {
866 req->r_pagelist = as_ctx.pagelist;
867 as_ctx.pagelist = NULL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800868 }
Sage Weil2817b002009-10-06 11:31:08 -0700869 err = ceph_mdsc_do_request(mdsc, dir, req);
870 if (!err && !req->r_reply_info.head->is_dentry)
871 err = ceph_handle_notrace_create(dir, dentry);
872 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800873out:
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800874 if (!err)
Yan, Zheng5c31e922019-05-26 15:35:39 +0800875 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800876 else
Sage Weil2817b002009-10-06 11:31:08 -0700877 d_drop(dentry);
Yan, Zheng5c31e922019-05-26 15:35:39 +0800878 ceph_release_acl_sec_ctx(&as_ctx);
Sage Weil2817b002009-10-06 11:31:08 -0700879 return err;
880}
881
Al Viro4acdaf22011-07-26 01:42:34 -0400882static int ceph_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400883 bool excl)
Sage Weil2817b002009-10-06 11:31:08 -0700884{
Miklos Szeredi2d83bde2012-06-05 15:10:25 +0200885 return ceph_mknod(dir, dentry, mode, 0);
Sage Weil2817b002009-10-06 11:31:08 -0700886}
887
888static int ceph_symlink(struct inode *dir, struct dentry *dentry,
889 const char *dest)
890{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700891 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
892 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700893 struct ceph_mds_request *req;
Yan, Zhengac6713c2019-05-26 16:27:56 +0800894 struct ceph_acl_sec_ctx as_ctx = {};
Sage Weil2817b002009-10-06 11:31:08 -0700895 int err;
896
897 if (ceph_snap(dir) != CEPH_NOSNAP)
898 return -EROFS;
899
Chengguang Xu67fcd152018-07-09 22:17:31 +0800900 if (ceph_quota_is_max_files_exceeded(dir)) {
901 err = -EDQUOT;
902 goto out;
903 }
Luis Henriquesb7a29212018-01-05 10:47:19 +0000904
Yan, Zhengac6713c2019-05-26 16:27:56 +0800905 err = ceph_security_init_secctx(dentry, S_IFLNK | 0777, &as_ctx);
906 if (err < 0)
907 goto out;
908
Sage Weil2817b002009-10-06 11:31:08 -0700909 dout("symlink in dir %p dentry %p to '%s'\n", dir, dentry, dest);
910 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SYMLINK, USE_AUTH_MDS);
911 if (IS_ERR(req)) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800912 err = PTR_ERR(req);
913 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700914 }
Yan, Zheng687265e2015-06-13 17:27:05 +0800915 req->r_path2 = kstrdup(dest, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400916 if (!req->r_path2) {
917 err = -ENOMEM;
918 ceph_mdsc_put_request(req);
919 goto out;
920 }
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500921 req->r_parent = dir;
922 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700923 req->r_dentry = dget(dentry);
924 req->r_num_caps = 2;
Yan, Zheng222b7f92017-11-23 17:47:15 +0800925 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -0700926 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
927 err = ceph_mdsc_do_request(mdsc, dir, req);
928 if (!err && !req->r_reply_info.head->is_dentry)
929 err = ceph_handle_notrace_create(dir, dentry);
930 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800931out:
932 if (err)
Sage Weil2817b002009-10-06 11:31:08 -0700933 d_drop(dentry);
Yan, Zhengac6713c2019-05-26 16:27:56 +0800934 ceph_release_acl_sec_ctx(&as_ctx);
Sage Weil2817b002009-10-06 11:31:08 -0700935 return err;
936}
937
Al Viro18bb1db2011-07-26 01:41:39 -0400938static int ceph_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Sage Weil2817b002009-10-06 11:31:08 -0700939{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700940 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
941 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -0700942 struct ceph_mds_request *req;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800943 struct ceph_acl_sec_ctx as_ctx = {};
Sage Weil2817b002009-10-06 11:31:08 -0700944 int err = -EROFS;
945 int op;
946
947 if (ceph_snap(dir) == CEPH_SNAPDIR) {
948 /* mkdir .snap/foo is a MKSNAP */
949 op = CEPH_MDS_OP_MKSNAP;
Al Viroa4555892014-10-21 20:11:25 -0400950 dout("mksnap dir %p snap '%pd' dn %p\n", dir,
951 dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700952 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
Al Viro18bb1db2011-07-26 01:41:39 -0400953 dout("mkdir dir %p dn %p mode 0%ho\n", dir, dentry, mode);
Sage Weil2817b002009-10-06 11:31:08 -0700954 op = CEPH_MDS_OP_MKDIR;
955 } else {
956 goto out;
957 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800958
Yan, Zheng25963662018-01-12 16:26:17 +0800959 if (op == CEPH_MDS_OP_MKDIR &&
960 ceph_quota_is_max_files_exceeded(dir)) {
Luis Henriquesb7a29212018-01-05 10:47:19 +0000961 err = -EDQUOT;
962 goto out;
963 }
964
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800965 mode |= S_IFDIR;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800966 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800967 if (err < 0)
968 goto out;
Yan, Zhengac6713c2019-05-26 16:27:56 +0800969 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
970 if (err < 0)
971 goto out;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800972
Sage Weil2817b002009-10-06 11:31:08 -0700973 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
974 if (IS_ERR(req)) {
975 err = PTR_ERR(req);
976 goto out;
977 }
978
979 req->r_dentry = dget(dentry);
980 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500981 req->r_parent = dir;
982 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700983 req->r_args.mkdir.mode = cpu_to_le32(mode);
Yan, Zheng222b7f92017-11-23 17:47:15 +0800984 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -0700985 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800986 if (as_ctx.pagelist) {
987 req->r_pagelist = as_ctx.pagelist;
988 as_ctx.pagelist = NULL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800989 }
Sage Weil2817b002009-10-06 11:31:08 -0700990 err = ceph_mdsc_do_request(mdsc, dir, req);
Yan, Zheng275dd192014-12-10 16:17:31 +0800991 if (!err &&
992 !req->r_reply_info.head->is_target &&
993 !req->r_reply_info.head->is_dentry)
Sage Weil2817b002009-10-06 11:31:08 -0700994 err = ceph_handle_notrace_create(dir, dentry);
995 ceph_mdsc_put_request(req);
996out:
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800997 if (!err)
Yan, Zheng5c31e922019-05-26 15:35:39 +0800998 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800999 else
Sage Weil2817b002009-10-06 11:31:08 -07001000 d_drop(dentry);
Yan, Zheng5c31e922019-05-26 15:35:39 +08001001 ceph_release_acl_sec_ctx(&as_ctx);
Sage Weil2817b002009-10-06 11:31:08 -07001002 return err;
1003}
1004
1005static int ceph_link(struct dentry *old_dentry, struct inode *dir,
1006 struct dentry *dentry)
1007{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001008 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
1009 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001010 struct ceph_mds_request *req;
1011 int err;
1012
1013 if (ceph_snap(dir) != CEPH_NOSNAP)
1014 return -EROFS;
1015
1016 dout("link in dir %p old_dentry %p dentry %p\n", dir,
1017 old_dentry, dentry);
1018 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_LINK, USE_AUTH_MDS);
1019 if (IS_ERR(req)) {
1020 d_drop(dentry);
1021 return PTR_ERR(req);
1022 }
1023 req->r_dentry = dget(dentry);
1024 req->r_num_caps = 2;
Sage Weil4b58c9b192013-02-05 13:41:23 -08001025 req->r_old_dentry = dget(old_dentry);
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001026 req->r_parent = dir;
1027 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -07001028 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1029 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengad88f232013-07-21 20:25:25 +08001030 /* release LINK_SHARED on source inode (mds will lock it) */
Yan, Zhengd19a0b52017-11-23 17:59:13 +08001031 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -07001032 err = ceph_mdsc_do_request(mdsc, dir, req);
Sage Weil70b666c2011-05-27 09:24:26 -07001033 if (err) {
Sage Weil2817b002009-10-06 11:31:08 -07001034 d_drop(dentry);
Sage Weil70b666c2011-05-27 09:24:26 -07001035 } else if (!req->r_reply_info.head->is_dentry) {
David Howells2b0143b2015-03-17 22:25:59 +00001036 ihold(d_inode(old_dentry));
1037 d_instantiate(dentry, d_inode(old_dentry));
Sage Weil70b666c2011-05-27 09:24:26 -07001038 }
Sage Weil2817b002009-10-06 11:31:08 -07001039 ceph_mdsc_put_request(req);
1040 return err;
1041}
1042
Jeff Layton2ccb4542019-04-02 15:35:56 -04001043static void ceph_async_unlink_cb(struct ceph_mds_client *mdsc,
1044 struct ceph_mds_request *req)
1045{
1046 int result = req->r_err ? req->r_err :
1047 le32_to_cpu(req->r_reply_info.head->result);
1048
1049 if (result == -EJUKEBOX)
1050 goto out;
1051
1052 /* If op failed, mark everyone involved for errors */
1053 if (result) {
1054 int pathlen;
1055 u64 base;
1056 char *path = ceph_mdsc_build_path(req->r_dentry, &pathlen,
1057 &base, 0);
1058
1059 /* mark error on parent + clear complete */
1060 mapping_set_error(req->r_parent->i_mapping, result);
1061 ceph_dir_clear_complete(req->r_parent);
1062
1063 /* drop the dentry -- we don't know its status */
1064 if (!d_unhashed(req->r_dentry))
1065 d_drop(req->r_dentry);
1066
1067 /* mark inode itself for an error (since metadata is bogus) */
1068 mapping_set_error(req->r_old_inode->i_mapping, result);
1069
1070 pr_warn("ceph: async unlink failure path=(%llx)%s result=%d!\n",
1071 base, IS_ERR(path) ? "<<bad>>" : path, result);
1072 ceph_mdsc_free_path(path, pathlen);
1073 }
1074out:
1075 iput(req->r_old_inode);
1076 ceph_mdsc_release_dir_caps(req);
1077}
1078
1079static int get_caps_for_async_unlink(struct inode *dir, struct dentry *dentry)
1080{
1081 struct ceph_inode_info *ci = ceph_inode(dir);
1082 struct ceph_dentry_info *di;
1083 int got = 0, want = CEPH_CAP_FILE_EXCL | CEPH_CAP_DIR_UNLINK;
1084
1085 spin_lock(&ci->i_ceph_lock);
1086 if ((__ceph_caps_issued(ci, NULL) & want) == want) {
1087 ceph_take_cap_refs(ci, want, false);
1088 got = want;
1089 }
1090 spin_unlock(&ci->i_ceph_lock);
1091
1092 /* If we didn't get anything, return 0 */
1093 if (!got)
1094 return 0;
1095
1096 spin_lock(&dentry->d_lock);
1097 di = ceph_dentry(dentry);
1098 /*
1099 * - We are holding Fx, which implies Fs caps.
1100 * - Only support async unlink for primary linkage
1101 */
1102 if (atomic_read(&ci->i_shared_gen) != di->lease_shared_gen ||
1103 !(di->flags & CEPH_DENTRY_PRIMARY_LINK))
1104 want = 0;
1105 spin_unlock(&dentry->d_lock);
1106
1107 /* Do we still want what we've got? */
1108 if (want == got)
1109 return got;
1110
1111 ceph_put_cap_refs(ci, got);
1112 return 0;
1113}
1114
Sage Weil2817b002009-10-06 11:31:08 -07001115/*
Sage Weil2817b002009-10-06 11:31:08 -07001116 * rmdir and unlink are differ only by the metadata op code
1117 */
1118static int ceph_unlink(struct inode *dir, struct dentry *dentry)
1119{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001120 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
1121 struct ceph_mds_client *mdsc = fsc->mdsc;
David Howells2b0143b2015-03-17 22:25:59 +00001122 struct inode *inode = d_inode(dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001123 struct ceph_mds_request *req;
Jeff Layton2ccb4542019-04-02 15:35:56 -04001124 bool try_async = ceph_test_mount_opt(fsc, ASYNC_DIROPS);
Sage Weil2817b002009-10-06 11:31:08 -07001125 int err = -EROFS;
1126 int op;
1127
1128 if (ceph_snap(dir) == CEPH_SNAPDIR) {
1129 /* rmdir .snap/foo is RMSNAP */
Al Viroa4555892014-10-21 20:11:25 -04001130 dout("rmsnap dir %p '%pd' dn %p\n", dir, dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001131 op = CEPH_MDS_OP_RMSNAP;
1132 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
1133 dout("unlink/rmdir dir %p dn %p inode %p\n",
1134 dir, dentry, inode);
David Howellse36cb0b2015-01-29 12:02:35 +00001135 op = d_is_dir(dentry) ?
Sage Weil2817b002009-10-06 11:31:08 -07001136 CEPH_MDS_OP_RMDIR : CEPH_MDS_OP_UNLINK;
1137 } else
1138 goto out;
Jeff Layton2ccb4542019-04-02 15:35:56 -04001139retry:
Sage Weil2817b002009-10-06 11:31:08 -07001140 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
1141 if (IS_ERR(req)) {
1142 err = PTR_ERR(req);
1143 goto out;
1144 }
1145 req->r_dentry = dget(dentry);
1146 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001147 req->r_parent = dir;
Sage Weil2817b002009-10-06 11:31:08 -07001148 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1149 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Zhi Zhang6ef0bc62018-01-24 21:24:33 +08001150 req->r_inode_drop = ceph_drop_caps_for_unlink(inode);
Jeff Layton2ccb4542019-04-02 15:35:56 -04001151
1152 if (try_async && op == CEPH_MDS_OP_UNLINK &&
1153 (req->r_dir_caps = get_caps_for_async_unlink(dir, dentry))) {
1154 dout("async unlink on %lu/%.*s caps=%s", dir->i_ino,
1155 dentry->d_name.len, dentry->d_name.name,
1156 ceph_cap_string(req->r_dir_caps));
1157 set_bit(CEPH_MDS_R_ASYNC, &req->r_req_flags);
1158 req->r_callback = ceph_async_unlink_cb;
1159 req->r_old_inode = d_inode(dentry);
1160 ihold(req->r_old_inode);
1161 err = ceph_mdsc_submit_request(mdsc, dir, req);
1162 if (!err) {
1163 /*
1164 * We have enough caps, so we assume that the unlink
1165 * will succeed. Fix up the target inode and dcache.
1166 */
1167 drop_nlink(inode);
1168 d_delete(dentry);
1169 } else if (err == -EJUKEBOX) {
1170 try_async = false;
1171 ceph_mdsc_put_request(req);
1172 goto retry;
1173 }
1174 } else {
1175 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
1176 err = ceph_mdsc_do_request(mdsc, dir, req);
1177 if (!err && !req->r_reply_info.head->is_dentry)
1178 d_delete(dentry);
1179 }
1180
Sage Weil2817b002009-10-06 11:31:08 -07001181 ceph_mdsc_put_request(req);
1182out:
1183 return err;
1184}
1185
1186static int ceph_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001187 struct inode *new_dir, struct dentry *new_dentry,
1188 unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001189{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001190 struct ceph_fs_client *fsc = ceph_sb_to_client(old_dir->i_sb);
1191 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil2817b002009-10-06 11:31:08 -07001192 struct ceph_mds_request *req;
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001193 int op = CEPH_MDS_OP_RENAME;
Sage Weil2817b002009-10-06 11:31:08 -07001194 int err;
1195
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001196 if (flags)
1197 return -EINVAL;
1198
Sage Weil2817b002009-10-06 11:31:08 -07001199 if (ceph_snap(old_dir) != ceph_snap(new_dir))
1200 return -EXDEV;
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001201 if (ceph_snap(old_dir) != CEPH_NOSNAP) {
1202 if (old_dir == new_dir && ceph_snap(old_dir) == CEPH_SNAPDIR)
1203 op = CEPH_MDS_OP_RENAMESNAP;
1204 else
1205 return -EROFS;
1206 }
Luis Henriquescafe21a2018-01-05 10:47:20 +00001207 /* don't allow cross-quota renames */
1208 if ((old_dir != new_dir) &&
1209 (!ceph_quota_is_same_realm(old_dir, new_dir)))
1210 return -EXDEV;
1211
Sage Weil2817b002009-10-06 11:31:08 -07001212 dout("rename dir %p dentry %p to dir %p dentry %p\n",
1213 old_dir, old_dentry, new_dir, new_dentry);
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001214 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
Sage Weil2817b002009-10-06 11:31:08 -07001215 if (IS_ERR(req))
1216 return PTR_ERR(req);
Sage Weil180061a2013-02-05 13:36:05 -08001217 ihold(old_dir);
Sage Weil2817b002009-10-06 11:31:08 -07001218 req->r_dentry = dget(new_dentry);
1219 req->r_num_caps = 2;
1220 req->r_old_dentry = dget(old_dentry);
Sage Weil180061a2013-02-05 13:36:05 -08001221 req->r_old_dentry_dir = old_dir;
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001222 req->r_parent = new_dir;
1223 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -07001224 req->r_old_dentry_drop = CEPH_CAP_FILE_SHARED;
1225 req->r_old_dentry_unless = CEPH_CAP_FILE_EXCL;
1226 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1227 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1228 /* release LINK_RDCACHE on source inode (mds will lock it) */
Yan, Zhengd19a0b52017-11-23 17:59:13 +08001229 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
Zhi Zhang6ef0bc62018-01-24 21:24:33 +08001230 if (d_really_is_positive(new_dentry)) {
1231 req->r_inode_drop =
1232 ceph_drop_caps_for_unlink(d_inode(new_dentry));
1233 }
Sage Weil2817b002009-10-06 11:31:08 -07001234 err = ceph_mdsc_do_request(mdsc, old_dir, req);
1235 if (!err && !req->r_reply_info.head->is_dentry) {
1236 /*
1237 * Normally d_move() is done by fill_trace (called by
1238 * do_request, above). If there is no trace, we need
1239 * to do it here.
1240 */
1241 d_move(old_dentry, new_dentry);
1242 }
1243 ceph_mdsc_put_request(req);
1244 return err;
1245}
1246
Sage Weil81a6cf22010-05-14 09:35:38 -07001247/*
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001248 * Move dentry to tail of mdsc->dentry_leases list when lease is updated.
1249 * Leases at front of the list will expire first. (Assume all leases have
1250 * similar duration)
1251 *
1252 * Called under dentry->d_lock.
1253 */
1254void __ceph_dentry_lease_touch(struct ceph_dentry_info *di)
1255{
1256 struct dentry *dn = di->dentry;
1257 struct ceph_mds_client *mdsc;
1258
1259 dout("dentry_lease_touch %p %p '%pd'\n", di, dn, dn);
1260
1261 di->flags |= CEPH_DENTRY_LEASE_LIST;
1262 if (di->flags & CEPH_DENTRY_SHRINK_LIST) {
1263 di->flags |= CEPH_DENTRY_REFERENCED;
1264 return;
1265 }
1266
1267 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1268 spin_lock(&mdsc->dentry_list_lock);
1269 list_move_tail(&di->lease_list, &mdsc->dentry_leases);
1270 spin_unlock(&mdsc->dentry_list_lock);
1271}
1272
1273static void __dentry_dir_lease_touch(struct ceph_mds_client* mdsc,
1274 struct ceph_dentry_info *di)
1275{
1276 di->flags &= ~(CEPH_DENTRY_LEASE_LIST | CEPH_DENTRY_REFERENCED);
1277 di->lease_gen = 0;
1278 di->time = jiffies;
1279 list_move_tail(&di->lease_list, &mdsc->dentry_dir_leases);
1280}
1281
1282/*
1283 * When dir lease is used, add dentry to tail of mdsc->dentry_dir_leases
1284 * list if it's not in the list, otherwise set 'referenced' flag.
1285 *
1286 * Called under dentry->d_lock.
1287 */
1288void __ceph_dentry_dir_lease_touch(struct ceph_dentry_info *di)
1289{
1290 struct dentry *dn = di->dentry;
1291 struct ceph_mds_client *mdsc;
1292
Xiubo Li0eb30852019-12-18 21:15:18 -05001293 dout("dentry_dir_lease_touch %p %p '%pd' (offset 0x%llx)\n",
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001294 di, dn, dn, di->offset);
1295
1296 if (!list_empty(&di->lease_list)) {
1297 if (di->flags & CEPH_DENTRY_LEASE_LIST) {
1298 /* don't remove dentry from dentry lease list
1299 * if its lease is valid */
1300 if (__dentry_lease_is_valid(di))
1301 return;
1302 } else {
1303 di->flags |= CEPH_DENTRY_REFERENCED;
1304 return;
1305 }
1306 }
1307
1308 if (di->flags & CEPH_DENTRY_SHRINK_LIST) {
1309 di->flags |= CEPH_DENTRY_REFERENCED;
1310 di->flags &= ~CEPH_DENTRY_LEASE_LIST;
1311 return;
1312 }
1313
1314 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1315 spin_lock(&mdsc->dentry_list_lock);
1316 __dentry_dir_lease_touch(mdsc, di),
1317 spin_unlock(&mdsc->dentry_list_lock);
1318}
1319
1320static void __dentry_lease_unlist(struct ceph_dentry_info *di)
1321{
1322 struct ceph_mds_client *mdsc;
1323 if (di->flags & CEPH_DENTRY_SHRINK_LIST)
1324 return;
1325 if (list_empty(&di->lease_list))
1326 return;
1327
1328 mdsc = ceph_sb_to_client(di->dentry->d_sb)->mdsc;
1329 spin_lock(&mdsc->dentry_list_lock);
1330 list_del_init(&di->lease_list);
1331 spin_unlock(&mdsc->dentry_list_lock);
1332}
1333
1334enum {
1335 KEEP = 0,
1336 DELETE = 1,
1337 TOUCH = 2,
1338 STOP = 4,
1339};
1340
1341struct ceph_lease_walk_control {
1342 bool dir_lease;
Yan, Zhengfe330322019-02-01 14:57:15 +08001343 bool expire_dir_lease;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001344 unsigned long nr_to_scan;
1345 unsigned long dir_lease_ttl;
1346};
1347
1348static unsigned long
1349__dentry_leases_walk(struct ceph_mds_client *mdsc,
1350 struct ceph_lease_walk_control *lwc,
1351 int (*check)(struct dentry*, void*))
1352{
1353 struct ceph_dentry_info *di, *tmp;
1354 struct dentry *dentry, *last = NULL;
1355 struct list_head* list;
1356 LIST_HEAD(dispose);
1357 unsigned long freed = 0;
1358 int ret = 0;
1359
1360 list = lwc->dir_lease ? &mdsc->dentry_dir_leases : &mdsc->dentry_leases;
1361 spin_lock(&mdsc->dentry_list_lock);
1362 list_for_each_entry_safe(di, tmp, list, lease_list) {
1363 if (!lwc->nr_to_scan)
1364 break;
1365 --lwc->nr_to_scan;
1366
1367 dentry = di->dentry;
1368 if (last == dentry)
1369 break;
1370
1371 if (!spin_trylock(&dentry->d_lock))
1372 continue;
1373
Al Viro516162b92019-06-27 22:25:23 -04001374 if (__lockref_is_dead(&dentry->d_lockref)) {
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001375 list_del_init(&di->lease_list);
1376 goto next;
1377 }
1378
1379 ret = check(dentry, lwc);
1380 if (ret & TOUCH) {
1381 /* move it into tail of dir lease list */
1382 __dentry_dir_lease_touch(mdsc, di);
1383 if (!last)
1384 last = dentry;
1385 }
1386 if (ret & DELETE) {
1387 /* stale lease */
1388 di->flags &= ~CEPH_DENTRY_REFERENCED;
1389 if (dentry->d_lockref.count > 0) {
1390 /* update_dentry_lease() will re-add
1391 * it to lease list, or
1392 * ceph_d_delete() will return 1 when
1393 * last reference is dropped */
1394 list_del_init(&di->lease_list);
1395 } else {
1396 di->flags |= CEPH_DENTRY_SHRINK_LIST;
1397 list_move_tail(&di->lease_list, &dispose);
1398 dget_dlock(dentry);
1399 }
1400 }
1401next:
1402 spin_unlock(&dentry->d_lock);
1403 if (ret & STOP)
1404 break;
1405 }
1406 spin_unlock(&mdsc->dentry_list_lock);
1407
1408 while (!list_empty(&dispose)) {
1409 di = list_first_entry(&dispose, struct ceph_dentry_info,
1410 lease_list);
1411 dentry = di->dentry;
1412 spin_lock(&dentry->d_lock);
1413
1414 list_del_init(&di->lease_list);
1415 di->flags &= ~CEPH_DENTRY_SHRINK_LIST;
1416 if (di->flags & CEPH_DENTRY_REFERENCED) {
1417 spin_lock(&mdsc->dentry_list_lock);
1418 if (di->flags & CEPH_DENTRY_LEASE_LIST) {
1419 list_add_tail(&di->lease_list,
1420 &mdsc->dentry_leases);
1421 } else {
1422 __dentry_dir_lease_touch(mdsc, di);
1423 }
1424 spin_unlock(&mdsc->dentry_list_lock);
1425 } else {
1426 freed++;
1427 }
1428
1429 spin_unlock(&dentry->d_lock);
1430 /* ceph_d_delete() does the trick */
1431 dput(dentry);
1432 }
1433 return freed;
1434}
1435
1436static int __dentry_lease_check(struct dentry *dentry, void *arg)
1437{
1438 struct ceph_dentry_info *di = ceph_dentry(dentry);
1439 int ret;
1440
1441 if (__dentry_lease_is_valid(di))
1442 return STOP;
1443 ret = __dir_lease_try_check(dentry);
1444 if (ret == -EBUSY)
1445 return KEEP;
1446 if (ret > 0)
1447 return TOUCH;
1448 return DELETE;
1449}
1450
1451static int __dir_lease_check(struct dentry *dentry, void *arg)
1452{
1453 struct ceph_lease_walk_control *lwc = arg;
1454 struct ceph_dentry_info *di = ceph_dentry(dentry);
1455
1456 int ret = __dir_lease_try_check(dentry);
1457 if (ret == -EBUSY)
1458 return KEEP;
1459 if (ret > 0) {
1460 if (time_before(jiffies, di->time + lwc->dir_lease_ttl))
1461 return STOP;
1462 /* Move dentry to tail of dir lease list if we don't want
1463 * to delete it. So dentries in the list are checked in a
1464 * round robin manner */
Yan, Zhengfe330322019-02-01 14:57:15 +08001465 if (!lwc->expire_dir_lease)
1466 return TOUCH;
1467 if (dentry->d_lockref.count > 0 ||
1468 (di->flags & CEPH_DENTRY_REFERENCED))
1469 return TOUCH;
1470 /* invalidate dir lease */
1471 di->lease_shared_gen = 0;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001472 }
1473 return DELETE;
1474}
1475
1476int ceph_trim_dentries(struct ceph_mds_client *mdsc)
1477{
1478 struct ceph_lease_walk_control lwc;
Yan, Zhengfe330322019-02-01 14:57:15 +08001479 unsigned long count;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001480 unsigned long freed;
1481
Yan, Zhengfe330322019-02-01 14:57:15 +08001482 spin_lock(&mdsc->caps_list_lock);
1483 if (mdsc->caps_use_max > 0 &&
1484 mdsc->caps_use_count > mdsc->caps_use_max)
1485 count = mdsc->caps_use_count - mdsc->caps_use_max;
1486 else
1487 count = 0;
1488 spin_unlock(&mdsc->caps_list_lock);
1489
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001490 lwc.dir_lease = false;
1491 lwc.nr_to_scan = CEPH_CAPS_PER_RELEASE * 2;
1492 freed = __dentry_leases_walk(mdsc, &lwc, __dentry_lease_check);
1493 if (!lwc.nr_to_scan) /* more invalid leases */
1494 return -EAGAIN;
1495
1496 if (lwc.nr_to_scan < CEPH_CAPS_PER_RELEASE)
1497 lwc.nr_to_scan = CEPH_CAPS_PER_RELEASE;
1498
1499 lwc.dir_lease = true;
Yan, Zhengfe330322019-02-01 14:57:15 +08001500 lwc.expire_dir_lease = freed < count;
1501 lwc.dir_lease_ttl = mdsc->fsc->mount_options->caps_wanted_delay_max * HZ;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001502 freed +=__dentry_leases_walk(mdsc, &lwc, __dir_lease_check);
1503 if (!lwc.nr_to_scan) /* more to check */
1504 return -EAGAIN;
1505
1506 return freed > 0 ? 1 : 0;
1507}
1508
1509/*
Sage Weil81a6cf22010-05-14 09:35:38 -07001510 * Ensure a dentry lease will no longer revalidate.
1511 */
1512void ceph_invalidate_dentry_lease(struct dentry *dentry)
1513{
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001514 struct ceph_dentry_info *di = ceph_dentry(dentry);
Sage Weil81a6cf22010-05-14 09:35:38 -07001515 spin_lock(&dentry->d_lock);
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001516 di->time = jiffies;
1517 di->lease_shared_gen = 0;
Jeff Laytonf5e17ae2020-02-18 14:12:32 -05001518 di->flags &= ~CEPH_DENTRY_PRIMARY_LINK;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001519 __dentry_lease_unlist(di);
Sage Weil81a6cf22010-05-14 09:35:38 -07001520 spin_unlock(&dentry->d_lock);
1521}
Sage Weil2817b002009-10-06 11:31:08 -07001522
1523/*
1524 * Check if dentry lease is valid. If not, delete the lease. Try to
1525 * renew if the least is more than half up.
1526 */
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001527static bool __dentry_lease_is_valid(struct ceph_dentry_info *di)
1528{
1529 struct ceph_mds_session *session;
1530
1531 if (!di->lease_gen)
1532 return false;
1533
1534 session = di->lease_session;
1535 if (session) {
1536 u32 gen;
1537 unsigned long ttl;
1538
1539 spin_lock(&session->s_gen_ttl_lock);
1540 gen = session->s_cap_gen;
1541 ttl = session->s_cap_ttl;
1542 spin_unlock(&session->s_gen_ttl_lock);
1543
1544 if (di->lease_gen == gen &&
1545 time_before(jiffies, ttl) &&
1546 time_before(jiffies, di->time))
1547 return true;
1548 }
1549 di->lease_gen = 0;
1550 return false;
1551}
1552
Yan, Zheng8f2a98ef2019-05-23 10:45:24 +08001553static int dentry_lease_is_valid(struct dentry *dentry, unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001554{
1555 struct ceph_dentry_info *di;
Sage Weil2817b002009-10-06 11:31:08 -07001556 struct ceph_mds_session *session = NULL;
Sage Weil2817b002009-10-06 11:31:08 -07001557 u32 seq = 0;
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001558 int valid = 0;
Sage Weil2817b002009-10-06 11:31:08 -07001559
1560 spin_lock(&dentry->d_lock);
1561 di = ceph_dentry(dentry);
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001562 if (di && __dentry_lease_is_valid(di)) {
1563 valid = 1;
Sage Weil2817b002009-10-06 11:31:08 -07001564
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001565 if (di->lease_renew_after &&
1566 time_after(jiffies, di->lease_renew_after)) {
1567 /*
1568 * We should renew. If we're in RCU walk mode
1569 * though, we can't do that so just return
1570 * -ECHILD.
1571 */
1572 if (flags & LOOKUP_RCU) {
1573 valid = -ECHILD;
1574 } else {
1575 session = ceph_get_mds_session(di->lease_session);
1576 seq = di->lease_seq;
1577 di->lease_renew_after = 0;
1578 di->lease_renew_from = jiffies;
Sage Weil2817b002009-10-06 11:31:08 -07001579 }
Sage Weil2817b002009-10-06 11:31:08 -07001580 }
1581 }
1582 spin_unlock(&dentry->d_lock);
1583
1584 if (session) {
Yan, Zheng8f2a98ef2019-05-23 10:45:24 +08001585 ceph_mdsc_lease_send_msg(session, dentry,
Sage Weil2817b002009-10-06 11:31:08 -07001586 CEPH_MDS_LEASE_RENEW, seq);
1587 ceph_put_mds_session(session);
1588 }
1589 dout("dentry_lease_is_valid - dentry %p = %d\n", dentry, valid);
1590 return valid;
1591}
1592
1593/*
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001594 * Called under dentry->d_lock.
1595 */
1596static int __dir_lease_try_check(const struct dentry *dentry)
1597{
1598 struct ceph_dentry_info *di = ceph_dentry(dentry);
1599 struct inode *dir;
1600 struct ceph_inode_info *ci;
1601 int valid = 0;
1602
1603 if (!di->lease_shared_gen)
1604 return 0;
1605 if (IS_ROOT(dentry))
1606 return 0;
1607
1608 dir = d_inode(dentry->d_parent);
1609 ci = ceph_inode(dir);
1610
1611 if (spin_trylock(&ci->i_ceph_lock)) {
1612 if (atomic_read(&ci->i_shared_gen) == di->lease_shared_gen &&
1613 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 0))
1614 valid = 1;
1615 spin_unlock(&ci->i_ceph_lock);
1616 } else {
1617 valid = -EBUSY;
1618 }
1619
1620 if (!valid)
1621 di->lease_shared_gen = 0;
1622 return valid;
1623}
1624
1625/*
Sage Weil2817b002009-10-06 11:31:08 -07001626 * Check if directory-wide content lease/cap is valid.
1627 */
Yan, Zheng719a2512020-03-05 20:21:00 +08001628static int dir_lease_is_valid(struct inode *dir, struct dentry *dentry,
1629 struct ceph_mds_client *mdsc)
Sage Weil2817b002009-10-06 11:31:08 -07001630{
1631 struct ceph_inode_info *ci = ceph_inode(dir);
Yan, Zhengfeab6ac2019-05-22 17:26:27 +08001632 int valid;
1633 int shared_gen;
Sage Weil2817b002009-10-06 11:31:08 -07001634
Sage Weilbe655592011-11-30 09:47:09 -08001635 spin_lock(&ci->i_ceph_lock);
Yan, Zhengfeab6ac2019-05-22 17:26:27 +08001636 valid = __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1);
Yan, Zheng719a2512020-03-05 20:21:00 +08001637 if (valid) {
1638 __ceph_touch_fmode(ci, mdsc, CEPH_FILE_MODE_RD);
1639 shared_gen = atomic_read(&ci->i_shared_gen);
1640 }
Sage Weilbe655592011-11-30 09:47:09 -08001641 spin_unlock(&ci->i_ceph_lock);
Yan, Zhengfeab6ac2019-05-22 17:26:27 +08001642 if (valid) {
1643 struct ceph_dentry_info *di;
1644 spin_lock(&dentry->d_lock);
1645 di = ceph_dentry(dentry);
1646 if (dir == d_inode(dentry->d_parent) &&
1647 di && di->lease_shared_gen == shared_gen)
1648 __ceph_dentry_dir_lease_touch(di);
1649 else
1650 valid = 0;
1651 spin_unlock(&dentry->d_lock);
1652 }
1653 dout("dir_lease_is_valid dir %p v%u dentry %p = %d\n",
1654 dir, (unsigned)atomic_read(&ci->i_shared_gen), dentry, valid);
Sage Weil2817b002009-10-06 11:31:08 -07001655 return valid;
1656}
1657
1658/*
1659 * Check if cached dentry can be trusted.
1660 */
Al Viro0b728e12012-06-10 16:03:43 -04001661static int ceph_d_revalidate(struct dentry *dentry, unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001662{
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001663 int valid = 0;
Yan, Zheng641235d2016-03-16 16:40:23 +08001664 struct dentry *parent;
Al Viroaa8dd812019-10-29 13:50:19 +00001665 struct inode *dir, *inode;
Yan, Zheng719a2512020-03-05 20:21:00 +08001666 struct ceph_mds_client *mdsc;
Nick Piggin34286d62011-01-07 17:49:57 +11001667
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001668 if (flags & LOOKUP_RCU) {
Seraphime Kirkovski52953d52016-12-26 10:26:34 +01001669 parent = READ_ONCE(dentry->d_parent);
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001670 dir = d_inode_rcu(parent);
1671 if (!dir)
1672 return -ECHILD;
Al Viroaa8dd812019-10-29 13:50:19 +00001673 inode = d_inode_rcu(dentry);
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001674 } else {
1675 parent = dget_parent(dentry);
1676 dir = d_inode(parent);
Al Viroaa8dd812019-10-29 13:50:19 +00001677 inode = d_inode(dentry);
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001678 }
Nick Piggin34286d62011-01-07 17:49:57 +11001679
Xiubo Li0eb30852019-12-18 21:15:18 -05001680 dout("d_revalidate %p '%pd' inode %p offset 0x%llx\n", dentry,
Al Viroaa8dd812019-10-29 13:50:19 +00001681 dentry, inode, ceph_dentry(dentry)->offset);
Sage Weil2817b002009-10-06 11:31:08 -07001682
Yan, Zheng719a2512020-03-05 20:21:00 +08001683 mdsc = ceph_sb_to_client(dir->i_sb)->mdsc;
1684
Sage Weil2817b002009-10-06 11:31:08 -07001685 /* always trust cached snapped dentries, snapdir dentry */
1686 if (ceph_snap(dir) != CEPH_NOSNAP) {
Al Viroa4555892014-10-21 20:11:25 -04001687 dout("d_revalidate %p '%pd' inode %p is SNAPPED\n", dentry,
Al Viroaa8dd812019-10-29 13:50:19 +00001688 dentry, inode);
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001689 valid = 1;
Al Viroaa8dd812019-10-29 13:50:19 +00001690 } else if (inode && ceph_snap(inode) == CEPH_SNAPDIR) {
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001691 valid = 1;
Jeff Layton14fb9c92016-07-01 09:39:20 -04001692 } else {
Yan, Zheng8f2a98ef2019-05-23 10:45:24 +08001693 valid = dentry_lease_is_valid(dentry, flags);
Jeff Layton14fb9c92016-07-01 09:39:20 -04001694 if (valid == -ECHILD)
1695 return valid;
Yan, Zheng719a2512020-03-05 20:21:00 +08001696 if (valid || dir_lease_is_valid(dir, dentry, mdsc)) {
Al Viroaa8dd812019-10-29 13:50:19 +00001697 if (inode)
1698 valid = ceph_is_any_caps(inode);
Jeff Layton14fb9c92016-07-01 09:39:20 -04001699 else
1700 valid = 1;
1701 }
Sage Weil2817b002009-10-06 11:31:08 -07001702 }
Sage Weil2817b002009-10-06 11:31:08 -07001703
Yan, Zheng200fd272016-03-17 14:41:59 +08001704 if (!valid) {
Yan, Zheng200fd272016-03-17 14:41:59 +08001705 struct ceph_mds_request *req;
Jeff Layton10976802017-01-12 14:42:38 -05001706 int op, err;
1707 u32 mask;
Yan, Zheng200fd272016-03-17 14:41:59 +08001708
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001709 if (flags & LOOKUP_RCU)
1710 return -ECHILD;
1711
Yan, Zheng200fd272016-03-17 14:41:59 +08001712 op = ceph_snap(dir) == CEPH_SNAPDIR ?
Jeff Layton5eb9f602017-01-30 09:47:25 -05001713 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
Yan, Zheng200fd272016-03-17 14:41:59 +08001714 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
1715 if (!IS_ERR(req)) {
1716 req->r_dentry = dget(dentry);
Jeff Layton5eb9f602017-01-30 09:47:25 -05001717 req->r_num_caps = 2;
1718 req->r_parent = dir;
Yan, Zheng200fd272016-03-17 14:41:59 +08001719
1720 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
1721 if (ceph_security_xattr_wanted(dir))
1722 mask |= CEPH_CAP_XATTR_SHARED;
Jeff Layton10976802017-01-12 14:42:38 -05001723 req->r_args.getattr.mask = cpu_to_le32(mask);
Yan, Zheng200fd272016-03-17 14:41:59 +08001724
Yan, Zheng200fd272016-03-17 14:41:59 +08001725 err = ceph_mdsc_do_request(mdsc, NULL, req);
Jeff Laytonc3f46882016-11-30 15:56:46 -05001726 switch (err) {
1727 case 0:
1728 if (d_really_is_positive(dentry) &&
1729 d_inode(dentry) == req->r_target_inode)
1730 valid = 1;
1731 break;
1732 case -ENOENT:
1733 if (d_really_is_negative(dentry))
1734 valid = 1;
1735 /* Fallthrough */
1736 default:
1737 break;
Yan, Zheng200fd272016-03-17 14:41:59 +08001738 }
1739 ceph_mdsc_put_request(req);
1740 dout("d_revalidate %p lookup result=%d\n",
1741 dentry, err);
1742 }
1743 }
1744
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001745 dout("d_revalidate %p %s\n", dentry, valid ? "valid" : "invalid");
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001746 if (!valid)
Yan, Zheng9215aee2013-11-30 12:47:41 +08001747 ceph_dir_clear_complete(dir);
Yan, Zheng641235d2016-03-16 16:40:23 +08001748
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001749 if (!(flags & LOOKUP_RCU))
1750 dput(parent);
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001751 return valid;
Sage Weil2817b002009-10-06 11:31:08 -07001752}
1753
1754/*
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001755 * Delete unused dentry that doesn't have valid lease
1756 *
1757 * Called under dentry->d_lock.
1758 */
1759static int ceph_d_delete(const struct dentry *dentry)
1760{
1761 struct ceph_dentry_info *di;
1762
1763 /* won't release caps */
1764 if (d_really_is_negative(dentry))
1765 return 0;
1766 if (ceph_snap(d_inode(dentry)) != CEPH_NOSNAP)
1767 return 0;
1768 /* vaild lease? */
1769 di = ceph_dentry(dentry);
1770 if (di) {
1771 if (__dentry_lease_is_valid(di))
1772 return 0;
1773 if (__dir_lease_try_check(dentry))
1774 return 0;
1775 }
1776 return 1;
1777}
1778
1779/*
Sage Weil147851d2011-03-15 14:57:41 -07001780 * Release our ceph_dentry_info.
Sage Weil2817b002009-10-06 11:31:08 -07001781 */
Sage Weil147851d2011-03-15 14:57:41 -07001782static void ceph_d_release(struct dentry *dentry)
Sage Weil2817b002009-10-06 11:31:08 -07001783{
1784 struct ceph_dentry_info *di = ceph_dentry(dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001785
Sage Weil147851d2011-03-15 14:57:41 -07001786 dout("d_release %p\n", dentry);
Jeff Layton5b484a52016-07-01 09:39:20 -04001787
1788 spin_lock(&dentry->d_lock);
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001789 __dentry_lease_unlist(di);
Jeff Layton5b484a52016-07-01 09:39:20 -04001790 dentry->d_fsdata = NULL;
1791 spin_unlock(&dentry->d_lock);
1792
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001793 if (di->lease_session)
1794 ceph_put_mds_session(di->lease_session);
1795 kmem_cache_free(ceph_dentry_cachep, di);
Sage Weil2817b002009-10-06 11:31:08 -07001796}
1797
Sage Weilb58dc412011-03-15 15:53:40 -07001798/*
1799 * When the VFS prunes a dentry from the cache, we need to clear the
1800 * complete flag on the parent directory.
1801 *
1802 * Called under dentry->d_lock.
1803 */
1804static void ceph_d_prune(struct dentry *dentry)
1805{
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001806 struct ceph_inode_info *dir_ci;
1807 struct ceph_dentry_info *di;
1808
1809 dout("ceph_d_prune %pd %p\n", dentry, dentry);
Sage Weilb58dc412011-03-15 15:53:40 -07001810
1811 /* do we have a valid parent? */
Sage Weil8842b3b2012-06-07 13:43:35 -07001812 if (IS_ROOT(dentry))
Sage Weilb58dc412011-03-15 15:53:40 -07001813 return;
1814
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001815 /* we hold d_lock, so d_parent is stable */
1816 dir_ci = ceph_inode(d_inode(dentry->d_parent));
1817 if (dir_ci->i_vino.snap == CEPH_SNAPDIR)
Sage Weilb58dc412011-03-15 15:53:40 -07001818 return;
1819
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001820 /* who calls d_delete() should also disable dcache readdir */
1821 if (d_really_is_negative(dentry))
Al Viro18fc8ab2016-10-28 21:52:50 -04001822 return;
1823
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001824 /* d_fsdata does not get cleared until d_release */
1825 if (!d_unhashed(dentry)) {
1826 __ceph_dir_clear_complete(dir_ci);
1827 return;
1828 }
1829
1830 /* Disable dcache readdir just in case that someone called d_drop()
1831 * or d_invalidate(), but MDS didn't revoke CEPH_CAP_FILE_SHARED
1832 * properly (dcache readdir is still enabled) */
1833 di = ceph_dentry(dentry);
1834 if (di->offset > 0 &&
1835 di->lease_shared_gen == atomic_read(&dir_ci->i_shared_gen))
1836 __ceph_dir_clear_ordered(dir_ci);
Sage Weilb58dc412011-03-15 15:53:40 -07001837}
Sage Weil2817b002009-10-06 11:31:08 -07001838
1839/*
1840 * read() on a dir. This weird interface hack only works if mounted
1841 * with '-o dirstat'.
1842 */
1843static ssize_t ceph_read_dir(struct file *file, char __user *buf, size_t size,
1844 loff_t *ppos)
1845{
Chengguang Xubb48bd42018-03-13 10:42:44 +08001846 struct ceph_dir_file_info *dfi = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -05001847 struct inode *inode = file_inode(file);
Sage Weil2817b002009-10-06 11:31:08 -07001848 struct ceph_inode_info *ci = ceph_inode(inode);
1849 int left;
Sage Weilae598082011-05-12 14:28:05 -07001850 const int bufsize = 1024;
Sage Weil2817b002009-10-06 11:31:08 -07001851
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001852 if (!ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb), DIRSTAT))
Sage Weil2817b002009-10-06 11:31:08 -07001853 return -EISDIR;
1854
Chengguang Xubb48bd42018-03-13 10:42:44 +08001855 if (!dfi->dir_info) {
1856 dfi->dir_info = kmalloc(bufsize, GFP_KERNEL);
1857 if (!dfi->dir_info)
Sage Weil2817b002009-10-06 11:31:08 -07001858 return -ENOMEM;
Chengguang Xubb48bd42018-03-13 10:42:44 +08001859 dfi->dir_info_len =
1860 snprintf(dfi->dir_info, bufsize,
Sage Weil2817b002009-10-06 11:31:08 -07001861 "entries: %20lld\n"
1862 " files: %20lld\n"
1863 " subdirs: %20lld\n"
1864 "rentries: %20lld\n"
1865 " rfiles: %20lld\n"
1866 " rsubdirs: %20lld\n"
1867 "rbytes: %20lld\n"
Arnd Bergmann9bbeab42018-07-13 22:18:36 +02001868 "rctime: %10lld.%09ld\n",
Sage Weil2817b002009-10-06 11:31:08 -07001869 ci->i_files + ci->i_subdirs,
1870 ci->i_files,
1871 ci->i_subdirs,
1872 ci->i_rfiles + ci->i_rsubdirs,
1873 ci->i_rfiles,
1874 ci->i_rsubdirs,
1875 ci->i_rbytes,
Arnd Bergmann9bbeab42018-07-13 22:18:36 +02001876 ci->i_rctime.tv_sec,
1877 ci->i_rctime.tv_nsec);
Sage Weil2817b002009-10-06 11:31:08 -07001878 }
1879
Chengguang Xubb48bd42018-03-13 10:42:44 +08001880 if (*ppos >= dfi->dir_info_len)
Sage Weil2817b002009-10-06 11:31:08 -07001881 return 0;
Chengguang Xubb48bd42018-03-13 10:42:44 +08001882 size = min_t(unsigned, size, dfi->dir_info_len-*ppos);
1883 left = copy_to_user(buf, dfi->dir_info + *ppos, size);
Sage Weil2817b002009-10-06 11:31:08 -07001884 if (left == size)
1885 return -EFAULT;
1886 *ppos += (size - left);
1887 return size - left;
1888}
1889
Sage Weil2817b002009-10-06 11:31:08 -07001890
Sage Weil2817b002009-10-06 11:31:08 -07001891
Sage Weil6c0f3af2010-11-16 11:14:34 -08001892/*
1893 * Return name hash for a given dentry. This is dependent on
1894 * the parent directory's hash function.
1895 */
Sage Weile5f86dc2011-07-26 11:30:55 -07001896unsigned ceph_dentry_hash(struct inode *dir, struct dentry *dn)
Sage Weil6c0f3af2010-11-16 11:14:34 -08001897{
Sage Weil6c0f3af2010-11-16 11:14:34 -08001898 struct ceph_inode_info *dci = ceph_inode(dir);
Jeff Layton76a495d2019-04-17 12:58:28 -04001899 unsigned hash;
Sage Weil6c0f3af2010-11-16 11:14:34 -08001900
1901 switch (dci->i_dir_layout.dl_dir_hash) {
1902 case 0: /* for backward compat */
1903 case CEPH_STR_HASH_LINUX:
1904 return dn->d_name.hash;
1905
1906 default:
Jeff Layton76a495d2019-04-17 12:58:28 -04001907 spin_lock(&dn->d_lock);
1908 hash = ceph_str_hash(dci->i_dir_layout.dl_dir_hash,
Sage Weil6c0f3af2010-11-16 11:14:34 -08001909 dn->d_name.name, dn->d_name.len);
Jeff Layton76a495d2019-04-17 12:58:28 -04001910 spin_unlock(&dn->d_lock);
1911 return hash;
Sage Weil6c0f3af2010-11-16 11:14:34 -08001912 }
1913}
1914
Sage Weil2817b002009-10-06 11:31:08 -07001915const struct file_operations ceph_dir_fops = {
1916 .read = ceph_read_dir,
Al Viro77acfa22013-05-17 16:52:26 -04001917 .iterate = ceph_readdir,
Sage Weil2817b002009-10-06 11:31:08 -07001918 .llseek = ceph_dir_llseek,
1919 .open = ceph_open,
1920 .release = ceph_release,
1921 .unlocked_ioctl = ceph_ioctl,
Arnd Bergmann18bd6ca2018-09-11 20:47:23 +02001922 .compat_ioctl = compat_ptr_ioctl,
Yan, Zhengda819c82015-05-27 11:19:34 +08001923 .fsync = ceph_fsync,
Yan, Zheng597817d2018-05-15 11:30:43 +08001924 .lock = ceph_lock,
1925 .flock = ceph_flock,
Sage Weil2817b002009-10-06 11:31:08 -07001926};
1927
Yan, Zheng38c48b52015-01-14 13:46:04 +08001928const struct file_operations ceph_snapdir_fops = {
1929 .iterate = ceph_readdir,
1930 .llseek = ceph_dir_llseek,
1931 .open = ceph_open,
1932 .release = ceph_release,
1933};
1934
Sage Weil2817b002009-10-06 11:31:08 -07001935const struct inode_operations ceph_dir_iops = {
1936 .lookup = ceph_lookup,
1937 .permission = ceph_permission,
1938 .getattr = ceph_getattr,
1939 .setattr = ceph_setattr,
Sage Weil2817b002009-10-06 11:31:08 -07001940 .listxattr = ceph_listxattr,
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001941 .get_acl = ceph_get_acl,
Sage Weil72466d02014-01-29 06:22:25 -08001942 .set_acl = ceph_set_acl,
Sage Weil2817b002009-10-06 11:31:08 -07001943 .mknod = ceph_mknod,
1944 .symlink = ceph_symlink,
1945 .mkdir = ceph_mkdir,
1946 .link = ceph_link,
1947 .unlink = ceph_unlink,
1948 .rmdir = ceph_unlink,
1949 .rename = ceph_rename,
1950 .create = ceph_create,
Miklos Szeredi2d83bde2012-06-05 15:10:25 +02001951 .atomic_open = ceph_atomic_open,
Sage Weil2817b002009-10-06 11:31:08 -07001952};
1953
Yan, Zheng38c48b52015-01-14 13:46:04 +08001954const struct inode_operations ceph_snapdir_iops = {
1955 .lookup = ceph_lookup,
1956 .permission = ceph_permission,
1957 .getattr = ceph_getattr,
1958 .mkdir = ceph_mkdir,
1959 .rmdir = ceph_unlink,
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001960 .rename = ceph_rename,
Yan, Zheng38c48b52015-01-14 13:46:04 +08001961};
1962
Sage Weil52dfb8a2010-08-03 10:25:30 -07001963const struct dentry_operations ceph_dentry_ops = {
Sage Weil2817b002009-10-06 11:31:08 -07001964 .d_revalidate = ceph_d_revalidate,
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001965 .d_delete = ceph_d_delete,
Sage Weil147851d2011-03-15 14:57:41 -07001966 .d_release = ceph_d_release,
Sage Weilb58dc412011-03-15 15:53:40 -07001967 .d_prune = ceph_d_prune,
Al Viroad5cb122016-10-28 22:05:13 -04001968 .d_init = ceph_d_init,
Sage Weil2817b002009-10-06 11:31:08 -07001969};