4 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
6 * Author: Arnd Bergmann <arndb@de.ibm.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include <linux/file.h>
25 #include <linux/backing-dev.h>
26 #include <linux/init.h>
27 #include <linux/ioctl.h>
28 #include <linux/module.h>
29 #include <linux/mount.h>
30 #include <linux/namei.h>
31 #include <linux/pagemap.h>
32 #include <linux/poll.h>
33 #include <linux/slab.h>
34 #include <linux/parser.h>
37 #include <asm/semaphore.h>
39 #include <asm/uaccess.h>
43 static kmem_cache_t
*spufs_inode_cache
;
46 spufs_alloc_inode(struct super_block
*sb
)
48 struct spufs_inode_info
*ei
;
50 ei
= kmem_cache_alloc(spufs_inode_cache
, SLAB_KERNEL
);
53 return &ei
->vfs_inode
;
57 spufs_destroy_inode(struct inode
*inode
)
59 kmem_cache_free(spufs_inode_cache
, SPUFS_I(inode
));
63 spufs_init_once(void *p
, kmem_cache_t
* cachep
, unsigned long flags
)
65 struct spufs_inode_info
*ei
= p
;
67 if ((flags
& (SLAB_CTOR_VERIFY
|SLAB_CTOR_CONSTRUCTOR
)) ==
68 SLAB_CTOR_CONSTRUCTOR
) {
69 inode_init_once(&ei
->vfs_inode
);
74 spufs_new_inode(struct super_block
*sb
, int mode
)
78 inode
= new_inode(sb
);
83 inode
->i_uid
= current
->fsuid
;
84 inode
->i_gid
= current
->fsgid
;
85 inode
->i_blksize
= PAGE_CACHE_SIZE
;
87 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
= CURRENT_TIME
;
93 spufs_setattr(struct dentry
*dentry
, struct iattr
*attr
)
95 struct inode
*inode
= dentry
->d_inode
;
97 if ((attr
->ia_valid
& ATTR_SIZE
) &&
98 (attr
->ia_size
!= inode
->i_size
))
100 return inode_setattr(inode
, attr
);
105 spufs_new_file(struct super_block
*sb
, struct dentry
*dentry
,
106 struct file_operations
*fops
, int mode
,
107 struct spu_context
*ctx
)
109 static struct inode_operations spufs_file_iops
= {
110 .setattr
= spufs_setattr
,
116 inode
= spufs_new_inode(sb
, S_IFREG
| mode
);
121 inode
->i_op
= &spufs_file_iops
;
123 inode
->u
.generic_ip
= SPUFS_I(inode
)->i_ctx
= get_spu_context(ctx
);
124 d_add(dentry
, inode
);
130 spufs_delete_inode(struct inode
*inode
)
132 if (SPUFS_I(inode
)->i_ctx
)
133 put_spu_context(SPUFS_I(inode
)->i_ctx
);
137 static void spufs_prune_dir(struct dentry
*dir
)
139 struct dentry
*dentry
, *tmp
;
140 mutex_lock(&dir
->d_inode
->i_mutex
);
141 list_for_each_entry_safe(dentry
, tmp
, &dir
->d_subdirs
, d_u
.d_child
) {
142 spin_lock(&dcache_lock
);
143 spin_lock(&dentry
->d_lock
);
144 if (!(d_unhashed(dentry
)) && dentry
->d_inode
) {
147 spin_unlock(&dentry
->d_lock
);
148 simple_unlink(dir
->d_inode
, dentry
);
149 spin_unlock(&dcache_lock
);
152 spin_unlock(&dentry
->d_lock
);
153 spin_unlock(&dcache_lock
);
156 shrink_dcache_parent(dir
);
157 mutex_unlock(&dir
->d_inode
->i_mutex
);
160 static int spufs_rmdir(struct inode
*root
, struct dentry
*dir_dentry
)
162 struct spu_context
*ctx
;
164 /* remove all entries */
165 mutex_lock(&root
->i_mutex
);
166 spufs_prune_dir(dir_dentry
);
167 mutex_unlock(&root
->i_mutex
);
169 /* We have to give up the mm_struct */
170 ctx
= SPUFS_I(dir_dentry
->d_inode
)->i_ctx
;
173 /* XXX Do we need to hold i_mutex here ? */
174 return simple_rmdir(root
, dir_dentry
);
177 static int spufs_fill_dir(struct dentry
*dir
, struct tree_descr
*files
,
178 int mode
, struct spu_context
*ctx
)
180 struct dentry
*dentry
;
183 while (files
->name
&& files
->name
[0]) {
185 dentry
= d_alloc_name(dir
, files
->name
);
188 ret
= spufs_new_file(dir
->d_sb
, dentry
, files
->ops
,
189 files
->mode
& mode
, ctx
);
196 spufs_prune_dir(dir
);
200 static int spufs_dir_close(struct inode
*inode
, struct file
*file
)
203 struct dentry
*dentry
;
206 dentry
= file
->f_dentry
;
207 dir
= dentry
->d_parent
->d_inode
;
209 ret
= spufs_rmdir(dir
, dentry
);
212 return dcache_dir_close(inode
, file
);
215 struct inode_operations spufs_dir_inode_operations
= {
216 .lookup
= simple_lookup
,
219 struct file_operations spufs_context_fops
= {
220 .open
= dcache_dir_open
,
221 .release
= spufs_dir_close
,
222 .llseek
= dcache_dir_lseek
,
223 .read
= generic_read_dir
,
224 .readdir
= dcache_readdir
,
225 .fsync
= simple_sync_file
,
229 spufs_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mode
)
233 struct spu_context
*ctx
;
236 inode
= spufs_new_inode(dir
->i_sb
, mode
| S_IFDIR
);
240 if (dir
->i_mode
& S_ISGID
) {
241 inode
->i_gid
= dir
->i_gid
;
242 inode
->i_mode
&= S_ISGID
;
244 ctx
= alloc_spu_context(inode
->i_mapping
);
245 SPUFS_I(inode
)->i_ctx
= ctx
;
249 inode
->i_op
= &spufs_dir_inode_operations
;
250 inode
->i_fop
= &simple_dir_operations
;
251 ret
= spufs_fill_dir(dentry
, spufs_dir_contents
, mode
, ctx
);
255 d_instantiate(dentry
, inode
);
258 dentry
->d_inode
->i_nlink
++;
262 put_spu_context(ctx
);
269 static int spufs_context_open(struct dentry
*dentry
, struct vfsmount
*mnt
)
274 ret
= get_unused_fd();
281 filp
= dentry_open(dentry
, mnt
, O_RDONLY
);
288 filp
->f_op
= &spufs_context_fops
;
289 fd_install(ret
, filp
);
294 static struct file_system_type spufs_type
;
296 long spufs_create_thread(struct nameidata
*nd
,
297 unsigned int flags
, mode_t mode
)
299 struct dentry
*dentry
;
302 /* need to be at the root of spufs */
304 if (nd
->dentry
->d_sb
->s_type
!= &spufs_type
||
305 nd
->dentry
!= nd
->dentry
->d_sb
->s_root
)
308 dentry
= lookup_create(nd
, 1);
309 ret
= PTR_ERR(dentry
);
317 mode
&= ~current
->fs
->umask
;
318 ret
= spufs_mkdir(nd
->dentry
->d_inode
, dentry
, mode
& S_IRWXUGO
);
323 * get references for dget and mntget, will be released
324 * in error path of *_open().
326 ret
= spufs_context_open(dget(dentry
), mntget(nd
->mnt
));
328 spufs_rmdir(nd
->dentry
->d_inode
, dentry
);
333 mutex_unlock(&nd
->dentry
->d_inode
->i_mutex
);
338 /* File system initialization */
340 Opt_uid
, Opt_gid
, Opt_err
,
343 static match_table_t spufs_tokens
= {
344 { Opt_uid
, "uid=%d" },
345 { Opt_gid
, "gid=%d" },
350 spufs_parse_options(char *options
, struct inode
*root
)
353 substring_t args
[MAX_OPT_ARGS
];
355 while ((p
= strsep(&options
, ",")) != NULL
) {
361 token
= match_token(p
, spufs_tokens
, args
);
364 if (match_int(&args
[0], &option
))
366 root
->i_uid
= option
;
369 if (match_int(&args
[0], &option
))
371 root
->i_gid
= option
;
381 spufs_create_root(struct super_block
*sb
, void *data
)
387 inode
= spufs_new_inode(sb
, S_IFDIR
| 0775);
391 inode
->i_op
= &spufs_dir_inode_operations
;
392 inode
->i_fop
= &simple_dir_operations
;
393 SPUFS_I(inode
)->i_ctx
= NULL
;
396 if (!spufs_parse_options(data
, inode
))
400 sb
->s_root
= d_alloc_root(inode
);
412 spufs_fill_super(struct super_block
*sb
, void *data
, int silent
)
414 static struct super_operations s_ops
= {
415 .alloc_inode
= spufs_alloc_inode
,
416 .destroy_inode
= spufs_destroy_inode
,
417 .statfs
= simple_statfs
,
418 .delete_inode
= spufs_delete_inode
,
419 .drop_inode
= generic_delete_inode
,
422 sb
->s_maxbytes
= MAX_LFS_FILESIZE
;
423 sb
->s_blocksize
= PAGE_CACHE_SIZE
;
424 sb
->s_blocksize_bits
= PAGE_CACHE_SHIFT
;
425 sb
->s_magic
= SPUFS_MAGIC
;
428 return spufs_create_root(sb
, data
);
431 static struct super_block
*
432 spufs_get_sb(struct file_system_type
*fstype
, int flags
,
433 const char *name
, void *data
)
435 return get_sb_single(fstype
, flags
, data
, spufs_fill_super
);
438 static struct file_system_type spufs_type
= {
439 .owner
= THIS_MODULE
,
441 .get_sb
= spufs_get_sb
,
442 .kill_sb
= kill_litter_super
,
445 static int spufs_init(void)
449 spufs_inode_cache
= kmem_cache_create("spufs_inode_cache",
450 sizeof(struct spufs_inode_info
), 0,
451 SLAB_HWCACHE_ALIGN
, spufs_init_once
, NULL
);
453 if (!spufs_inode_cache
)
455 if (spu_sched_init() != 0) {
456 kmem_cache_destroy(spufs_inode_cache
);
459 ret
= register_filesystem(&spufs_type
);
462 ret
= register_spu_syscalls(&spufs_calls
);
467 unregister_filesystem(&spufs_type
);
469 kmem_cache_destroy(spufs_inode_cache
);
473 module_init(spufs_init
);
475 static void spufs_exit(void)
478 unregister_spu_syscalls(&spufs_calls
);
479 unregister_filesystem(&spufs_type
);
480 kmem_cache_destroy(spufs_inode_cache
);
482 module_exit(spufs_exit
);
484 MODULE_LICENSE("GPL");
485 MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");