inode.c 14.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * SPU file system
 *
 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
 *
 * Author: Arnd Bergmann <arndb@de.ibm.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <linux/file.h>
#include <linux/fs.h>
#include <linux/backing-dev.h>
#include <linux/init.h>
#include <linux/ioctl.h>
#include <linux/module.h>
29
#include <linux/mount.h>
30 31 32 33 34 35
#include <linux/namei.h>
#include <linux/pagemap.h>
#include <linux/poll.h>
#include <linux/slab.h>
#include <linux/parser.h>

36
#include <asm/prom.h>
37 38
#include <asm/semaphore.h>
#include <asm/spu.h>
39
#include <asm/spu_priv1.h>
40 41 42 43
#include <asm/uaccess.h>

#include "spufs.h"

44
static struct kmem_cache *spufs_inode_cache;
45
char *isolated_loader;
46 47 48 49 50 51

static struct inode *
spufs_alloc_inode(struct super_block *sb)
{
	struct spufs_inode_info *ei;

52
	ei = kmem_cache_alloc(spufs_inode_cache, GFP_KERNEL);
53 54
	if (!ei)
		return NULL;
55 56 57

	ei->i_gang = NULL;
	ei->i_ctx = NULL;
58
	ei->i_openers = 0;
59

60 61 62 63 64 65 66 67 68 69
	return &ei->vfs_inode;
}

static void
spufs_destroy_inode(struct inode *inode)
{
	kmem_cache_free(spufs_inode_cache, SPUFS_I(inode));
}

static void
70
spufs_init_once(void *p, struct kmem_cache * cachep, unsigned long flags)
71 72 73
{
	struct spufs_inode_info *ei = p;

C
Christoph Lameter 已提交
74
	inode_init_once(&ei->vfs_inode);
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
}

static struct inode *
spufs_new_inode(struct super_block *sb, int mode)
{
	struct inode *inode;

	inode = new_inode(sb);
	if (!inode)
		goto out;

	inode->i_mode = mode;
	inode->i_uid = current->fsuid;
	inode->i_gid = current->fsgid;
	inode->i_blocks = 0;
	inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
out:
	return inode;
}

static int
spufs_setattr(struct dentry *dentry, struct iattr *attr)
{
	struct inode *inode = dentry->d_inode;

	if ((attr->ia_valid & ATTR_SIZE) &&
	    (attr->ia_size != inode->i_size))
		return -EINVAL;
	return inode_setattr(inode, attr);
}


static int
spufs_new_file(struct super_block *sb, struct dentry *dentry,
109
		const struct file_operations *fops, int mode,
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
		struct spu_context *ctx)
{
	static struct inode_operations spufs_file_iops = {
		.setattr = spufs_setattr,
	};
	struct inode *inode;
	int ret;

	ret = -ENOSPC;
	inode = spufs_new_inode(sb, S_IFREG | mode);
	if (!inode)
		goto out;

	ret = 0;
	inode->i_op = &spufs_file_iops;
	inode->i_fop = fops;
126
	inode->i_private = SPUFS_I(inode)->i_ctx = get_spu_context(ctx);
127 128 129 130 131 132 133 134
	d_add(dentry, inode);
out:
	return ret;
}

static void
spufs_delete_inode(struct inode *inode)
{
135 136 137 138 139 140
	struct spufs_inode_info *ei = SPUFS_I(inode);

	if (ei->i_ctx)
		put_spu_context(ei->i_ctx);
	if (ei->i_gang)
		put_spu_gang(ei->i_gang);
141 142 143
	clear_inode(inode);
}

144
static void spufs_prune_dir(struct dentry *dir)
145
{
146
	struct dentry *dentry, *tmp;
147

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 153 154 155
		if (!(d_unhashed(dentry)) && dentry->d_inode) {
			dget_locked(dentry);
			__d_drop(dentry);
			spin_unlock(&dentry->d_lock);
156
			simple_unlink(dir->d_inode, dentry);
157 158 159 160 161 162
			spin_unlock(&dcache_lock);
			dput(dentry);
		} else {
			spin_unlock(&dentry->d_lock);
			spin_unlock(&dcache_lock);
		}
163
	}
