inode.c 7.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Super block/filesystem wide operations
 *
 * Copyright (C) 1996 Peter J. Braam <braam@maths.ox.ac.uk> and 
 * Michael Callahan <callahan@maths.ox.ac.uk> 
 * 
 * Rewritten for Linux 2.1.  Peter Braam <braam@cs.cmu.edu>
 * Copyright (C) Carnegie Mellon University
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/string.h>
#include <linux/stat.h>
#include <linux/errno.h>
#include <linux/unistd.h>
Y
Yoshihisa Abe 已提交
18
#include <linux/mutex.h>
19
#include <linux/spinlock.h>
L
Linus Torvalds 已提交
20 21
#include <linux/file.h>
#include <linux/vfs.h>
22
#include <linux/slab.h>
23
#include <linux/pid_namespace.h>
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31

#include <asm/uaccess.h>

#include <linux/fs.h>
#include <linux/vmalloc.h>

#include <linux/coda.h>
#include <linux/coda_psdev.h>
32 33
#include "coda_linux.h"
#include "coda_cache.h"
L
Linus Torvalds 已提交
34

35 36
#include "coda_int.h"

L
Linus Torvalds 已提交
37
/* VFS super_block ops */
38
static void coda_evict_inode(struct inode *);
L
Linus Torvalds 已提交
39
static void coda_put_super(struct super_block *);
40
static int coda_statfs(struct dentry *dentry, struct kstatfs *buf);
L
Linus Torvalds 已提交
41

42
static struct kmem_cache * coda_inode_cachep;
L
Linus Torvalds 已提交
43 44 45 46

static struct inode *coda_alloc_inode(struct super_block *sb)
{
	struct coda_inode_info *ei;
47
	ei = kmem_cache_alloc(coda_inode_cachep, GFP_KERNEL);
L
Linus Torvalds 已提交
48 49 50 51
	if (!ei)
		return NULL;
	memset(&ei->c_fid, 0, sizeof(struct CodaFid));
	ei->c_flags = 0;
52
	ei->c_uid = GLOBAL_ROOT_UID;
L
Linus Torvalds 已提交
53
	ei->c_cached_perm = 0;
54
	spin_lock_init(&ei->c_lock);
L
Linus Torvalds 已提交
55 56 57
	return &ei->vfs_inode;
}

N
Nick Piggin 已提交
58
static void coda_i_callback(struct rcu_head *head)
L
Linus Torvalds 已提交
59
{
N
Nick Piggin 已提交
60
	struct inode *inode = container_of(head, struct inode, i_rcu);
L
Linus Torvalds 已提交
61 62 63
	kmem_cache_free(coda_inode_cachep, ITOC(inode));
}

N
Nick Piggin 已提交
64 65 66 67 68
static void coda_destroy_inode(struct inode *inode)
{
	call_rcu(&inode->i_rcu, coda_i_callback);
}

69
static void init_once(void *foo)
L
Linus Torvalds 已提交
70 71 72
{
	struct coda_inode_info *ei = (struct coda_inode_info *) foo;

C
Christoph Lameter 已提交
73
	inode_init_once(&ei->vfs_inode);
L
Linus Torvalds 已提交
74
}
75

76
int __init coda_init_inodecache(void)
L
Linus Torvalds 已提交
77 78 79
{
	coda_inode_cachep = kmem_cache_create("coda_inode_cache",
				sizeof(struct coda_inode_info),
80
				0, SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
81
				init_once);
L
Linus Torvalds 已提交
82 83 84 85 86 87 88
	if (coda_inode_cachep == NULL)
		return -ENOMEM;
	return 0;
}

void coda_destroy_inodecache(void)
{
89 90 91 92 93
	/*
	 * Make sure all delayed rcu free inodes are flushed before we
	 * destroy cache.
	 */
	rcu_barrier();
94
	kmem_cache_destroy(coda_inode_cachep);
L
Linus Torvalds 已提交
95 96 97 98
}

static int coda_remount(struct super_block *sb, int *flags, char *data)
{
99
	sync_filesystem(sb);
J
Jan Harkes 已提交
100
	*flags |= MS_NOATIME;
L
Linus Torvalds 已提交
101 102 103 104
	return 0;
}

/* exported operations */
105
static const struct super_operations coda_super_operations =
L
Linus Torvalds 已提交
106 107 108
{
	.alloc_inode	= coda_alloc_inode,
	.destroy_inode	= coda_destroy_inode,
109
	.evict_inode	= coda_evict_inode,
L
Linus Torvalds 已提交
110 111 112 113 114 115 116
	.put_super	= coda_put_super,
	.statfs		= coda_statfs,
	.remount_fs	= coda_remount,
};

