-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuper.c
218 lines (181 loc) · 5.13 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/*
* Copyright (c) 1998-2015 Erez Zadok
* Copyright (c) 2009 Shrikar Archak
* Copyright (c) 2003-2015 Stony Brook University
* Copyright (c) 2003-2015 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.
*/
/*
* CSE-506 : Operating Systems HW2
* Author : Meng-Chieh Yang
* ID : 110452591
* Date : 11/1/16
* Modified:
* - modify trfs_put_super due to function change
*/
#include "trfs.h"
/*
* The inode cache is used with alloc_inode for both our inode info and the
* vfs inode.
*/
static struct kmem_cache *trfs_inode_cachep;
/* final actions when unmounting a file system */
static void trfs_put_super(struct super_block *sb)
{
struct trfs_sb_info *spd;
struct super_block *s;
spd = TRFS_SB(sb);
if (!spd)
return;
/* decrement lower super references */
s = trfs_lower_super(sb);
trfs_set_lower_super(sb, NULL, NULL, 0, 0);
atomic_dec(&s->s_active);
kfree(spd);
sb->s_fs_info = NULL;
}
static int trfs_statfs(struct dentry *dentry, struct kstatfs *buf)
{
int err;
struct path lower_path;
trfs_get_lower_path(dentry, &lower_path);
err = vfs_statfs(&lower_path, buf);
trfs_put_lower_path(dentry, &lower_path);
/* set return buf to our f/s to avoid confusing user-level utils */
buf->f_type = TRFS_SUPER_MAGIC;
return err;
}
/*
* @flags: numeric mount options
* @options: mount options string
*/
static int trfs_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
"trfs: 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 trfs_evict_inode(struct inode *inode)
{
struct inode *lower_inode;
truncate_inode_pages(&inode->i_data, 0);
clear_inode(inode);
/*
* Decrement a reference to a lower_inode, which was incremented
* by our read_inode when it was created initially.
*/
lower_inode = trfs_lower_inode(inode);
trfs_set_lower_inode(inode, NULL);
iput(lower_inode);
}
static struct inode *trfs_alloc_inode(struct super_block *sb)
{
struct trfs_inode_info *i;
i = kmem_cache_alloc(trfs_inode_cachep, GFP_KERNEL);
if (!i)
return NULL;
/* memset everything up to the inode to 0 */
memset(i, 0, offsetof(struct trfs_inode_info, vfs_inode));
i->vfs_inode.i_version = 1;
return &i->vfs_inode;
}
static void trfs_destroy_inode(struct inode *inode)
{
kmem_cache_free(trfs_inode_cachep, TRFS_I(inode));
}
/* trfs inode cache constructor */
static void init_once(void *obj)
{
struct trfs_inode_info *i = obj;
inode_init_once(&i->vfs_inode);
}
int trfs_init_inode_cache(void)
{
int err = 0;
trfs_inode_cachep =
kmem_cache_create("trfs_inode_cache",
sizeof(struct trfs_inode_info), 0,
SLAB_RECLAIM_ACCOUNT, init_once);
if (!trfs_inode_cachep)
err = -ENOMEM;
return err;
}
/* trfs inode cache destructor */
void trfs_destroy_inode_cache(void)
{
if (trfs_inode_cachep)
kmem_cache_destroy(trfs_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 trfs_umount_begin(struct super_block *sb)
{
struct super_block *lower_sb;
lower_sb = trfs_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 trfs_sops = {
.put_super = trfs_put_super,
.statfs = trfs_statfs,
.remount_fs = trfs_remount_fs,
.evict_inode = trfs_evict_inode,
.umount_begin = trfs_umount_begin,
.show_options = generic_show_options,
.alloc_inode = trfs_alloc_inode,
.destroy_inode = trfs_destroy_inode,
.drop_inode = generic_delete_inode,
};
/* NFS support */
static struct inode *trfs_nfs_get_inode(struct super_block *sb, u64 ino,
u32 generation)
{
struct super_block *lower_sb;
struct inode *inode;
struct inode *lower_inode;
lower_sb = trfs_lower_super(sb);
lower_inode = ilookup(lower_sb, ino);
inode = trfs_iget(sb, lower_inode);
return inode;
}
static struct dentry *trfs_fh_to_dentry(struct super_block *sb,
struct fid *fid, int fh_len,
int fh_type)
{
return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
trfs_nfs_get_inode);
}
static struct dentry *trfs_fh_to_parent(struct super_block *sb,
struct fid *fid, int fh_len,
int fh_type)
{
return generic_fh_to_parent(sb, fid, fh_len, fh_type,
trfs_nfs_get_inode);
}
/*
* all other funcs are default as defined in exportfs/expfs.c
*/
const struct export_operations trfs_export_ops = {
.fh_to_dentry = trfs_fh_to_dentry,
.fh_to_parent = trfs_fh_to_parent
};