hostfs_kern.c 20.8 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
J
Jeff Dike 已提交
2
 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
L
Linus Torvalds 已提交
3 4 5 6 7 8 9
 * Licensed under the GPL
 *
 * Ported the filesystem routines to 2.5.
 * 2003-02-10 Petr Baudis <pasky@ucw.cz>
 */

#include <linux/fs.h>
10
#include <linux/magic.h>
L
Linus Torvalds 已提交
11
#include <linux/module.h>
J
Jeff Dike 已提交
12
#include <linux/mm.h>
L
Linus Torvalds 已提交
13 14
#include <linux/pagemap.h>
#include <linux/statfs.h>
15
#include <linux/slab.h>
M
Miklos Szeredi 已提交
16
#include <linux/seq_file.h>
J
Jiri Kosina 已提交
17
#include <linux/mount.h>
A
Al Viro 已提交
18
#include <linux/namei.h>
L
Linus Torvalds 已提交
19
#include "hostfs.h"
20 21
#include <init.h>
#include <kern.h>
L
Linus Torvalds 已提交
22 23 24

struct hostfs_inode_info {
	int fd;
25
	fmode_t mode;
L
Linus Torvalds 已提交
26
	struct inode vfs_inode;
27
	struct mutex open_mutex;
L
Linus Torvalds 已提交
28 29 30 31
};

static inline struct hostfs_inode_info *HOSTFS_I(struct inode *inode)
{
J
Jeff Dike 已提交
32
	return list_entry(inode, struct hostfs_inode_info, vfs_inode);
L
Linus Torvalds 已提交
33 34
}

A
Al Viro 已提交
35
#define FILE_HOSTFS_I(file) HOSTFS_I(file_inode(file))
L
Linus Torvalds 已提交
36 37

/* Changed in hostfs_args before the kernel starts running */
38
static char *root_ino = "";
L
Linus Torvalds 已提交
39 40
static int append = 0;

41 42
static const struct inode_operations hostfs_iops;
static const struct inode_operations hostfs_dir_iops;
A
Al Viro 已提交
43
static const struct inode_operations hostfs_link_iops;
L
Linus Torvalds 已提交
44 45 46 47 48 49 50

#ifndef MODULE
static int __init hostfs_args(char *options, int *add)
{
	char *ptr;

	ptr = strchr(options, ',');
J
Jeff Dike 已提交
51
	if (ptr != NULL)
L
Linus Torvalds 已提交
52
		*ptr++ = '\0';
J
Jeff Dike 已提交
53
	if (*options != '\0')
L
Linus Torvalds 已提交
54 55 56
		root_ino = options;

	options = ptr;
J
Jeff Dike 已提交
57
	while (options) {
L
Linus Torvalds 已提交
58
		ptr = strchr(options, ',');
J
Jeff Dike 已提交
59
		if (ptr != NULL)
L
Linus Torvalds 已提交
60
			*ptr++ = '\0';
J
Jeff Dike 已提交
61 62
		if (*options != '\0') {
			if (!strcmp(options, "append"))
L
Linus Torvalds 已提交
63 64 65 66 67 68
				append = 1;
			else printf("hostfs_args - unsupported option - %s\n",
				    options);
		}
		options = ptr;
	}
J
Jeff Dike 已提交
69
	return 0;
L
Linus Torvalds 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83
}

__uml_setup("hostfs=", hostfs_args,
"hostfs=<root dir>,<flags>,...\n"
"    This is used to set hostfs parameters.  The root directory argument\n"
"    is used to confine all hostfs mounts to within the specified directory\n"
"    tree on the host.  If this isn't specified, then a user inside UML can\n"
"    mount anything on the host that's accessible to the user that's running\n"
"    it.\n"
"    The only flag currently supported is 'append', which specifies that all\n"
"    files opened by hostfs will be opened in append mode.\n\n"
);
#endif

84
static char *__dentry_name(struct dentry *dentry, char *name)
L
Linus Torvalds 已提交
85
{
N
Nick Piggin 已提交
86
	char *p = dentry_path_raw(dentry, name, PATH_MAX);
87 88
	char *root;
	size_t len;
L
Linus Torvalds 已提交
89

90 91 92 93
	root = dentry->d_sb->s_fs_info;
	len = strlen(root);
	if (IS_ERR(p)) {
		__putname(name);
J
Jeff Dike 已提交
94
		return NULL;
L
Linus Torvalds 已提交
95
	}
96
	strlcpy(name, root, PATH_MAX);
97 98 99 100 101 102 103 104 105
	if (len > p - name) {
		__putname(name);
		return NULL;
	}
	if (p > name + len) {
		char *s = name + len;
		while ((*s++ = *p++) != '\0')
			;
	}
J
Jeff Dike 已提交
106
	return name;
L
Linus Torvalds 已提交
107 108
}

109 110 111 112 113 114
static char *dentry_name(struct dentry *dentry)
{
	char *name = __getname();
	if (!name)
		return NULL;

115
	return __dentry_name(dentry, name);
116 117
}

A
Al Viro 已提交
118
static char *inode_name(struct inode *ino)
L
Linus Torvalds 已提交
119 120
{
	struct dentry *dentry;
N
Nick Piggin 已提交
121
	char *name;
L
Linus Torvalds 已提交
122

N
Nick Piggin 已提交
123 124
	dentry = d_find_alias(ino);
	if (!dentry)
125
		return NULL;
N
Nick Piggin 已提交
126 127 128 129 130 131

	name = dentry_name(dentry);

	dput(dentry);

	return name;
L
Linus Torvalds 已提交
132 133 134 135 136 137 138 139
}