static int get_device_index(struct coda_mount_data *data)
{
117
	struct fd f;
L
Linus Torvalds 已提交
118
	struct inode *inode;
119
	int idx;
L
Linus Torvalds 已提交
120

121
	if (data == NULL) {
122
		pr_warn("coda_read_super: Bad mount data\n");
L
Linus Torvalds 已提交
123 124 125
		return -1;
	}

126
	if (data->version != CODA_MOUNT_VERSION) {
127
		pr_warn("coda_read_super: Bad mount version\n");
L
Linus Torvalds 已提交
128 129 130
		return -1;
	}

131 132
	f = fdget(data->fd);
	if (!f.file)
133
		goto Ebadf;
A
Al Viro 已提交
134
	inode = file_inode(f.file);
135
	if (!S_ISCHR(inode->i_mode) || imajor(inode) != CODA_PSDEV_MAJOR) {
136
		fdput(f);
137
		goto Ebadf;
L
Linus Torvalds 已提交
138 139 140
	}

	idx = iminor(inode);
141
	fdput(f);
L
Linus Torvalds 已提交
142

143
	if (idx < 0 || idx >= MAX_CODADEVS) {
144
		pr_warn("coda_read_super: Bad minor number\n");
L
Linus Torvalds 已提交
145 146 147 148
		return -1;
	}

	return idx;
149
Ebadf:
150
	pr_warn("coda_read_super: Bad file\n");
151
	return -1;
L
Linus Torvalds 已提交
152 153 154 155
}

static int coda_fill_super(struct super_block *sb, void *data, int silent)
{
J
Jan Harkes 已提交
156
	struct inode *root = NULL;
Y
Yoshihisa Abe 已提交
157
	struct venus_comm *vc;
L
Linus Torvalds 已提交
158
	struct CodaFid fid;
J
Jan Harkes 已提交
159
	int error;
L
Linus Torvalds 已提交
160 161
	int idx;

162 163 164
	if (task_active_pid_ns(current) != &init_pid_ns)
		return -EINVAL;

L
Linus Torvalds 已提交
165 166 167 168 169 170
	idx = get_device_index((struct coda_mount_data *) data);

	/* Ignore errors in data, for backward compatibility */
	if(idx == -1)
		idx = 0;
	
171
	pr_info("coda_read_super: device index: %i\n", idx);
L
Linus Torvalds 已提交
172 173

	vc = &coda_comms[idx];
Y
Yoshihisa Abe 已提交
174
	mutex_lock(&vc->vc_mutex);
175

L
Linus Torvalds 已提交
176
	if (!vc->vc_inuse) {
177
		pr_warn("coda_read_super: No pseudo device\n");
178 179
		error = -EINVAL;
		goto unlock_out;
L
Linus Torvalds 已提交
180 181
	}

182
	if (vc->vc_sb) {
183
		pr_warn("coda_read_super: Device already mounted\n");
184 185
		error = -EBUSY;
		goto unlock_out;
L
Linus Torvalds 已提交
186 187
	}

188 189
	error = bdi_setup_and_register(&vc->bdi, "coda", BDI_CAP_MAP_COPY);
	if (error)
190
		goto unlock_out;
191

L
Linus Torvalds 已提交
192
	vc->vc_sb = sb;
Y
Yoshihisa Abe 已提交
193
	mutex_unlock(&vc->vc_mutex);
L
Linus Torvalds 已提交
194

J
Jan Harkes 已提交
195
	sb->s_fs_info = vc;
J
Jan Harkes 已提交
196 197 198 199 200
	sb->s_flags |= MS_NOATIME;
	sb->s_blocksize = 4096;	/* XXXXX  what do we put here?? */
	sb->s_blocksize_bits = 12;
	sb->s_magic = CODA_SUPER_MAGIC;
	sb->s_op = &coda_super_operations;
A
Al Viro 已提交
201
	sb->s_d_op = &coda_dentry_operations;
202
	sb->s_bdi = &vc->bdi;
L
Linus Torvalds 已提交
203 204 205 206

	/* get root fid from Venus: this needs the root inode */
	error = venus_rootfid(sb, &fid);
	if ( error ) {
207 208
		pr_warn("coda_read_super: coda_get_rootfid failed with %d\n",
			error);
L
Linus Torvalds 已提交
209 210
		goto error;
	}
211
	pr_info("coda_read_super: rootfid is %s\n", coda_f2s(&fid));
L
Linus Torvalds 已提交
212 213
	
	/* make root inode */
214 215 216
        root = coda_cnode_make(&fid, sb);
        if (IS_ERR(root)) {
		error = PTR_ERR(root);
217 218
		pr_warn("Failure of coda_cnode_make for root: error %d\n",
			error);
219
		goto error;
L
Linus Torvalds 已提交
220 221
	} 

222 223
	pr_info("coda_read_super: rootinode is %ld dev %s\n",
		root->i_ino, root->i_sb->s_id);
224
	sb->s_root = d_make_root(root);
225 226
	if (!sb->s_root) {
		error = -EINVAL;
L
Linus Torvalds 已提交
227
		goto error;
228
	}
229
	return 0;
L
Linus Torvalds 已提交
230

231
error:
Y
Yoshihisa Abe 已提交
232
	mutex_lock(&vc->vc_mutex);
233 234 235 236
	bdi_destroy(&vc->bdi);
	vc->vc_sb = NULL;
	sb->s_fs_info = NULL;
unlock_out:
Y
Yoshihisa Abe 已提交
237
	mutex_unlock(&vc->vc_mutex);
238
	return error;
L
Linus Torvalds 已提交
239 240 241 242
}