164
	shrink_dcache_parent(dir);
165
	mutex_unlock(&dir->d_inode->i_mutex);
166 167
}

168 169
/* Caller must hold parent->i_mutex */
static int spufs_rmdir(struct inode *parent, struct dentry *dir)
170 171
{
	/* remove all entries */
172
	spufs_prune_dir(dir);
173

174
	return simple_rmdir(parent, dir);
175 176
}

177 178 179
static int spufs_fill_dir(struct dentry *dir, struct tree_descr *files,
			  int mode, struct spu_context *ctx)
{
180
	struct dentry *dentry, *tmp;
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
	int ret;

	while (files->name && files->name[0]) {
		ret = -ENOMEM;
		dentry = d_alloc_name(dir, files->name);
		if (!dentry)
			goto out;
		ret = spufs_new_file(dir->d_sb, dentry, files->ops,
					files->mode & mode, ctx);
		if (ret)
			goto out;
		files++;
	}
	return 0;
out:
196 197 198 199 200 201 202 203 204 205 206 207 208 209
	/*
	 * remove all children from dir. dir->inode is not set so don't
	 * just simply use spufs_prune_dir() and panic afterwards :)
	 * dput() looks like it will do the right thing:
	 * - dec parent's ref counter
	 * - remove child from parent's child list
	 * - free child's inode if possible
	 * - free child
	 */
	list_for_each_entry_safe(dentry, tmp, &dir->d_subdirs, d_u.d_child) {
		dput(dentry);
	}

	shrink_dcache_parent(dir);
210 211 212
	return ret;
}

213 214
static int spufs_dir_close(struct inode *inode, struct file *file)
{
215
	struct spu_context *ctx;
216 217
	struct inode *parent;
	struct dentry *dir;
218 219
	int ret;

J
Josef Sipek 已提交
220
	dir = file->f_path.dentry;
221 222
	parent = dir->d_parent->d_inode;
	ctx = SPUFS_I(dir->d_inode)->i_ctx;
223

224 225 226
	mutex_lock(&parent->i_mutex);
	ret = spufs_rmdir(parent, dir);
	mutex_unlock(&parent->i_mutex);
227
	WARN_ON(ret);
228

229 230 231
	/* We have to give up the mm_struct */
	spu_forget(ctx);

232 233 234
	return dcache_dir_close(inode, file);
}

235
const struct inode_operations spufs_dir_inode_operations = {
236 237 238
	.lookup = simple_lookup,
};

239
const struct file_operations spufs_context_fops = {
240 241 242 243 244 245 246
	.open		= dcache_dir_open,
	.release	= spufs_dir_close,
	.llseek		= dcache_dir_lseek,
	.read		= generic_read_dir,
	.readdir	= dcache_readdir,
	.fsync		= simple_sync_file,
};
247
EXPORT_SYMBOL_GPL(spufs_context_fops);
248 249

static int
250 251
spufs_mkdir(struct inode *dir, struct dentry *dentry, unsigned int flags,
		int mode)
252 253 254 255 256 257 258 259 260 261 262 263 264 265
{
	int ret;
	struct inode *inode;
	struct spu_context *ctx;

	ret = -ENOSPC;
	inode = spufs_new_inode(dir->i_sb, mode | S_IFDIR);
	if (!inode)
		goto out;

	if (dir->i_mode & S_ISGID) {
		inode->i_gid = dir->i_gid;
		inode->i_mode &= S_ISGID;
	}
266
	ctx = alloc_spu_context(SPUFS_I(dir)->i_gang); /* XXX gang */
267 268 269 270
	SPUFS_I(inode)->i_ctx = ctx;
	if (!ctx)
		goto out_iput;

271
	ctx->flags = flags;
272 273
	inode->i_op = &spufs_dir_inode_operations;
	inode->i_fop = &simple_dir_operations;
274 275 276 277 278 279
	if (flags & SPU_CREATE_NOSCHED)
		ret = spufs_fill_dir(dentry, spufs_dir_nosched_contents,
					 mode, ctx);
	else
		ret = spufs_fill_dir(dentry, spufs_dir_contents, mode, ctx);

280 281 282 283 284 285
	if (ret)
		goto out_free_ctx;

	d_instantiate(dentry, inode);
	dget(dentry);
	dir->i_nlink++;
286
	dentry->d_inode->i_nlink++;
287 288 289
	goto out;

out_free_ctx:
290
	spu_forget(ctx);
291 292 293 294 295 296 297
	put_spu_context(ctx);
out_iput:
	iput(inode);
out:
	return ret;
}