static char *follow_link(char *link)
{
	int len, n;
	char *name, *resolved, *end;

	len = 64;
J
Jeff Dike 已提交
140
	while (1) {
L
Linus Torvalds 已提交
141 142
		n = -ENOMEM;
		name = kmalloc(len, GFP_KERNEL);
J
Jeff Dike 已提交
143
		if (name == NULL)
L
Linus Torvalds 已提交
144 145
			goto out;

146
		n = hostfs_do_readlink(link, name, len);
J
Jeff Dike 已提交
147
		if (n < len)
L
Linus Torvalds 已提交
148 149 150 151
			break;
		len *= 2;
		kfree(name);
	}
J
Jeff Dike 已提交
152
	if (n < 0)
L
Linus Torvalds 已提交
153 154
		goto out_free;

J
Jeff Dike 已提交
155
	if (*name == '/')
J
Jeff Dike 已提交
156
		return name;
L
Linus Torvalds 已提交
157 158

	end = strrchr(link, '/');
J
Jeff Dike 已提交
159
	if (end == NULL)
J
Jeff Dike 已提交
160
		return name;
L
Linus Torvalds 已提交
161 162 163 164 165

	*(end + 1) = '\0';
	len = strlen(link) + strlen(name) + 1;

	resolved = kmalloc(len, GFP_KERNEL);
J
Jeff Dike 已提交
166
	if (resolved == NULL) {
L
Linus Torvalds 已提交
167 168 169 170 171 172 173
		n = -ENOMEM;
		goto out_free;
	}

	sprintf(resolved, "%s%s", link, name);
	kfree(name);
	kfree(link);
J
Jeff Dike 已提交
174
	return resolved;
L
Linus Torvalds 已提交
175 176 177 178

 out_free:
	kfree(name);
 out:
J
Jeff Dike 已提交
179
	return ERR_PTR(n);
L
Linus Torvalds 已提交
180 181
}

182 183
static struct inode *hostfs_iget(struct super_block *sb)
{
A
Al Viro 已提交
184
	struct inode *inode = new_inode(sb);
185 186 187 188 189
	if (!inode)
		return ERR_PTR(-ENOMEM);
	return inode;
}

J
James Hogan 已提交
190
static int hostfs_statfs(struct dentry *dentry, struct kstatfs *sf)
L
Linus Torvalds 已提交
191
{
J
Jeff Dike 已提交
192 193
	/*
	 * do_statfs uses struct statfs64 internally, but the linux kernel
L
Linus Torvalds 已提交
194 195 196 197 198 199 200 201 202 203
	 * struct statfs still has 32-bit versions for most of these fields,
	 * so we convert them here
	 */
	int err;
	long long f_blocks;
	long long f_bfree;
	long long f_bavail;
	long long f_files;
	long long f_ffree;

204
	err = do_statfs(dentry->d_sb->s_fs_info,
L
Linus Torvalds 已提交
205 206
			&sf->f_bsize, &f_blocks, &f_bfree, &f_bavail, &f_files,
			&f_ffree, &sf->f_fsid, sizeof(sf->f_fsid),
207
			&sf->f_namelen);
J
Jeff Dike 已提交
208
	if (err)
J
Jeff Dike 已提交
209
		return err;
L
Linus Torvalds 已提交
210 211 212 213 214 215
	sf->f_blocks = f_blocks;
	sf->f_bfree = f_bfree;
	sf->f_bavail = f_bavail;
	sf->f_files = f_files;
	sf->f_ffree = f_ffree;
	sf->f_type = HOSTFS_SUPER_MAGIC;
J
Jeff Dike 已提交
216
	return 0;
L
Linus Torvalds 已提交
217 218 219 220 221 222
}

static struct inode *hostfs_alloc_inode(struct super_block *sb)
{
	struct hostfs_inode_info *hi;

223
	hi = kmalloc(sizeof(*hi), GFP_KERNEL);
J
Jeff Dike 已提交
224
	if (hi == NULL)
J
Jeff Dike 已提交
225
		return NULL;
226
	hi->fd = -1;
227
	hi->mode = 0;
L
Linus Torvalds 已提交
228
	inode_init_once(&hi->vfs_inode);
229
	mutex_init(&hi->open_mutex);
J
Jeff Dike 已提交
230
	return &hi->vfs_inode;
L
Linus Torvalds 已提交
231 232
}

233
static void hostfs_evict_inode(struct inode *inode)
L
Linus Torvalds 已提交
234
{
235
	truncate_inode_pages_final(&inode->i_data);
236
	clear_inode(inode);
J
Jeff Dike 已提交
237
	if (HOSTFS_I(inode)->fd != -1) {
L
Linus Torvalds 已提交
238 239 240 241 242
		close_file(&HOSTFS_I(inode)->fd);
		HOSTFS_I(inode)->fd = -1;
	}
}

N
Nick Piggin 已提交
243
static void hostfs_i_callback(struct rcu_head *head)
L
Linus Torvalds 已提交
244
{
N
Nick Piggin 已提交
245
	struct inode *inode = container_of(head, struct inode, i_rcu);
L
Linus Torvalds 已提交
246 247
	kfree(HOSTFS_I(inode));
}
N
Nick Piggin 已提交
248 249 250 251 252

static void hostfs_destroy_inode(struct inode *inode)
{
	call_rcu(&inode->i_rcu, hostfs_i_callback);
}
L
Linus Torvalds 已提交
253

254
static int hostfs_show_options(struct seq_file *seq, struct dentry *root)
M
Miklos Szeredi 已提交
255
{
256
	const char *root_path = root->d_sb->s_fs_info;
M
Miklos Szeredi 已提交
257 258 259 260 261 262 263 264
	size_t offset = strlen(root_ino) + 1;

	if (strlen(root_path) > offset)
		seq_printf(seq, ",%s", root_path + offset);

	return 0;
}

