blob: 08356813977103e173b76bea7213dcf7f9b8bab7 [file] [log] [blame]
Arnd Bergmann67207b92005-11-15 15:53:48 -05001/*
2 * SPU file system
3 *
4 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
5 *
6 * Author: Arnd Bergmann <arndb@de.ibm.com>
7 *
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)
11 * any later version.
12 *
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.
17 *
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.
21 */
22
23#include <linux/file.h>
24#include <linux/fs.h>
25#include <linux/backing-dev.h>
26#include <linux/init.h>
27#include <linux/ioctl.h>
28#include <linux/module.h>
Arnd Bergmann346f4d32006-01-04 20:31:26 +010029#include <linux/mount.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050030#include <linux/namei.h>
31#include <linux/pagemap.h>
32#include <linux/poll.h>
33#include <linux/slab.h>
34#include <linux/parser.h>
35
arnd@arndb.de0afacde2006-10-24 18:31:18 +020036#include <asm/prom.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050037#include <asm/semaphore.h>
38#include <asm/spu.h>
Jeremy Kerrccf17e92007-04-23 21:08:29 +020039#include <asm/spu_priv1.h>
Arnd Bergmann67207b92005-11-15 15:53:48 -050040#include <asm/uaccess.h>
41
42#include "spufs.h"
43
Christoph Lametere18b8902006-12-06 20:33:20 -080044static struct kmem_cache *spufs_inode_cache;
Jeremy Kerrc6730ed2006-11-20 18:45:10 +010045char *isolated_loader;
Arnd Bergmann67207b92005-11-15 15:53:48 -050046
Arnd Bergmann67207b92005-11-15 15:53:48 -050047static struct inode *
48spufs_alloc_inode(struct super_block *sb)
49{
50 struct spufs_inode_info *ei;
51
Christoph Lametere94b1762006-12-06 20:33:17 -080052 ei = kmem_cache_alloc(spufs_inode_cache, GFP_KERNEL);
Arnd Bergmann67207b92005-11-15 15:53:48 -050053 if (!ei)
54 return NULL;
Arnd Bergmann62632032006-10-04 17:26:15 +020055
56 ei->i_gang = NULL;
57 ei->i_ctx = NULL;
Christoph Hellwig43c2bbd2007-04-23 21:08:07 +020058 ei->i_openers = 0;
Arnd Bergmann62632032006-10-04 17:26:15 +020059
Arnd Bergmann67207b92005-11-15 15:53:48 -050060 return &ei->vfs_inode;
61}
62
63static void
64spufs_destroy_inode(struct inode *inode)
65{
66 kmem_cache_free(spufs_inode_cache, SPUFS_I(inode));
67}
68
69static void
Christoph Lametere18b8902006-12-06 20:33:20 -080070spufs_init_once(void *p, struct kmem_cache * cachep, unsigned long flags)
Arnd Bergmann67207b92005-11-15 15:53:48 -050071{
72 struct spufs_inode_info *ei = p;
73
Christoph Lametera35afb82007-05-16 22:10:57 -070074 inode_init_once(&ei->vfs_inode);
Arnd Bergmann67207b92005-11-15 15:53:48 -050075}
76
77static struct inode *
78spufs_new_inode(struct super_block *sb, int mode)
79{
80 struct inode *inode;
81
82 inode = new_inode(sb);
83 if (!inode)
84 goto out;
85
86 inode->i_mode = mode;
87 inode->i_uid = current->fsuid;
88 inode->i_gid = current->fsgid;
Arnd Bergmann67207b92005-11-15 15:53:48 -050089 inode->i_blocks = 0;
90 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
91out:
92 return inode;
93}
94
95static int
96spufs_setattr(struct dentry *dentry, struct iattr *attr)
97{
98 struct inode *inode = dentry->d_inode;
99
Arnd Bergmann67207b92005-11-15 15:53:48 -0500100 if ((attr->ia_valid & ATTR_SIZE) &&
101 (attr->ia_size != inode->i_size))
102 return -EINVAL;
103 return inode_setattr(inode, attr);
104}
105
106
107static int
108spufs_new_file(struct super_block *sb, struct dentry *dentry,
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800109 const struct file_operations *fops, int mode,
Arnd Bergmann67207b92005-11-15 15:53:48 -0500110 struct spu_context *ctx)
111{
112 static struct inode_operations spufs_file_iops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500113 .setattr = spufs_setattr,
Arnd Bergmann67207b92005-11-15 15:53:48 -0500114 };
115 struct inode *inode;
116 int ret;
117
118 ret = -ENOSPC;
119 inode = spufs_new_inode(sb, S_IFREG | mode);
120 if (!inode)
121 goto out;
122
123 ret = 0;
124 inode->i_op = &spufs_file_iops;
125 inode->i_fop = fops;
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700126 inode->i_private = SPUFS_I(inode)->i_ctx = get_spu_context(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500127 d_add(dentry, inode);
128out:
129 return ret;
130}
131
132static void
133spufs_delete_inode(struct inode *inode)
134{
Arnd Bergmann62632032006-10-04 17:26:15 +0200135 struct spufs_inode_info *ei = SPUFS_I(inode);
136
137 if (ei->i_ctx)
138 put_spu_context(ei->i_ctx);
139 if (ei->i_gang)
140 put_spu_gang(ei->i_gang);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500141 clear_inode(inode);
142}
143
Arnd Bergmann3f51dd92006-01-04 20:31:27 +0100144static void spufs_prune_dir(struct dentry *dir)
145{
146 struct dentry *dentry, *tmp;
Arnd Bergmann62632032006-10-04 17:26:15 +0200147
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800148 mutex_lock(&dir->d_inode->i_mutex);
Andrew Mortonc3a9aea2006-01-09 20:51:24 -0800149 list_for_each_entry_safe(dentry, tmp, &dir->d_subdirs, d_u.d_child) {
Arnd Bergmann3f51dd92006-01-04 20:31:27 +0100150 spin_lock(&dcache_lock);
151 spin_lock(&dentry->d_lock);
152 if (!(d_unhashed(dentry)) && dentry->d_inode) {
153 dget_locked(dentry);
154 __d_drop(dentry);
155 spin_unlock(&dentry->d_lock);
156 simple_unlink(dir->d_inode, dentry);
157 spin_unlock(&dcache_lock);
158 dput(dentry);
159 } else {
160 spin_unlock(&dentry->d_lock);
161 spin_unlock(&dcache_lock);
162 }
163 }
164 shrink_dcache_parent(dir);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800165 mutex_unlock(&dir->d_inode->i_mutex);
Arnd Bergmann3f51dd92006-01-04 20:31:27 +0100166}
167
Arnd Bergmann62632032006-10-04 17:26:15 +0200168/* Caller must hold parent->i_mutex */
169static int spufs_rmdir(struct inode *parent, struct dentry *dir)
Arnd Bergmann3f51dd92006-01-04 20:31:27 +0100170{
Arnd Bergmann3f51dd92006-01-04 20:31:27 +0100171 /* remove all entries */
Arnd Bergmann62632032006-10-04 17:26:15 +0200172 spufs_prune_dir(dir);
Arnd Bergmann3f51dd92006-01-04 20:31:27 +0100173
Arnd Bergmann62632032006-10-04 17:26:15 +0200174 return simple_rmdir(parent, dir);
Arnd Bergmann3f51dd92006-01-04 20:31:27 +0100175}
176
177static int spufs_fill_dir(struct dentry *dir, struct tree_descr *files,
178 int mode, struct spu_context *ctx)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500179{
180 struct dentry *dentry;
181 int ret;
182
183 while (files->name && files->name[0]) {
184 ret = -ENOMEM;
185 dentry = d_alloc_name(dir, files->name);
186 if (!dentry)
187 goto out;
188 ret = spufs_new_file(dir->d_sb, dentry, files->ops,
189 files->mode & mode, ctx);
190 if (ret)
191 goto out;
192 files++;
193 }
194 return 0;
195out:
Arnd Bergmann3f51dd92006-01-04 20:31:27 +0100196 spufs_prune_dir(dir);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500197 return ret;
198}
199
Arnd Bergmann67207b92005-11-15 15:53:48 -0500200static int spufs_dir_close(struct inode *inode, struct file *file)
201{
Michael Ellerman0309f022006-06-19 20:33:22 +0200202 struct spu_context *ctx;
Arnd Bergmann62632032006-10-04 17:26:15 +0200203 struct inode *parent;
204 struct dentry *dir;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500205 int ret;
206
Josef Sipekb4d1ab52006-12-08 02:37:30 -0800207 dir = file->f_path.dentry;
Arnd Bergmann62632032006-10-04 17:26:15 +0200208 parent = dir->d_parent->d_inode;
209 ctx = SPUFS_I(dir->d_inode)->i_ctx;
Arnd Bergmannc8ca0632006-01-04 20:31:22 +0100210
Arnd Bergmann62632032006-10-04 17:26:15 +0200211 mutex_lock(&parent->i_mutex);
212 ret = spufs_rmdir(parent, dir);
213 mutex_unlock(&parent->i_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500214 WARN_ON(ret);
Arnd Bergmannc8ca0632006-01-04 20:31:22 +0100215
Michael Ellerman0309f022006-06-19 20:33:22 +0200216 /* We have to give up the mm_struct */
217 spu_forget(ctx);
218
Arnd Bergmann67207b92005-11-15 15:53:48 -0500219 return dcache_dir_close(inode, file);
220}
221
Arjan van de Ven754661f2007-02-12 00:55:38 -0800222const struct inode_operations spufs_dir_inode_operations = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500223 .lookup = simple_lookup,
224};
225
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800226const struct file_operations spufs_context_fops = {
Arnd Bergmann67207b92005-11-15 15:53:48 -0500227 .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,
233};
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100234EXPORT_SYMBOL_GPL(spufs_context_fops);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500235
236static int
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200237spufs_mkdir(struct inode *dir, struct dentry *dentry, unsigned int flags,
238 int mode)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500239{
240 int ret;
241 struct inode *inode;
242 struct spu_context *ctx;
243
244 ret = -ENOSPC;
245 inode = spufs_new_inode(dir->i_sb, mode | S_IFDIR);
246 if (!inode)
247 goto out;
248
249 if (dir->i_mode & S_ISGID) {
250 inode->i_gid = dir->i_gid;
251 inode->i_mode &= S_ISGID;
252 }
Arnd Bergmann62632032006-10-04 17:26:15 +0200253 ctx = alloc_spu_context(SPUFS_I(dir)->i_gang); /* XXX gang */
Arnd Bergmann67207b92005-11-15 15:53:48 -0500254 SPUFS_I(inode)->i_ctx = ctx;
255 if (!ctx)
256 goto out_iput;
257
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200258 ctx->flags = flags;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500259 inode->i_op = &spufs_dir_inode_operations;
260 inode->i_fop = &simple_dir_operations;
Mark Nutter5737edd2006-10-24 18:31:16 +0200261 if (flags & SPU_CREATE_NOSCHED)
262 ret = spufs_fill_dir(dentry, spufs_dir_nosched_contents,
263 mode, ctx);
264 else
265 ret = spufs_fill_dir(dentry, spufs_dir_contents, mode, ctx);
266
Arnd Bergmann67207b92005-11-15 15:53:48 -0500267 if (ret)
268 goto out_free_ctx;
269
270 d_instantiate(dentry, inode);
271 dget(dentry);
272 dir->i_nlink++;
Arnd Bergmann346f4d32006-01-04 20:31:26 +0100273 dentry->d_inode->i_nlink++;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500274 goto out;
275
276out_free_ctx:
Sebastian Siewior89df0082007-06-04 23:26:51 +1000277 spu_forget(ctx);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500278 put_spu_context(ctx);
279out_iput:
280 iput(inode);
281out:
282 return ret;
283}
284
Arnd Bergmann346f4d32006-01-04 20:31:26 +0100285static int spufs_context_open(struct dentry *dentry, struct vfsmount *mnt)
286{
287 int ret;
288 struct file *filp;
289
290 ret = get_unused_fd();
291 if (ret < 0) {
292 dput(dentry);
293 mntput(mnt);
294 goto out;
295 }
296
297 filp = dentry_open(dentry, mnt, O_RDONLY);
298 if (IS_ERR(filp)) {
299 put_unused_fd(ret);
300 ret = PTR_ERR(filp);
301 goto out;
302 }
303
304 filp->f_op = &spufs_context_fops;
305 fd_install(ret, filp);
306out:
307 return ret;
308}
309
Arnd Bergmann62632032006-10-04 17:26:15 +0200310static int spufs_create_context(struct inode *inode,
311 struct dentry *dentry,
312 struct vfsmount *mnt, int flags, int mode)
313{
314 int ret;
315
Mark Nutter5737edd2006-10-24 18:31:16 +0200316 ret = -EPERM;
317 if ((flags & SPU_CREATE_NOSCHED) &&
318 !capable(CAP_SYS_NICE))
319 goto out_unlock;
320
321 ret = -EINVAL;
322 if ((flags & (SPU_CREATE_NOSCHED | SPU_CREATE_ISOLATE))
323 == SPU_CREATE_ISOLATE)
324 goto out_unlock;
325
Jeremy Kerrbd2e5f82006-11-27 19:18:52 +0100326 ret = -ENODEV;
327 if ((flags & SPU_CREATE_ISOLATE) && !isolated_loader)
328 goto out_unlock;
329
Arnd Bergmann62632032006-10-04 17:26:15 +0200330 ret = spufs_mkdir(inode, dentry, flags, mode & S_IRWXUGO);
331 if (ret)
332 goto out_unlock;
333
334 /*
335 * get references for dget and mntget, will be released
336 * in error path of *_open().
337 */
338 ret = spufs_context_open(dget(dentry), mntget(mnt));
339 if (ret < 0) {
340 WARN_ON(spufs_rmdir(inode, dentry));
341 mutex_unlock(&inode->i_mutex);
342 spu_forget(SPUFS_I(dentry->d_inode)->i_ctx);
343 goto out;
344 }
345
346out_unlock:
347 mutex_unlock(&inode->i_mutex);
348out:
349 dput(dentry);
350 return ret;
351}
352
Arnd Bergmann62632032006-10-04 17:26:15 +0200353static int
354spufs_mkgang(struct inode *dir, struct dentry *dentry, int mode)
355{
356 int ret;
357 struct inode *inode;
358 struct spu_gang *gang;
359
360 ret = -ENOSPC;
361 inode = spufs_new_inode(dir->i_sb, mode | S_IFDIR);
362 if (!inode)
363 goto out;
364
365 ret = 0;
366 if (dir->i_mode & S_ISGID) {
367 inode->i_gid = dir->i_gid;
368 inode->i_mode &= S_ISGID;
369 }
370 gang = alloc_spu_gang();
371 SPUFS_I(inode)->i_ctx = NULL;
372 SPUFS_I(inode)->i_gang = gang;
373 if (!gang)
374 goto out_iput;
375
376 inode->i_op = &spufs_dir_inode_operations;
377 inode->i_fop = &simple_dir_operations;
378
379 d_instantiate(dentry, inode);
Arnd Bergmann62632032006-10-04 17:26:15 +0200380 dir->i_nlink++;
381 dentry->d_inode->i_nlink++;
382 return ret;
383
384out_iput:
385 iput(inode);
386out:
387 return ret;
388}
389
390static int spufs_gang_open(struct dentry *dentry, struct vfsmount *mnt)
391{
392 int ret;
393 struct file *filp;
394
395 ret = get_unused_fd();
396 if (ret < 0) {
397 dput(dentry);
398 mntput(mnt);
399 goto out;
400 }
401
402 filp = dentry_open(dentry, mnt, O_RDONLY);
403 if (IS_ERR(filp)) {
404 put_unused_fd(ret);
405 ret = PTR_ERR(filp);
406 goto out;
407 }
408
Jeremy Kerr877907d2007-06-04 23:26:51 +1000409 filp->f_op = &simple_dir_operations;
Arnd Bergmann62632032006-10-04 17:26:15 +0200410 fd_install(ret, filp);
411out:
412 return ret;
413}
414
415static int spufs_create_gang(struct inode *inode,
416 struct dentry *dentry,
417 struct vfsmount *mnt, int mode)
418{
419 int ret;
420
421 ret = spufs_mkgang(inode, dentry, mode & S_IRWXUGO);
422 if (ret)
423 goto out;
424
425 /*
426 * get references for dget and mntget, will be released
427 * in error path of *_open().
428 */
429 ret = spufs_gang_open(dget(dentry), mntget(mnt));
Jeremy Kerr877907d2007-06-04 23:26:51 +1000430 if (ret < 0) {
431 int err = simple_rmdir(inode, dentry);
432 WARN_ON(err);
433 }
Arnd Bergmann62632032006-10-04 17:26:15 +0200434
435out:
436 mutex_unlock(&inode->i_mutex);
437 dput(dentry);
438 return ret;
439}
440
441
Arnd Bergmann346f4d32006-01-04 20:31:26 +0100442static struct file_system_type spufs_type;
443
Arnd Bergmann62632032006-10-04 17:26:15 +0200444long spufs_create(struct nameidata *nd, unsigned int flags, mode_t mode)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500445{
446 struct dentry *dentry;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500447 int ret;
448
Arnd Bergmann67207b92005-11-15 15:53:48 -0500449 ret = -EINVAL;
Arnd Bergmann62632032006-10-04 17:26:15 +0200450 /* check if we are on spufs */
451 if (nd->dentry->d_sb->s_type != &spufs_type)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500452 goto out;
453
Arnd Bergmann62632032006-10-04 17:26:15 +0200454 /* don't accept undefined flags */
Arnd Bergmann9add11d2006-10-04 17:26:14 +0200455 if (flags & (~SPU_CREATE_FLAG_ALL))
arnd@arndb.dec9832942006-06-19 20:33:34 +0200456 goto out;
457
Arnd Bergmann62632032006-10-04 17:26:15 +0200458 /* only threads can be underneath a gang */
459 if (nd->dentry != nd->dentry->d_sb->s_root) {
460 if ((flags & SPU_CREATE_GANG) ||
461 !SPUFS_I(nd->dentry->d_inode)->i_gang)
462 goto out;
463 }
464
Arnd Bergmann67207b92005-11-15 15:53:48 -0500465 dentry = lookup_create(nd, 1);
466 ret = PTR_ERR(dentry);
467 if (IS_ERR(dentry))
468 goto out_dir;
469
470 ret = -EEXIST;
471 if (dentry->d_inode)
472 goto out_dput;
473
474 mode &= ~current->fs->umask;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500475
Arnd Bergmann62632032006-10-04 17:26:15 +0200476 if (flags & SPU_CREATE_GANG)
477 return spufs_create_gang(nd->dentry->d_inode,
478 dentry, nd->mnt, mode);
479 else
480 return spufs_create_context(nd->dentry->d_inode,
481 dentry, nd->mnt, flags, mode);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500482
483out_dput:
484 dput(dentry);
485out_dir:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800486 mutex_unlock(&nd->dentry->d_inode->i_mutex);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500487out:
488 return ret;
489}
490
491/* File system initialization */
492enum {
Jeremy Kerrf11f5ee2007-04-23 21:08:23 +0200493 Opt_uid, Opt_gid, Opt_mode, Opt_err,
Arnd Bergmann67207b92005-11-15 15:53:48 -0500494};
495
496static match_table_t spufs_tokens = {
Jeremy Kerrf11f5ee2007-04-23 21:08:23 +0200497 { Opt_uid, "uid=%d" },
498 { Opt_gid, "gid=%d" },
499 { Opt_mode, "mode=%o" },
500 { Opt_err, NULL },
Arnd Bergmann67207b92005-11-15 15:53:48 -0500501};
502
503static int
504spufs_parse_options(char *options, struct inode *root)
505{
506 char *p;
507 substring_t args[MAX_OPT_ARGS];
508
509 while ((p = strsep(&options, ",")) != NULL) {
510 int token, option;
511
512 if (!*p)
513 continue;
514
515 token = match_token(p, spufs_tokens, args);
516 switch (token) {
517 case Opt_uid:
518 if (match_int(&args[0], &option))
519 return 0;
520 root->i_uid = option;
521 break;
522 case Opt_gid:
523 if (match_int(&args[0], &option))
524 return 0;
525 root->i_gid = option;
526 break;
Jeremy Kerrf11f5ee2007-04-23 21:08:23 +0200527 case Opt_mode:
528 if (match_octal(&args[0], &option))
529 return 0;
530 root->i_mode = option | S_IFDIR;
531 break;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500532 default:
533 return 0;
534 }
535 }
536 return 1;
537}
538
Akinobu Mitadb1384b402007-04-23 21:08:20 +0200539static void spufs_exit_isolated_loader(void)
540{
541 kfree(isolated_loader);
542}
543
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200544static void
545spufs_init_isolated_loader(void)
546{
547 struct device_node *dn;
548 const char *loader;
549 int size;
550
551 dn = of_find_node_by_path("/spu-isolation");
552 if (!dn)
553 return;
554
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000555 loader = of_get_property(dn, "loader", &size);
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200556 if (!loader)
557 return;
558
559 /* kmalloc should align on a 16 byte boundary..* */
560 isolated_loader = kmalloc(size, GFP_KERNEL);
561 if (!isolated_loader)
562 return;
563
564 memcpy(isolated_loader, loader, size);
565 printk(KERN_INFO "spufs: SPU isolation mode enabled\n");
566}
567
Arnd Bergmann67207b92005-11-15 15:53:48 -0500568static int
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500569spufs_create_root(struct super_block *sb, void *data)
570{
Arnd Bergmann67207b92005-11-15 15:53:48 -0500571 struct inode *inode;
572 int ret;
573
Arnd Bergmann8f18a152007-06-04 23:26:51 +1000574 ret = -ENODEV;
575 if (!spu_management_ops)
576 goto out;
577
Arnd Bergmann67207b92005-11-15 15:53:48 -0500578 ret = -ENOMEM;
579 inode = spufs_new_inode(sb, S_IFDIR | 0775);
580 if (!inode)
581 goto out;
582
583 inode->i_op = &spufs_dir_inode_operations;
584 inode->i_fop = &simple_dir_operations;
585 SPUFS_I(inode)->i_ctx = NULL;
586
587 ret = -EINVAL;
588 if (!spufs_parse_options(data, inode))
589 goto out_iput;
590
591 ret = -ENOMEM;
592 sb->s_root = d_alloc_root(inode);
593 if (!sb->s_root)
594 goto out_iput;
595
596 return 0;
597out_iput:
598 iput(inode);
599out:
600 return ret;
601}
602
603static int
604spufs_fill_super(struct super_block *sb, void *data, int silent)
605{
606 static struct super_operations s_ops = {
607 .alloc_inode = spufs_alloc_inode,
608 .destroy_inode = spufs_destroy_inode,
609 .statfs = simple_statfs,
610 .delete_inode = spufs_delete_inode,
611 .drop_inode = generic_delete_inode,
612 };
613
614 sb->s_maxbytes = MAX_LFS_FILESIZE;
615 sb->s_blocksize = PAGE_CACHE_SIZE;
616 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
617 sb->s_magic = SPUFS_MAGIC;
618 sb->s_op = &s_ops;
619
620 return spufs_create_root(sb, data);
621}
622
David Howells454e2392006-06-23 02:02:57 -0700623static int
Arnd Bergmann67207b92005-11-15 15:53:48 -0500624spufs_get_sb(struct file_system_type *fstype, int flags,
David Howells454e2392006-06-23 02:02:57 -0700625 const char *name, void *data, struct vfsmount *mnt)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500626{
David Howells454e2392006-06-23 02:02:57 -0700627 return get_sb_single(fstype, flags, data, spufs_fill_super, mnt);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500628}
629
630static struct file_system_type spufs_type = {
631 .owner = THIS_MODULE,
632 .name = "spufs",
633 .get_sb = spufs_get_sb,
634 .kill_sb = kill_litter_super,
635};
636
Arnd Bergmanne78b47a2006-03-27 21:27:40 +0200637static int __init spufs_init(void)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500638{
639 int ret;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100640
Jeremy Kerrccf17e92007-04-23 21:08:29 +0200641 ret = -ENODEV;
642 if (!spu_management_ops)
643 goto out;
644
Arnd Bergmann67207b92005-11-15 15:53:48 -0500645 ret = -ENOMEM;
646 spufs_inode_cache = kmem_cache_create("spufs_inode_cache",
647 sizeof(struct spufs_inode_info), 0,
648 SLAB_HWCACHE_ALIGN, spufs_init_once, NULL);
649
650 if (!spufs_inode_cache)
651 goto out;
Akinobu Mitac99c1992007-04-23 21:08:19 +0200652 ret = spu_sched_init();
Arnd Bergmann67207b92005-11-15 15:53:48 -0500653 if (ret)
654 goto out_cache;
Akinobu Mitac99c1992007-04-23 21:08:19 +0200655 ret = register_filesystem(&spufs_type);
656 if (ret)
657 goto out_sched;
Arnd Bergmann67207b92005-11-15 15:53:48 -0500658 ret = register_spu_syscalls(&spufs_calls);
659 if (ret)
660 goto out_fs;
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100661 ret = register_arch_coredump_calls(&spufs_coredump_calls);
662 if (ret)
Akinobu Mitac99c1992007-04-23 21:08:19 +0200663 goto out_syscalls;
arnd@arndb.de0afacde2006-10-24 18:31:18 +0200664
665 spufs_init_isolated_loader();
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100666
Arnd Bergmann67207b92005-11-15 15:53:48 -0500667 return 0;
Akinobu Mitac99c1992007-04-23 21:08:19 +0200668
669out_syscalls:
670 unregister_spu_syscalls(&spufs_calls);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500671out_fs:
672 unregister_filesystem(&spufs_type);
Akinobu Mitac99c1992007-04-23 21:08:19 +0200673out_sched:
674 spu_sched_exit();
Arnd Bergmann67207b92005-11-15 15:53:48 -0500675out_cache:
676 kmem_cache_destroy(spufs_inode_cache);
677out:
678 return ret;
679}
680module_init(spufs_init);
681
Arnd Bergmanne78b47a2006-03-27 21:27:40 +0200682static void __exit spufs_exit(void)
Arnd Bergmann67207b92005-11-15 15:53:48 -0500683{
Arnd Bergmann8b3d6662005-11-15 15:53:52 -0500684 spu_sched_exit();
Akinobu Mitadb1384b402007-04-23 21:08:20 +0200685 spufs_exit_isolated_loader();
Dwayne Grant McConnellbf1ab972006-11-23 00:46:37 +0100686 unregister_arch_coredump_calls(&spufs_coredump_calls);
Arnd Bergmann67207b92005-11-15 15:53:48 -0500687 unregister_spu_syscalls(&spufs_calls);
688 unregister_filesystem(&spufs_type);
689 kmem_cache_destroy(spufs_inode_cache);
690}
691module_exit(spufs_exit);
692
693MODULE_LICENSE("GPL");
694MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");
695