298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
static int spufs_context_open(struct dentry *dentry, struct vfsmount *mnt)
{
	int ret;
	struct file *filp;

	ret = get_unused_fd();
	if (ret < 0) {
		dput(dentry);
		mntput(mnt);
		goto out;
	}

	filp = dentry_open(dentry, mnt, O_RDONLY);
	if (IS_ERR(filp)) {
		put_unused_fd(ret);
		ret = PTR_ERR(filp);
		goto out;
	}

	filp->f_op = &spufs_context_fops;
	fd_install(ret, filp);
out:
	return ret;
}

323 324 325 326 327 328
static int spufs_create_context(struct inode *inode,
			struct dentry *dentry,
			struct vfsmount *mnt, int flags, int mode)
{
	int ret;

329 330 331 332 333 334 335 336 337 338
	ret = -EPERM;
	if ((flags & SPU_CREATE_NOSCHED) &&
	    !capable(CAP_SYS_NICE))
		goto out_unlock;

	ret = -EINVAL;
	if ((flags & (SPU_CREATE_NOSCHED | SPU_CREATE_ISOLATE))
	    == SPU_CREATE_ISOLATE)
		goto out_unlock;

339 340 341 342
	ret = -ENODEV;
	if ((flags & SPU_CREATE_ISOLATE) && !isolated_loader)
		goto out_unlock;

343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
	ret = spufs_mkdir(inode, dentry, flags, mode & S_IRWXUGO);
	if (ret)
		goto out_unlock;

	/*
	 * get references for dget and mntget, will be released
	 * in error path of *_open().
	 */
	ret = spufs_context_open(dget(dentry), mntget(mnt));
	if (ret < 0) {
		WARN_ON(spufs_rmdir(inode, dentry));
		mutex_unlock(&inode->i_mutex);
		spu_forget(SPUFS_I(dentry->d_inode)->i_ctx);
		goto out;
	}

out_unlock:
	mutex_unlock(&inode->i_mutex);
out:
	dput(dentry);
	return ret;
}

static int
spufs_mkgang(struct inode *dir, struct dentry *dentry, int mode)
{
	int ret;
	struct inode *inode;
	struct spu_gang *gang;

	ret = -ENOSPC;
	inode = spufs_new_inode(dir->i_sb, mode | S_IFDIR);
	if (!inode)
		goto out;

	ret = 0;
	if (dir->i_mode & S_ISGID) {
		inode->i_gid = dir->i_gid;
		inode->i_mode &= S_ISGID;
	}
	gang = alloc_spu_gang();
	SPUFS_I(inode)->i_ctx = NULL;
	SPUFS_I(inode)->i_gang = gang;
	if (!gang)
		goto out_iput;

	inode->i_op = &spufs_dir_inode_operations;
	inode->i_fop = &simple_dir_operations;

	d_instantiate(dentry, inode);
	dir->i_nlink++;
	dentry->d_inode->i_nlink++;
	return ret;

out_iput:
	iput(inode);
out:
	return ret;
}

static int spufs_gang_open(struct dentry *dentry, struct vfsmount *mnt)
{
	int ret;
	struct file *filp;

	ret = get_unused_fd();
	if (ret < 0) {
		dput(dentry);
		mntput(mnt);
		goto out;
	}

	filp = dentry_open(dentry, mnt, O_RDONLY);
	if (IS_ERR(filp)) {
		put_unused_fd(ret);
		ret = PTR_ERR(filp);
		goto out;
	}

422
	filp->f_op = &simple_dir_operations;
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
	fd_install(ret, filp);
out:
	return ret;
}