265
static const struct super_operations hostfs_sbops = {
L
Linus Torvalds 已提交
266 267
	.alloc_inode	= hostfs_alloc_inode,
	.destroy_inode	= hostfs_destroy_inode,
268
	.evict_inode	= hostfs_evict_inode,
L
Linus Torvalds 已提交
269
	.statfs		= hostfs_statfs,
M
Miklos Szeredi 已提交
270
	.show_options	= hostfs_show_options,
L
Linus Torvalds 已提交
271 272
};

J
James Hogan 已提交
273
static int hostfs_readdir(struct file *file, struct dir_context *ctx)
L
Linus Torvalds 已提交
274 275 276 277 278
{
	void *dir;
	char *name;
	unsigned long long next, ino;
	int error, len;
279
	unsigned int type;
L
Linus Torvalds 已提交
280

A
Al Viro 已提交
281
	name = dentry_name(file->f_path.dentry);
J
Jeff Dike 已提交
282
	if (name == NULL)
J
Jeff Dike 已提交
283
		return -ENOMEM;
L
Linus Torvalds 已提交
284
	dir = open_dir(name, &error);
285
	__putname(name);
J
Jeff Dike 已提交
286
	if (dir == NULL)
J
Jeff Dike 已提交
287
		return -error;
A
Al Viro 已提交
288
	next = ctx->pos;
289
	while ((name = read_dir(dir, &next, &ino, &len, &type)) != NULL) {
A
Al Viro 已提交
290 291 292
		if (!dir_emit(ctx, name, len, ino, type))
			break;
		ctx->pos = next;
L
Linus Torvalds 已提交
293 294
	}
	close_dir(dir);
J
Jeff Dike 已提交
295
	return 0;
L
Linus Torvalds 已提交
296 297
}

J
James Hogan 已提交
298
static int hostfs_file_open(struct inode *ino, struct file *file)
L
Linus Torvalds 已提交
299 300
{
	char *name;
301
	fmode_t mode = 0;
302
	int err;
303
	int r = 0, w = 0, fd;
L
Linus Torvalds 已提交
304 305

	mode = file->f_mode & (FMODE_READ | FMODE_WRITE);
J
Jeff Dike 已提交
306
	if ((mode & HOSTFS_I(ino)->mode) == mode)
J
Jeff Dike 已提交
307
		return 0;
L
Linus Torvalds 已提交
308

309
	mode |= HOSTFS_I(ino)->mode;
L
Linus Torvalds 已提交
310

311 312
retry:
	if (mode & FMODE_READ)
L
Linus Torvalds 已提交
313
		r = 1;
314
	if (mode & FMODE_WRITE)
L
Linus Torvalds 已提交
315
		w = 1;
J
Jeff Dike 已提交
316
	if (w)
L
Linus Torvalds 已提交
317 318
		r = 1;

A
Al Viro 已提交
319
	name = dentry_name(file->f_path.dentry);
J
Jeff Dike 已提交
320
	if (name == NULL)
J
Jeff Dike 已提交
321
		return -ENOMEM;
L
Linus Torvalds 已提交
322 323

	fd = open_file(name, r, w, append);
324
	__putname(name);
J
Jeff Dike 已提交
325
	if (fd < 0)
J
Jeff Dike 已提交
326
		return fd;
327

328
	mutex_lock(&HOSTFS_I(ino)->open_mutex);
329 330
	/* somebody else had handled it first? */
	if ((mode & HOSTFS_I(ino)->mode) == mode) {
331
		mutex_unlock(&HOSTFS_I(ino)->open_mutex);
332 333 334 335
		return 0;
	}
	if ((mode | HOSTFS_I(ino)->mode) != mode) {
		mode |= HOSTFS_I(ino)->mode;
336
		mutex_unlock(&HOSTFS_I(ino)->open_mutex);
337 338 339 340 341 342 343 344 345
		close_file(&fd);
		goto retry;
	}
	if (HOSTFS_I(ino)->fd == -1) {
		HOSTFS_I(ino)->fd = fd;
	} else {
		err = replace_file(fd, HOSTFS_I(ino)->fd);
		close_file(&fd);
		if (err < 0) {
346
			mutex_unlock(&HOSTFS_I(ino)->open_mutex);
347 348 349 350
			return err;
		}
	}
	HOSTFS_I(ino)->mode = mode;
351
	mutex_unlock(&HOSTFS_I(ino)->open_mutex);
L
Linus Torvalds 已提交
352

J
Jeff Dike 已提交
353
	return 0;
L
Linus Torvalds 已提交
354 355
}

R
Richard Weinberger 已提交
356 357 358 359 360 361 362
static int hostfs_file_release(struct inode *inode, struct file *file)
{
	filemap_write_and_wait(inode->i_mapping);

	return 0;
}

J
James Hogan 已提交
363 364
static int hostfs_fsync(struct file *file, loff_t start, loff_t end,
			int datasync)
L
Linus Torvalds 已提交
365
{
366 367 368 369 370 371 372 373 374 375 376 377
	struct inode *inode = file->f_mapping->host;
	int ret;

	ret = filemap_write_and_wait_range(inode->i_mapping, start, end);
	if (ret)
		return ret;

	mutex_lock(&inode->i_mutex);
	ret = fsync_file(HOSTFS_I(inode)->fd, datasync);
	mutex_unlock(&inode->i_mutex);

	return ret;
L
Linus Torvalds 已提交
378 379
}

380
static const struct file_operations hostfs_file_fops = {
L
Linus Torvalds 已提交
381
	.llseek		= generic_file_llseek,
382
	.read		= new_sync_read,
383
	.splice_read	= generic_file_splice_read,
384
	.read_iter	= generic_file_read_iter,
385 386
	.write_iter	= generic_file_write_iter,
	.write		= new_sync_write,
L
Linus Torvalds 已提交
387 388
	.mmap		= generic_file_mmap,
	.open		= hostfs_file_open,
R
Richard Weinberger 已提交
389
	.release	= hostfs_file_release,
L
Linus Torvalds 已提交
390 391 392
	.fsync		= hostfs_fsync,
};

