-
Notifications
You must be signed in to change notification settings - Fork 1
/
super.c
168 lines (140 loc) · 4.1 KB
/
super.c
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
* Copyright (c) 1998-2011 Erez Zadok
* Copyright (c) 2009 Shrikar Archak
* Copyright (c) 2003-2011 Stony Brook University
* Copyright (c) 2003-2011 The Research Foundation of SUNY
*
* 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 "wrapfs.h"
/*
* The inode cache is used with alloc_inode for both our inode info and the
* vfs inode.
*/
static struct kmem_cache *wrapfs_inode_cachep;
/* final actions when unmounting a file system */
static void wrapfs_put_super(struct super_block *sb)
{
struct wrapfs_sb_info *spd;
struct super_block *s;
spd = WRAPFS_SB(sb);
if (!spd)
return;
/* decrement lower super references */
s = wrapfs_lower_super(sb);
wrapfs_set_lower_super(sb, NULL);
atomic_dec(&s->s_active);
kfree(spd);
sb->s_fs_info = NULL;
}
static int wrapfs_statfs(struct dentry *dentry, struct kstatfs *buf)
{
int err;
struct path lower_path;
wrapfs_get_lower_path(dentry, &lower_path);
err = vfs_statfs(&lower_path, buf);
wrapfs_put_lower_path(dentry, &lower_path);
/* set return buf to our f/s to avoid confusing user-level utils */
buf->f_type = WRAPFS_SUPER_MAGIC;
return err;
}
/*
* @flags: numeric mount options
* @options: mount options string
*/
static int wrapfs_remount_fs(struct super_block *sb, int *flags, char *options)
{
int err = 0;
/*
* The VFS will take care of "ro" and "rw" flags among others. We
* can safely accept a few flags (RDONLY, MANDLOCK), and honor
* SILENT, but anything else left over is an error.
*/
if ((*flags & ~(MS_RDONLY | MS_MANDLOCK | MS_SILENT)) != 0) {
printk(KERN_ERR
"wrapfs: remount flags 0x%x unsupported\n", *flags);
err = -EINVAL;
}
return err;
}
/*
* Called by iput() when the inode reference count reached zero
* and the inode is not hashed anywhere. Used to clear anything
* that needs to be, before the inode is completely destroyed and put
* on the inode free list.
*/
static void wrapfs_evict_inode(struct inode *inode)
{
struct inode *lower_inode;
truncate_inode_pages(&inode->i_data, 0);
end_writeback(inode);
/*
* Decrement a reference to a lower_inode, which was incremented
* by our read_inode when it was created initially.
*/
lower_inode = wrapfs_lower_inode(inode);
wrapfs_set_lower_inode(inode, NULL);
iput(lower_inode);
}
static struct inode *wrapfs_alloc_inode(struct super_block *sb)
{
struct wrapfs_inode_info *i;
i = kmem_cache_alloc(wrapfs_inode_cachep, GFP_KERNEL);
if (!i)
return NULL;
/* memset everything up to the inode to 0 */
memset(i, 0, offsetof(struct wrapfs_inode_info, vfs_inode));
i->vfs_inode.i_version = 1;
return &i->vfs_inode;
}
static void wrapfs_destroy_inode(struct inode *inode)
{
kmem_cache_free(wrapfs_inode_cachep, WRAPFS_I(inode));
}
/* wrapfs inode cache constructor */
static void init_once(void *obj)
{
struct wrapfs_inode_info *i = obj;
inode_init_once(&i->vfs_inode);
}
int wrapfs_init_inode_cache(void)
{
int err = 0;
wrapfs_inode_cachep =
kmem_cache_create("wrapfs_inode_cache",
sizeof(struct wrapfs_inode_info), 0,
SLAB_RECLAIM_ACCOUNT, init_once);
if (!wrapfs_inode_cachep)
err = -ENOMEM;
return err;
}
/* wrapfs inode cache destructor */
void wrapfs_destroy_inode_cache(void)
{
if (wrapfs_inode_cachep)
kmem_cache_destroy(wrapfs_inode_cachep);
}
/*
* Used only in nfs, to kill any pending RPC tasks, so that subsequent
* code can actually succeed and won't leave tasks that need handling.
*/
static void wrapfs_umount_begin(struct super_block *sb)
{
struct super_block *lower_sb;
lower_sb = wrapfs_lower_super(sb);
if (lower_sb && lower_sb->s_op && lower_sb->s_op->umount_begin)
lower_sb->s_op->umount_begin(lower_sb);
}
const struct super_operations wrapfs_sops = {
.put_super = wrapfs_put_super,
.statfs = wrapfs_statfs,
.remount_fs = wrapfs_remount_fs,
.evict_inode = wrapfs_evict_inode,
.umount_begin = wrapfs_umount_begin,
.show_options = generic_show_options,
.alloc_inode = wrapfs_alloc_inode,
.destroy_inode = wrapfs_destroy_inode,
.drop_inode = generic_delete_inode,
};