dir.c 35.8 KB
Newer Older
1
#include <linux/ceph/ceph_debug.h>
Sage Weil's avatar
Sage Weil committed
2 3 4 5

#include <linux/spinlock.h>
#include <linux/fs_struct.h>
#include <linux/namei.h>
6
#include <linux/slab.h>
Sage Weil's avatar
Sage Weil committed
7 8 9
#include <linux/sched.h>

#include "super.h"
10
#include "mds_client.h"
Sage Weil's avatar
Sage Weil committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

/*
 * Directory operations: readdir, lookup, create, link, unlink,
 * rename, etc.
 */

/*
 * Ceph MDS operations are specified in terms of a base ino and
 * relative path.  Thus, the client can specify an operation on a
 * specific inode (e.g., a getattr due to fstat(2)), or as a path
 * relative to, say, the root directory.
 *
 * Normally, we limit ourselves to strict inode ops (no path component)
 * or dentry operations (a single path component relative to an ino).  The
 * exception to this is open_root_dentry(), which will open the mount
 * point by name.
 */

const struct inode_operations ceph_dir_iops;
const struct file_operations ceph_dir_fops;
Sage Weil's avatar
Sage Weil committed
31
const struct dentry_operations ceph_dentry_ops;
Sage Weil's avatar
Sage Weil committed
32 33 34 35 36 37 38 39 40 41 42

/*
 * Initialize ceph dentry state.
 */
int ceph_init_dentry(struct dentry *dentry)
{
	struct ceph_dentry_info *di;

	if (dentry->d_fsdata)
		return 0;

43
	di = kmem_cache_alloc(ceph_dentry_cachep, GFP_NOFS | __GFP_ZERO);
Sage Weil's avatar
Sage Weil committed
44 45 46 47
	if (!di)
		return -ENOMEM;          /* oh well */

	spin_lock(&dentry->d_lock);
48 49 50
	if (dentry->d_fsdata) {
		/* lost a race */
		kmem_cache_free(ceph_dentry_cachep, di);
Sage Weil's avatar
Sage Weil committed
51
		goto out_unlock;
52
	}
53

54
	if (ceph_snap(dentry->d_parent->d_inode) == CEPH_NOSNAP)
55 56 57 58 59 60
		d_set_d_op(dentry, &ceph_dentry_ops);
	else if (ceph_snap(dentry->d_parent->d_inode) == CEPH_SNAPDIR)
		d_set_d_op(dentry, &ceph_snapdir_dentry_ops);
	else
		d_set_d_op(dentry, &ceph_snap_dentry_ops);

Sage Weil's avatar
Sage Weil committed
61 62 63
	di->dentry = dentry;
	di->lease_session = NULL;
	dentry->d_time = jiffies;
64 65 66
	/* avoid reordering d_fsdata setup so that the check above is safe */
	smp_mb();
	dentry->d_fsdata = di;
Sage Weil's avatar
Sage Weil committed
67 68 69 70 71 72
	ceph_dentry_lru_add(dentry);
out_unlock:
	spin_unlock(&dentry->d_lock);
	return 0;
}

Sage Weil's avatar
Sage Weil committed
73 74 75 76 77 78 79 80
struct inode *ceph_get_dentry_parent_inode(struct dentry *dentry)
{
	struct inode *inode = NULL;

	if (!dentry)
		return NULL;

	spin_lock(&dentry->d_lock);
81
	if (!IS_ROOT(dentry)) {
Sage Weil's avatar
Sage Weil committed
82 83 84 85 86 87
		inode = dentry->d_parent->d_inode;
		ihold(inode);
	}
	spin_unlock(&dentry->d_lock);
	return inode;
}
Sage Weil's avatar
Sage Weil committed
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102


/*
 * for readdir, we encode the directory frag and offset within that
 * frag into f_pos.
 */
static unsigned fpos_frag(loff_t p)
{
	return p >> 32;
}
static unsigned fpos_off(loff_t p)
{
	return p & 0xffffffff;
}

Yan, Zheng's avatar
Yan, Zheng committed
103 104 105 106 107 108 109 110
static int fpos_cmp(loff_t l, loff_t r)
{
	int v = ceph_frag_compare(fpos_frag(l), fpos_frag(r));
	if (v)
		return v;
	return (int)(fpos_off(l) - fpos_off(r));
}

Sage Weil's avatar
Sage Weil committed
111 112 113 114 115 116 117
/*
 * When possible, we try to satisfy a readdir by peeking at the
 * dcache.  We make this work by carefully ordering dentries on
 * d_u.d_child when we initially get results back from the MDS, and
 * falling back to a "normal" sync readdir if any dentries in the dir
 * are dropped.
 *
118
 * Complete dir indicates that we have all dentries in the dir.  It is
Sage Weil's avatar
Sage Weil committed
119 120 121
 * defined IFF we hold CEPH_CAP_FILE_SHARED (which will be revoked by
 * the MDS if/when the directory is modified).
 */