393
static const struct file_operations hostfs_dir_fops = {
L
Linus Torvalds 已提交
394
	.llseek		= generic_file_llseek,
A
Al Viro 已提交
395
	.iterate	= hostfs_readdir,
L
Linus Torvalds 已提交
396 397 398
	.read		= generic_read_dir,
};

J
James Hogan 已提交
399
static int hostfs_writepage(struct page *page, struct writeback_control *wbc)
L
Linus Torvalds 已提交
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
{
	struct address_space *mapping = page->mapping;
	struct inode *inode = mapping->host;
	char *buffer;
	unsigned long long base;
	int count = PAGE_CACHE_SIZE;
	int end_index = inode->i_size >> PAGE_CACHE_SHIFT;
	int err;

	if (page->index >= end_index)
		count = inode->i_size & (PAGE_CACHE_SIZE-1);

	buffer = kmap(page);
	base = ((unsigned long long) page->index) << PAGE_CACHE_SHIFT;

	err = write_file(HOSTFS_I(inode)->fd, &base, buffer, count);
J
Jeff Dike 已提交
416
	if (err != count) {
L
Linus Torvalds 已提交
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
		ClearPageUptodate(page);
		goto out;
	}

	if (base > inode->i_size)
		inode->i_size = base;

	if (PageError(page))
		ClearPageError(page);
	err = 0;

 out:
	kunmap(page);

	unlock_page(page);
	return err;
}

J
James Hogan 已提交
435
static int hostfs_readpage(struct file *file, struct page *page)
L
Linus Torvalds 已提交
436 437 438 439 440 441 442 443 444
{
	char *buffer;
	long long start;
	int err = 0;

	start = (long long) page->index << PAGE_CACHE_SHIFT;
	buffer = kmap(page);
	err = read_file(FILE_HOSTFS_I(file)->fd, &start, buffer,
			PAGE_CACHE_SIZE);
J
Jeff Dike 已提交
445 446
	if (err < 0)
		goto out;
L
Linus Torvalds 已提交
447 448 449 450 451 452 453 454 455 456

	memset(&buffer[err], 0, PAGE_CACHE_SIZE - err);

	flush_dcache_page(page);
	SetPageUptodate(page);
	if (PageError(page)) ClearPageError(page);
	err = 0;
 out:
	kunmap(page);
	unlock_page(page);
J
Jeff Dike 已提交
457
	return err;
L
Linus Torvalds 已提交
458 459
}

J
James Hogan 已提交
460 461 462
static int hostfs_write_begin(struct file *file, struct address_space *mapping,
			      loff_t pos, unsigned len, unsigned flags,
			      struct page **pagep, void **fsdata)
L
Linus Torvalds 已提交
463
{
N
Nick Piggin 已提交
464
	pgoff_t index = pos >> PAGE_CACHE_SHIFT;
L
Linus Torvalds 已提交
465

466
	*pagep = grab_cache_page_write_begin(mapping, index, flags);
N
Nick Piggin 已提交
467 468 469
	if (!*pagep)
		return -ENOMEM;
	return 0;
L
Linus Torvalds 已提交
470 471
}

J
James Hogan 已提交
472 473 474
static int hostfs_write_end(struct file *file, struct address_space *mapping,
			    loff_t pos, unsigned len, unsigned copied,
			    struct page *page, void *fsdata)
L
Linus Torvalds 已提交
475 476
{
	struct inode *inode = mapping->host;
N
Nick Piggin 已提交
477 478 479
	void *buffer;
	unsigned from = pos & (PAGE_CACHE_SIZE - 1);
	int err;
L
Linus Torvalds 已提交
480 481

	buffer = kmap(page);
N
Nick Piggin 已提交
482 483
	err = write_file(FILE_HOSTFS_I(file)->fd, &pos, buffer + from, copied);
	kunmap(page);
484

N
Nick Piggin 已提交
485 486
	if (!PageUptodate(page) && err == PAGE_CACHE_SIZE)
		SetPageUptodate(page);
487

J
Jeff Dike 已提交
488 489
	/*
	 * If err > 0, write_file has added err to pos, so we are comparing
N
Nick Piggin 已提交
490 491 492 493 494 495
	 * i_size against the last byte written.
	 */
	if (err > 0 && (pos > inode->i_size))
		inode->i_size = pos;
	unlock_page(page);
	page_cache_release(page);
L
Linus Torvalds 已提交
496

J
Jeff Dike 已提交
497
	return err;
L
Linus Torvalds 已提交
498 499
}

500
static const struct address_space_operations hostfs_aops = {
L
Linus Torvalds 已提交
501 502
	.writepage 	= hostfs_writepage,
	.readpage	= hostfs_readpage,
503
	.set_page_dirty = __set_page_dirty_nobuffers,
N
Nick Piggin 已提交
504 505
	.write_begin	= hostfs_write_begin,
	.write_end	= hostfs_write_end,
L
Linus Torvalds 已提交
506 507
};

