blob: 9d0bc03bf6e4563ef280fe5e8f695cc9f1e8abd5 [file] [log] [blame]
Miklos Szeredibbb1e542016-12-16 11:02:56 +01001/*
2 *
3 * Copyright (C) 2011 Novell Inc.
4 * Copyright (C) 2016 Red Hat, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 */
10
11struct ovl_config {
12 char *lowerdir;
13 char *upperdir;
14 char *workdir;
15 bool default_permissions;
Miklos Szeredia6c60652016-12-16 11:02:56 +010016 bool redirect_dir;
Miklos Szeredi438c84c2017-12-11 11:28:10 +010017 bool redirect_follow;
18 const char *redirect_mode;
Amir Goldstein02bcd152017-06-21 15:28:36 +030019 bool index;
Miklos Szeredibbb1e542016-12-16 11:02:56 +010020};
21
Chandan Rajendrab9343632017-07-24 01:57:54 -050022struct ovl_layer {
23 struct vfsmount *mnt;
Chandan Rajendra2a9c6d02017-11-01 20:12:49 +020024 dev_t pseudo_dev;
Chandan Rajendrab9343632017-07-24 01:57:54 -050025};
26
27struct ovl_path {
28 struct ovl_layer *layer;
29 struct dentry *dentry;
30};
31
Miklos Szeredibbb1e542016-12-16 11:02:56 +010032/* private information held for overlayfs's superblock */
33struct ovl_fs {
34 struct vfsmount *upper_mnt;
35 unsigned numlower;
Chandan Rajendrab9343632017-07-24 01:57:54 -050036 struct ovl_layer *lower_layers;
Amir Goldstein2cac0c02017-06-21 15:28:33 +030037 /* workbasedir is the path at workdir= mount option */
38 struct dentry *workbasedir;
39 /* workdir is the 'work' directory under workbasedir */
Miklos Szeredibbb1e542016-12-16 11:02:56 +010040 struct dentry *workdir;
Amir Goldstein02bcd152017-06-21 15:28:36 +030041 /* index directory listing overlay inodes by origin file handle */
42 struct dentry *indexdir;
Miklos Szeredi6b2d5fe2016-12-16 11:02:56 +010043 long namelen;
Miklos Szeredibbb1e542016-12-16 11:02:56 +010044 /* pathnames of lower and upper dirs, for show_options */
45 struct ovl_config config;
46 /* creds of process who forced instantiation of super block */
47 const struct cred *creator_cred;
Amir Goldsteine7f52422017-01-17 06:34:53 +020048 bool tmpfile;
Amir Goldstein82b749b2017-05-17 00:12:40 +030049 bool noxattr;
Amir Goldstein7bcd74b2017-03-22 08:42:21 -040050 /* sb common to all layers */
51 struct super_block *same_sb;
Amir Goldstein85fdee12017-09-29 10:21:21 +030052 /* Did we take the inuse lock? */
53 bool upperdir_locked;
54 bool workdir_locked;
Miklos Szeredibbb1e542016-12-16 11:02:56 +010055};
56
57/* private information held for every overlayfs dentry */
58struct ovl_entry {
Miklos Szeredibbb1e542016-12-16 11:02:56 +010059 union {
Miklos Szeredi55acc662017-07-04 22:03:18 +020060 struct {
61 unsigned long has_upper;
62 bool opaque;
63 };
Miklos Szeredibbb1e542016-12-16 11:02:56 +010064 struct rcu_head rcu;
65 };
66 unsigned numlower;
Chandan Rajendrab9343632017-07-24 01:57:54 -050067 struct ovl_path lowerstack[];
Miklos Szeredibbb1e542016-12-16 11:02:56 +010068};
69
70struct ovl_entry *ovl_alloc_entry(unsigned int numlower);
71
Amir Goldstein13cf1992017-06-12 09:54:40 +030072struct ovl_inode {
Miklos Szeredi04a01ac2017-07-04 22:03:16 +020073 struct ovl_dir_cache *cache;
Miklos Szeredicf31c462017-07-04 22:03:16 +020074 const char *redirect;
Miklos Szeredi04a01ac2017-07-04 22:03:16 +020075 u64 version;
Miklos Szeredi13c72072017-07-04 22:03:16 +020076 unsigned long flags;
Amir Goldstein13cf1992017-06-12 09:54:40 +030077 struct inode vfs_inode;
Miklos Szeredi09d8b582017-07-04 22:03:16 +020078 struct dentry *__upperdentry;
Miklos Szeredi25b77132017-07-04 22:03:16 +020079 struct inode *lower;
Amir Goldsteina015daf2017-06-21 15:28:51 +030080
81 /* synchronize copy up and more */
82 struct mutex lock;
Amir Goldstein13cf1992017-06-12 09:54:40 +030083};
84
85static inline struct ovl_inode *OVL_I(struct inode *inode)
86{
87 return container_of(inode, struct ovl_inode, vfs_inode);
88}
Miklos Szeredi09d8b582017-07-04 22:03:16 +020089
90static inline struct dentry *ovl_upperdentry_dereference(struct ovl_inode *oi)
91{
Will Deacon506458e2017-10-24 11:22:48 +010092 return READ_ONCE(oi->__upperdentry);
Miklos Szeredi09d8b582017-07-04 22:03:16 +020093}