Al Viro's avatar
Al Viro committed
122
static int __dcache_readdir(struct file *file, struct dir_context *ctx)
Sage Weil's avatar
Sage Weil committed
123
{
Al Viro's avatar
Al Viro committed
124 125
	struct ceph_file_info *fi = file->private_data;
	struct dentry *parent = file->f_dentry;
Sage Weil's avatar
Sage Weil committed
126 127 128 129 130 131 132 133 134 135
	struct inode *dir = parent->d_inode;
	struct list_head *p;
	struct dentry *dentry, *last;
	struct ceph_dentry_info *di;
	int err = 0;

	/* claim ref on last dentry we returned */
	last = fi->dentry;
	fi->dentry = NULL;

Al Viro's avatar
Al Viro committed
136
	dout("__dcache_readdir %p at %llu (last %p)\n", dir, ctx->pos,
Sage Weil's avatar
Sage Weil committed
137 138
	     last);

Nick Piggin's avatar
Nick Piggin committed
139
	spin_lock(&parent->d_lock);
Sage Weil's avatar
Sage Weil committed
140 141

	/* start at beginning? */
Al Viro's avatar
Al Viro committed
142 143
	if (ctx->pos == 2 || last == NULL ||
	    ctx->pos < ceph_dentry(last)->offset) {
Sage Weil's avatar
Sage Weil committed
144 145 146 147 148 149 150 151 152 153 154 155
		if (list_empty(&parent->d_subdirs))
			goto out_unlock;
		p = parent->d_subdirs.prev;
		dout(" initial p %p/%p\n", p->prev, p->next);
	} else {
		p = last->d_u.d_child.prev;
	}

more:
	dentry = list_entry(p, struct dentry, d_u.d_child);
	di = ceph_dentry(dentry);
	while (1) {
Sage Weil's avatar
Sage Weil committed
156 157
		dout(" p %p/%p %s d_subdirs %p/%p\n", p->prev, p->next,
		     d_unhashed(dentry) ? "!hashed" : "hashed",
Sage Weil's avatar
Sage Weil committed
158 159
		     parent->d_subdirs.prev, parent->d_subdirs.next);
		if (p == &parent->d_subdirs) {
160
			fi->flags |= CEPH_F_ATEND;
Sage Weil's avatar
Sage Weil committed
161 162
			goto out_unlock;
		}
Nick Piggin's avatar
Nick Piggin committed
163
		spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
Sage Weil's avatar
Sage Weil committed
164
		if (!d_unhashed(dentry) && dentry->d_inode &&
165
		    ceph_snap(dentry->d_inode) != CEPH_SNAPDIR &&
166
		    ceph_ino(dentry->d_inode) != CEPH_INO_CEPH &&
Yan, Zheng's avatar
Yan, Zheng committed
167
		    fpos_cmp(ctx->pos, di->offset) <= 0)
Sage Weil's avatar
Sage Weil committed
168 169 170
			break;
		dout(" skipping %p %.*s at %llu (%llu)%s%s\n", dentry,
		     dentry->d_name.len, dentry->d_name.name, di->offset,
Al Viro's avatar
Al Viro committed
171
		     ctx->pos, d_unhashed(dentry) ? " unhashed" : "",
Sage Weil's avatar
Sage Weil committed
172
		     !dentry->d_inode ? " null" : "");
Nick Piggin's avatar
Nick Piggin committed
173
		spin_unlock(&dentry->d_lock);
Sage Weil's avatar
Sage Weil committed
174 175 176 177 178
		p = p->prev;
		dentry = list_entry(p, struct dentry, d_u.d_child);
		di = ceph_dentry(dentry);
	}

Nick Piggin's avatar
Nick Piggin committed
179
	dget_dlock(dentry);
180
	spin_unlock(&dentry->d_lock);
Nick Piggin's avatar
Nick Piggin committed
181
	spin_unlock(&parent->d_lock);
Sage Weil's avatar
Sage Weil committed
182

Al Viro's avatar
Al Viro committed
183
	dout(" %llu (%llu) dentry %p %.*s %p\n", di->offset, ctx->pos,
Sage Weil's avatar
Sage Weil committed
184
	     dentry, dentry->d_name.len, dentry->d_name.name, dentry->d_inode);
Al Viro's avatar
Al Viro committed
185 186 187
	ctx->pos = di->offset;
	if (!dir_emit(ctx, dentry->d_name.name,
		      dentry->d_name.len,
Yehuda Sadeh's avatar
Yehuda Sadeh committed
188
		      ceph_translate_ino(dentry->d_sb, dentry->d_inode->i_ino),
Al Viro's avatar
Al Viro committed
189 190
		      dentry->d_inode->i_mode >> 12)) {
		if (last) {
Sage Weil's avatar
Sage Weil committed
191 192
			/* remember our position */
			fi->dentry = last;
Yan, Zheng's avatar
Yan, Zheng committed
193
			fi->next_offset = fpos_off(di->offset);
Sage Weil's avatar
Sage Weil committed
194
		}
Al Viro's avatar
Al Viro committed
195 196
		dput(dentry);
		return 0;
Sage Weil's avatar
Sage Weil committed
197
	}
198

Al Viro's avatar
Al Viro committed
199 200 201
	if (last)
		dput(last);
	last = dentry;
Sage Weil's avatar
Sage Weil committed
202

Al Viro's avatar
Al Viro committed
203
	ctx->pos++;
Sage Weil's avatar
Sage Weil committed
204

Nick Piggin's avatar
Nick Piggin committed
205
	/* make sure a dentry wasn't dropped while we didn't have parent lock */
206 207
	if (!ceph_dir_is_complete(dir)) {
		dout(" lost dir complete on %p; falling back to mds\n", dir);
208 209 210 211
		err = -EAGAIN;
		goto out;
	}

Nick Piggin's avatar
Nick Piggin committed
212
	spin_lock(&parent->d_lock);
213 214
	p = p->prev;	/* advance to next dentry */
	goto more;
Sage Weil's avatar
Sage Weil committed
215 216

out_unlock:
Nick Piggin's avatar
Nick Piggin committed
217
	spin_unlock(&parent->d_lock);
218 219
out:
	if (last)
Sage Weil's avatar
Sage Weil committed
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
		dput(last);
	return err;
}

/*
 * make note of the last dentry we read, so we can
 * continue at the same lexicographical point,
 * regardless of what dir changes take place on the
 * server.
 */
static int note_last_dentry(struct ceph_file_info *fi, const char *name,
			    int len)
{
	kfree(fi->last_name);
	fi->last_name = kmalloc(len+1, GFP_NOFS);
	if (!fi->last_name)
		return -ENOMEM;
	memcpy(fi->last_name, name, len);
	fi->last_name[len] = 0;
	dout("note_last_dentry '%s'\n", fi->last_name);
	return 0;
}

Al Viro's avatar
Al Viro committed
243
static int ceph_readdir(struct file *file, struct dir_context *ctx)
Sage Weil's avatar
Sage Weil committed
244
{
Al Viro's avatar
Al Viro committed
245 246
	struct ceph_file_info *fi = file->private_data;
	struct inode *inode = file_inode(file);
Sage Weil's avatar
Sage Weil committed
247
	struct ceph_inode_info *ci = ceph_inode(inode);
248 249
	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
	struct ceph_mds_client *mdsc = fsc->mdsc;
Al Viro's avatar
Al Viro committed
250 251
	unsigned frag = fpos_frag(ctx->pos);
	int off = fpos_off(ctx->pos);
Sage Weil's avatar
Sage Weil committed
252 253 254
	int err;
	u32 ftype;
	struct ceph_mds_reply_info_parsed *rinfo;
255 256
	const int max_entries = fsc->mount_options->max_readdir;
	const int max_bytes = fsc->mount_options->max_readdir_bytes;
Sage Weil's avatar
Sage Weil committed
257

Al Viro's avatar
Al Viro committed
258
	dout("readdir %p file %p frag %u off %u\n", inode, file, frag, off);
259
	if (fi->flags & CEPH_F_ATEND)
Sage Weil's avatar
Sage Weil committed
260 261 262
		return 0;

	/* always start with . and .. */
Al Viro's avatar
Al Viro committed
263
	if (ctx->pos == 0) {
Sage Weil's avatar
Sage Weil committed
264 265
		/* note dir version at start of readdir so we can tell
		 * if any dentries get dropped */
266
		fi->dir_release_count = atomic_read(&ci->i_release_count);
Sage Weil's avatar
Sage Weil committed
267 268

		dout("readdir off 0 -> '.'\n");
Al Viro's avatar
Al Viro committed
269
		if (!dir_emit(ctx, ".", 1, 
Yehuda Sadeh's avatar
Yehuda Sadeh committed
270
			    ceph_translate_ino(inode->i_sb, inode->i_ino),
Al Viro's avatar
Al Viro committed
271
			    inode->i_mode >> 12))
Sage Weil's avatar
Sage Weil committed
272
			return 0;
Al Viro's avatar
Al Viro committed
273
		ctx->pos = 1;
Sage Weil's avatar
Sage Weil committed
274 275
		off = 1;
	}
Al Viro's avatar
Al Viro committed
276 277
	if (ctx->pos == 1) {
		ino_t ino = parent_ino(file->f_dentry);
Sage Weil's avatar
Sage Weil committed
278
		dout("readdir off 1 -> '..'\n");
Al Viro's avatar
Al Viro committed
279
		if (!dir_emit(ctx, "..", 2,
Yehuda Sadeh's avatar
Yehuda Sadeh committed
280
			    ceph_translate_ino(inode->i_sb, ino),
Al Viro's avatar
Al Viro committed
281
			    inode->i_mode >> 12))
Sage Weil's avatar
Sage Weil committed
282
			return 0;
Al Viro's avatar
Al Viro committed
283
		ctx->pos = 2;
Sage Weil's avatar
Sage Weil committed
284 285 286 287
		off = 2;
	}

	/* can we use the dcache? */
288
	spin_lock(&ci->i_ceph_lock);
Al Viro's avatar
Al Viro committed
289
	if ((ctx->pos == 2 || fi->dentry) &&
290
	    !ceph_test_mount_opt(fsc, NOASYNCREADDIR) &&
291
	    ceph_snap(inode) != CEPH_SNAPDIR &&
292
	    __ceph_dir_is_complete(ci) &&
Sage Weil's avatar
Sage Weil committed
293
	    __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1)) {
294
		spin_unlock(&ci->i_ceph_lock);
Al Viro's avatar
Al Viro committed
295
		err = __dcache_readdir(file, ctx);
296
		if (err != -EAGAIN)
Sage Weil's avatar
Sage Weil committed
297
			return err;
298
	} else {
299
		spin_unlock(&ci->i_ceph_lock);
Sage Weil's avatar
Sage Weil committed
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
	}
	if (fi->dentry) {
		err = note_last_dentry(fi, fi->dentry->d_name.name,
				       fi->dentry->d_name.len);
		if (err)
			return err;
		dput(fi->dentry);
		fi->dentry = NULL;
	}

	/* proceed with a normal readdir */

