readdir.c 13.0 KB
Newer Older
M
Miklos Szeredi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 *
 * Copyright (C) 2011 Novell Inc.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 */

#include <linux/fs.h>
#include <linux/slab.h>
#include <linux/namei.h>
#include <linux/file.h>
#include <linux/xattr.h>
#include <linux/rbtree.h>
#include <linux/security.h>
#include <linux/cred.h>
#include "overlayfs.h"

struct ovl_cache_entry {
	unsigned int len;
	unsigned int type;
	u64 ino;
	struct list_head l_node;
	struct rb_node node;
26
	struct ovl_cache_entry *next_maybe_whiteout;
M
Miklos Szeredi 已提交
27
	bool is_whiteout;
28
	char name[];
M
Miklos Szeredi 已提交
29 30 31 32 33 34 35 36 37 38
};

struct ovl_dir_cache {
	long refcount;
	u64 version;
	struct list_head entries;
};

struct ovl_readdir_data {
	struct dir_context ctx;
39
	struct dentry *dentry;
40
	bool is_lowest;
41
	struct rb_root root;
M
Miklos Szeredi 已提交
42
	struct list_head *list;
43
	struct list_head middle;
44
	struct ovl_cache_entry *first_maybe_whiteout;
M
Miklos Szeredi 已提交
45 46
	int count;
	int err;
47
	bool d_type_supported;
M
Miklos Szeredi 已提交
48 49 50 51 52 53
};

struct ovl_dir_file {
	bool is_real;
	bool is_upper;
	struct ovl_dir_cache *cache;
54
	struct list_head *cursor;
M
Miklos Szeredi 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
	struct file *realfile;
	struct file *upperfile;
};

static struct ovl_cache_entry *ovl_cache_entry_from_node(struct rb_node *n)
{
	return container_of(n, struct ovl_cache_entry, node);
}

static struct ovl_cache_entry *ovl_cache_entry_find(struct rb_root *root,
						    const char *name, int len)
{
	struct rb_node *node = root->rb_node;
	int cmp;

	while (node) {
		struct ovl_cache_entry *p = ovl_cache_entry_from_node(node);

		cmp = strncmp(name, p->name, len);
		if (cmp > 0)
			node = p->node.rb_right;
		else if (cmp < 0 || len < p->len)
			node = p->node.rb_left;
		else
			return p;
	}

	return NULL;
}

85
static struct ovl_cache_entry *ovl_cache_entry_new(struct ovl_readdir_data *rdd,
86
						   const char *name, int len,
M
Miklos Szeredi 已提交
87 88 89
						   u64 ino, unsigned int d_type)
{
	struct ovl_cache_entry *p;
90
	size_t size = offsetof(struct ovl_cache_entry, name[len + 1]);
M
Miklos Szeredi 已提交
91

92
	p = kmalloc(size, GFP_KERNEL);
93 94 95 96 97 98 99 100 101 102 103
	if (!p)
		return NULL;

	memcpy(p->name, name, len);
	p->name[len] = '\0';
	p->len = len;
	p->type = d_type;
	p->ino = ino;
	p->is_whiteout = false;

	if (d_type == DT_CHR) {
104 105
		p->next_maybe_whiteout = rdd->first_maybe_whiteout;
		rdd->first_maybe_whiteout = p;
106
	}
M
Miklos Szeredi 已提交
107 108 109 110 111 112 113
	return p;
}

static int ovl_cache_entry_add_rb(struct ovl_readdir_data *rdd,
				  const char *name, int len, u64 ino,
				  unsigned int d_type)
{
114
	struct rb_node **newp = &rdd->root.rb_node;
M
Miklos Szeredi 已提交
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
	struct rb_node *parent = NULL;
	struct ovl_cache_entry *p;

	while (*newp) {
		int cmp;
		struct ovl_cache_entry *tmp;

		parent = *newp;
		tmp = ovl_cache_entry_from_node(*newp);
		cmp = strncmp(name, tmp->name, len);
		if (cmp > 0)
			newp = &tmp->node.rb_right;
		else if (cmp < 0 || len < tmp->len)
			newp = &tmp->node.rb_left;
		else
			return 0;
	}

133
	p = ovl_cache_entry_new(rdd, name, len, ino, d_type);
M
Miklos Szeredi 已提交
134 135 136 137 138
	if (p == NULL)
		return -ENOMEM;

	list_add_tail(&p->l_node, rdd->list);
	rb_link_node(&p->node, parent, newp);
139
	rb_insert_color(&p->node, &rdd->root);
M
Miklos Szeredi 已提交
140 141 142 143

	return 0;
}

