ovl_entry.h 1.4 KB
Newer Older
M
Miklos Szeredi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 *
 * Copyright (C) 2011 Novell Inc.
 * Copyright (C) 2016 Red Hat, 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.
 */

struct ovl_config {
	char *lowerdir;
	char *upperdir;
	char *workdir;
	bool default_permissions;
M
Miklos Szeredi 已提交
16
	bool redirect_dir;
M
Miklos Szeredi 已提交
17 18 19 20 21 22 23 24
};

/* private information held for overlayfs's superblock */
struct ovl_fs {
	struct vfsmount *upper_mnt;
	unsigned numlower;
	struct vfsmount **lower_mnt;
	struct dentry *workdir;
M
Miklos Szeredi 已提交
25
	long namelen;
M
Miklos Szeredi 已提交
26 27 28 29
	/* pathnames of lower and upper dirs, for show_options */
	struct ovl_config config;
	/* creds of process who forced instantiation of super block */
	const struct cred *creator_cred;
30
	bool tmpfile;
31
	bool noxattr;
32
	wait_queue_head_t copyup_wq;
33 34
	/* sb common to all layers */
	struct super_block *same_sb;
M
Miklos Szeredi 已提交
35 36 37 38 39 40 41 42 43
};

/* private information held for every overlayfs dentry */
struct ovl_entry {
	struct dentry *__upperdentry;
	struct ovl_dir_cache *cache;
	union {
		struct {
			u64 version;
M
Miklos Szeredi 已提交
44
			const char *redirect;
M
Miklos Szeredi 已提交
45
			bool opaque;
46
			bool copying;
M
Miklos Szeredi 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59
		};
		struct rcu_head rcu;
	};
	unsigned numlower;
	struct path lowerstack[];
};

struct ovl_entry *ovl_alloc_entry(unsigned int numlower);

static inline struct dentry *ovl_upperdentry_dereference(struct ovl_entry *oe)
{
	return lockless_dereference(oe->__upperdentry);
}