more:
	/* do we have the correct frag content buffered? */
	if (fi->frag != frag || fi->last_readdir == NULL) {
		struct ceph_mds_request *req;
		int op = ceph_snap(inode) == CEPH_SNAPDIR ?
			CEPH_MDS_OP_LSSNAP : CEPH_MDS_OP_READDIR;

		/* discard old result, if any */
320
		if (fi->last_readdir) {
Sage Weil's avatar
Sage Weil committed
321
			ceph_mdsc_put_request(fi->last_readdir);
322 323
			fi->last_readdir = NULL;
		}
Sage Weil's avatar
Sage Weil committed
324 325 326 327 328 329 330 331 332

		/* requery frag tree, as the frag topology may have changed */
		frag = ceph_choose_frag(ceph_inode(inode), frag, NULL, NULL);

		dout("readdir fetching %llx.%llx frag %x offset '%s'\n",
		     ceph_vinop(inode), frag, fi->last_name);
		req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
		if (IS_ERR(req))
			return PTR_ERR(req);
333 334
		req->r_inode = inode;
		ihold(inode);
Al Viro's avatar
Al Viro committed
335
		req->r_dentry = dget(file->f_dentry);
Sage Weil's avatar
Sage Weil committed
336 337 338 339 340 341 342 343
		/* hints to request -> mds selection code */
		req->r_direct_mode = USE_AUTH_MDS;
		req->r_direct_hash = ceph_frag_value(frag);
		req->r_direct_is_hash = true;
		req->r_path2 = kstrdup(fi->last_name, GFP_NOFS);
		req->r_readdir_offset = fi->next_offset;
		req->r_args.readdir.frag = cpu_to_le32(frag);
		req->r_args.readdir.max_entries = cpu_to_le32(max_entries);
344
		req->r_args.readdir.max_bytes = cpu_to_le32(max_bytes);
345
		req->r_num_caps = max_entries + 1;
Sage Weil's avatar
Sage Weil committed
346 347 348 349 350 351 352 353 354 355 356 357
		err = ceph_mdsc_do_request(mdsc, NULL, req);
		if (err < 0) {
			ceph_mdsc_put_request(req);
			return err;
		}
		dout("readdir got and parsed readdir result=%d"
		     " on frag %x, end=%d, complete=%d\n", err, frag,
		     (int)req->r_reply_info.dir_end,
		     (int)req->r_reply_info.dir_complete);

		if (!req->r_did_prepopulate) {
			dout("readdir !did_prepopulate");
358 359
			/* preclude from marking dir complete */
			fi->dir_release_count--;
Sage Weil's avatar
Sage Weil committed
360 361 362
		}

		/* note next offset and last dentry name */
363 364 365 366 367 368 369 370 371
		rinfo = &req->r_reply_info;
		if (le32_to_cpu(rinfo->dir_dir->frag) != frag) {
			frag = le32_to_cpu(rinfo->dir_dir->frag);
			if (ceph_frag_is_leftmost(frag))
				fi->next_offset = 2;
			else
				fi->next_offset = 0;
			off = fi->next_offset;
		}
Yan, Zheng's avatar
Yan, Zheng committed
372
		fi->frag = frag;
Sage Weil's avatar
Sage Weil committed
373 374 375 376 377 378
		fi->offset = fi->next_offset;
		fi->last_readdir = req;

		if (req->r_reply_info.dir_end) {
			kfree(fi->last_name);
			fi->last_name = NULL;
379 380 381 382
			if (ceph_frag_is_rightmost(frag))
				fi->next_offset = 2;
			else
				fi->next_offset = 0;
Sage Weil's avatar
Sage Weil committed
383 384 385 386 387 388 389 390 391 392 393 394 395
		} else {
			err = note_last_dentry(fi,
				       rinfo->dir_dname[rinfo->dir_nr-1],
				       rinfo->dir_dname_len[rinfo->dir_nr-1]);
			if (err)
				return err;
			fi->next_offset += rinfo->dir_nr;
		}
	}

	rinfo = &fi->last_readdir->r_reply_info;
	dout("readdir frag %x num %d off %d chunkoff %d\n", frag,
	     rinfo->dir_nr, off, fi->offset);
Al Viro's avatar
Al Viro committed
396 397

	ctx->pos = ceph_make_fpos(frag, off);
398
	while (off >= fi->offset && off - fi->offset < rinfo->dir_nr) {
Sage Weil's avatar
Sage Weil committed
399 400
		struct ceph_mds_reply_inode *in =
			rinfo->dir_in[off - fi->offset].in;
401 402 403
		struct ceph_vino vino;
		ino_t ino;

Sage Weil's avatar
Sage Weil committed
404
		dout("readdir off %d (%d/%d) -> %lld '%.*s' %p\n",
Al Viro's avatar
Al Viro committed
405
		     off, off - fi->offset, rinfo->dir_nr, ctx->pos,
Sage Weil's avatar
Sage Weil committed
406 407 408 409
		     rinfo->dir_dname_len[off - fi->offset],
		     rinfo->dir_dname[off - fi->offset], in);
		BUG_ON(!in);
		ftype = le32_to_cpu(in->mode) >> 12;
410 411 412
		vino.ino = le64_to_cpu(in->ino);
		vino.snap = le64_to_cpu(in->snapid);
		ino = ceph_vino_to_ino(vino);
Al Viro's avatar
Al Viro committed
413
		if (!dir_emit(ctx,
Sage Weil's avatar
Sage Weil committed
414 415
			    rinfo->dir_dname[off - fi->offset],
			    rinfo->dir_dname_len[off - fi->offset],
Al Viro's avatar
Al Viro committed
416
			    ceph_translate_ino(inode->i_sb, ino), ftype)) {
Sage Weil's avatar
Sage Weil committed
417 418 419 420
			dout("filldir stopping us...\n");
			return 0;
		}
		off++;
Al Viro's avatar
Al Viro committed
421
		ctx->pos++;
Sage Weil's avatar
Sage Weil committed
422 423 424 425 426 427 428 429 430 431 432 433
	}

	if (fi->last_name) {
		ceph_mdsc_put_request(fi->last_readdir);
		fi->last_readdir = NULL;
		goto more;
	}

	/* more frags? */
	if (!ceph_frag_is_rightmost(frag)) {
		frag = ceph_frag_next(frag);
		off = 0;
Al Viro's avatar
Al Viro committed
434
		ctx->pos = ceph_make_fpos(frag, off);
Sage Weil's avatar
Sage Weil committed
435 436 437
		dout("readdir next frag is %x\n", frag);
		goto more;
	}
438
	fi->flags |= CEPH_F_ATEND;
Sage Weil's avatar
Sage Weil committed
439 440 441 442 443 444

	/*
	 * if dir_release_count still matches the dir, no dentries
	 * were released during the whole readdir, and we should have
	 * the complete dir contents in our cache.
	 */
445
	spin_lock(&ci->i_ceph_lock);
446
	if (atomic_read(&ci->i_release_count) == fi->dir_release_count) {
447
		dout(" marking %p complete\n", inode);
448
		__ceph_dir_set_complete(ci, fi->dir_release_count);
Al Viro's avatar
Al Viro committed
449
		ci->i_max_offset = ctx->pos;
Sage Weil's avatar
Sage Weil committed
450
	}
451
	spin_unlock(&ci->i_ceph_lock);