144 145 146
static int ovl_fill_lowest(struct ovl_readdir_data *rdd,
			   const char *name, int namelen,
			   loff_t offset, u64 ino, unsigned int d_type)
M
Miklos Szeredi 已提交
147 148 149
{
	struct ovl_cache_entry *p;

150
	p = ovl_cache_entry_find(&rdd->root, name, namelen);
M
Miklos Szeredi 已提交
151
	if (p) {
152
		list_move_tail(&p->l_node, &rdd->middle);
M
Miklos Szeredi 已提交
153
	} else {
154
		p = ovl_cache_entry_new(rdd, name, namelen, ino, d_type);
M
Miklos Szeredi 已提交
155 156 157
		if (p == NULL)
			rdd->err = -ENOMEM;
		else
158
			list_add_tail(&p->l_node, &rdd->middle);
M
Miklos Szeredi 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
	}

	return rdd->err;
}

void ovl_cache_free(struct list_head *list)
{
	struct ovl_cache_entry *p;
	struct ovl_cache_entry *n;

	list_for_each_entry_safe(p, n, list, l_node)
		kfree(p);

	INIT_LIST_HEAD(list);
}

static void ovl_cache_put(struct ovl_dir_file *od, struct dentry *dentry)
{
	struct ovl_dir_cache *cache = od->cache;

	WARN_ON(cache->refcount <= 0);
	cache->refcount--;
	if (!cache->refcount) {
		if (ovl_dir_cache(dentry) == cache)
			ovl_set_dir_cache(dentry, NULL);

		ovl_cache_free(&cache->entries);
		kfree(cache);
	}
}

190 191 192
static int ovl_fill_merge(struct dir_context *ctx, const char *name,
			  int namelen, loff_t offset, u64 ino,
			  unsigned int d_type)
M
Miklos Szeredi 已提交
193
{
194 195
	struct ovl_readdir_data *rdd =
		container_of(ctx, struct ovl_readdir_data, ctx);
M
Miklos Szeredi 已提交
196 197

	rdd->count++;
198
	if (!rdd->is_lowest)
M
Miklos Szeredi 已提交
199 200
		return ovl_cache_entry_add_rb(rdd, name, namelen, ino, d_type);
	else
201
		return ovl_fill_lowest(rdd, name, namelen, offset, ino, d_type);
M
Miklos Szeredi 已提交
202 203
}

204 205 206 207 208 209 210
static int ovl_check_whiteouts(struct dentry *dir, struct ovl_readdir_data *rdd)
{
	int err;
	struct ovl_cache_entry *p;
	struct dentry *dentry;
	const struct cred *old_cred;

211
	old_cred = ovl_override_creds(rdd->dentry->d_sb);
212

213
	err = down_write_killable(&dir->d_inode->i_rwsem);
214 215 216 217 218 219 220 221 222 223
	if (!err) {
		while (rdd->first_maybe_whiteout) {
			p = rdd->first_maybe_whiteout;
			rdd->first_maybe_whiteout = p->next_maybe_whiteout;
			dentry = lookup_one_len(p->name, dir, p->len);
			if (!IS_ERR(dentry)) {
				p->is_whiteout = ovl_is_whiteout(dentry);
				dput(dentry);
			}
		}
A
Al Viro 已提交
224
		inode_unlock(dir->d_inode);
225 226 227 228 229 230
	}
	revert_creds(old_cred);

	return err;
}

M
Miklos Szeredi 已提交
231 232 233 234 235 236 237 238 239 240
static inline int ovl_dir_read(struct path *realpath,
			       struct ovl_readdir_data *rdd)
{
	struct file *realfile;
	int err;

	realfile = ovl_path_open(realpath, O_RDONLY | O_DIRECTORY);
	if (IS_ERR(realfile))
		return PTR_ERR(realfile);

241
	rdd->first_maybe_whiteout = NULL;
M
Miklos Szeredi 已提交
242 243 244 245 246 247 248 249
	rdd->ctx.pos = 0;
	do {
		rdd->count = 0;
		rdd->err = 0;
		err = iterate_dir(realfile, &rdd->ctx);
		if (err >= 0)
			err = rdd->err;
	} while (!err && rdd->count);
250 251 252 253

