Blame view

fs/coda/inode.c 7.15 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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>
da47c19e5   Yoshihisa Abe   Coda: replace BKL...
18
  #include <linux/mutex.h>
b5ce1d83a   Yoshihisa Abe   Coda: add spin lo...
19
  #include <linux/spinlock.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
21
  #include <linux/file.h>
  #include <linux/vfs.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
22
  #include <linux/slab.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23
24
25
26
27
28
29
30
  
  #include <asm/system.h>
  #include <asm/uaccess.h>
  
  #include <linux/fs.h>
  #include <linux/vmalloc.h>
  
  #include <linux/coda.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
  #include <linux/coda_psdev.h>
31a203df9   Al Viro   take coda-private...
32
33
  #include "coda_linux.h"
  #include "coda_cache.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
34

c98d8cfbc   Adrian Bunk   [PATCH] fs/coda/:...
35
  #include "coda_int.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36
  /* VFS super_block ops */
b57922d97   Al Viro   convert remaining...
37
  static void coda_evict_inode(struct inode *);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38
  static void coda_put_super(struct super_block *);
726c33422   David Howells   [PATCH] VFS: Perm...
39
  static int coda_statfs(struct dentry *dentry, struct kstatfs *buf);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40

e18b890bb   Christoph Lameter   [PATCH] slab: rem...
41
  static struct kmem_cache * coda_inode_cachep;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42