508
static int read_name(struct inode *ino, char *name)
L
Linus Torvalds 已提交
509
{
510 511 512 513 514
	dev_t rdev;
	struct hostfs_stat st;
	int err = stat_file(name, &st, -1);
	if (err)
		return err;
L
Linus Torvalds 已提交
515

A
Al Viro 已提交
516
	/* Reencode maj and min with the kernel encoding.*/
517
	rdev = MKDEV(st.maj, st.min);
L
Linus Torvalds 已提交
518

519 520
	switch (st.mode & S_IFMT) {
	case S_IFLNK:
A
Al Viro 已提交
521
		ino->i_op = &hostfs_link_iops;
L
Linus Torvalds 已提交
522
		break;
523 524 525
	case S_IFDIR:
		ino->i_op = &hostfs_dir_iops;
		ino->i_fop = &hostfs_dir_fops;
L
Linus Torvalds 已提交
526
		break;
527 528 529 530 531 532
	case S_IFCHR:
	case S_IFBLK:
	case S_IFIFO:
	case S_IFSOCK:
		init_special_inode(ino, st.mode & S_IFMT, rdev);
		ino->i_op = &hostfs_iops;
L
Linus Torvalds 已提交
533
		break;
534 535 536 537 538

	default:
		ino->i_op = &hostfs_iops;
		ino->i_fop = &hostfs_file_fops;
		ino->i_mapping->a_ops = &hostfs_aops;
L
Linus Torvalds 已提交
539
	}
540 541 542

	ino->i_ino = st.ino;
	ino->i_mode = st.mode;
M
Miklos Szeredi 已提交
543
	set_nlink(ino, st.nlink);
544 545
	i_uid_write(ino, st.uid);
	i_gid_write(ino, st.gid);
546 547 548 549 550 551
	ino->i_atime = st.atime;
	ino->i_mtime = st.mtime;
	ino->i_ctime = st.ctime;
	ino->i_size = st.size;
	ino->i_blocks = st.blocks;
	return 0;
L
Linus Torvalds 已提交
552 553
}

J
James Hogan 已提交
554 555
static int hostfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
			 bool excl)
L
Linus Torvalds 已提交
556 557 558 559 560
{
	struct inode *inode;
	char *name;
	int error, fd;

561 562 563
	inode = hostfs_iget(dir->i_sb);
	if (IS_ERR(inode)) {
		error = PTR_ERR(inode);
J
Jeff Dike 已提交
564
		goto out;
565
	}
L
Linus Torvalds 已提交
566 567

	error = -ENOMEM;
A
Al Viro 已提交
568
	name = dentry_name(dentry);
J
Jeff Dike 已提交
569
	if (name == NULL)
L
Linus Torvalds 已提交
570 571 572 573 574 575
		goto out_put;

	fd = file_create(name,
			 mode & S_IRUSR, mode & S_IWUSR, mode & S_IXUSR,
			 mode & S_IRGRP, mode & S_IWGRP, mode & S_IXGRP,
			 mode & S_IROTH, mode & S_IWOTH, mode & S_IXOTH);
576
	if (fd < 0)
L
Linus Torvalds 已提交
577
		error = fd;
578
	else
A
Al Viro 已提交
579
		error = read_name(inode, name);
L
Linus Torvalds 已提交
580

581
	__putname(name);
J
Jeff Dike 已提交
582
	if (error)
L
Linus Torvalds 已提交
583 584 585 586 587
		goto out_put;

	HOSTFS_I(inode)->fd = fd;
	HOSTFS_I(inode)->mode = FMODE_READ | FMODE_WRITE;
	d_instantiate(dentry, inode);
J
Jeff Dike 已提交
588
	return 0;
L
Linus Torvalds 已提交
589 590 591 592

 out_put:
	iput(inode);
 out:
J
Jeff Dike 已提交
593
	return error;
L
Linus Torvalds 已提交
594 595
}

J
James Hogan 已提交
596 597
static struct dentry *hostfs_lookup(struct inode *ino, struct dentry *dentry,
				    unsigned int flags)
L
Linus Torvalds 已提交
598 599 600 601 602
{
	struct inode *inode;
	char *name;
	int err;

603 604 605
	inode = hostfs_iget(ino->i_sb);
	if (IS_ERR(inode)) {
		err = PTR_ERR(inode);
L
Linus Torvalds 已提交
606
		goto out;
607
	}
L
Linus Torvalds 已提交
608 609

	err = -ENOMEM;
A
Al Viro 已提交
610
	name = dentry_name(dentry);
J
Jeff Dike 已提交
611
	if (name == NULL)
L
Linus Torvalds 已提交
612 613 614
		goto out_put;

	err = read_name(inode, name);
A
Al Viro 已提交
615

616
	__putname(name);
J
Jeff Dike 已提交
617
	if (err == -ENOENT) {
L
Linus Torvalds 已提交
618 619 620
		iput(inode);
		inode = NULL;
	}
J
Jeff Dike 已提交
621
	else if (err)
L
Linus Torvalds 已提交
622 623 624
		goto out_put;

	d_add(dentry, inode);
J
Jeff Dike 已提交
625
	return NULL;
L
Linus Torvalds 已提交
626 627 628 629

 out_put:
	iput(inode);
 out:
J
Jeff Dike 已提交
630
	return ERR_PTR(err);
L
Linus Torvalds 已提交
631 632
}

J
James Hogan 已提交
633 634
static int hostfs_link(struct dentry *to, struct inode *ino,
		       struct dentry *from)
L
Linus Torvalds 已提交
635
{
J
Jeff Dike 已提交
636 637
	char *from_name, *to_name;
	int err;
L
Linus Torvalds 已提交
638

A
Al Viro 已提交
639
	if ((from_name = dentry_name(from)) == NULL)
J
Jeff Dike 已提交
640
		return -ENOMEM;
A
Al Viro 已提交
641
	to_name = dentry_name(to);
J
Jeff Dike 已提交
642
	if (to_name == NULL) {
643
		__putname(from_name);
J
Jeff Dike 已提交
644
		return -ENOMEM;
L
Linus Torvalds 已提交
645
	}
J
Jeff Dike 已提交
646
	err = link_file(to_name, from_name);
647 648
	__putname(from_name);
	__putname(to_name);
J
Jeff Dike 已提交
649
	return err;
L
Linus Torvalds 已提交
650 651
}