Sage Weil's avatar
Sage Weil committed
452

Al Viro's avatar
Al Viro committed
453
	dout("readdir %p file %p done.\n", inode, file);
Sage Weil's avatar
Sage Weil committed
454 455 456 457 458 459 460 461 462 463
	return 0;
}

static void reset_readdir(struct ceph_file_info *fi)
{
	if (fi->last_readdir) {
		ceph_mdsc_put_request(fi->last_readdir);
		fi->last_readdir = NULL;
	}
	kfree(fi->last_name);
Sage Weil's avatar
Sage Weil committed
464
	fi->last_name = NULL;
Sage Weil's avatar
Sage Weil committed
465 466 467 468 469
	fi->next_offset = 2;  /* compensate for . and .. */
	if (fi->dentry) {
		dput(fi->dentry);
		fi->dentry = NULL;
	}
470
	fi->flags &= ~CEPH_F_ATEND;
Sage Weil's avatar
Sage Weil committed
471 472
}

473
static loff_t ceph_dir_llseek(struct file *file, loff_t offset, int whence)
Sage Weil's avatar
Sage Weil committed
474 475 476
{
	struct ceph_file_info *fi = file->private_data;
	struct inode *inode = file->f_mapping->host;
Yan, Zheng's avatar
Yan, Zheng committed
477
	loff_t old_offset = ceph_make_fpos(fi->frag, fi->next_offset);
Sage Weil's avatar
Sage Weil committed
478 479 480
	loff_t retval;

	mutex_lock(&inode->i_mutex);
481
	retval = -EINVAL;
482
	switch (whence) {
Sage Weil's avatar
Sage Weil committed
483 484 485 486 487
	case SEEK_END:
		offset += inode->i_size + 2;   /* FIXME */
		break;
	case SEEK_CUR:
		offset += file->f_pos;
488 489 490 491
	case SEEK_SET:
		break;
	default:
		goto out;
Sage Weil's avatar
Sage Weil committed
492
	}
493

Yan, Zheng's avatar
Yan, Zheng committed
494
	if (offset >= 0) {
Sage Weil's avatar
Sage Weil committed
495 496 497
		if (offset != file->f_pos) {
			file->f_pos = offset;
			file->f_version = 0;
498
			fi->flags &= ~CEPH_F_ATEND;
Sage Weil's avatar
Sage Weil committed
499 500 501 502 503 504 505 506
		}
		retval = offset;

		/*
		 * discard buffered readdir content on seekdir(0), or
		 * seek to new frag, or seek prior to current chunk.
		 */
		if (offset == 0 ||
Yan, Zheng's avatar
Yan, Zheng committed
507
		    fpos_frag(offset) != fi->frag ||
Sage Weil's avatar
Sage Weil committed
508 509 510 511 512 513
		    fpos_off(offset) < fi->offset) {
			dout("dir_llseek dropping %p content\n", file);
			reset_readdir(fi);
		}

		/* bump dir_release_count if we did a forward seek */
Yan, Zheng's avatar
Yan, Zheng committed
514
		if (fpos_cmp(offset, old_offset) > 0)
Sage Weil's avatar
Sage Weil committed
515 516
			fi->dir_release_count--;
	}
517
out:
Sage Weil's avatar
Sage Weil committed
518 519 520 521 522
	mutex_unlock(&inode->i_mutex);
	return retval;
}

/*
523
 * Handle lookups for the hidden .snap directory.
Sage Weil's avatar
Sage Weil committed
524
 */
525 526
int ceph_handle_snapdir(struct ceph_mds_request *req,
			struct dentry *dentry, int err)
Sage Weil's avatar
Sage Weil committed
527
{
528
	struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
529
	struct inode *parent = dentry->d_parent->d_inode; /* we hold i_mutex */
Sage Weil's avatar
Sage Weil committed
530 531 532

	/* .snap dir? */
	if (err == -ENOENT &&
533
	    ceph_snap(parent) == CEPH_NOSNAP &&
534
	    strcmp(dentry->d_name.name,
535
		   fsc->mount_options->snapdir_name) == 0) {
Sage Weil's avatar
Sage Weil committed
536 537 538
		struct inode *inode = ceph_get_snapdir(parent);
		dout("ENOENT on snapdir %p '%.*s', linking to snapdir %p\n",
		     dentry, dentry->d_name.len, dentry->d_name.name, inode);
539
		BUG_ON(!d_unhashed(dentry));
Sage Weil's avatar
Sage Weil committed
540 541 542
		d_add(dentry, inode);
		err = 0;
	}
543 544
	return err;
}
Sage Weil's avatar
Sage Weil committed
545

546 547 548 549 550 551 552 553 554 555 556 557 558 559
/*
 * Figure out final result of a lookup/open request.
 *
 * Mainly, make sure we return the final req->r_dentry (if it already
 * existed) in place of the original VFS-provided dentry when they
 * differ.
 *
 * Gracefully handle the case where the MDS replies with -ENOENT and
 * no trace (which it may do, at its discretion, e.g., if it doesn't
 * care to issue a lease on the negative dentry).
 */
struct dentry *ceph_finish_lookup(struct ceph_mds_request *req,
				  struct dentry *dentry, int err)
{
Sage Weil's avatar
Sage Weil committed
560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
	if (err == -ENOENT) {
		/* no trace? */
		err = 0;
		if (!req->r_reply_info.head->is_dentry) {
			dout("ENOENT and no trace, dentry %p inode %p\n",
			     dentry, dentry->d_inode);
			if (dentry->d_inode) {
				d_drop(dentry);
				err = -ENOENT;
			} else {
				d_add(dentry, NULL);
			}
		}
	}
	if (err)
		dentry = ERR_PTR(err);
	else if (dentry != req->r_dentry)
		dentry = dget(req->r_dentry);   /* we got spliced */
	else
		dentry = NULL;
	return dentry;
}

583 584 585 586 587 588
static int is_root_ceph_dentry(struct inode *inode, struct dentry *dentry)
{
	return ceph_ino(inode) == CEPH_INO_ROOT &&
		strncmp(dentry->d_name.name, ".ceph", 5) == 0;
}

Sage Weil's avatar
Sage Weil committed
589 590 591 592 593
/*
 * Look up a single dir entry.  If there is a lookup intent, inform
 * the MDS so that it gets our 'caps wanted' value in a single op.
 */
static struct dentry *ceph_lookup(struct inode *dir, struct dentry *dentry,
594
				  unsigned int flags)
Sage Weil's avatar
Sage Weil committed
595
{
596 597
	struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
	struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil's avatar
Sage Weil committed
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
	struct ceph_mds_request *req;
	int op;
	int err;

	dout("lookup %p dentry %p '%.*s'\n",
	     dir, dentry, dentry->d_name.len, dentry->d_name.name);

	if (dentry->d_name.len > NAME_MAX)
		return ERR_PTR(-ENAMETOOLONG);

	err = ceph_init_dentry(dentry);
	if (err < 0)
		return ERR_PTR(err);

	/* can we conclude ENOENT locally? */
	if (dentry->d_inode == NULL) {
		struct ceph_inode_info *ci = ceph_inode(dir);
		struct ceph_dentry_info *di = ceph_dentry(dentry);

617
		spin_lock(&ci->i_ceph_lock);
Sage Weil's avatar
Sage Weil committed
618 619
		dout(" dir %p flags are %d\n", dir, ci->i_ceph_flags);
		if (strncmp(dentry->d_name.name,
620
			    fsc->mount_options->snapdir_name,
Sage Weil's avatar
Sage Weil committed
621
			    dentry->d_name.len) &&
622
		    !is_root_ceph_dentry(dir, dentry) &&
623
		    __ceph_dir_is_complete(ci) &&
Sage Weil's avatar
Sage Weil committed
624
		    (__ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1))) {
625
			spin_unlock(&ci->i_ceph_lock);
Sage Weil's avatar
Sage Weil committed
626 627 628 629 630
			dout(" dir %p complete, -ENOENT\n", dir);
			d_add(dentry, NULL);
			di->lease_shared_gen = ci->i_shared_gen;
			return NULL;
		}
631
		spin_unlock(&ci->i_ceph_lock);
Sage Weil's avatar
Sage Weil committed
632 633 634 635 636 637
	}

	op = ceph_snap(dir) == CEPH_SNAPDIR ?
		CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
	req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
	if (IS_ERR(req))