	if (!err && rdd->first_maybe_whiteout)
		err = ovl_check_whiteouts(realpath->dentry, rdd);

M
Miklos Szeredi 已提交
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
	fput(realfile);

	return err;
}

static void ovl_dir_reset(struct file *file)
{
	struct ovl_dir_file *od = file->private_data;
	struct ovl_dir_cache *cache = od->cache;
	struct dentry *dentry = file->f_path.dentry;
	enum ovl_path_type type = ovl_path_type(dentry);

	if (cache && ovl_dentry_version_get(dentry) != cache->version) {
		ovl_cache_put(od, dentry);
		od->cache = NULL;
269
		od->cursor = NULL;
M
Miklos Szeredi 已提交
270
	}
M
Miklos Szeredi 已提交
271 272
	WARN_ON(!od->is_real && !OVL_TYPE_MERGE(type));
	if (od->is_real && OVL_TYPE_MERGE(type))
M
Miklos Szeredi 已提交
273 274 275
		od->is_real = false;
}

276
static int ovl_dir_read_merged(struct dentry *dentry, struct list_head *list)
M
Miklos Szeredi 已提交
277 278
{
	int err;
M
Miklos Szeredi 已提交
279
	struct path realpath;
M
Miklos Szeredi 已提交
280 281
	struct ovl_readdir_data rdd = {
		.ctx.actor = ovl_fill_merge,
282
		.dentry = dentry,
M
Miklos Szeredi 已提交
283
		.list = list,
284
		.root = RB_ROOT,
285
		.is_lowest = false,
M
Miklos Szeredi 已提交
286
	};
M
Miklos Szeredi 已提交
287
	int idx, next;
M
Miklos Szeredi 已提交
288

M
Miklos Szeredi 已提交
289 290
	for (idx = 0; idx != -1; idx = next) {
		next = ovl_path_next(idx, dentry, &realpath);
291

M
Miklos Szeredi 已提交
292 293
		if (next != -1) {
			err = ovl_dir_read(&realpath, &rdd);
M
Miklos Szeredi 已提交
294
			if (err)
M
Miklos Szeredi 已提交
295 296 297 298 299 300 301
				break;
		} else {
			/*
			 * Insert lowest layer entries before upper ones, this
			 * allows offsets to be reasonably constant
			 */
			list_add(&rdd.middle, rdd.list);
302
			rdd.is_lowest = true;
M
Miklos Szeredi 已提交
303 304
			err = ovl_dir_read(&realpath, &rdd);
			list_del(&rdd.middle);
M
Miklos Szeredi 已提交
305 306 307 308 309 310 311
		}
	}
	return err;
}

static void ovl_seek_cursor(struct ovl_dir_file *od, loff_t pos)
{
312
	struct list_head *p;
M
Miklos Szeredi 已提交
313 314
	loff_t off = 0;

315
	list_for_each(p, &od->cache->entries) {
M
Miklos Szeredi 已提交
316 317 318 319
		if (off >= pos)
			break;
		off++;
	}
320 321
	/* Cursor is safe since the cache is stable */
	od->cursor = p;
M
Miklos Szeredi 已提交
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
}

static struct ovl_dir_cache *ovl_cache_get(struct dentry *dentry)
{
	int res;
	struct ovl_dir_cache *cache;

	cache = ovl_dir_cache(dentry);
	if (cache && ovl_dentry_version_get(dentry) == cache->version) {
		cache->refcount++;
		return cache;
	}
	ovl_set_dir_cache(dentry, NULL);

	cache = kzalloc(sizeof(struct ovl_dir_cache), GFP_KERNEL);
	if (!cache)
		return ERR_PTR(-ENOMEM);

	cache->refcount = 1;
	INIT_LIST_HEAD(&cache->entries);

343
	res = ovl_dir_read_merged(dentry, &cache->entries);
M
Miklos Szeredi 已提交
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
	if (res) {
		ovl_cache_free(&cache->entries);
		kfree(cache);
		return ERR_PTR(res);
	}