J
James Hogan 已提交
652
static int hostfs_unlink(struct inode *ino, struct dentry *dentry)
L
Linus Torvalds 已提交
653 654 655 656
{
	char *file;
	int err;

J
Jeff Dike 已提交
657
	if (append)
J
Jeff Dike 已提交
658
		return -EPERM;
L
Linus Torvalds 已提交
659

A
Al Viro 已提交
660 661 662
	if ((file = dentry_name(dentry)) == NULL)
		return -ENOMEM;

L
Linus Torvalds 已提交
663
	err = unlink_file(file);
664
	__putname(file);
J
Jeff Dike 已提交
665
	return err;
L
Linus Torvalds 已提交
666 667
}

J
James Hogan 已提交
668 669
static int hostfs_symlink(struct inode *ino, struct dentry *dentry,
			  const char *to)
L
Linus Torvalds 已提交
670 671 672 673
{
	char *file;
	int err;

A
Al Viro 已提交
674
	if ((file = dentry_name(dentry)) == NULL)
J
Jeff Dike 已提交
675
		return -ENOMEM;
L
Linus Torvalds 已提交
676
	err = make_symlink(file, to);
677
	__putname(file);
J
Jeff Dike 已提交
678
	return err;
L
Linus Torvalds 已提交
679 680
}

J
James Hogan 已提交
681
static int hostfs_mkdir(struct inode *ino, struct dentry *dentry, umode_t mode)
L
Linus Torvalds 已提交
682 683 684 685
{
	char *file;
	int err;

A
Al Viro 已提交
686
	if ((file = dentry_name(dentry)) == NULL)
J
Jeff Dike 已提交
687
		return -ENOMEM;
L
Linus Torvalds 已提交
688
	err = do_mkdir(file, mode);
689
	__putname(file);
J
Jeff Dike 已提交
690
	return err;
L
Linus Torvalds 已提交
691 692
}

J
James Hogan 已提交
693
static int hostfs_rmdir(struct inode *ino, struct dentry *dentry)
L
Linus Torvalds 已提交
694 695 696 697
{
	char *file;
	int err;

A
Al Viro 已提交
698
	if ((file = dentry_name(dentry)) == NULL)
J
Jeff Dike 已提交
699
		return -ENOMEM;
L
Linus Torvalds 已提交
700
	err = do_rmdir(file);
701
	__putname(file);
J
Jeff Dike 已提交
702
	return err;
L
Linus Torvalds 已提交
703 704
}

A
Al Viro 已提交
705
static int hostfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
L
Linus Torvalds 已提交
706 707 708
{
	struct inode *inode;
	char *name;
709
	int err;
L
Linus Torvalds 已提交
710

711 712 713
	inode = hostfs_iget(dir->i_sb);
	if (IS_ERR(inode)) {
		err = PTR_ERR(inode);
L
Linus Torvalds 已提交
714
		goto out;
715
	}
L
Linus Torvalds 已提交
716 717

	err = -ENOMEM;
A
Al Viro 已提交
718
	name = dentry_name(dentry);
J
Jeff Dike 已提交
719
	if (name == NULL)
L
Linus Torvalds 已提交
720 721 722
		goto out_put;

	init_special_inode(inode, mode, dev);
J
Johannes Stezenbach 已提交
723
	err = do_mknod(name, mode, MAJOR(dev), MINOR(dev));
724
	if (!err)
L
Linus Torvalds 已提交
725 726 727
		goto out_free;

	err = read_name(inode, name);
728
	__putname(name);
A
Al Viro 已提交
729 730
	if (err)
		goto out_put;
J
Jeff Dike 已提交
731
	if (err)
L
Linus Torvalds 已提交
732 733 734
		goto out_put;

	d_instantiate(dentry, inode);
J
Jeff Dike 已提交
735
	return 0;
L
Linus Torvalds 已提交
736 737

 out_free:
738
	__putname(name);
L
Linus Torvalds 已提交
739 740 741
 out_put:
	iput(inode);
 out:
J
Jeff Dike 已提交
742
	return err;
L
Linus Torvalds 已提交
743 744
}

M
Miklos Szeredi 已提交
745 746 747
static int hostfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
			  struct inode *new_dir, struct dentry *new_dentry,
			  unsigned int flags)
L
Linus Torvalds 已提交
748
{
M
Miklos Szeredi 已提交
749
	char *old_name, *new_name;
L
Linus Torvalds 已提交
750 751
	int err;

M
Miklos Szeredi 已提交
752 753 754 755 756
	if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE))
		return -EINVAL;

	old_name = dentry_name(old_dentry);
	if (old_name == NULL)
J
Jeff Dike 已提交
757
		return -ENOMEM;
M
Miklos Szeredi 已提交
758 759 760
	new_name = dentry_name(new_dentry);
	if (new_name == NULL) {
		__putname(old_name);
J
Jeff Dike 已提交
761
		return -ENOMEM;
L
Linus Torvalds 已提交
762
	}
M
Miklos Szeredi 已提交
763 764 765 766 767 768 769
	if (!flags)
		err = rename_file(old_name, new_name);
	else
		err = rename2_file(old_name, new_name, flags);

	__putname(old_name);
	__putname(new_name);
J
Jeff Dike 已提交
770
	return err;
L
Linus Torvalds 已提交
771 772
}