Julia Lawall's avatar
Julia Lawall committed
638
		return ERR_CAST(req);
Sage Weil's avatar
Sage Weil committed
639 640 641 642 643 644
	req->r_dentry = dget(dentry);
	req->r_num_caps = 2;
	/* we only need inode linkage */
	req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
	req->r_locked_dir = dir;
	err = ceph_mdsc_do_request(mdsc, NULL, req);
645
	err = ceph_handle_snapdir(req, dentry, err);
Sage Weil's avatar
Sage Weil committed
646 647 648 649 650 651 652 653 654 655 656 657
	dentry = ceph_finish_lookup(req, dentry, err);
	ceph_mdsc_put_request(req);  /* will dput(dentry) */
	dout("lookup result=%p\n", dentry);
	return dentry;
}

/*
 * If we do a create but get no trace back from the MDS, follow up with
 * a lookup (the VFS expects us to link up the provided dentry).
 */
int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry)
{
658
	struct dentry *result = ceph_lookup(dir, dentry, 0);
Sage Weil's avatar
Sage Weil committed
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675

	if (result && !IS_ERR(result)) {
		/*
		 * We created the item, then did a lookup, and found
		 * it was already linked to another inode we already
		 * had in our cache (and thus got spliced).  Link our
		 * dentry to that inode, but don't hash it, just in
		 * case the VFS wants to dereference it.
		 */
		BUG_ON(!result->d_inode);
		d_instantiate(dentry, result->d_inode);
		return 0;
	}
	return PTR_ERR(result);
}

static int ceph_mknod(struct inode *dir, struct dentry *dentry,
Al Viro's avatar
Al Viro committed
676
		      umode_t mode, dev_t rdev)
Sage Weil's avatar
Sage Weil committed
677
{
678 679
	struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
	struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil's avatar
Sage Weil committed
680 681 682 683 684 685
	struct ceph_mds_request *req;
	int err;

	if (ceph_snap(dir) != CEPH_NOSNAP)
		return -EROFS;

Al Viro's avatar
Al Viro committed
686
	dout("mknod in dir %p dentry %p mode 0%ho rdev %d\n",
Sage Weil's avatar
Sage Weil committed
687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
	     dir, dentry, mode, rdev);
	req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_MKNOD, USE_AUTH_MDS);
	if (IS_ERR(req)) {
		d_drop(dentry);
		return PTR_ERR(req);
	}
	req->r_dentry = dget(dentry);
	req->r_num_caps = 2;
	req->r_locked_dir = dir;
	req->r_args.mknod.mode = cpu_to_le32(mode);
	req->r_args.mknod.rdev = cpu_to_le32(rdev);
	req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
	req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
	err = ceph_mdsc_do_request(mdsc, dir, req);
	if (!err && !req->r_reply_info.head->is_dentry)
		err = ceph_handle_notrace_create(dir, dentry);
	ceph_mdsc_put_request(req);
Guangliang Zhao's avatar
Guangliang Zhao committed
704 705

	if (!err)
706 707
		ceph_init_acl(dentry, dentry->d_inode, dir);
	else
Sage Weil's avatar
Sage Weil committed
708 709 710 711
		d_drop(dentry);
	return err;
}

Al Viro's avatar
Al Viro committed
712
static int ceph_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro's avatar
Al Viro committed
713
		       bool excl)
Sage Weil's avatar
Sage Weil committed
714
{
715
	return ceph_mknod(dir, dentry, mode, 0);
Sage Weil's avatar
Sage Weil committed
716 717 718 719 720
}

static int ceph_symlink(struct inode *dir, struct dentry *dentry,
			    const char *dest)
{
721 722
	struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
	struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil's avatar
Sage Weil committed
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
	struct ceph_mds_request *req;
	int err;

	if (ceph_snap(dir) != CEPH_NOSNAP)
		return -EROFS;

	dout("symlink in dir %p dentry %p to '%s'\n", dir, dentry, dest);
	req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SYMLINK, USE_AUTH_MDS);
	if (IS_ERR(req)) {
		d_drop(dentry);
		return PTR_ERR(req);
	}
	req->r_dentry = dget(dentry);
	req->r_num_caps = 2;
	req->r_path2 = kstrdup(dest, GFP_NOFS);
	req->r_locked_dir = dir;
	req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
	req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
	err = ceph_mdsc_do_request(mdsc, dir, req);
	if (!err && !req->r_reply_info.head->is_dentry)
		err = ceph_handle_notrace_create(dir, dentry);
	ceph_mdsc_put_request(req);
745 746 747
	if (!err)
		ceph_init_acl(dentry, dentry->d_inode, dir);
	else
Sage Weil's avatar
Sage Weil committed
748 749 750 751
		d_drop(dentry);
	return err;
}

752
static int ceph_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Sage Weil's avatar
Sage Weil committed
753
{
754 755
	struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
	struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil's avatar
Sage Weil committed
756 757 758 759 760 761 762 763 764 765
	struct ceph_mds_request *req;
	int err = -EROFS;
	int op;

	if (ceph_snap(dir) == CEPH_SNAPDIR) {
		/* mkdir .snap/foo is a MKSNAP */
		op = CEPH_MDS_OP_MKSNAP;
		dout("mksnap dir %p snap '%.*s' dn %p\n", dir,
		     dentry->d_name.len, dentry->d_name.name, dentry);
	} else if (ceph_snap(dir) == CEPH_NOSNAP) {
766
		dout("mkdir dir %p dn %p mode 0%ho\n", dir, dentry, mode);
Sage Weil's avatar
Sage Weil committed
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
		op = CEPH_MDS_OP_MKDIR;
	} else {
		goto out;
	}
	req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto out;
	}

	req->r_dentry = dget(dentry);
	req->r_num_caps = 2;
	req->r_locked_dir = dir;
	req->r_args.mkdir.mode = cpu_to_le32(mode);
	req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
	req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
	err = ceph_mdsc_do_request(mdsc, dir, req);
	if (!err && !req->r_reply_info.head->is_dentry)
		err = ceph_handle_notrace_create(dir, dentry);
	ceph_mdsc_put_request(req);
out:
788 789 790
	if (!err)
		ceph_init_acl(dentry, dentry->d_inode, dir);
	else
Sage Weil's avatar
Sage Weil committed
791 792 793 794 795 796 797
		d_drop(dentry);
	return err;
}

static int ceph_link(struct dentry *old_dentry, struct inode *dir,
		     struct dentry *dentry)
{
798 799
	struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
	struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil's avatar
Sage Weil committed
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
	struct ceph_mds_request *req;
	int err;

	if (ceph_snap(dir) != CEPH_NOSNAP)
		return -EROFS;

	dout("link in dir %p old_dentry %p dentry %p\n", dir,
	     old_dentry, dentry);
	req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_LINK, USE_AUTH_MDS);
	if (IS_ERR(req)) {
		d_drop(dentry);
		return PTR_ERR(req);
	}
	req->r_dentry = dget(dentry);
	req->r_num_caps = 2;
	req->r_old_dentry = dget(old_dentry); /* or inode? hrm. */
816
	req->r_old_dentry_dir = ceph_get_dentry_parent_inode(old_dentry);