	cache->version = ovl_dentry_version_get(dentry);
	ovl_set_dir_cache(dentry, cache);

	return cache;
}

static int ovl_iterate(struct file *file, struct dir_context *ctx)
{
	struct ovl_dir_file *od = file->private_data;
	struct dentry *dentry = file->f_path.dentry;
360
	struct ovl_cache_entry *p;
M
Miklos Szeredi 已提交
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378

	if (!ctx->pos)
		ovl_dir_reset(file);

	if (od->is_real)
		return iterate_dir(od->realfile, ctx);

	if (!od->cache) {
		struct ovl_dir_cache *cache;

		cache = ovl_cache_get(dentry);
		if (IS_ERR(cache))
			return PTR_ERR(cache);

		od->cache = cache;
		ovl_seek_cursor(od, ctx->pos);
	}

379 380 381 382 383 384 385
	while (od->cursor != &od->cache->entries) {
		p = list_entry(od->cursor, struct ovl_cache_entry, l_node);
		if (!p->is_whiteout)
			if (!dir_emit(ctx, p->name, p->len, p->ino, p->type))
				break;
		od->cursor = p->l_node.next;
		ctx->pos++;
M
Miklos Szeredi 已提交
386 387 388 389 390 391 392 393 394
	}
	return 0;
}

static loff_t ovl_dir_llseek(struct file *file, loff_t offset, int origin)
{
	loff_t res;
	struct ovl_dir_file *od = file->private_data;

A
Al Viro 已提交
395
	inode_lock(file_inode(file));
M
Miklos Szeredi 已提交
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
	if (!file->f_pos)
		ovl_dir_reset(file);

	if (od->is_real) {
		res = vfs_llseek(od->realfile, offset, origin);
		file->f_pos = od->realfile->f_pos;
	} else {
		res = -EINVAL;

		switch (origin) {
		case SEEK_CUR:
			offset += file->f_pos;
			break;
		case SEEK_SET:
			break;
		default:
			goto out_unlock;
		}
		if (offset < 0)
			goto out_unlock;

		if (offset != file->f_pos) {
			file->f_pos = offset;
			if (od->cache)
				ovl_seek_cursor(od, offset);
		}
		res = offset;
	}
out_unlock:
A
Al Viro 已提交
425
	inode_unlock(file_inode(file));
M
Miklos Szeredi 已提交
426 427 428 429 430 431 432 433 434 435 436 437 438 439

	return res;
}

static int ovl_dir_fsync(struct file *file, loff_t start, loff_t end,
			 int datasync)
{
	struct ovl_dir_file *od = file->private_data;
	struct dentry *dentry = file->f_path.dentry;
	struct file *realfile = od->realfile;

	/*
	 * Need to check if we started out being a lower dir, but got copied up
	 */
M
Miklos Szeredi 已提交
440
	if (!od->is_upper && OVL_TYPE_UPPER(ovl_path_type(dentry))) {
M
Miklos Szeredi 已提交
441 442
		struct inode *inode = file_inode(file);

M
Miklos Szeredi 已提交
443
		realfile = lockless_dereference(od->upperfile);
M
Miklos Szeredi 已提交
444 445 446 447 448
		if (!realfile) {
			struct path upperpath;

			ovl_path_upper(dentry, &upperpath);
			realfile = ovl_path_open(&upperpath, O_RDONLY);
449
			smp_mb__before_spinlock();
A
Al Viro 已提交
450
			inode_lock(inode);
451 452
			if (!od->upperfile) {
				if (IS_ERR(realfile)) {
A
Al Viro 已提交
453
					inode_unlock(inode);
454 455 456 457 458 459 460 461
					return PTR_ERR(realfile);
				}
				od->upperfile = realfile;
			} else {
				/* somebody has beaten us to it */
				if (!IS_ERR(realfile))
					fput(realfile);
				realfile = od->upperfile;
M
Miklos Szeredi 已提交
462
			}
A
Al Viro 已提交
463
			inode_unlock(inode);
M
Miklos Szeredi 已提交
464 465 466 467 468 469 470 471 472 473 474
		}
	}

	return vfs_fsync_range(realfile, start, end, datasync);
}