static int spufs_create_gang(struct inode *inode,
			struct dentry *dentry,
			struct vfsmount *mnt, int mode)
{
	int ret;

	ret = spufs_mkgang(inode, dentry, mode & S_IRWXUGO);
	if (ret)
		goto out;

	/*
	 * get references for dget and mntget, will be released
	 * in error path of *_open().
	 */
	ret = spufs_gang_open(dget(dentry), mntget(mnt));
443 444 445 446
	if (ret < 0) {
		int err = simple_rmdir(inode, dentry);
		WARN_ON(err);
	}
447 448 449 450 451 452 453 454

out:
	mutex_unlock(&inode->i_mutex);
	dput(dentry);
	return ret;
}


455 456
static struct file_system_type spufs_type;

457
long spufs_create(struct nameidata *nd, unsigned int flags, mode_t mode)
458 459 460 461 462
{
	struct dentry *dentry;
	int ret;

	ret = -EINVAL;
463 464
	/* check if we are on spufs */
	if (nd->dentry->d_sb->s_type != &spufs_type)
465 466
		goto out;

467
	/* don't accept undefined flags */
468
	if (flags & (~SPU_CREATE_FLAG_ALL))
469 470
		goto out;

471 472 473 474 475 476 477
	/* only threads can be underneath a gang */
	if (nd->dentry != nd->dentry->d_sb->s_root) {
		if ((flags & SPU_CREATE_GANG) ||
		    !SPUFS_I(nd->dentry->d_inode)->i_gang)
			goto out;
	}

478 479 480 481 482 483 484 485 486 487 488
	dentry = lookup_create(nd, 1);
	ret = PTR_ERR(dentry);
	if (IS_ERR(dentry))
		goto out_dir;

	ret = -EEXIST;
	if (dentry->d_inode)
		goto out_dput;

	mode &= ~current->fs->umask;

489 490 491 492 493 494
	if (flags & SPU_CREATE_GANG)
		return spufs_create_gang(nd->dentry->d_inode,
					dentry, nd->mnt, mode);
	else
		return spufs_create_context(nd->dentry->d_inode,
					dentry, nd->mnt, flags, mode);
495 496 497 498

out_dput:
	dput(dentry);
out_dir:
499
	mutex_unlock(&nd->dentry->d_inode->i_mutex);
500 501 502 503 504 505
out:
	return ret;
}

/* File system initialization */
enum {
506
	Opt_uid, Opt_gid, Opt_mode, Opt_err,
507 508 509
};

static match_table_t spufs_tokens = {
510 511 512 513
	{ Opt_uid,  "uid=%d" },
	{ Opt_gid,  "gid=%d" },
	{ Opt_mode, "mode=%o" },
	{ Opt_err,   NULL  },
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
};

static int
spufs_parse_options(char *options, struct inode *root)
{
	char *p;
	substring_t args[MAX_OPT_ARGS];

	while ((p = strsep(&options, ",")) != NULL) {
		int token, option;

		if (!*p)
			continue;

		token = match_token(p, spufs_tokens, args);
		switch (token) {
		case Opt_uid:
			if (match_int(&args[0], &option))
				return 0;
			root->i_uid = option;
			break;
		case Opt_gid:
			if (match_int(&args[0], &option))
				return 0;
			root->i_gid = option;
			break;
540 541 542 543 544
		case Opt_mode:
			if (match_octal(&args[0], &option))
				return 0;
			root->i_mode = option | S_IFDIR;
			break;
545 546 547 548 549 550 551
		default:
			return 0;
		}
	}
	return 1;
}

552 553 554 555 556
static void spufs_exit_isolated_loader(void)
{
	kfree(isolated_loader);
}

557 558 559 560 561 562 563 564 565 566 567
static void
spufs_init_isolated_loader(void)
{
	struct device_node *dn;
	const char *loader;
	int size;

	dn = of_find_node_by_path("/spu-isolation");
	if (!dn)
		return;

568
	loader = of_get_property(dn, "loader", &size);
569 570 571 572 573 574 575 576 577 578 579 580
	if (!loader)
		return;

	/* kmalloc should align on a 16 byte boundary..* */
	isolated_loader = kmalloc(size, GFP_KERNEL);
	if (!isolated_loader)
		return;

	memcpy(isolated_loader, loader, size);
	printk(KERN_INFO "spufs: SPU isolation mode enabled\n");
}