Sage Weil's avatar
Sage Weil committed
817 818 819
	req->r_locked_dir = dir;
	req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
	req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
820 821
	/* release LINK_SHARED on source inode (mds will lock it) */
	req->r_old_inode_drop = CEPH_CAP_LINK_SHARED;
Sage Weil's avatar
Sage Weil committed
822
	err = ceph_mdsc_do_request(mdsc, dir, req);
823
	if (err) {
Sage Weil's avatar
Sage Weil committed
824
		d_drop(dentry);
825 826 827 828
	} else if (!req->r_reply_info.head->is_dentry) {
		ihold(old_dentry->d_inode);
		d_instantiate(dentry, old_dentry->d_inode);
	}
Sage Weil's avatar
Sage Weil committed
829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
	ceph_mdsc_put_request(req);
	return err;
}

/*
 * For a soon-to-be unlinked file, drop the AUTH_RDCACHE caps.  If it
 * looks like the link count will hit 0, drop any other caps (other
 * than PIN) we don't specifically want (due to the file still being
 * open).
 */
static int drop_caps_for_unlink(struct inode *inode)
{
	struct ceph_inode_info *ci = ceph_inode(inode);
	int drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;

844
	spin_lock(&ci->i_ceph_lock);
Sage Weil's avatar
Sage Weil committed
845 846 847 848
	if (inode->i_nlink == 1) {
		drop |= ~(__ceph_caps_wanted(ci) | CEPH_CAP_PIN);
		ci->i_ceph_flags |= CEPH_I_NODELAY;
	}
849
	spin_unlock(&ci->i_ceph_lock);
Sage Weil's avatar
Sage Weil committed
850 851 852 853 854 855 856 857
	return drop;
}

/*
 * rmdir and unlink are differ only by the metadata op code
 */
static int ceph_unlink(struct inode *dir, struct dentry *dentry)
{
858 859
	struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
	struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil's avatar
Sage Weil committed
860 861 862 863 864 865 866 867 868 869 870 871 872
	struct inode *inode = dentry->d_inode;
	struct ceph_mds_request *req;
	int err = -EROFS;
	int op;

	if (ceph_snap(dir) == CEPH_SNAPDIR) {
		/* rmdir .snap/foo is RMSNAP */
		dout("rmsnap dir %p '%.*s' dn %p\n", dir, dentry->d_name.len,
		     dentry->d_name.name, dentry);
		op = CEPH_MDS_OP_RMSNAP;
	} else if (ceph_snap(dir) == CEPH_NOSNAP) {
		dout("unlink/rmdir dir %p dn %p inode %p\n",
		     dir, dentry, inode);
873
		op = S_ISDIR(dentry->d_inode->i_mode) ?
Sage Weil's avatar
Sage Weil committed
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898
			CEPH_MDS_OP_RMDIR : CEPH_MDS_OP_UNLINK;
	} else
		goto out;
	req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
	if (IS_ERR(req)) {
		err = PTR_ERR(req);
		goto out;
	}
	req->r_dentry = dget(dentry);
	req->r_num_caps = 2;
	req->r_locked_dir = dir;
	req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
	req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
	req->r_inode_drop = drop_caps_for_unlink(inode);
	err = ceph_mdsc_do_request(mdsc, dir, req);
	if (!err && !req->r_reply_info.head->is_dentry)
		d_delete(dentry);
	ceph_mdsc_put_request(req);
out:
	return err;
}

static int ceph_rename(struct inode *old_dir, struct dentry *old_dentry,
		       struct inode *new_dir, struct dentry *new_dentry)
{
899 900
	struct ceph_fs_client *fsc = ceph_sb_to_client(old_dir->i_sb);
	struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil's avatar
Sage Weil committed
901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
	struct ceph_mds_request *req;
	int err;

	if (ceph_snap(old_dir) != ceph_snap(new_dir))
		return -EXDEV;
	if (ceph_snap(old_dir) != CEPH_NOSNAP ||
	    ceph_snap(new_dir) != CEPH_NOSNAP)
		return -EROFS;
	dout("rename dir %p dentry %p to dir %p dentry %p\n",
	     old_dir, old_dentry, new_dir, new_dentry);
	req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_RENAME, USE_AUTH_MDS);
	if (IS_ERR(req))
		return PTR_ERR(req);
	req->r_dentry = dget(new_dentry);
	req->r_num_caps = 2;
	req->r_old_dentry = dget(old_dentry);
917
	req->r_old_dentry_dir = ceph_get_dentry_parent_inode(old_dentry);
Sage Weil's avatar
Sage Weil committed
918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933
	req->r_locked_dir = new_dir;
	req->r_old_dentry_drop = CEPH_CAP_FILE_SHARED;
	req->r_old_dentry_unless = CEPH_CAP_FILE_EXCL;
	req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
	req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
	/* release LINK_RDCACHE on source inode (mds will lock it) */
	req->r_old_inode_drop = CEPH_CAP_LINK_SHARED;
	if (new_dentry->d_inode)
		req->r_inode_drop = drop_caps_for_unlink(new_dentry->d_inode);
	err = ceph_mdsc_do_request(mdsc, old_dir, req);
	if (!err && !req->r_reply_info.head->is_dentry) {
		/*
		 * Normally d_move() is done by fill_trace (called by
		 * do_request, above).  If there is no trace, we need
		 * to do it here.
		 */
934 935

		/* d_move screws up d_subdirs order */
936
		ceph_dir_clear_complete(new_dir);
937

Sage Weil's avatar
Sage Weil committed
938
		d_move(old_dentry, new_dentry);
939 940 941

		/* ensure target dentry is invalidated, despite
		   rehashing bug in vfs_rename_dir */
942
		ceph_invalidate_dentry_lease(new_dentry);
Sage Weil's avatar
Sage Weil committed
943 944 945 946 947
	}
	ceph_mdsc_put_request(req);
	return err;
}

948 949 950 951 952 953 954 955 956 957
/*
 * Ensure a dentry lease will no longer revalidate.
 */
void ceph_invalidate_dentry_lease(struct dentry *dentry)
{
	spin_lock(&dentry->d_lock);
	dentry->d_time = jiffies;
	ceph_dentry(dentry)->lease_shared_gen = 0;
	spin_unlock(&dentry->d_lock);
}
Sage Weil's avatar
Sage Weil committed
958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975

/*
 * Check if dentry lease is valid.  If not, delete the lease.  Try to
 * renew if the least is more than half up.
 */
static int dentry_lease_is_valid(struct dentry *dentry)
{
	struct ceph_dentry_info *di;
	struct ceph_mds_session *s;
	int valid = 0;
	u32 gen;
	unsigned long ttl;
	struct ceph_mds_session *session = NULL;
	struct inode *dir = NULL;
	u32 seq = 0;

	spin_lock(&dentry->d_lock);
	di = ceph_dentry(dentry);
976
	if (di->lease_session) {
Sage Weil's avatar
Sage Weil committed
977
		s = di->lease_session;
978
		spin_lock(&s->s_gen_ttl_lock);
Sage Weil's avatar
Sage Weil committed
979 980
		gen = s->s_cap_gen;
		ttl = s->s_cap_ttl;
981
		spin_unlock(&s->s_gen_ttl_lock);
Sage Weil's avatar
Sage Weil committed
982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017

		if (di->lease_gen == gen &&
		    time_before(jiffies, dentry->d_time) &&
		    time_before(jiffies, ttl)) {
			valid = 1;
			if (di->lease_renew_after &&
			    time_after(jiffies, di->lease_renew_after)) {
				/* we should renew */
				dir = dentry->d_parent->d_inode;
				session = ceph_get_mds_session(s);
				seq = di->lease_seq;
				di->lease_renew_after = 0;
				di->lease_renew_from = jiffies;
			}
		}
	}
	spin_unlock(&dentry->d_lock);

	if (session) {
		ceph_mdsc_lease_send_msg(session, dir, dentry,
					 CEPH_MDS_LEASE_RENEW, seq);
		ceph_put_mds_session(session);
	}
	dout("dentry_lease_is_valid - dentry %p = %d\n", dentry, valid);
	return valid;
}