J
James Hogan 已提交
773
static int hostfs_permission(struct inode *ino, int desired)
L
Linus Torvalds 已提交
774 775 776 777
{
	char *name;
	int r = 0, w = 0, x = 0, err;

778
	if (desired & MAY_NOT_BLOCK)
779 780
		return -ECHILD;

L
Linus Torvalds 已提交
781 782 783
	if (desired & MAY_READ) r = 1;
	if (desired & MAY_WRITE) w = 1;
	if (desired & MAY_EXEC) x = 1;
A
Al Viro 已提交
784
	name = inode_name(ino);
J
Jeff Dike 已提交
785 786
	if (name == NULL)
		return -ENOMEM;
L
Linus Torvalds 已提交
787 788

	if (S_ISCHR(ino->i_mode) || S_ISBLK(ino->i_mode) ||
J
Jeff Dike 已提交
789
	    S_ISFIFO(ino->i_mode) || S_ISSOCK(ino->i_mode))
L
Linus Torvalds 已提交
790 791 792
		err = 0;
	else
		err = access_file(name, r, w, x);
793
	__putname(name);
J
Jeff Dike 已提交
794
	if (!err)
795
		err = generic_permission(ino, desired);
L
Linus Torvalds 已提交
796 797 798
	return err;
}

J
James Hogan 已提交
799
static int hostfs_setattr(struct dentry *dentry, struct iattr *attr)
L
Linus Torvalds 已提交
800
{
C
Christoph Hellwig 已提交
801
	struct inode *inode = dentry->d_inode;
L
Linus Torvalds 已提交
802 803 804 805
	struct hostfs_iattr attrs;
	char *name;
	int err;

C
Christoph Hellwig 已提交
806
	int fd = HOSTFS_I(inode)->fd;
807

C
Christoph Hellwig 已提交
808
	err = inode_change_ok(inode, attr);
L
Linus Torvalds 已提交
809 810 811
	if (err)
		return err;

J
Jeff Dike 已提交
812
	if (append)
L
Linus Torvalds 已提交
813 814 815
		attr->ia_valid &= ~ATTR_SIZE;

	attrs.ia_valid = 0;
J
Jeff Dike 已提交
816
	if (attr->ia_valid & ATTR_MODE) {
L
Linus Torvalds 已提交
817 818 819
		attrs.ia_valid |= HOSTFS_ATTR_MODE;
		attrs.ia_mode = attr->ia_mode;
	}
J
Jeff Dike 已提交
820
	if (attr->ia_valid & ATTR_UID) {
L
Linus Torvalds 已提交
821
		attrs.ia_valid |= HOSTFS_ATTR_UID;
822
		attrs.ia_uid = from_kuid(&init_user_ns, attr->ia_uid);
L
Linus Torvalds 已提交
823
	}
J
Jeff Dike 已提交
824
	if (attr->ia_valid & ATTR_GID) {
L
Linus Torvalds 已提交
825
		attrs.ia_valid |= HOSTFS_ATTR_GID;
826
		attrs.ia_gid = from_kgid(&init_user_ns, attr->ia_gid);
L
Linus Torvalds 已提交
827
	}
J
Jeff Dike 已提交
828
	if (attr->ia_valid & ATTR_SIZE) {
L
Linus Torvalds 已提交
829 830 831
		attrs.ia_valid |= HOSTFS_ATTR_SIZE;
		attrs.ia_size = attr->ia_size;
	}
J
Jeff Dike 已提交
832
	if (attr->ia_valid & ATTR_ATIME) {
L
Linus Torvalds 已提交
833 834 835
		attrs.ia_valid |= HOSTFS_ATTR_ATIME;
		attrs.ia_atime = attr->ia_atime;
	}
J
Jeff Dike 已提交
836
	if (attr->ia_valid & ATTR_MTIME) {
L
Linus Torvalds 已提交
837 838 839
		attrs.ia_valid |= HOSTFS_ATTR_MTIME;
		attrs.ia_mtime = attr->ia_mtime;
	}
J
Jeff Dike 已提交
840
	if (attr->ia_valid & ATTR_CTIME) {
L
Linus Torvalds 已提交
841 842 843
		attrs.ia_valid |= HOSTFS_ATTR_CTIME;
		attrs.ia_ctime = attr->ia_ctime;
	}
J
Jeff Dike 已提交
844
	if (attr->ia_valid & ATTR_ATIME_SET) {
L
Linus Torvalds 已提交
845 846
		attrs.ia_valid |= HOSTFS_ATTR_ATIME_SET;
	}
J
Jeff Dike 已提交
847
	if (attr->ia_valid & ATTR_MTIME_SET) {
L
Linus Torvalds 已提交
848 849
		attrs.ia_valid |= HOSTFS_ATTR_MTIME_SET;
	}
A
Al Viro 已提交
850
	name = dentry_name(dentry);
J
Jeff Dike 已提交
851
	if (name == NULL)
J
Jeff Dike 已提交
852
		return -ENOMEM;
853
	err = set_attr(name, &attrs, fd);
854
	__putname(name);
J
Jeff Dike 已提交
855
	if (err)
J
Jeff Dike 已提交
856
		return err;
L
Linus Torvalds 已提交
857

C
Christoph Hellwig 已提交
858
	if ((attr->ia_valid & ATTR_SIZE) &&
859
	    attr->ia_size != i_size_read(inode))
M
Marco Stornelli 已提交
860
		truncate_setsize(inode, attr->ia_size);
C
Christoph Hellwig 已提交
861 862 863 864

	setattr_copy(inode, attr);
	mark_inode_dirty(inode);
	return 0;
L
Linus Torvalds 已提交
865 866
}

867
static const struct inode_operations hostfs_iops = {
L
Linus Torvalds 已提交
868 869 870 871
	.permission	= hostfs_permission,
	.setattr	= hostfs_setattr,
};

