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/spu_priv1.h>
40 #include <asm/uaccess.h>
44 static struct kmem_cache *spufs_inode_cache;
45 char *isolated_loader;
48 spufs_alloc_inode(struct super_block *sb)
50 struct spufs_inode_info *ei;
52 ei = kmem_cache_alloc(spufs_inode_cache, GFP_KERNEL);
60 return &ei->vfs_inode;
64 spufs_destroy_inode(struct inode *inode)
66 kmem_cache_free(spufs_inode_cache, SPUFS_I(inode));
70 spufs_init_once(void *p, struct kmem_cache * cachep, unsigned long flags)
72 struct spufs_inode_info *ei = p;
74 inode_init_once(&ei->vfs_inode);
78 spufs_new_inode(struct super_block *sb, int mode)
82 inode = new_inode(sb);
87 inode->i_uid = current->fsuid;
88 inode->i_gid = current->fsgid;
90 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
96 spufs_setattr(struct dentry *dentry, struct iattr *attr)
98 struct inode *inode = dentry->d_inode;
100 if ((attr->ia_valid & ATTR_SIZE) &&
101 (attr->ia_size != inode->i_size))
103 return inode_setattr(inode, attr);
108 spufs_new_file(struct super_block *sb, struct dentry *dentry,
109 const struct file_operations *fops, int mode,
110 struct spu_context *ctx)
112 static struct inode_operations spufs_file_iops = {
113 .setattr = spufs_setattr,
119 inode = spufs_new_inode(sb, S_IFREG | mode);
124 inode->i_op = &spufs_file_iops;
126 inode->i_private = SPUFS_I(inode)->i_ctx = get_spu_context(ctx);
127 d_add(dentry, inode);
133 spufs_delete_inode(struct inode *inode)
135 struct spufs_inode_info *ei = SPUFS_I(inode);
138 put_spu_context(ei->i_ctx);
140 put_spu_gang(ei->i_gang);
144 static void spufs_prune_dir(struct dentry *dir)
146 struct dentry *dentry, *tmp;
148 mutex_lock(&dir->d_inode->i_mutex);
149 list_for_each_entry_safe(dentry, tmp, &dir->d_subdirs, d_u.d_child) {
150 spin_lock(&dcache_lock);
151 spin_lock(&dentry->d_lock);
152 if (!(d_unhashed(dentry)) && dentry->d_inode) {
155 spin_unlock(&dentry->d_lock);
156 simple_unlink(dir->d_inode, dentry);
157 spin_unlock(&dcache_lock);
160 spin_unlock(&dentry->d_lock);
161 spin_unlock(&dcache_lock);
164 shrink_dcache_parent(dir);
165 mutex_unlock(&dir->d_inode->i_mutex);
168 /* Caller must hold parent->i_mutex */
169 static int spufs_rmdir(struct inode *parent, struct dentry *dir)
171 /* remove all entries */
172 spufs_prune_dir(dir);
174 return simple_rmdir(parent, dir);
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)
202 struct spu_context *ctx;
203 struct inode *parent;
207 dir = file->f_path.dentry;
208 parent = dir->d_parent->d_inode;
209 ctx = SPUFS_I(dir->d_inode)->i_ctx;
211 mutex_lock(&parent->i_mutex);
212 ret = spufs_rmdir(parent, dir);
213 mutex_unlock(&parent->i_mutex);
216 /* We have to give up the mm_struct */
219 return dcache_dir_close(inode, file);
222 const struct inode_operations spufs_dir_inode_operations = {
223 .lookup = simple_lookup,
226 const struct file_operations spufs_context_fops = {
227 .open = dcache_dir_open,
228 .release = spufs_dir_close,
229 .llseek = dcache_dir_lseek,
230 .read = generic_read_dir,
231 .readdir = dcache_readdir,
232 .fsync = simple_sync_file,
234 EXPORT_SYMBOL_GPL(spufs_context_fops);
237 spufs_mkdir(struct inode *dir, struct dentry *dentry, unsigned int flags,
242 struct spu_context *ctx;
245 inode = spufs_new_inode(dir->i_sb, mode | S_IFDIR);
249 if (dir->i_mode & S_ISGID) {
250 inode->i_gid = dir->i_gid;
251 inode->i_mode &= S_ISGID;
253 ctx = alloc_spu_context(SPUFS_I(dir)->i_gang); /* XXX gang */
254 SPUFS_I(inode)->i_ctx = ctx;
259 inode->i_op = &spufs_dir_inode_operations;
260 inode->i_fop = &simple_dir_operations;
261 if (flags & SPU_CREATE_NOSCHED)
262 ret = spufs_fill_dir(dentry, spufs_dir_nosched_contents,
265 ret = spufs_fill_dir(dentry, spufs_dir_contents, mode, ctx);
270 d_instantiate(dentry, inode);
273 dentry->d_inode->i_nlink++;
277 put_spu_context(ctx);
284 static int spufs_context_open(struct dentry *dentry, struct vfsmount *mnt)
289 ret = get_unused_fd();
296 filp = dentry_open(dentry, mnt, O_RDONLY);
303 filp->f_op = &spufs_context_fops;
304 fd_install(ret, filp);
309 static int spufs_create_context(struct inode *inode,
310 struct dentry *dentry,
311 struct vfsmount *mnt, int flags, int mode)
316 if ((flags & SPU_CREATE_NOSCHED) &&
317 !capable(CAP_SYS_NICE))
321 if ((flags & (SPU_CREATE_NOSCHED | SPU_CREATE_ISOLATE))
322 == SPU_CREATE_ISOLATE)
326 if ((flags & SPU_CREATE_ISOLATE) && !isolated_loader)
329 ret = spufs_mkdir(inode, dentry, flags, mode & S_IRWXUGO);
334 * get references for dget and mntget, will be released
335 * in error path of *_open().
337 ret = spufs_context_open(dget(dentry), mntget(mnt));
339 WARN_ON(spufs_rmdir(inode, dentry));
340 mutex_unlock(&inode->i_mutex);
341 spu_forget(SPUFS_I(dentry->d_inode)->i_ctx);
346 mutex_unlock(&inode->i_mutex);
352 static int spufs_rmgang(struct inode *root, struct dentry *dir)
354 /* FIXME: this fails if the dir is not empty,
355 which causes a leak of gangs. */
356 return simple_rmdir(root, dir);
359 static int spufs_gang_close(struct inode *inode, struct file *file)
361 struct inode *parent;
365 dir = file->f_path.dentry;
366 parent = dir->d_parent->d_inode;
368 ret = spufs_rmgang(parent, dir);
371 return dcache_dir_close(inode, file);
374 const struct file_operations spufs_gang_fops = {
375 .open = dcache_dir_open,
376 .release = spufs_gang_close,
377 .llseek = dcache_dir_lseek,
378 .read = generic_read_dir,
379 .readdir = dcache_readdir,
380 .fsync = simple_sync_file,
384 spufs_mkgang(struct inode *dir, struct dentry *dentry, int mode)
388 struct spu_gang *gang;
391 inode = spufs_new_inode(dir->i_sb, mode | S_IFDIR);
396 if (dir->i_mode & S_ISGID) {
397 inode->i_gid = dir->i_gid;
398 inode->i_mode &= S_ISGID;
400 gang = alloc_spu_gang();
401 SPUFS_I(inode)->i_ctx = NULL;
402 SPUFS_I(inode)->i_gang = gang;
406 inode->i_op = &spufs_dir_inode_operations;
407 inode->i_fop = &simple_dir_operations;
409 d_instantiate(dentry, inode);
412 dentry->d_inode->i_nlink++;
421 static int spufs_gang_open(struct dentry *dentry, struct vfsmount *mnt)
426 ret = get_unused_fd();
433 filp = dentry_open(dentry, mnt, O_RDONLY);
440 filp->f_op = &spufs_gang_fops;
441 fd_install(ret, filp);
446 static int spufs_create_gang(struct inode *inode,
447 struct dentry *dentry,
448 struct vfsmount *mnt, int mode)
452 ret = spufs_mkgang(inode, dentry, mode & S_IRWXUGO);
457 * get references for dget and mntget, will be released
458 * in error path of *_open().
460 ret = spufs_gang_open(dget(dentry), mntget(mnt));
462 WARN_ON(spufs_rmgang(inode, dentry));
465 mutex_unlock(&inode->i_mutex);
471 static struct file_system_type spufs_type;
473 long spufs_create(struct nameidata *nd, unsigned int flags, mode_t mode)
475 struct dentry *dentry;
479 /* check if we are on spufs */
480 if (nd->dentry->d_sb->s_type != &spufs_type)
483 /* don't accept undefined flags */
484 if (flags & (~SPU_CREATE_FLAG_ALL))
487 /* only threads can be underneath a gang */
488 if (nd->dentry != nd->dentry->d_sb->s_root) {
489 if ((flags & SPU_CREATE_GANG) ||
490 !SPUFS_I(nd->dentry->d_inode)->i_gang)
494 dentry = lookup_create(nd, 1);
495 ret = PTR_ERR(dentry);
503 mode &= ~current->fs->umask;
505 if (flags & SPU_CREATE_GANG)
506 return spufs_create_gang(nd->dentry->d_inode,
507 dentry, nd->mnt, mode);
509 return spufs_create_context(nd->dentry->d_inode,
510 dentry, nd->mnt, flags, mode);
515 mutex_unlock(&nd->dentry->d_inode->i_mutex);
520 /* File system initialization */
522 Opt_uid, Opt_gid, Opt_mode, Opt_err,
525 static match_table_t spufs_tokens = {
526 { Opt_uid, "uid=%d" },
527 { Opt_gid, "gid=%d" },
528 { Opt_mode, "mode=%o" },
533 spufs_parse_options(char *options, struct inode *root)
536 substring_t args[MAX_OPT_ARGS];
538 while ((p = strsep(&options, ",")) != NULL) {
544 token = match_token(p, spufs_tokens, args);
547 if (match_int(&args[0], &option))
549 root->i_uid = option;
552 if (match_int(&args[0], &option))
554 root->i_gid = option;
557 if (match_octal(&args[0], &option))
559 root->i_mode = option | S_IFDIR;
568 static void spufs_exit_isolated_loader(void)
570 kfree(isolated_loader);
574 spufs_init_isolated_loader(void)
576 struct device_node *dn;
580 dn = of_find_node_by_path("/spu-isolation");
584 loader = of_get_property(dn, "loader", &size);
588 /* kmalloc should align on a 16 byte boundary..* */
589 isolated_loader = kmalloc(size, GFP_KERNEL);
590 if (!isolated_loader)
593 memcpy(isolated_loader, loader, size);
594 printk(KERN_INFO "spufs: SPU isolation mode enabled\n");
598 spufs_create_root(struct super_block *sb, void *data)
604 inode = spufs_new_inode(sb, S_IFDIR | 0775);
608 inode->i_op = &spufs_dir_inode_operations;
609 inode->i_fop = &simple_dir_operations;
610 SPUFS_I(inode)->i_ctx = NULL;
613 if (!spufs_parse_options(data, inode))
617 sb->s_root = d_alloc_root(inode);
629 spufs_fill_super(struct super_block *sb, void *data, int silent)
631 static struct super_operations s_ops = {
632 .alloc_inode = spufs_alloc_inode,
633 .destroy_inode = spufs_destroy_inode,
634 .statfs = simple_statfs,
635 .delete_inode = spufs_delete_inode,
636 .drop_inode = generic_delete_inode,
639 sb->s_maxbytes = MAX_LFS_FILESIZE;
640 sb->s_blocksize = PAGE_CACHE_SIZE;
641 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
642 sb->s_magic = SPUFS_MAGIC;
645 return spufs_create_root(sb, data);
649 spufs_get_sb(struct file_system_type *fstype, int flags,
650 const char *name, void *data, struct vfsmount *mnt)
652 return get_sb_single(fstype, flags, data, spufs_fill_super, mnt);
655 static struct file_system_type spufs_type = {
656 .owner = THIS_MODULE,
658 .get_sb = spufs_get_sb,
659 .kill_sb = kill_litter_super,
662 static int __init spufs_init(void)
667 if (!spu_management_ops)
671 spufs_inode_cache = kmem_cache_create("spufs_inode_cache",
672 sizeof(struct spufs_inode_info), 0,
673 SLAB_HWCACHE_ALIGN, spufs_init_once, NULL);
675 if (!spufs_inode_cache)
677 ret = spu_sched_init();
680 ret = register_filesystem(&spufs_type);
683 ret = register_spu_syscalls(&spufs_calls);
686 ret = register_arch_coredump_calls(&spufs_coredump_calls);
690 spufs_init_isolated_loader();
695 unregister_spu_syscalls(&spufs_calls);
697 unregister_filesystem(&spufs_type);
701 kmem_cache_destroy(spufs_inode_cache);
705 module_init(spufs_init);
707 static void __exit spufs_exit(void)
710 spufs_exit_isolated_loader();
711 unregister_arch_coredump_calls(&spufs_coredump_calls);
712 unregister_spu_syscalls(&spufs_calls);
713 unregister_filesystem(&spufs_type);
714 kmem_cache_destroy(spufs_inode_cache);
716 module_exit(spufs_exit);
718 MODULE_LICENSE("GPL");
719 MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");