/*
 * Check if directory-wide content lease/cap is valid.
 */
static int dir_lease_is_valid(struct inode *dir, struct dentry *dentry)
{
	struct ceph_inode_info *ci = ceph_inode(dir);
	struct ceph_dentry_info *di = ceph_dentry(dentry);
	int valid = 0;

1018
	spin_lock(&ci->i_ceph_lock);
Sage Weil's avatar
Sage Weil committed
1019 1020
	if (ci->i_shared_gen == di->lease_shared_gen)
		valid = __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1);
1021
	spin_unlock(&ci->i_ceph_lock);
Sage Weil's avatar
Sage Weil committed
1022 1023 1024 1025 1026 1027 1028 1029 1030
	dout("dir_lease_is_valid dir %p v%u dentry %p v%u = %d\n",
	     dir, (unsigned)ci->i_shared_gen, dentry,
	     (unsigned)di->lease_shared_gen, valid);
	return valid;
}

/*
 * Check if cached dentry can be trusted.
 */
1031
static int ceph_d_revalidate(struct dentry *dentry, unsigned int flags)
Sage Weil's avatar
Sage Weil committed
1032
{
1033
	int valid = 0;
1034 1035
	struct inode *dir;

1036
	if (flags & LOOKUP_RCU)
1037 1038
		return -ECHILD;

Sage Weil's avatar
Sage Weil committed
1039 1040 1041
	dout("d_revalidate %p '%.*s' inode %p offset %lld\n", dentry,
	     dentry->d_name.len, dentry->d_name.name, dentry->d_inode,
	     ceph_dentry(dentry)->offset);
Sage Weil's avatar
Sage Weil committed
1042

1043 1044
	dir = ceph_get_dentry_parent_inode(dentry);

Sage Weil's avatar
Sage Weil committed
1045 1046 1047 1048
	/* always trust cached snapped dentries, snapdir dentry */
	if (ceph_snap(dir) != CEPH_NOSNAP) {
		dout("d_revalidate %p '%.*s' inode %p is SNAPPED\n", dentry,
		     dentry->d_name.len, dentry->d_name.name, dentry->d_inode);
1049 1050 1051 1052 1053 1054
		valid = 1;
	} else if (dentry->d_inode &&
		   ceph_snap(dentry->d_inode) == CEPH_SNAPDIR) {
		valid = 1;
	} else if (dentry_lease_is_valid(dentry) ||
		   dir_lease_is_valid(dir, dentry)) {
1055 1056 1057 1058
		if (dentry->d_inode)
			valid = ceph_is_any_caps(dentry->d_inode);
		else
			valid = 1;
Sage Weil's avatar
Sage Weil committed
1059 1060
	}

1061
	dout("d_revalidate %p %s\n", dentry, valid ? "valid" : "invalid");
1062
	if (valid) {
1063
		ceph_dentry_lru_touch(dentry);
1064 1065
	} else {
		ceph_dir_clear_complete(dir);
1066
		d_drop(dentry);
1067
	}
1068 1069
	iput(dir);
	return valid;
Sage Weil's avatar
Sage Weil committed
1070 1071 1072
}

/*
1073
 * Release our ceph_dentry_info.
Sage Weil's avatar
Sage Weil committed
1074
 */
1075
static void ceph_d_release(struct dentry *dentry)
Sage Weil's avatar
Sage Weil committed
1076 1077 1078
{
	struct ceph_dentry_info *di = ceph_dentry(dentry);

1079
	dout("d_release %p\n", dentry);
1080 1081 1082 1083 1084
	ceph_dentry_lru_del(dentry);
	if (di->lease_session)
		ceph_put_mds_session(di->lease_session);
	kmem_cache_free(ceph_dentry_cachep, di);
	dentry->d_fsdata = NULL;
Sage Weil's avatar
Sage Weil committed
1085 1086 1087
}

static int ceph_snapdir_d_revalidate(struct dentry *dentry,
1088
					  unsigned int flags)
Sage Weil's avatar
Sage Weil committed
1089 1090 1091 1092 1093 1094 1095 1096
{
	/*
	 * Eventually, we'll want to revalidate snapped metadata
	 * too... probably...
	 */
	return 1;
}

1097 1098 1099 1100 1101 1102 1103 1104
/*
 * When the VFS prunes a dentry from the cache, we need to clear the
 * complete flag on the parent directory.
 *
 * Called under dentry->d_lock.
 */
static void ceph_d_prune(struct dentry *dentry)
{
Sage Weil's avatar
Sage Weil committed
1105
	dout("ceph_d_prune %p\n", dentry);
1106 1107

	/* do we have a valid parent? */
1108
	if (IS_ROOT(dentry))
1109 1110
		return;

1111
	/* if we are not hashed, we don't affect dir's completeness */
1112 1113
	if (d_unhashed(dentry))
		return;
Sage Weil's avatar
Sage Weil committed
1114

1115 1116 1117 1118
	/*
	 * we hold d_lock, so d_parent is stable, and d_fsdata is never
	 * cleared until d_release
	 */
1119
	ceph_dir_clear_complete(dentry->d_parent->d_inode);
1120
}
Sage Weil's avatar
Sage Weil committed
1121 1122 1123 1124 1125 1126 1127 1128 1129

/*
 * read() on a dir.  This weird interface hack only works if mounted
 * with '-o dirstat'.
 */
static ssize_t ceph_read_dir(struct file *file, char __user *buf, size_t size,
			     loff_t *ppos)
{
	struct ceph_file_info *cf = file->private_data;
Al Viro's avatar
Al Viro committed
1130
	struct inode *inode = file_inode(file);
Sage Weil's avatar
Sage Weil committed
1131 1132
	struct ceph_inode_info *ci = ceph_inode(inode);
	int left;
1133
	const int bufsize = 1024;
Sage Weil's avatar
Sage Weil committed
1134

1135
	if (!ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb), DIRSTAT))
Sage Weil's avatar
Sage Weil committed
1136 1137 1138
		return -EISDIR;

	if (!cf->dir_info) {
1139
		cf->dir_info = kmalloc(bufsize, GFP_NOFS);
Sage Weil's avatar
Sage Weil committed
1140 1141 1142
		if (!cf->dir_info)
			return -ENOMEM;
		cf->dir_info_len =
1143
			snprintf(cf->dir_info, bufsize,
Sage Weil's avatar
Sage Weil committed
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
				"entries:   %20lld\n"
				" files:    %20lld\n"
				" subdirs:  %20lld\n"
				"rentries:  %20lld\n"
				" rfiles:   %20lld\n"
				" rsubdirs: %20lld\n"
				"rbytes:    %20lld\n"
				"rctime:    %10ld.%09ld\n",
				ci->i_files + ci->i_subdirs,
				ci->i_files,
				ci->i_subdirs,
				ci->i_rfiles + ci->i_rsubdirs,
				ci->i_rfiles,
				ci->i_rsubdirs,
				ci->i_rbytes,
				(long)ci->i_rctime.tv_sec,
				(long)ci->i_rctime.tv_nsec);
	}

	if (*ppos >= cf->dir_info_len)
		return 0;
	size = min_t(unsigned, size, cf->dir_info_len-*ppos);
	left = copy_to_user(buf, cf->dir_info + *ppos, size);
	if (left == size)
		return -EFAULT;
	*ppos += (size - left);
	return size - left;
}

/*
 * an fsync() on a dir will wait for any uncommitted directory
 * operations to commit.
 */
1177 1178
static int ceph_dir_fsync(struct file *file, loff_t start, loff_t end,
			  int datasync)