static int ovl_dir_release(struct inode *inode, struct file *file)
{
	struct ovl_dir_file *od = file->private_data;

	if (od->cache) {
A
Al Viro 已提交
475
		inode_lock(inode);
M
Miklos Szeredi 已提交
476
		ovl_cache_put(od, file->f_path.dentry);
A
Al Viro 已提交
477
		inode_unlock(inode);
M
Miklos Szeredi 已提交
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
	}
	fput(od->realfile);
	if (od->upperfile)
		fput(od->upperfile);
	kfree(od);

	return 0;
}

static int ovl_dir_open(struct inode *inode, struct file *file)
{
	struct path realpath;
	struct file *realfile;
	struct ovl_dir_file *od;
	enum ovl_path_type type;

	od = kzalloc(sizeof(struct ovl_dir_file), GFP_KERNEL);
	if (!od)
		return -ENOMEM;

	type = ovl_path_real(file->f_path.dentry, &realpath);
	realfile = ovl_path_open(&realpath, file->f_flags);
	if (IS_ERR(realfile)) {
		kfree(od);
		return PTR_ERR(realfile);
	}
	od->realfile = realfile;
M
Miklos Szeredi 已提交
505 506
	od->is_real = !OVL_TYPE_MERGE(type);
	od->is_upper = OVL_TYPE_UPPER(type);
M
Miklos Szeredi 已提交
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
	file->private_data = od;

	return 0;
}

const struct file_operations ovl_dir_operations = {
	.read		= generic_read_dir,
	.open		= ovl_dir_open,
	.iterate	= ovl_iterate,
	.llseek		= ovl_dir_llseek,
	.fsync		= ovl_dir_fsync,
	.release	= ovl_dir_release,
};

int ovl_check_empty_dir(struct dentry *dentry, struct list_head *list)
{
	int err;
	struct ovl_cache_entry *p;

526
	err = ovl_dir_read_merged(dentry, list);
M
Miklos Szeredi 已提交
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552
	if (err)
		return err;

	err = 0;

	list_for_each_entry(p, list, l_node) {
		if (p->is_whiteout)
			continue;

		if (p->name[0] == '.') {
			if (p->len == 1)
				continue;
			if (p->len == 2 && p->name[1] == '.')
				continue;
		}
		err = -ENOTEMPTY;
		break;
	}

	return err;
}

void ovl_cleanup_whiteouts(struct dentry *upper, struct list_head *list)
{
	struct ovl_cache_entry *p;

A
Al Viro 已提交
553
	inode_lock_nested(upper->d_inode, I_MUTEX_CHILD);
M
Miklos Szeredi 已提交
554 555 556 557 558 559 560 561 562 563 564 565 566
	list_for_each_entry(p, list, l_node) {
		struct dentry *dentry;

		if (!p->is_whiteout)
			continue;

		dentry = lookup_one_len(p->name, upper, p->len);
		if (IS_ERR(dentry)) {
			pr_err("overlayfs: lookup '%s/%.*s' failed (%i)\n",
			       upper->d_name.name, p->len, p->name,
			       (int) PTR_ERR(dentry));
			continue;
		}
567 568
		if (dentry->d_inode)
			ovl_cleanup(upper->d_inode, dentry);
M
Miklos Szeredi 已提交
569 570
		dput(dentry);
	}
A
Al Viro 已提交
571
	inode_unlock(upper->d_inode);
M
Miklos Szeredi 已提交
572
}
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608

static int ovl_check_d_type(struct dir_context *ctx, const char *name,
			  int namelen, loff_t offset, u64 ino,
			  unsigned int d_type)
{
	struct ovl_readdir_data *rdd =
		container_of(ctx, struct ovl_readdir_data, ctx);

	/* Even if d_type is not supported, DT_DIR is returned for . and .. */
	if (!strncmp(name, ".", namelen) || !strncmp(name, "..", namelen))
		return 0;

	if (d_type != DT_UNKNOWN)
		rdd->d_type_supported = true;

	return 0;
}

/*
 * Returns 1 if d_type is supported, 0 not supported/unknown. Negative values
 * if error is encountered.
 */
int ovl_check_d_type_supported(struct path *realpath)
{
	int err;
	struct ovl_readdir_data rdd = {
		.ctx.actor = ovl_check_d_type,
		.d_type_supported = false,
	};

	err = ovl_dir_read(realpath, &rdd);
	if (err)
		return err;

	return rdd.d_type_supported;
}