43
44
45
  
  static struct inode *coda_alloc_inode(struct super_block *sb)
  {
  	struct coda_inode_info *ei;
747fecab3   Jesper Juhl   coda: kill redund...
46
  	ei = kmem_cache_alloc(coda_inode_cachep, GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
47
48
49
50
51
52
  	if (!ei)
  		return NULL;
  	memset(&ei->c_fid, 0, sizeof(struct CodaFid));
  	ei->c_flags = 0;
  	ei->c_uid = 0;
  	ei->c_cached_perm = 0;
b5ce1d83a   Yoshihisa Abe   Coda: add spin lo...
53
  	spin_lock_init(&ei->c_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
54
55
  	return &ei->vfs_inode;
  }
fa0d7e3de   Nick Piggin   fs: icache RCU fr...
56
  static void coda_i_callback(struct rcu_head *head)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
57
  {
fa0d7e3de   Nick Piggin   fs: icache RCU fr...
58
  	struct inode *inode = container_of(head, struct inode, i_rcu);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
59
60
  	kmem_cache_free(coda_inode_cachep, ITOC(inode));
  }
fa0d7e3de   Nick Piggin   fs: icache RCU fr...
61
62
63
64
  static void coda_destroy_inode(struct inode *inode)
  {
  	call_rcu(&inode->i_rcu, coda_i_callback);
  }
51cc50685   Alexey Dobriyan   SL*B: drop kmem c...
65
  static void init_once(void *foo)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
66
67
  {
  	struct coda_inode_info *ei = (struct coda_inode_info *) foo;
a35afb830   Christoph Lameter   Remove SLAB_CTOR_...
68
  	inode_init_once(&ei->vfs_inode);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
69
  }
20c2df83d   Paul Mundt   mm: Remove slab d...
70

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
71
72
73
74
  int coda_init_inodecache(void)
  {
  	coda_inode_cachep = kmem_cache_create("coda_inode_cache",
  				sizeof(struct coda_inode_info),
4b6a9316f   Paul Jackson   [PATCH] cpuset me...
75
  				0, SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
20c2df83d   Paul Mundt   mm: Remove slab d...
76
  				init_once);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
77
78
79
80
81
82
83
  	if (coda_inode_cachep == NULL)
  		return -ENOMEM;
  	return 0;
  }
  
  void coda_destroy_inodecache(void)
  {
1a1d92c10   Alexey Dobriyan   [PATCH] Really ig...
84
  	kmem_cache_destroy(coda_inode_cachep);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
85
86
87
88
  }
  
  static int coda_remount(struct super_block *sb, int *flags, char *data)
  {
fac1f0e34   Jan Harkes   coda: coda doesn'...
89
  	*flags |= MS_NOATIME;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
90
91
92
93
  	return 0;
  }
  
  /* exported operations */
ee9b6d61a   Josef 'Jeff' Sipek   [PATCH] Mark stru...
94
  static const struct super_operations coda_super_operations =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
95
96
97
  {
  	.alloc_inode	= coda_alloc_inode,
  	.destroy_inode	= coda_destroy_inode,
b57922d97   Al Viro   convert remaining...
98
  	.evict_inode	= coda_evict_inode,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  	.put_super	= coda_put_super,
  	.statfs		= coda_statfs,
  	.remount_fs	= coda_remount,
  };
  
  static int get_device_index(struct coda_mount_data *data)
  {
  	struct file *file;
  	struct inode *inode;
  	int idx;
  
  	if(data == NULL) {
  		printk("coda_read_super: Bad mount data
  ");
  		return -1;
  	}
  
  	if(data->version != CODA_MOUNT_VERSION) {
  		printk("coda_read_super: Bad mount version
  ");
  		return -1;
  	}
  
  	file = fget(data->fd);
  	inode = NULL;
  	if(file)
d4176d326   Josef Sipek   [PATCH] struct pa...
125
  		inode = file->f_path.dentry->d_inode;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  	
  	if(!inode || !S_ISCHR(inode->i_mode) ||
  	   imajor(inode) != CODA_PSDEV_MAJOR) {
  		if(file)
  			fput(file);
  
  		printk("coda_read_super: Bad file
  ");
  		return -1;
  	}
  
  	idx = iminor(inode);
  	fput(file);
  
  	if(idx < 0 || idx >= MAX_CODADEVS) {
  		printk("coda_read_super: Bad minor number
  ");
  		return -1;
  	}
  
  	return idx;
  }
  
  static int coda_fill_super(struct super_block *sb, void *data, int silent)
  {
a1b0aa876   Jan Harkes   coda: remove stru...
151
  	struct inode *root = NULL;
da47c19e5   Yoshihisa Abe   Coda: replace BKL...
152
  	struct venus_comm *vc;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
153
  	struct CodaFid fid;
a1b0aa876   Jan Harkes   coda: remove stru...
154
  	int error;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
155
156
157
158
159
160
161
162
163
164
165
166
  	int idx;
  
  	idx = get_device_index((struct coda_mount_data *) data);
  
  	/* Ignore errors in data, for backward compatibility */
  	if(idx == -1)
  		idx = 0;
  	
  	printk(KERN_INFO "coda_read_super: device index: %i
  ", idx);
  
  	vc = &coda_comms[idx];
da47c19e5   Yoshihisa Abe   Coda: replace BKL...
167
  	mutex_lock(&vc->vc_mutex);
f7cc02b87   Yoshihisa Abe   Coda: push BKL re...
168

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
169
170
171
  	if (!vc->vc_inuse) {
  		printk("coda_read_super: No pseudo device
  ");
f7cc02b87   Yoshihisa Abe   Coda: push BKL re...
172
173
  		error = -EINVAL;
  		goto unlock_out;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
174
  	}
f7cc02b87   Yoshihisa Abe   Coda: push BKL re...
175
  	if (vc->vc_sb) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
176
177
  		printk("coda_read_super: Device already mounted
  ");
f7cc02b87   Yoshihisa Abe   Coda: push BKL re...
178
179
  		error = -EBUSY;
  		goto unlock_out;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
180
  	}
5163d9007   Jens Axboe   coda: add bdi bac...
181
182
  	error = bdi_setup_and_register(&vc->bdi, "coda", BDI_CAP_MAP_COPY);
  	if (error)
f7cc02b87   Yoshihisa Abe   Coda: push BKL re...
183
  		goto unlock_out;
5163d9007   Jens Axboe   coda: add bdi bac...
184

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
185
  	vc->vc_sb = sb;
da47c19e5   Yoshihisa Abe   Coda: replace BKL...
186
  	mutex_unlock(&vc->vc_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
187

a1b0aa876   Jan Harkes   coda: remove stru...
188
  	sb->s_fs_info = vc;
fac1f0e34   Jan Harkes   coda: coda doesn'...
189
190
191
192
193
  	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;
9501e4c48   Al Viro   switch coda
194
  	sb->s_d_op = &coda_dentry_operations;
5163d9007   Jens Axboe   coda: add bdi bac...
195
  	sb->s_bdi = &vc->bdi;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
196
197
198
199
200
201
202
203
204
205
206
207
208
  
  	/* get root fid from Venus: this needs the root inode */
  	error = venus_rootfid(sb, &fid);
  	if ( error ) {
  	        printk("coda_read_super: coda_get_rootfid failed with %d
  ",
  		       error);
  		goto error;
  	}
  	printk("coda_read_super: rootfid is %s
  ", coda_f2s(&fid));
  	
  	/* make root inode */
f4947fbce   Al Viro   coda: switch coda...
209
210
211
212
213
214
215
          root = coda_cnode_make(&fid, sb);
          if (IS_ERR(root)) {
  		error = PTR_ERR(root);
  		printk("Failure of coda_cnode_make for root: error %d
  ", error);
  		root = NULL;
  		goto error;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
216
217
218
219
220
221
  	} 
  
  	printk("coda_read_super: rootinode is %ld dev %s
  ", 
  	       root->i_ino, root->i_sb->s_id);
  	sb->s_root = d_alloc_root(root);
f7cc02b87   Yoshihisa Abe   Coda: push BKL re...
222
223
  	if (!sb->s_root) {
  		error = -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
224
  		goto error;
f7cc02b87   Yoshihisa Abe   Coda: push BKL re...
225
  	}
db7192221   Jan Blunck   BKL: Explicitly a...
226
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
227

f7cc02b87   Yoshihisa Abe   Coda: push BKL re...
228
  error:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
229
  	if (root)
a1b0aa876   Jan Harkes   coda: remove stru...
230
  		iput(root);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
231

da47c19e5   Yoshihisa Abe   Coda: replace BKL...
232
  	mutex_lock(&vc->vc_mutex);
f7cc02b87   Yoshihisa Abe   Coda: push BKL re...
233
234
235
236
  	bdi_destroy(&vc->bdi);
  	vc->vc_sb = NULL;
  	sb->s_fs_info = NULL;
  unlock_out:
da47c19e5   Yoshihisa Abe   Coda: replace BKL...
237
  	mutex_unlock(&vc->vc_mutex);
f7cc02b87   Yoshihisa Abe   Coda: push BKL re...
238
  	return error;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
239
240
241
242
  }
  
  static void coda_put_super(struct super_block *sb)
  {
da47c19e5   Yoshihisa Abe   Coda: replace BKL...
243
244
245
246
  	struct venus_comm *vcp = coda_vcp(sb);
  	mutex_lock(&vcp->vc_mutex);
  	bdi_destroy(&vcp->bdi);
  	vcp->vc_sb = NULL;
a1b0aa876   Jan Harkes   coda: remove stru...
247
  	sb->s_fs_info = NULL;
da47c19e5   Yoshihisa Abe   Coda: replace BKL...
248
  	mutex_unlock(&vcp->vc_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
249
250
251
  
  	printk("Coda: Bye bye.
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
252
  }
b57922d97   Al Viro   convert remaining...
253
  static void coda_evict_inode(struct inode *inode)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
254
  {
b57922d97   Al Viro   convert remaining...
255
256
  	truncate_inode_pages(&inode->i_data, 0);
  	end_writeback(inode);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
  	coda_cache_clear_inode(inode);
  }
  
  int coda_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
  {
  	int err = coda_revalidate_inode(dentry);
  	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;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
273
274
275
276
277
278
279
280
  	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);
f7cc02b87   Yoshihisa Abe   Coda: push BKL re...
281
  	if (!error) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
282
283
284
  	        coda_vattr_to_iattr(inode, &vattr); 
  		coda_cache_clear_inode(inode);
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
285
286
  	return error;
  }
754661f14   Arjan van de Ven   [PATCH] mark stru...
287
  const struct inode_operations coda_file_inode_operations = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
288
289
290
291
  	.permission	= coda_permission,
  	.getattr	= coda_getattr,
  	.setattr	= coda_setattr,
  };
726c33422   David Howells   [PATCH] VFS: Perm...
292
  static int coda_statfs(struct dentry *dentry, struct kstatfs *buf)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
293
294
295
  {
  	int error;
  	
726c33422   David Howells   [PATCH] VFS: Perm...
296
  	error = venus_statfs(dentry, buf);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
297

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
298
299
300
301
302
303
304
305
306
307
308
  	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;
fac1f0e34   Jan Harkes   coda: coda doesn'...
309
  	buf->f_bsize = 4096;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
310
311
312
313
314
315
  	buf->f_namelen = CODA_MAXNAMLEN;
  
  	return 0; 
  }
  
  /* init_coda: used by filesystems.c to register coda */
3c26ff6e4   Al Viro   convert get_sb_no...
316
317
  static struct dentry *coda_mount(struct file_system_type *fs_type,
  	int flags, const char *dev_name, void *data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
318
  {
3c26ff6e4   Al Viro   convert get_sb_no...
319
  	return mount_nodev(fs_type, flags, data, coda_fill_super);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
320
321
322
323
324
  }
  
  struct file_system_type coda_fs_type = {
  	.owner		= THIS_MODULE,
  	.name		= "coda",
3c26ff6e4   Al Viro   convert get_sb_no...
325
  	.mount		= coda_mount,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
326
327
328
  	.kill_sb	= kill_anon_super,
  	.fs_flags	= FS_BINARY_MOUNTDATA,
  };