Sage Weil's avatar
Sage Weil committed
1179
{
Al Viro's avatar
Al Viro committed
1180
	struct inode *inode = file_inode(file);
Sage Weil's avatar
Sage Weil committed
1181 1182 1183 1184 1185 1186 1187
	struct ceph_inode_info *ci = ceph_inode(inode);
	struct list_head *head = &ci->i_unsafe_dirops;
	struct ceph_mds_request *req;
	u64 last_tid;
	int ret = 0;

	dout("dir_fsync %p\n", inode);
1188 1189 1190 1191 1192
	ret = filemap_write_and_wait_range(inode->i_mapping, start, end);
	if (ret)
		return ret;
	mutex_lock(&inode->i_mutex);

Sage Weil's avatar
Sage Weil committed
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
	spin_lock(&ci->i_unsafe_lock);
	if (list_empty(head))
		goto out;

	req = list_entry(head->prev,
			 struct ceph_mds_request, r_unsafe_dir_item);
	last_tid = req->r_tid;

	do {
		ceph_mdsc_get_request(req);
		spin_unlock(&ci->i_unsafe_lock);
1204

Sage Weil's avatar
Sage Weil committed
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
		dout("dir_fsync %p wait on tid %llu (until %llu)\n",
		     inode, req->r_tid, last_tid);
		if (req->r_timeout) {
			ret = wait_for_completion_timeout(
				&req->r_safe_completion, req->r_timeout);
			if (ret > 0)
				ret = 0;
			else if (ret == 0)
				ret = -EIO;  /* timed out */
		} else {
			wait_for_completion(&req->r_safe_completion);
		}
		ceph_mdsc_put_request(req);

1219
		spin_lock(&ci->i_unsafe_lock);
Sage Weil's avatar
Sage Weil committed
1220 1221 1222 1223 1224 1225 1226
		if (ret || list_empty(head))
			break;
		req = list_entry(head->next,
				 struct ceph_mds_request, r_unsafe_dir_item);
	} while (req->r_tid < last_tid);
out:
	spin_unlock(&ci->i_unsafe_lock);
1227 1228
	mutex_unlock(&inode->i_mutex);

Sage Weil's avatar
Sage Weil committed
1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241
	return ret;
}

/*
 * We maintain a private dentry LRU.
 *
 * FIXME: this needs to be changed to a per-mds lru to be useful.
 */
void ceph_dentry_lru_add(struct dentry *dn)
{
	struct ceph_dentry_info *di = ceph_dentry(dn);
	struct ceph_mds_client *mdsc;

1242 1243
	dout("dentry_lru_add %p %p '%.*s'\n", di, dn,
	     dn->d_name.len, dn->d_name.name);
1244 1245 1246 1247 1248
	mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
	spin_lock(&mdsc->dentry_lru_lock);
	list_add_tail(&di->lru, &mdsc->dentry_lru);
	mdsc->num_dentry++;
	spin_unlock(&mdsc->dentry_lru_lock);
Sage Weil's avatar
Sage Weil committed
1249 1250 1251 1252 1253 1254 1255
}

void ceph_dentry_lru_touch(struct dentry *dn)
{
	struct ceph_dentry_info *di = ceph_dentry(dn);
	struct ceph_mds_client *mdsc;

Sage Weil's avatar
Sage Weil committed
1256 1257
	dout("dentry_lru_touch %p %p '%.*s' (offset %lld)\n", di, dn,
	     dn->d_name.len, dn->d_name.name, di->offset);
1258 1259 1260 1261
	mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
	spin_lock(&mdsc->dentry_lru_lock);
	list_move_tail(&di->lru, &mdsc->dentry_lru);
	spin_unlock(&mdsc->dentry_lru_lock);
Sage Weil's avatar
Sage Weil committed
1262 1263 1264 1265 1266 1267 1268
}

void ceph_dentry_lru_del(struct dentry *dn)
{
	struct ceph_dentry_info *di = ceph_dentry(dn);
	struct ceph_mds_client *mdsc;

1269 1270
	dout("dentry_lru_del %p %p '%.*s'\n", di, dn,
	     dn->d_name.len, dn->d_name.name);
1271 1272 1273 1274 1275
	mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
	spin_lock(&mdsc->dentry_lru_lock);
	list_del_init(&di->lru);
	mdsc->num_dentry--;
	spin_unlock(&mdsc->dentry_lru_lock);
Sage Weil's avatar
Sage Weil committed
1276 1277
}

Sage Weil's avatar
Sage Weil committed
1278 1279 1280 1281
/*
 * Return name hash for a given dentry.  This is dependent on
 * the parent directory's hash function.
 */
1282
unsigned ceph_dentry_hash(struct inode *dir, struct dentry *dn)
Sage Weil's avatar
Sage Weil committed
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
{
	struct ceph_inode_info *dci = ceph_inode(dir);

	switch (dci->i_dir_layout.dl_dir_hash) {
	case 0:	/* for backward compat */
	case CEPH_STR_HASH_LINUX:
		return dn->d_name.hash;

	default:
		return ceph_str_hash(dci->i_dir_layout.dl_dir_hash,
				     dn->d_name.name, dn->d_name.len);
	}
}

Sage Weil's avatar
Sage Weil committed
1297 1298
const struct file_operations ceph_dir_fops = {
	.read = ceph_read_dir,
Al Viro's avatar
Al Viro committed
1299
	.iterate = ceph_readdir,
Sage Weil's avatar
Sage Weil committed
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
	.llseek = ceph_dir_llseek,
	.open = ceph_open,
	.release = ceph_release,
	.unlocked_ioctl = ceph_ioctl,
	.fsync = ceph_dir_fsync,
};

const struct inode_operations ceph_dir_iops = {
	.lookup = ceph_lookup,
	.permission = ceph_permission,
	.getattr = ceph_getattr,
	.setattr = ceph_setattr,
	.setxattr = ceph_setxattr,
	.getxattr = ceph_getxattr,
	.listxattr = ceph_listxattr,
	.removexattr = ceph_removexattr,
Guangliang Zhao's avatar
Guangliang Zhao committed
1316
	.get_acl = ceph_get_acl,
Sage Weil's avatar
Sage Weil committed
1317
	.set_acl = ceph_set_acl,
Sage Weil's avatar
Sage Weil committed
1318 1319 1320 1321 1322 1323 1324 1325
	.mknod = ceph_mknod,
	.symlink = ceph_symlink,
	.mkdir = ceph_mkdir,
	.link = ceph_link,
	.unlink = ceph_unlink,
	.rmdir = ceph_unlink,
	.rename = ceph_rename,
	.create = ceph_create,
1326
	.atomic_open = ceph_atomic_open,
Sage Weil's avatar
Sage Weil committed
1327 1328
};

Sage Weil's avatar
Sage Weil committed
1329
const struct dentry_operations ceph_dentry_ops = {
Sage Weil's avatar
Sage Weil committed
1330
	.d_revalidate = ceph_d_revalidate,
1331
	.d_release = ceph_d_release,
1332
	.d_prune = ceph_d_prune,
Sage Weil's avatar
Sage Weil committed
1333 1334
};

Sage Weil's avatar
Sage Weil committed
1335
const struct dentry_operations ceph_snapdir_dentry_ops = {
Sage Weil's avatar
Sage Weil committed
1336
	.d_revalidate = ceph_snapdir_d_revalidate,
1337
	.d_release = ceph_d_release,
Sage Weil's avatar
Sage Weil committed
1338 1339
};

Sage Weil's avatar
Sage Weil committed
1340
const struct dentry_operations ceph_snap_dentry_ops = {
1341
	.d_release = ceph_d_release,
1342
	.d_prune = ceph_d_prune,
Sage Weil's avatar
Sage Weil committed
1343
};