581
static int
582 583
spufs_create_root(struct super_block *sb, void *data)
{
584 585 586
	struct inode *inode;
	int ret;

587 588 589 590
	ret = -ENODEV;
	if (!spu_management_ops)
		goto out;

591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635
	ret = -ENOMEM;
	inode = spufs_new_inode(sb, S_IFDIR | 0775);
	if (!inode)
		goto out;

	inode->i_op = &spufs_dir_inode_operations;
	inode->i_fop = &simple_dir_operations;
	SPUFS_I(inode)->i_ctx = NULL;

	ret = -EINVAL;
	if (!spufs_parse_options(data, inode))
		goto out_iput;

	ret = -ENOMEM;
	sb->s_root = d_alloc_root(inode);
	if (!sb->s_root)
		goto out_iput;

	return 0;
out_iput:
	iput(inode);
out:
	return ret;
}

static int
spufs_fill_super(struct super_block *sb, void *data, int silent)
{
	static struct super_operations s_ops = {
		.alloc_inode = spufs_alloc_inode,
		.destroy_inode = spufs_destroy_inode,
		.statfs = simple_statfs,
		.delete_inode = spufs_delete_inode,
		.drop_inode = generic_delete_inode,
	};

	sb->s_maxbytes = MAX_LFS_FILESIZE;
	sb->s_blocksize = PAGE_CACHE_SIZE;
	sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
	sb->s_magic = SPUFS_MAGIC;
	sb->s_op = &s_ops;

	return spufs_create_root(sb, data);
}

636
static int
637
spufs_get_sb(struct file_system_type *fstype, int flags,
638
		const char *name, void *data, struct vfsmount *mnt)
639
{
640
	return get_sb_single(fstype, flags, data, spufs_fill_super, mnt);
641 642 643 644 645 646 647 648 649
}

static struct file_system_type spufs_type = {
	.owner = THIS_MODULE,
	.name = "spufs",
	.get_sb = spufs_get_sb,
	.kill_sb = kill_litter_super,
};

650
static int __init spufs_init(void)
651 652
{
	int ret;
653

654 655 656 657
	ret = -ENODEV;
	if (!spu_management_ops)
		goto out;

658 659 660 661 662 663 664
	ret = -ENOMEM;
	spufs_inode_cache = kmem_cache_create("spufs_inode_cache",
			sizeof(struct spufs_inode_info), 0,
			SLAB_HWCACHE_ALIGN, spufs_init_once, NULL);

	if (!spufs_inode_cache)
		goto out;
665
	ret = spu_sched_init();
666 667
	if (ret)
		goto out_cache;
668 669 670
	ret = register_filesystem(&spufs_type);
	if (ret)
		goto out_sched;
671
	ret = register_spu_syscalls(&spufs_calls);
672 673 674
	if (ret)
		goto out_fs;
	ret = register_arch_coredump_calls(&spufs_coredump_calls);
675
	if (ret)
676
		goto out_syscalls;
677 678

	spufs_init_isolated_loader();
679

680
	return 0;
681 682 683

out_syscalls:
	unregister_spu_syscalls(&spufs_calls);
684 685
out_fs:
	unregister_filesystem(&spufs_type);
686 687
out_sched:
	spu_sched_exit();
688 689 690 691 692 693 694
out_cache:
	kmem_cache_destroy(spufs_inode_cache);
out:
	return ret;
}
module_init(spufs_init);

695
static void __exit spufs_exit(void)
696
{
697
	spu_sched_exit();
698
	spufs_exit_isolated_loader();
699
	unregister_arch_coredump_calls(&spufs_coredump_calls);
700 701 702 703 704 705 706 707 708
	unregister_spu_syscalls(&spufs_calls);
	unregister_filesystem(&spufs_type);
	kmem_cache_destroy(spufs_inode_cache);
}
module_exit(spufs_exit);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");