]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/powerpc/platforms/cell/spufs/inode.c
UBUNTU: Ubuntu-5.4.0-117.132
[mirror_ubuntu-focal-kernel.git] / arch / powerpc / platforms / cell / spufs / inode.c
CommitLineData
de6cc651 1// SPDX-License-Identifier: GPL-2.0-or-later
4ac91378 2
67207b96
AB
3/*
4 * SPU file system
5 *
6 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
7 *
8 * Author: Arnd Bergmann <arndb@de.ibm.com>
67207b96
AB
9 */
10
11#include <linux/file.h>
12#include <linux/fs.h>
d2e0981c
DH
13#include <linux/fs_context.h>
14#include <linux/fs_parser.h>
826be063 15#include <linux/fsnotify.h>
67207b96
AB
16#include <linux/backing-dev.h>
17#include <linux/init.h>
18#include <linux/ioctl.h>
19#include <linux/module.h>
346f4d3c 20#include <linux/mount.h>
67207b96
AB
21#include <linux/namei.h>
22#include <linux/pagemap.h>
23#include <linux/poll.h>
24#include <linux/slab.h>
67207b96 25
0afacde3 26#include <asm/prom.h>
67207b96 27#include <asm/spu.h>
ccf17e9d 28#include <asm/spu_priv1.h>
7c0f6ba6 29#include <linux/uaccess.h>
67207b96
AB
30
31#include "spufs.h"
32
2c3e4787 33struct spufs_sb_info {
d2e0981c 34 bool debug;
2c3e4787
JK
35};
36
e18b890b 37static struct kmem_cache *spufs_inode_cache;
c6730ed4 38char *isolated_loader;
8b0d3121 39static int isolated_loader_size;
67207b96 40
2c3e4787
JK
41static struct spufs_sb_info *spufs_get_sb_info(struct super_block *sb)
42{
43 return sb->s_fs_info;
44}
45
67207b96
AB
46static struct inode *
47spufs_alloc_inode(struct super_block *sb)
48{
49 struct spufs_inode_info *ei;
50
e94b1766 51 ei = kmem_cache_alloc(spufs_inode_cache, GFP_KERNEL);
67207b96
AB
52 if (!ei)
53 return NULL;
6263203e
AB
54
55 ei->i_gang = NULL;
56 ei->i_ctx = NULL;
43c2bbd9 57 ei->i_openers = 0;
6263203e 58
67207b96
AB
59 return &ei->vfs_inode;
60}
61
6d0e0d0b 62static void spufs_free_inode(struct inode *inode)
67207b96
AB
63{
64 kmem_cache_free(spufs_inode_cache, SPUFS_I(inode));
65}
66
67static void
51cc5068 68spufs_init_once(void *p)
67207b96
AB
69{
70 struct spufs_inode_info *ei = p;
71
a35afb83 72 inode_init_once(&ei->vfs_inode);
67207b96
AB
73}
74
75static struct inode *
c6684b26 76spufs_new_inode(struct super_block *sb, umode_t mode)
67207b96
AB
77{
78 struct inode *inode;
79
80 inode = new_inode(sb);
81 if (!inode)
82 goto out;
83
6747e832 84 inode->i_ino = get_next_ino();
67207b96 85 inode->i_mode = mode;
1330deb0
DH
86 inode->i_uid = current_fsuid();
87 inode->i_gid = current_fsgid();
078cd827 88 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
67207b96
AB
89out:
90 return inode;
91}
92
93static int
94spufs_setattr(struct dentry *dentry, struct iattr *attr)
95{
75c3cfa8 96 struct inode *inode = d_inode(dentry);
67207b96 97
67207b96
AB
98 if ((attr->ia_valid & ATTR_SIZE) &&
99 (attr->ia_size != inode->i_size))
100 return -EINVAL;
1025774c
CH
101 setattr_copy(inode, attr);
102 mark_inode_dirty(inode);
103 return 0;
67207b96
AB
104}
105
106
107static int
108spufs_new_file(struct super_block *sb, struct dentry *dentry,
c6684b26 109 const struct file_operations *fops, umode_t mode,
23d893f5 110 size_t size, struct spu_context *ctx)
67207b96 111{
6e1d5dcc 112 static const struct inode_operations spufs_file_iops = {
67207b96 113 .setattr = spufs_setattr,
67207b96
AB
114 };
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;
23d893f5 126 inode->i_size = size;
8e18e294 127 inode->i_private = SPUFS_I(inode)->i_ctx = get_spu_context(ctx);
67207b96
AB
128 d_add(dentry, inode);
129out:
130 return ret;
131}
132
133static void
0f3f63a4 134spufs_evict_inode(struct inode *inode)
67207b96 135{
6263203e 136 struct spufs_inode_info *ei = SPUFS_I(inode);
dbd5768f 137 clear_inode(inode);
6263203e
AB
138 if (ei->i_ctx)
139 put_spu_context(ei->i_ctx);
140 if (ei->i_gang)
141 put_spu_gang(ei->i_gang);
67207b96
AB
142}
143
3f51dd91 144static void spufs_prune_dir(struct dentry *dir)
67207b96 145{
8b3d6663 146 struct dentry *dentry, *tmp;
6263203e 147
5955102c 148 inode_lock(d_inode(dir));
946e51f2 149 list_for_each_entry_safe(dentry, tmp, &dir->d_subdirs, d_child) {
67207b96 150 spin_lock(&dentry->d_lock);
dc3f4198 151 if (simple_positive(dentry)) {
dc0474be 152 dget_dlock(dentry);
8b3d6663
AB
153 __d_drop(dentry);
154 spin_unlock(&dentry->d_lock);
75c3cfa8 155 simple_unlink(d_inode(dir), dentry);
b5c84bf6 156 /* XXX: what was dcache_lock protecting here? Other
da502956
NP
157 * filesystems (IB, configfs) release dcache_lock
158 * before unlink */
8b3d6663
AB
159 dput(dentry);
160 } else {
161 spin_unlock(&dentry->d_lock);
8b3d6663 162 }
67207b96 163 }
3f51dd91 164 shrink_dcache_parent(dir);
5955102c 165 inode_unlock(d_inode(dir));
3f51dd91
AB
166}
167
6263203e
AB
168/* Caller must hold parent->i_mutex */
169static int spufs_rmdir(struct inode *parent, struct dentry *dir)
3f51dd91 170{
3f51dd91 171 /* remove all entries */
67cba9fd 172 int res;
6263203e 173 spufs_prune_dir(dir);
c443acab 174 d_drop(dir);
67cba9fd
AV
175 res = simple_rmdir(parent, dir);
176 /* We have to give up the mm_struct */
75c3cfa8 177 spu_forget(SPUFS_I(d_inode(dir))->i_ctx);
67cba9fd 178 return res;
67207b96
AB
179}
180
74254647 181static int spufs_fill_dir(struct dentry *dir,
c6684b26 182 const struct spufs_tree_descr *files, umode_t mode,
74254647 183 struct spu_context *ctx)
3f51dd91 184{
3f51dd91 185 while (files->name && files->name[0]) {
2248b87e
AV
186 int ret;
187 struct dentry *dentry = d_alloc_name(dir, files->name);
3f51dd91 188 if (!dentry)
2248b87e 189 return -ENOMEM;
3f51dd91 190 ret = spufs_new_file(dir->d_sb, dentry, files->ops,
23d893f5 191 files->mode & mode, files->size, ctx);
3f51dd91 192 if (ret)
2248b87e 193 return ret;
3f51dd91
AB
194 files++;
195 }
196 return 0;
3f51dd91
AB
197}
198
67207b96
AB
199static int spufs_dir_close(struct inode *inode, struct file *file)
200{
0309f02d 201 struct spu_context *ctx;
6263203e
AB
202 struct inode *parent;
203 struct dentry *dir;
67207b96
AB
204 int ret;
205
b4d1ab58 206 dir = file->f_path.dentry;
75c3cfa8
DH
207 parent = d_inode(dir->d_parent);
208 ctx = SPUFS_I(d_inode(dir))->i_ctx;
c8ca0633 209
5955102c 210 inode_lock_nested(parent, I_MUTEX_PARENT);
6263203e 211 ret = spufs_rmdir(parent, dir);
5955102c 212 inode_unlock(parent);
67207b96 213 WARN_ON(ret);
c8ca0633 214
67207b96
AB
215 return dcache_dir_close(inode, file);
216}
217
5dfe4c96 218const struct file_operations spufs_context_fops = {
67207b96
AB
219 .open = dcache_dir_open,
220 .release = spufs_dir_close,
221 .llseek = dcache_dir_lseek,
222 .read = generic_read_dir,
4e82901c 223 .iterate_shared = dcache_readdir,
1b061d92 224 .fsync = noop_fsync,
67207b96 225};
bf1ab978 226EXPORT_SYMBOL_GPL(spufs_context_fops);
67207b96
AB
227
228static int
9add11da 229spufs_mkdir(struct inode *dir, struct dentry *dentry, unsigned int flags,
c6684b26 230 umode_t mode)
67207b96
AB
231{
232 int ret;
233 struct inode *inode;
234 struct spu_context *ctx;
235
67207b96
AB
236 inode = spufs_new_inode(dir->i_sb, mode | S_IFDIR);
237 if (!inode)
2248b87e 238 return -ENOSPC;
67207b96
AB
239
240 if (dir->i_mode & S_ISGID) {
241 inode->i_gid = dir->i_gid;
242 inode->i_mode &= S_ISGID;
243 }
6263203e 244 ctx = alloc_spu_context(SPUFS_I(dir)->i_gang); /* XXX gang */
67207b96 245 SPUFS_I(inode)->i_ctx = ctx;
2248b87e
AV
246 if (!ctx) {
247 iput(inode);
248 return -ENOSPC;
249 }
67207b96 250
9add11da 251 ctx->flags = flags;
b8c295f9 252 inode->i_op = &simple_dir_inode_operations;
67207b96 253 inode->i_fop = &simple_dir_operations;
2248b87e 254
5955102c 255 inode_lock(inode);
2248b87e
AV
256
257 dget(dentry);
258 inc_nlink(dir);
259 inc_nlink(inode);
260
261 d_instantiate(dentry, inode);
262
5737edd1
MN
263 if (flags & SPU_CREATE_NOSCHED)
264 ret = spufs_fill_dir(dentry, spufs_dir_nosched_contents,
265 mode, ctx);
266 else
267 ret = spufs_fill_dir(dentry, spufs_dir_contents, mode, ctx);
268
2248b87e 269 if (!ret && spufs_get_sb_info(dir->i_sb)->debug)
2c3e4787
JK
270 ret = spufs_fill_dir(dentry, spufs_dir_debug_contents,
271 mode, ctx);
272
273 if (ret)
2248b87e
AV
274 spufs_rmdir(dir, dentry);
275
5955102c 276 inode_unlock(inode);
2c3e4787 277
67207b96
AB
278 return ret;
279}
280
765927b2 281static int spufs_context_open(struct path *path)
346f4d3c
AB
282{
283 int ret;
284 struct file *filp;
285
6b9cdf39 286 ret = get_unused_fd_flags(0);
bf349a44
AV
287 if (ret < 0)
288 return ret;
346f4d3c 289
765927b2 290 filp = dentry_open(path, O_RDONLY, current_cred());
346f4d3c
AB
291 if (IS_ERR(filp)) {
292 put_unused_fd(ret);
bf349a44 293 return PTR_ERR(filp);
346f4d3c
AB
294 }
295
296 filp->f_op = &spufs_context_fops;
297 fd_install(ret, filp);
346f4d3c
AB
298 return ret;
299}
300
8e68e2f2
AB
301static struct spu_context *
302spufs_assert_affinity(unsigned int flags, struct spu_gang *gang,
303 struct file *filp)
304{
58119068 305 struct spu_context *tmp, *neighbor, *err;
8e68e2f2
AB
306 int count, node;
307 int aff_supp;
308
309 aff_supp = !list_empty(&(list_entry(cbe_spu_info[0].spus.next,
310 struct spu, cbe_list))->aff_list);
311
312 if (!aff_supp)
313 return ERR_PTR(-EINVAL);
314
315 if (flags & SPU_CREATE_GANG)
316 return ERR_PTR(-EINVAL);
317
318 if (flags & SPU_CREATE_AFFINITY_MEM &&
319 gang->aff_ref_ctx &&
320 gang->aff_ref_ctx->flags & SPU_CREATE_AFFINITY_MEM)
321 return ERR_PTR(-EEXIST);
322
323 if (gang->aff_flags & AFF_MERGED)
324 return ERR_PTR(-EBUSY);
325
326 neighbor = NULL;
327 if (flags & SPU_CREATE_AFFINITY_SPU) {
328 if (!filp || filp->f_op != &spufs_context_fops)
329 return ERR_PTR(-EINVAL);
330
331 neighbor = get_spu_context(
496ad9aa 332 SPUFS_I(file_inode(filp))->i_ctx);
8e68e2f2
AB
333
334 if (!list_empty(&neighbor->aff_list) && !(neighbor->aff_head) &&
335 !list_is_last(&neighbor->aff_list, &gang->aff_list_head) &&
336 !list_entry(neighbor->aff_list.next, struct spu_context,
58119068
AD
337 aff_list)->aff_head) {
338 err = ERR_PTR(-EEXIST);
339 goto out_put_neighbor;
340 }
8e68e2f2 341
58119068
AD
342 if (gang != neighbor->gang) {
343 err = ERR_PTR(-EINVAL);
344 goto out_put_neighbor;
345 }
8e68e2f2
AB
346
347 count = 1;
348 list_for_each_entry(tmp, &gang->aff_list_head, aff_list)
349 count++;
350 if (list_empty(&neighbor->aff_list))
351 count++;
352
353 for (node = 0; node < MAX_NUMNODES; node++) {
354 if ((cbe_spu_info[node].n_spus - atomic_read(
355 &cbe_spu_info[node].reserved_spus)) >= count)
356 break;
357 }
358
58119068
AD
359 if (node == MAX_NUMNODES) {
360 err = ERR_PTR(-EEXIST);
361 goto out_put_neighbor;
362 }
8e68e2f2
AB
363 }
364
365 return neighbor;
58119068
AD
366
367out_put_neighbor:
368 put_spu_context(neighbor);
369 return err;
8e68e2f2
AB
370}
371
372static void
373spufs_set_affinity(unsigned int flags, struct spu_context *ctx,
374 struct spu_context *neighbor)
375{
376 if (flags & SPU_CREATE_AFFINITY_MEM)
377 ctx->gang->aff_ref_ctx = ctx;
378
379 if (flags & SPU_CREATE_AFFINITY_SPU) {
380 if (list_empty(&neighbor->aff_list)) {
381 list_add_tail(&neighbor->aff_list,
382 &ctx->gang->aff_list_head);
383 neighbor->aff_head = 1;
384 }
385
386 if (list_is_last(&neighbor->aff_list, &ctx->gang->aff_list_head)
387 || list_entry(neighbor->aff_list.next, struct spu_context,
388 aff_list)->aff_head) {
389 list_add(&ctx->aff_list, &neighbor->aff_list);
390 } else {
391 list_add_tail(&ctx->aff_list, &neighbor->aff_list);
392 if (neighbor->aff_head) {
393 neighbor->aff_head = 0;
394 ctx->aff_head = 1;
395 }
396 }
397
398 if (!ctx->gang->aff_ref_ctx)
399 ctx->gang->aff_ref_ctx = ctx;
400 }
401}
402
403static int
404spufs_create_context(struct inode *inode, struct dentry *dentry,
c6684b26 405 struct vfsmount *mnt, int flags, umode_t mode,
8e68e2f2 406 struct file *aff_filp)
6263203e
AB
407{
408 int ret;
8e68e2f2
AB
409 int affinity;
410 struct spu_gang *gang;
411 struct spu_context *neighbor;
765927b2 412 struct path path = {.mnt = mnt, .dentry = dentry};
6263203e 413
5737edd1
MN
414 if ((flags & SPU_CREATE_NOSCHED) &&
415 !capable(CAP_SYS_NICE))
1ba44cc9 416 return -EPERM;
5737edd1 417
5737edd1
MN
418 if ((flags & (SPU_CREATE_NOSCHED | SPU_CREATE_ISOLATE))
419 == SPU_CREATE_ISOLATE)
1ba44cc9 420 return -EINVAL;
5737edd1 421
bd2e5f82 422 if ((flags & SPU_CREATE_ISOLATE) && !isolated_loader)
1ba44cc9 423 return -ENODEV;
bd2e5f82 424
8e68e2f2
AB
425 gang = NULL;
426 neighbor = NULL;
427 affinity = flags & (SPU_CREATE_AFFINITY_MEM | SPU_CREATE_AFFINITY_SPU);
428 if (affinity) {
429 gang = SPUFS_I(inode)->i_gang;
8e68e2f2 430 if (!gang)
1ba44cc9 431 return -EINVAL;
8e68e2f2
AB
432 mutex_lock(&gang->aff_mutex);
433 neighbor = spufs_assert_affinity(flags, gang, aff_filp);
434 if (IS_ERR(neighbor)) {
435 ret = PTR_ERR(neighbor);
436 goto out_aff_unlock;
437 }
438 }
439
57ad583f 440 ret = spufs_mkdir(inode, dentry, flags, mode & 0777);
6263203e 441 if (ret)
8e68e2f2
AB
442 goto out_aff_unlock;
443
58119068 444 if (affinity) {
75c3cfa8 445 spufs_set_affinity(flags, SPUFS_I(d_inode(dentry))->i_ctx,
8e68e2f2 446 neighbor);
58119068
AD
447 if (neighbor)
448 put_spu_context(neighbor);
449 }
6263203e 450
765927b2 451 ret = spufs_context_open(&path);
66ec7b2c 452 if (ret < 0)
6263203e 453 WARN_ON(spufs_rmdir(inode, dentry));
6263203e 454
8e68e2f2
AB
455out_aff_unlock:
456 if (affinity)
457 mutex_unlock(&gang->aff_mutex);
6263203e
AB
458 return ret;
459}
460
6263203e 461static int
c6684b26 462spufs_mkgang(struct inode *dir, struct dentry *dentry, umode_t mode)
6263203e
AB
463{
464 int ret;
465 struct inode *inode;
466 struct spu_gang *gang;
467
468 ret = -ENOSPC;
469 inode = spufs_new_inode(dir->i_sb, mode | S_IFDIR);
470 if (!inode)
471 goto out;
472
473 ret = 0;
474 if (dir->i_mode & S_ISGID) {
475 inode->i_gid = dir->i_gid;
476 inode->i_mode &= S_ISGID;
477 }
478 gang = alloc_spu_gang();
479 SPUFS_I(inode)->i_ctx = NULL;
480 SPUFS_I(inode)->i_gang = gang;
54a94fcf
DC
481 if (!gang) {
482 ret = -ENOMEM;
6263203e 483 goto out_iput;
54a94fcf 484 }
6263203e 485
b8c295f9 486 inode->i_op = &simple_dir_inode_operations;
6263203e
AB
487 inode->i_fop = &simple_dir_operations;
488
489 d_instantiate(dentry, inode);
ba0b996d 490 inc_nlink(dir);
75c3cfa8 491 inc_nlink(d_inode(dentry));
6263203e
AB
492 return ret;
493
494out_iput:
495 iput(inode);
496out:
497 return ret;
498}
499
765927b2 500static int spufs_gang_open(struct path *path)
6263203e
AB
501{
502 int ret;
503 struct file *filp;
504
6b9cdf39 505 ret = get_unused_fd_flags(0);
bf349a44
AV
506 if (ret < 0)
507 return ret;
6263203e 508
bf349a44
AV
509 /*
510 * get references for dget and mntget, will be released
511 * in error path of *_open().
512 */
765927b2 513 filp = dentry_open(path, O_RDONLY, current_cred());
6263203e
AB
514 if (IS_ERR(filp)) {
515 put_unused_fd(ret);
bf349a44 516 return PTR_ERR(filp);
6263203e
AB
517 }
518
877907d3 519 filp->f_op = &simple_dir_operations;
6263203e 520 fd_install(ret, filp);
6263203e
AB
521 return ret;
522}
523
524static int spufs_create_gang(struct inode *inode,
525 struct dentry *dentry,
c6684b26 526 struct vfsmount *mnt, umode_t mode)
6263203e 527{
765927b2 528 struct path path = {.mnt = mnt, .dentry = dentry};
6263203e
AB
529 int ret;
530
57ad583f 531 ret = spufs_mkgang(inode, dentry, mode & 0777);
1ba44cc9
AV
532 if (!ret) {
533 ret = spufs_gang_open(&path);
534 if (ret < 0) {
535 int err = simple_rmdir(inode, dentry);
536 WARN_ON(err);
537 }
877907d3 538 }
6263203e
AB
539 return ret;
540}
541
542
346f4d3c
AB
543static struct file_system_type spufs_type;
544
1ba10681 545long spufs_create(struct path *path, struct dentry *dentry,
c6684b26 546 unsigned int flags, umode_t mode, struct file *filp)
67207b96 547{
75c3cfa8 548 struct inode *dir = d_inode(path->dentry);
67207b96
AB
549 int ret;
550
6263203e 551 /* check if we are on spufs */
1ba10681 552 if (path->dentry->d_sb->s_type != &spufs_type)
25b2692a 553 return -EINVAL;
67207b96 554
6263203e 555 /* don't accept undefined flags */
9add11da 556 if (flags & (~SPU_CREATE_FLAG_ALL))
25b2692a 557 return -EINVAL;
c9832948 558
6263203e 559 /* only threads can be underneath a gang */
25b2692a
AV
560 if (path->dentry != path->dentry->d_sb->s_root)
561 if ((flags & SPU_CREATE_GANG) || !SPUFS_I(dir)->i_gang)
562 return -EINVAL;
6263203e 563
ce3b0f8d 564 mode &= ~current_umask();
67207b96 565
6263203e 566 if (flags & SPU_CREATE_GANG)
25b2692a 567 ret = spufs_create_gang(dir, dentry, path->mnt, mode);
6263203e 568 else
25b2692a 569 ret = spufs_create_context(dir, dentry, path->mnt, flags, mode,
4ac91378 570 filp);
826be063 571 if (ret >= 0)
25b2692a 572 fsnotify_mkdir(dir, dentry);
67207b96 573
67207b96
AB
574 return ret;
575}
576
577/* File system initialization */
d2e0981c
DH
578struct spufs_fs_context {
579 kuid_t uid;
580 kgid_t gid;
581 umode_t mode;
582};
583
67207b96 584enum {
d2e0981c
DH
585 Opt_uid, Opt_gid, Opt_mode, Opt_debug,
586};
587
588static const struct fs_parameter_spec spufs_param_specs[] = {
589 fsparam_u32 ("gid", Opt_gid),
590 fsparam_u32oct ("mode", Opt_mode),
591 fsparam_u32 ("uid", Opt_uid),
592 fsparam_flag ("debug", Opt_debug),
593 {}
67207b96
AB
594};
595
d2e0981c
DH
596static const struct fs_parameter_description spufs_fs_parameters = {
597 .name = "spufs",
598 .specs = spufs_param_specs,
67207b96
AB
599};
600
a66ca414
DH
601static int spufs_show_options(struct seq_file *m, struct dentry *root)
602{
603 struct spufs_sb_info *sbi = spufs_get_sb_info(root->d_sb);
604 struct inode *inode = root->d_inode;
605
606 if (!uid_eq(inode->i_uid, GLOBAL_ROOT_UID))
607 seq_printf(m, ",uid=%u",
608 from_kuid_munged(&init_user_ns, inode->i_uid));
609 if (!gid_eq(inode->i_gid, GLOBAL_ROOT_GID))
610 seq_printf(m, ",gid=%u",
611 from_kgid_munged(&init_user_ns, inode->i_gid));
612 if ((inode->i_mode & S_IALLUGO) != 0775)
613 seq_printf(m, ",mode=%o", inode->i_mode);
614 if (sbi->debug)
615 seq_puts(m, ",debug");
616 return 0;
617}
618
d2e0981c 619static int spufs_parse_param(struct fs_context *fc, struct fs_parameter *param)
67207b96 620{
d2e0981c
DH
621 struct spufs_fs_context *ctx = fc->fs_private;
622 struct spufs_sb_info *sbi = fc->s_fs_info;
623 struct fs_parse_result result;
624 kuid_t uid;
625 kgid_t gid;
626 int opt;
627
628 opt = fs_parse(fc, &spufs_fs_parameters, param, &result);
629 if (opt < 0)
630 return opt;
631
632 switch (opt) {
633 case Opt_uid:
634 uid = make_kuid(current_user_ns(), result.uint_32);
635 if (!uid_valid(uid))
636 return invalf(fc, "Unknown uid");
637 ctx->uid = uid;
638 break;
639 case Opt_gid:
640 gid = make_kgid(current_user_ns(), result.uint_32);
641 if (!gid_valid(gid))
642 return invalf(fc, "Unknown gid");
643 ctx->gid = gid;
644 break;
645 case Opt_mode:
646 ctx->mode = result.uint_32 & S_IALLUGO;
647 break;
648 case Opt_debug:
649 sbi->debug = true;
650 break;
67207b96 651 }
d2e0981c
DH
652
653 return 0;
67207b96
AB
654}
655
db1384b4
AM
656static void spufs_exit_isolated_loader(void)
657{
8b0d3121
SS
658 free_pages((unsigned long) isolated_loader,
659 get_order(isolated_loader_size));
db1384b4
AM
660}
661
0afacde3
AB
662static void
663spufs_init_isolated_loader(void)
664{
665 struct device_node *dn;
666 const char *loader;
667 int size;
668
669 dn = of_find_node_by_path("/spu-isolation");
670 if (!dn)
671 return;
672
e2eb6392 673 loader = of_get_property(dn, "loader", &size);
0afacde3
AB
674 if (!loader)
675 return;
676
8b0d3121
SS
677 /* the loader must be align on a 16 byte boundary */
678 isolated_loader = (char *)__get_free_pages(GFP_KERNEL, get_order(size));
0afacde3
AB
679 if (!isolated_loader)
680 return;
681
8b0d3121 682 isolated_loader_size = size;
0afacde3
AB
683 memcpy(isolated_loader, loader, size);
684 printk(KERN_INFO "spufs: SPU isolation mode enabled\n");
685}
686
d2e0981c 687static int spufs_create_root(struct super_block *sb, struct fs_context *fc)
8b3d6663 688{
d2e0981c 689 struct spufs_fs_context *ctx = fc->fs_private;
67207b96 690 struct inode *inode;
67207b96 691
8f18a158 692 if (!spu_management_ops)
d2e0981c 693 return -ENODEV;
8f18a158 694
d2e0981c 695 inode = spufs_new_inode(sb, S_IFDIR | ctx->mode);
67207b96 696 if (!inode)
d2e0981c 697 return -ENOMEM;
67207b96 698
d2e0981c
DH
699 inode->i_uid = ctx->uid;
700 inode->i_gid = ctx->gid;
b8c295f9 701 inode->i_op = &simple_dir_inode_operations;
67207b96
AB
702 inode->i_fop = &simple_dir_operations;
703 SPUFS_I(inode)->i_ctx = NULL;
e2ed6e4d 704 inc_nlink(inode);
67207b96 705
48fde701 706 sb->s_root = d_make_root(inode);
67207b96 707 if (!sb->s_root)
d2e0981c 708 return -ENOMEM;
67207b96 709 return 0;
67207b96
AB
710}
711
d2e0981c
DH
712static const struct super_operations spufs_ops = {
713 .alloc_inode = spufs_alloc_inode,
714 .free_inode = spufs_free_inode,
715 .statfs = simple_statfs,
716 .evict_inode = spufs_evict_inode,
717 .show_options = spufs_show_options,
718};
2c3e4787 719
d2e0981c
DH
720static int spufs_fill_super(struct super_block *sb, struct fs_context *fc)
721{
67207b96 722 sb->s_maxbytes = MAX_LFS_FILESIZE;
09cbfeaf
KS
723 sb->s_blocksize = PAGE_SIZE;
724 sb->s_blocksize_bits = PAGE_SHIFT;
67207b96 725 sb->s_magic = SPUFS_MAGIC;
d2e0981c
DH
726 sb->s_op = &spufs_ops;
727
728 return spufs_create_root(sb, fc);
729}
730
731static int spufs_get_tree(struct fs_context *fc)
732{
733 return get_tree_single(fc, spufs_fill_super);
734}
67207b96 735
d2e0981c
DH
736static void spufs_free_fc(struct fs_context *fc)
737{
738 kfree(fc->s_fs_info);
67207b96
AB
739}
740
d2e0981c
DH
741static const struct fs_context_operations spufs_context_ops = {
742 .free = spufs_free_fc,
743 .parse_param = spufs_parse_param,
744 .get_tree = spufs_get_tree,
745};
746
747static int spufs_init_fs_context(struct fs_context *fc)
67207b96 748{
d2e0981c
DH
749 struct spufs_fs_context *ctx;
750 struct spufs_sb_info *sbi;
751
752 ctx = kzalloc(sizeof(struct spufs_fs_context), GFP_KERNEL);
753 if (!ctx)
754 goto nomem;
755
756 sbi = kzalloc(sizeof(struct spufs_sb_info), GFP_KERNEL);
757 if (!sbi)
758 goto nomem_ctx;
759
760 ctx->uid = current_uid();
761 ctx->gid = current_gid();
762 ctx->mode = 0755;
763
2272905a 764 fc->fs_private = ctx;
d2e0981c
DH
765 fc->s_fs_info = sbi;
766 fc->ops = &spufs_context_ops;
767 return 0;
768
769nomem_ctx:
770 kfree(ctx);
771nomem:
772 return -ENOMEM;
67207b96
AB
773}
774
775static struct file_system_type spufs_type = {
776 .owner = THIS_MODULE,
777 .name = "spufs",
d2e0981c
DH
778 .init_fs_context = spufs_init_fs_context,
779 .parameters = &spufs_fs_parameters,
67207b96
AB
780 .kill_sb = kill_litter_super,
781};
7f78e035 782MODULE_ALIAS_FS("spufs");
67207b96 783
e78b47a5 784static int __init spufs_init(void)
67207b96
AB
785{
786 int ret;
bf1ab978 787
ccf17e9d
JK
788 ret = -ENODEV;
789 if (!spu_management_ops)
790 goto out;
791
67207b96
AB
792 ret = -ENOMEM;
793 spufs_inode_cache = kmem_cache_create("spufs_inode_cache",
794 sizeof(struct spufs_inode_info), 0,
5d097056 795 SLAB_HWCACHE_ALIGN|SLAB_ACCOUNT, spufs_init_once);
67207b96
AB
796
797 if (!spufs_inode_cache)
798 goto out;
c99c1994 799 ret = spu_sched_init();
67207b96
AB
800 if (ret)
801 goto out_cache;
640045a1 802 ret = register_spu_syscalls(&spufs_calls);
c99c1994
AM
803 if (ret)
804 goto out_sched;
640045a1 805 ret = register_filesystem(&spufs_type);
bf1ab978 806 if (ret)
640045a1 807 goto out_syscalls;
0afacde3
AB
808
809 spufs_init_isolated_loader();
bf1ab978 810
67207b96 811 return 0;
c99c1994 812
640045a1
AV
813out_syscalls:
814 unregister_spu_syscalls(&spufs_calls);
c99c1994
AM
815out_sched:
816 spu_sched_exit();
67207b96
AB
817out_cache:
818 kmem_cache_destroy(spufs_inode_cache);
819out:
820 return ret;
821}
822module_init(spufs_init);
823
e78b47a5 824static void __exit spufs_exit(void)
67207b96 825{
8b3d6663 826 spu_sched_exit();
db1384b4 827 spufs_exit_isolated_loader();
67207b96
AB
828 unregister_spu_syscalls(&spufs_calls);
829 unregister_filesystem(&spufs_type);
830 kmem_cache_destroy(spufs_inode_cache);
831}
832module_exit(spufs_exit);
833
834MODULE_LICENSE("GPL");
835MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");
836