872
static const struct inode_operations hostfs_dir_iops = {
L
Linus Torvalds 已提交
873 874 875 876 877 878 879 880
	.create		= hostfs_create,
	.lookup		= hostfs_lookup,
	.link		= hostfs_link,
	.unlink		= hostfs_unlink,
	.symlink	= hostfs_symlink,
	.mkdir		= hostfs_mkdir,
	.rmdir		= hostfs_rmdir,
	.mknod		= hostfs_mknod,
M
Miklos Szeredi 已提交
881
	.rename2	= hostfs_rename2,
L
Linus Torvalds 已提交
882 883 884 885
	.permission	= hostfs_permission,
	.setattr	= hostfs_setattr,
};

A
Al Viro 已提交
886 887 888 889 890 891 892
static void *hostfs_follow_link(struct dentry *dentry, struct nameidata *nd)
{
	char *link = __getname();
	if (link) {
		char *path = dentry_name(dentry);
		int err = -ENOMEM;
		if (path) {
A
Al Viro 已提交
893
			err = hostfs_do_readlink(path, link, PATH_MAX);
A
Al Viro 已提交
894 895
			if (err == PATH_MAX)
				err = -E2BIG;
896
			__putname(path);
A
Al Viro 已提交
897 898 899 900 901 902 903
		}
		if (err < 0) {
			__putname(link);
			link = ERR_PTR(err);
		}
	} else {
		link = ERR_PTR(-ENOMEM);
L
Linus Torvalds 已提交
904
	}
A
Al Viro 已提交
905 906 907 908 909 910 911 912 913 914

	nd_set_link(nd, link);
	return NULL;
}

static void hostfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
{
	char *s = nd_get_link(nd);
	if (!IS_ERR(s))
		__putname(s);
L
Linus Torvalds 已提交
915 916
}

A
Al Viro 已提交
917 918 919 920
static const struct inode_operations hostfs_link_iops = {
	.readlink	= generic_readlink,
	.follow_link	= hostfs_follow_link,
	.put_link	= hostfs_put_link,
L
Linus Torvalds 已提交
921 922 923 924 925
};

static int hostfs_fill_sb_common(struct super_block *sb, void *d, int silent)
{
	struct inode *root_inode;
926
	char *host_root_path, *req_root = d;
L
Linus Torvalds 已提交
927 928 929 930 931 932
	int err;

	sb->s_blocksize = 1024;
	sb->s_blocksize_bits = 10;
	sb->s_magic = HOSTFS_SUPER_MAGIC;
	sb->s_op = &hostfs_sbops;
933
	sb->s_d_op = &simple_dentry_operations;
934
	sb->s_maxbytes = MAX_LFS_FILESIZE;
L
Linus Torvalds 已提交
935

936
	/* NULL is printed as <NULL> by sprintf: avoid that. */
937 938
	if (req_root == NULL)
		req_root = "";
L
Linus Torvalds 已提交
939 940

	err = -ENOMEM;
941 942
	sb->s_fs_info = host_root_path =
		kmalloc(strlen(root_ino) + strlen(req_root) + 2, GFP_KERNEL);
J
Jeff Dike 已提交
943
	if (host_root_path == NULL)
L
Linus Torvalds 已提交
944 945
		goto out;

946
	sprintf(host_root_path, "%s/%s", root_ino, req_root);
L
Linus Torvalds 已提交
947

A
Al Viro 已提交
948 949
	root_inode = new_inode(sb);
	if (!root_inode)
950
		goto out;
L
Linus Torvalds 已提交
951

952 953 954
	err = read_name(root_inode, host_root_path);
	if (err)
		goto out_put;
A
Al Viro 已提交
955

956
	if (S_ISLNK(root_inode->i_mode)) {
A
Al Viro 已提交
957 958 959 960 961 962
		char *name = follow_link(host_root_path);
		if (IS_ERR(name))
			err = PTR_ERR(name);
		else
			err = read_name(root_inode, name);
		kfree(name);
963 964
		if (err)
			goto out_put;
A
Al Viro 已提交
965
	}
L
Linus Torvalds 已提交
966 967

	err = -ENOMEM;
968
	sb->s_root = d_make_root(root_inode);
J
Jeff Dike 已提交
969
	if (sb->s_root == NULL)
970
		goto out;
L
Linus Torvalds 已提交
971

J
Jeff Dike 已提交
972
	return 0;
L
Linus Torvalds 已提交
973

J
Jeff Dike 已提交
974 975 976 977
out_put:
	iput(root_inode);
out:
	return err;
L
Linus Torvalds 已提交
978 979
}

A
Al Viro 已提交
980
static struct dentry *hostfs_read_sb(struct file_system_type *type,
981
			  int flags, const char *dev_name,
A
Al Viro 已提交
982
			  void *data)
L
Linus Torvalds 已提交
983
{
A
Al Viro 已提交
984
	return mount_nodev(type, flags, data, hostfs_fill_sb_common);
L
Linus Torvalds 已提交
985 986
}

987 988 989 990 991 992
static void hostfs_kill_sb(struct super_block *s)
{
	kill_anon_super(s);
	kfree(s->s_fs_info);
}

L
Linus Torvalds 已提交
993 994 995
static struct file_system_type hostfs_type = {
	.owner 		= THIS_MODULE,
	.name 		= "hostfs",
A
Al Viro 已提交
996
	.mount	 	= hostfs_read_sb,
997
	.kill_sb	= hostfs_kill_sb,
L
Linus Torvalds 已提交
998 999
	.fs_flags 	= 0,
};
1000
MODULE_ALIAS_FS("hostfs");
L
Linus Torvalds 已提交
1001 1002 1003

static int __init init_hostfs(void)
{
J
Jeff Dike 已提交
1004
	return register_filesystem(&hostfs_type);
L
Linus Torvalds 已提交
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
}

static void __exit exit_hostfs(void)
{
	unregister_filesystem(&hostfs_type);
}

module_init(init_hostfs)
module_exit(exit_hostfs)
MODULE_LICENSE("GPL");