5 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
7 * Author: Arnd Bergmann <arndb@de.ibm.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2, or (at your option)
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include <linux/file.h>
26 #include <linux/fsnotify.h>
27 #include <linux/backing-dev.h>
28 #include <linux/init.h>
29 #include <linux/ioctl.h>
30 #include <linux/module.h>
31 #include <linux/mount.h>
32 #include <linux/namei.h>
33 #include <linux/pagemap.h>
34 #include <linux/poll.h>
35 #include <linux/slab.h>
36 #include <linux/parser.h>
40 #include <asm/spu_priv1.h>
41 #include <asm/uaccess.h>
45 struct spufs_sb_info
{
49 static struct kmem_cache
*spufs_inode_cache
;
50 char *isolated_loader
;
51 static int isolated_loader_size
;
53 static struct spufs_sb_info
*spufs_get_sb_info(struct super_block
*sb
)
59 spufs_alloc_inode(struct super_block
*sb
)
61 struct spufs_inode_info
*ei
;
63 ei
= kmem_cache_alloc(spufs_inode_cache
, GFP_KERNEL
);
71 return &ei
->vfs_inode
;
74 static void spufs_i_callback(struct rcu_head
*head
)
76 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
77 kmem_cache_free(spufs_inode_cache
, SPUFS_I(inode
));
80 static void spufs_destroy_inode(struct inode
*inode
)
82 call_rcu(&inode
->i_rcu
, spufs_i_callback
);
86 spufs_init_once(void *p
)
88 struct spufs_inode_info
*ei
= p
;
90 inode_init_once(&ei
->vfs_inode
);
94 spufs_new_inode(struct super_block
*sb
, umode_t mode
)
98 inode
= new_inode(sb
);
102 inode
->i_mode
= mode
;
103 inode
->i_uid
= current_fsuid();
104 inode
->i_gid
= current_fsgid();
105 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
= CURRENT_TIME
;
111 spufs_setattr(struct dentry
*dentry
, struct iattr
*attr
)
113 struct inode
*inode
= dentry
->d_inode
;
115 if ((attr
->ia_valid
& ATTR_SIZE
) &&
116 (attr
->ia_size
!= inode
->i_size
))
118 setattr_copy(inode
, attr
);
119 mark_inode_dirty(inode
);
125 spufs_new_file(struct super_block
*sb
, struct dentry
*dentry
,
126 const struct file_operations
*fops
, umode_t mode
,
127 size_t size
, struct spu_context
*ctx
)
129 static const struct inode_operations spufs_file_iops
= {
130 .setattr
= spufs_setattr
,
136 inode
= spufs_new_inode(sb
, S_IFREG
| mode
);
141 inode
->i_op
= &spufs_file_iops
;
143 inode
->i_size
= size
;
144 inode
->i_private
= SPUFS_I(inode
)->i_ctx
= get_spu_context(ctx
);
145 d_add(dentry
, inode
);
151 spufs_evict_inode(struct inode
*inode
)
153 struct spufs_inode_info
*ei
= SPUFS_I(inode
);
156 put_spu_context(ei
->i_ctx
);
158 put_spu_gang(ei
->i_gang
);
161 static void spufs_prune_dir(struct dentry
*dir
)
163 struct dentry
*dentry
, *tmp
;
165 mutex_lock(&dir
->d_inode
->i_mutex
);
166 list_for_each_entry_safe(dentry
, tmp
, &dir
->d_subdirs
, d_u
.d_child
) {
167 spin_lock(&dentry
->d_lock
);
168 if (!(d_unhashed(dentry
)) && dentry
->d_inode
) {
171 spin_unlock(&dentry
->d_lock
);
172 simple_unlink(dir
->d_inode
, dentry
);
173 /* XXX: what was dcache_lock protecting here? Other
174 * filesystems (IB, configfs) release dcache_lock
178 spin_unlock(&dentry
->d_lock
);
181 shrink_dcache_parent(dir
);
182 mutex_unlock(&dir
->d_inode
->i_mutex
);
185 /* Caller must hold parent->i_mutex */
186 static int spufs_rmdir(struct inode
*parent
, struct dentry
*dir
)
188 /* remove all entries */
190 spufs_prune_dir(dir
);
192 res
= simple_rmdir(parent
, dir
);
193 /* We have to give up the mm_struct */
194 spu_forget(SPUFS_I(dir
->d_inode
)->i_ctx
);
198 static int spufs_fill_dir(struct dentry
*dir
,
199 const struct spufs_tree_descr
*files
, umode_t mode
,
200 struct spu_context
*ctx
)
202 struct dentry
*dentry
, *tmp
;
205 while (files
->name
&& files
->name
[0]) {
207 dentry
= d_alloc_name(dir
, files
->name
);
210 ret
= spufs_new_file(dir
->d_sb
, dentry
, files
->ops
,
211 files
->mode
& mode
, files
->size
, ctx
);
219 * remove all children from dir. dir->inode is not set so don't
220 * just simply use spufs_prune_dir() and panic afterwards :)
221 * dput() looks like it will do the right thing:
222 * - dec parent's ref counter
223 * - remove child from parent's child list
224 * - free child's inode if possible
227 list_for_each_entry_safe(dentry
, tmp
, &dir
->d_subdirs
, d_u
.d_child
) {
231 shrink_dcache_parent(dir
);
235 static int spufs_dir_close(struct inode
*inode
, struct file
*file
)
237 struct spu_context
*ctx
;
238 struct inode
*parent
;
242 dir
= file
->f_path
.dentry
;
243 parent
= dir
->d_parent
->d_inode
;
244 ctx
= SPUFS_I(dir
->d_inode
)->i_ctx
;
246 mutex_lock_nested(&parent
->i_mutex
, I_MUTEX_PARENT
);
247 ret
= spufs_rmdir(parent
, dir
);
248 mutex_unlock(&parent
->i_mutex
);
251 return dcache_dir_close(inode
, file
);
254 const struct file_operations spufs_context_fops
= {
255 .open
= dcache_dir_open
,
256 .release
= spufs_dir_close
,
257 .llseek
= dcache_dir_lseek
,
258 .read
= generic_read_dir
,
259 .readdir
= dcache_readdir
,
262 EXPORT_SYMBOL_GPL(spufs_context_fops
);
265 spufs_mkdir(struct inode
*dir
, struct dentry
*dentry
, unsigned int flags
,
270 struct spu_context
*ctx
;
273 inode
= spufs_new_inode(dir
->i_sb
, mode
| S_IFDIR
);
277 if (dir
->i_mode
& S_ISGID
) {
278 inode
->i_gid
= dir
->i_gid
;
279 inode
->i_mode
&= S_ISGID
;
281 ctx
= alloc_spu_context(SPUFS_I(dir
)->i_gang
); /* XXX gang */
282 SPUFS_I(inode
)->i_ctx
= ctx
;
287 inode
->i_op
= &simple_dir_inode_operations
;
288 inode
->i_fop
= &simple_dir_operations
;
289 if (flags
& SPU_CREATE_NOSCHED
)
290 ret
= spufs_fill_dir(dentry
, spufs_dir_nosched_contents
,
293 ret
= spufs_fill_dir(dentry
, spufs_dir_contents
, mode
, ctx
);
298 if (spufs_get_sb_info(dir
->i_sb
)->debug
)
299 ret
= spufs_fill_dir(dentry
, spufs_dir_debug_contents
,
305 d_instantiate(dentry
, inode
);
308 inc_nlink(dentry
->d_inode
);
313 put_spu_context(ctx
);
320 static int spufs_context_open(struct path
*path
)
325 ret
= get_unused_fd();
329 filp
= dentry_open(path
, O_RDONLY
, current_cred());
332 return PTR_ERR(filp
);
335 filp
->f_op
= &spufs_context_fops
;
336 fd_install(ret
, filp
);
340 static struct spu_context
*
341 spufs_assert_affinity(unsigned int flags
, struct spu_gang
*gang
,
344 struct spu_context
*tmp
, *neighbor
, *err
;
348 aff_supp
= !list_empty(&(list_entry(cbe_spu_info
[0].spus
.next
,
349 struct spu
, cbe_list
))->aff_list
);
352 return ERR_PTR(-EINVAL
);
354 if (flags
& SPU_CREATE_GANG
)
355 return ERR_PTR(-EINVAL
);
357 if (flags
& SPU_CREATE_AFFINITY_MEM
&&
359 gang
->aff_ref_ctx
->flags
& SPU_CREATE_AFFINITY_MEM
)
360 return ERR_PTR(-EEXIST
);
362 if (gang
->aff_flags
& AFF_MERGED
)
363 return ERR_PTR(-EBUSY
);
366 if (flags
& SPU_CREATE_AFFINITY_SPU
) {
367 if (!filp
|| filp
->f_op
!= &spufs_context_fops
)
368 return ERR_PTR(-EINVAL
);
370 neighbor
= get_spu_context(
371 SPUFS_I(filp
->f_dentry
->d_inode
)->i_ctx
);
373 if (!list_empty(&neighbor
->aff_list
) && !(neighbor
->aff_head
) &&
374 !list_is_last(&neighbor
->aff_list
, &gang
->aff_list_head
) &&
375 !list_entry(neighbor
->aff_list
.next
, struct spu_context
,
376 aff_list
)->aff_head
) {
377 err
= ERR_PTR(-EEXIST
);
378 goto out_put_neighbor
;
381 if (gang
!= neighbor
->gang
) {
382 err
= ERR_PTR(-EINVAL
);
383 goto out_put_neighbor
;
387 list_for_each_entry(tmp
, &gang
->aff_list_head
, aff_list
)
389 if (list_empty(&neighbor
->aff_list
))
392 for (node
= 0; node
< MAX_NUMNODES
; node
++) {
393 if ((cbe_spu_info
[node
].n_spus
- atomic_read(
394 &cbe_spu_info
[node
].reserved_spus
)) >= count
)
398 if (node
== MAX_NUMNODES
) {
399 err
= ERR_PTR(-EEXIST
);
400 goto out_put_neighbor
;
407 put_spu_context(neighbor
);
412 spufs_set_affinity(unsigned int flags
, struct spu_context
*ctx
,
413 struct spu_context
*neighbor
)
415 if (flags
& SPU_CREATE_AFFINITY_MEM
)
416 ctx
->gang
->aff_ref_ctx
= ctx
;
418 if (flags
& SPU_CREATE_AFFINITY_SPU
) {
419 if (list_empty(&neighbor
->aff_list
)) {
420 list_add_tail(&neighbor
->aff_list
,
421 &ctx
->gang
->aff_list_head
);
422 neighbor
->aff_head
= 1;
425 if (list_is_last(&neighbor
->aff_list
, &ctx
->gang
->aff_list_head
)
426 || list_entry(neighbor
->aff_list
.next
, struct spu_context
,
427 aff_list
)->aff_head
) {
428 list_add(&ctx
->aff_list
, &neighbor
->aff_list
);
430 list_add_tail(&ctx
->aff_list
, &neighbor
->aff_list
);
431 if (neighbor
->aff_head
) {
432 neighbor
->aff_head
= 0;
437 if (!ctx
->gang
->aff_ref_ctx
)
438 ctx
->gang
->aff_ref_ctx
= ctx
;
443 spufs_create_context(struct inode
*inode
, struct dentry
*dentry
,
444 struct vfsmount
*mnt
, int flags
, umode_t mode
,
445 struct file
*aff_filp
)
449 struct spu_gang
*gang
;
450 struct spu_context
*neighbor
;
451 struct path path
= {.mnt
= mnt
, .dentry
= dentry
};
453 if ((flags
& SPU_CREATE_NOSCHED
) &&
454 !capable(CAP_SYS_NICE
))
457 if ((flags
& (SPU_CREATE_NOSCHED
| SPU_CREATE_ISOLATE
))
458 == SPU_CREATE_ISOLATE
)
461 if ((flags
& SPU_CREATE_ISOLATE
) && !isolated_loader
)
466 affinity
= flags
& (SPU_CREATE_AFFINITY_MEM
| SPU_CREATE_AFFINITY_SPU
);
468 gang
= SPUFS_I(inode
)->i_gang
;
471 mutex_lock(&gang
->aff_mutex
);
472 neighbor
= spufs_assert_affinity(flags
, gang
, aff_filp
);
473 if (IS_ERR(neighbor
)) {
474 ret
= PTR_ERR(neighbor
);
479 ret
= spufs_mkdir(inode
, dentry
, flags
, mode
& S_IRWXUGO
);
484 spufs_set_affinity(flags
, SPUFS_I(dentry
->d_inode
)->i_ctx
,
487 put_spu_context(neighbor
);
490 ret
= spufs_context_open(&path
);
492 WARN_ON(spufs_rmdir(inode
, dentry
));
496 mutex_unlock(&gang
->aff_mutex
);
501 spufs_mkgang(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
505 struct spu_gang
*gang
;
508 inode
= spufs_new_inode(dir
->i_sb
, mode
| S_IFDIR
);
513 if (dir
->i_mode
& S_ISGID
) {
514 inode
->i_gid
= dir
->i_gid
;
515 inode
->i_mode
&= S_ISGID
;
517 gang
= alloc_spu_gang();
518 SPUFS_I(inode
)->i_ctx
= NULL
;
519 SPUFS_I(inode
)->i_gang
= gang
;
523 inode
->i_op
= &simple_dir_inode_operations
;
524 inode
->i_fop
= &simple_dir_operations
;
526 d_instantiate(dentry
, inode
);
528 inc_nlink(dentry
->d_inode
);
537 static int spufs_gang_open(struct path
*path
)
542 ret
= get_unused_fd();
547 * get references for dget and mntget, will be released
548 * in error path of *_open().
550 filp
= dentry_open(path
, O_RDONLY
, current_cred());
553 return PTR_ERR(filp
);
556 filp
->f_op
= &simple_dir_operations
;
557 fd_install(ret
, filp
);
561 static int spufs_create_gang(struct inode
*inode
,
562 struct dentry
*dentry
,
563 struct vfsmount
*mnt
, umode_t mode
)
565 struct path path
= {.mnt
= mnt
, .dentry
= dentry
};
568 ret
= spufs_mkgang(inode
, dentry
, mode
& S_IRWXUGO
);
570 ret
= spufs_gang_open(&path
);
572 int err
= simple_rmdir(inode
, dentry
);
580 static struct file_system_type spufs_type
;
582 long spufs_create(struct path
*path
, struct dentry
*dentry
,
583 unsigned int flags
, umode_t mode
, struct file
*filp
)
585 struct inode
*dir
= path
->dentry
->d_inode
;
588 /* check if we are on spufs */
589 if (path
->dentry
->d_sb
->s_type
!= &spufs_type
)
592 /* don't accept undefined flags */
593 if (flags
& (~SPU_CREATE_FLAG_ALL
))
596 /* only threads can be underneath a gang */
597 if (path
->dentry
!= path
->dentry
->d_sb
->s_root
)
598 if ((flags
& SPU_CREATE_GANG
) || !SPUFS_I(dir
)->i_gang
)
601 mode
&= ~current_umask();
603 if (flags
& SPU_CREATE_GANG
)
604 ret
= spufs_create_gang(dir
, dentry
, path
->mnt
, mode
);
606 ret
= spufs_create_context(dir
, dentry
, path
->mnt
, flags
, mode
,
609 fsnotify_mkdir(dir
, dentry
);
614 /* File system initialization */
616 Opt_uid
, Opt_gid
, Opt_mode
, Opt_debug
, Opt_err
,
619 static const match_table_t spufs_tokens
= {
620 { Opt_uid
, "uid=%d" },
621 { Opt_gid
, "gid=%d" },
622 { Opt_mode
, "mode=%o" },
623 { Opt_debug
, "debug" },
628 spufs_parse_options(struct super_block
*sb
, char *options
, struct inode
*root
)
631 substring_t args
[MAX_OPT_ARGS
];
633 while ((p
= strsep(&options
, ",")) != NULL
) {
639 token
= match_token(p
, spufs_tokens
, args
);
642 if (match_int(&args
[0], &option
))
644 root
->i_uid
= option
;
647 if (match_int(&args
[0], &option
))
649 root
->i_gid
= option
;
652 if (match_octal(&args
[0], &option
))
654 root
->i_mode
= option
| S_IFDIR
;
657 spufs_get_sb_info(sb
)->debug
= 1;
666 static void spufs_exit_isolated_loader(void)
668 free_pages((unsigned long) isolated_loader
,
669 get_order(isolated_loader_size
));
673 spufs_init_isolated_loader(void)
675 struct device_node
*dn
;
679 dn
= of_find_node_by_path("/spu-isolation");
683 loader
= of_get_property(dn
, "loader", &size
);
687 /* the loader must be align on a 16 byte boundary */
688 isolated_loader
= (char *)__get_free_pages(GFP_KERNEL
, get_order(size
));
689 if (!isolated_loader
)
692 isolated_loader_size
= size
;
693 memcpy(isolated_loader
, loader
, size
);
694 printk(KERN_INFO
"spufs: SPU isolation mode enabled\n");
698 spufs_create_root(struct super_block
*sb
, void *data
)
704 if (!spu_management_ops
)
708 inode
= spufs_new_inode(sb
, S_IFDIR
| 0775);
712 inode
->i_op
= &simple_dir_inode_operations
;
713 inode
->i_fop
= &simple_dir_operations
;
714 SPUFS_I(inode
)->i_ctx
= NULL
;
718 if (!spufs_parse_options(sb
, data
, inode
))
722 sb
->s_root
= d_make_root(inode
);
734 spufs_fill_super(struct super_block
*sb
, void *data
, int silent
)
736 struct spufs_sb_info
*info
;
737 static const struct super_operations s_ops
= {
738 .alloc_inode
= spufs_alloc_inode
,
739 .destroy_inode
= spufs_destroy_inode
,
740 .statfs
= simple_statfs
,
741 .evict_inode
= spufs_evict_inode
,
742 .show_options
= generic_show_options
,
745 save_mount_options(sb
, data
);
747 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
751 sb
->s_maxbytes
= MAX_LFS_FILESIZE
;
752 sb
->s_blocksize
= PAGE_CACHE_SIZE
;
753 sb
->s_blocksize_bits
= PAGE_CACHE_SHIFT
;
754 sb
->s_magic
= SPUFS_MAGIC
;
756 sb
->s_fs_info
= info
;
758 return spufs_create_root(sb
, data
);
761 static struct dentry
*
762 spufs_mount(struct file_system_type
*fstype
, int flags
,
763 const char *name
, void *data
)
765 return mount_single(fstype
, flags
, data
, spufs_fill_super
);
768 static struct file_system_type spufs_type
= {
769 .owner
= THIS_MODULE
,
771 .mount
= spufs_mount
,
772 .kill_sb
= kill_litter_super
,
775 static int __init
spufs_init(void)
780 if (!spu_management_ops
)
784 spufs_inode_cache
= kmem_cache_create("spufs_inode_cache",
785 sizeof(struct spufs_inode_info
), 0,
786 SLAB_HWCACHE_ALIGN
, spufs_init_once
);
788 if (!spufs_inode_cache
)
790 ret
= spu_sched_init();
793 ret
= register_spu_syscalls(&spufs_calls
);
796 ret
= register_filesystem(&spufs_type
);
800 spufs_init_isolated_loader();
805 unregister_spu_syscalls(&spufs_calls
);
809 kmem_cache_destroy(spufs_inode_cache
);
813 module_init(spufs_init
);
815 static void __exit
spufs_exit(void)
818 spufs_exit_isolated_loader();
819 unregister_spu_syscalls(&spufs_calls
);
820 unregister_filesystem(&spufs_type
);
821 kmem_cache_destroy(spufs_inode_cache
);
823 module_exit(spufs_exit
);
825 MODULE_LICENSE("GPL");
826 MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");