static void coda_put_super(struct super_block *sb)
{
Y
Yoshihisa Abe 已提交
243 244 245 246
	struct venus_comm *vcp = coda_vcp(sb);
	mutex_lock(&vcp->vc_mutex);
	bdi_destroy(&vcp->bdi);
	vcp->vc_sb = NULL;
J
Jan Harkes 已提交
247
	sb->s_fs_info = NULL;
Y
Yoshihisa Abe 已提交
248
	mutex_unlock(&vcp->vc_mutex);
L
Linus Torvalds 已提交
249

250
	pr_info("Coda: Bye bye.\n");
L
Linus Torvalds 已提交
251 252
}

253
static void coda_evict_inode(struct inode *inode)
L
Linus Torvalds 已提交
254
{
255
	truncate_inode_pages_final(&inode->i_data);
256
	clear_inode(inode);
L
Linus Torvalds 已提交
257 258 259 260 261
	coda_cache_clear_inode(inode);
}

int coda_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
{
262
	int err = coda_revalidate_inode(dentry->d_inode);
L
Linus Torvalds 已提交
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
	if (!err)
		generic_fillattr(dentry->d_inode, stat);
	return err;
}

int coda_setattr(struct dentry *de, struct iattr *iattr)
{
	struct inode *inode = de->d_inode;
	struct coda_vattr vattr;
	int error;

	memset(&vattr, 0, sizeof(vattr)); 

	inode->i_ctime = CURRENT_TIME_SEC;
	coda_iattr_to_vattr(iattr, &vattr);
	vattr.va_type = C_VNON; /* cannot set type */

	/* Venus is responsible for truncating the container-file!!! */
	error = venus_setattr(inode->i_sb, coda_i2f(inode), &vattr);

283
	if (!error) {
L
Linus Torvalds 已提交
284 285 286 287 288 289
	        coda_vattr_to_iattr(inode, &vattr); 
		coda_cache_clear_inode(inode);
	}
	return error;
}

290
const struct inode_operations coda_file_inode_operations = {
L
Linus Torvalds 已提交
291 292 293 294 295
	.permission	= coda_permission,
	.getattr	= coda_getattr,
	.setattr	= coda_setattr,
};

296
static int coda_statfs(struct dentry *dentry, struct kstatfs *buf)
L
Linus Torvalds 已提交
297 298 299
{
	int error;
	
300
	error = venus_statfs(dentry, buf);
L
Linus Torvalds 已提交
301 302 303 304 305 306 307 308 309 310 311 312

	if (error) {
		/* fake something like AFS does */
		buf->f_blocks = 9000000;
		buf->f_bfree  = 9000000;
		buf->f_bavail = 9000000;
		buf->f_files  = 9000000;
		buf->f_ffree  = 9000000;
	}

	/* and fill in the rest */
	buf->f_type = CODA_SUPER_MAGIC;
J
Jan Harkes 已提交
313
	buf->f_bsize = 4096;
L
Linus Torvalds 已提交
314 315 316 317 318 319 320
	buf->f_namelen = CODA_MAXNAMLEN;

	return 0; 
}

/* init_coda: used by filesystems.c to register coda */

A
Al Viro 已提交
321 322
static struct dentry *coda_mount(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *data)
L
Linus Torvalds 已提交
323
{
A
Al Viro 已提交
324
	return mount_nodev(fs_type, flags, data, coda_fill_super);
L
Linus Torvalds 已提交
325 326 327 328 329
}

struct file_system_type coda_fs_type = {
	.owner		= THIS_MODULE,
	.name		= "coda",
A
Al Viro 已提交
330
	.mount		= coda_mount,
L
Linus Torvalds 已提交
331 332 333
	.kill_sb	= kill_anon_super,
	.fs_flags	= FS_BINARY_MOUNTDATA,
};
334
MODULE_ALIAS_FS("coda");
L
Linus Torvalds 已提交
335