2 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
5 * Ported the filesystem routines to 2.5.
6 * 2003-02-10 Petr Baudis <pasky@ucw.cz>
9 #include <linux/stddef.h>
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/slab.h>
14 #include <linux/pagemap.h>
15 #include <linux/blkdev.h>
16 #include <linux/list.h>
17 #include <linux/statfs.h>
18 #include <linux/kdev_t.h>
19 #include <asm/uaccess.h>
21 #include "kern_util.h"
23 #include "user_util.h"
26 struct hostfs_inode_info {
30 struct inode vfs_inode;
33 static inline struct hostfs_inode_info *HOSTFS_I(struct inode *inode)
35 return(list_entry(inode, struct hostfs_inode_info, vfs_inode));
38 #define FILE_HOSTFS_I(file) HOSTFS_I((file)->f_dentry->d_inode)
40 int hostfs_d_delete(struct dentry *dentry)
45 struct dentry_operations hostfs_dentry_ops = {
46 .d_delete = hostfs_d_delete,
49 /* Changed in hostfs_args before the kernel starts running */
50 static char *root_ino = "/";
51 static int append = 0;
53 #define HOSTFS_SUPER_MAGIC 0x00c0ffee
55 static struct inode_operations hostfs_iops;
56 static struct inode_operations hostfs_dir_iops;
57 static struct address_space_operations hostfs_link_aops;
60 static int __init hostfs_args(char *options, int *add)
64 ptr = strchr(options, ',');
72 ptr = strchr(options, ',');
76 if(!strcmp(options, "append"))
78 else printf("hostfs_args - unsupported option - %s\n",
86 __uml_setup("hostfs=", hostfs_args,
87 "hostfs=<root dir>,<flags>,...\n"
88 " This is used to set hostfs parameters. The root directory argument\n"
89 " is used to confine all hostfs mounts to within the specified directory\n"
90 " tree on the host. If this isn't specified, then a user inside UML can\n"
91 " mount anything on the host that's accessible to the user that's running\n"
93 " The only flag currently supported is 'append', which specifies that all\n"
94 " files opened by hostfs will be opened in append mode.\n\n"
98 static char *dentry_name(struct dentry *dentry, int extra)
100 struct dentry *parent;
106 while(parent->d_parent != parent){
107 len += parent->d_name.len + 1;
108 parent = parent->d_parent;
111 root = HOSTFS_I(parent->d_inode)->host_filename;
113 name = kmalloc(len + extra + 1, GFP_KERNEL);
114 if(name == NULL) return(NULL);
118 while(parent->d_parent != parent){
119 len -= parent->d_name.len + 1;
121 strncpy(&name[len + 1], parent->d_name.name,
123 parent = parent->d_parent;
125 strncpy(name, root, strlen(root));
129 static char *inode_name(struct inode *ino, int extra)
131 struct dentry *dentry;
133 dentry = list_entry(ino->i_dentry.next, struct dentry, d_alias);
134 return(dentry_name(dentry, extra));
137 static int read_name(struct inode *ino, char *name)
139 /* The non-int inode fields are copied into ints by stat_file and
140 * then copied into the inode because passing the actual pointers
141 * in and having them treated as int * breaks on big-endian machines
144 int i_mode, i_nlink, i_blksize;
145 unsigned long long i_size;
146 unsigned long long i_ino;
147 unsigned long long i_blocks;
149 err = stat_file(name, &i_ino, &i_mode, &i_nlink, &ino->i_uid,
150 &ino->i_gid, &i_size, &ino->i_atime, &ino->i_mtime,
151 &ino->i_ctime, &i_blksize, &i_blocks);
156 ino->i_mode = i_mode;
157 ino->i_nlink = i_nlink;
158 ino->i_size = i_size;
159 ino->i_blksize = i_blksize;
160 ino->i_blocks = i_blocks;
164 static char *follow_link(char *link)
167 char *name, *resolved, *end;
172 name = kmalloc(len, GFP_KERNEL);
176 n = do_readlink(link, name, len);
188 end = strrchr(link, '/');
193 len = strlen(link) + strlen(name) + 1;
195 resolved = kmalloc(len, GFP_KERNEL);
196 if(resolved == NULL){
201 sprintf(resolved, "%s%s", link, name);
212 static int read_inode(struct inode *ino)
217 /* Unfortunately, we are called from iget() when we don't have a dentry
220 if(list_empty(&ino->i_dentry))
224 name = inode_name(ino, 0);
228 if(file_type(name, NULL, NULL) == OS_TYPE_SYMLINK){
229 name = follow_link(name);
236 err = read_name(ino, name);
242 int hostfs_statfs(struct super_block *sb, struct kstatfs *sf)
244 /* do_statfs uses struct statfs64 internally, but the linux kernel
245 * struct statfs still has 32-bit versions for most of these fields,
246 * so we convert them here
255 err = do_statfs(HOSTFS_I(sb->s_root->d_inode)->host_filename,
256 &sf->f_bsize, &f_blocks, &f_bfree, &f_bavail, &f_files,
257 &f_ffree, &sf->f_fsid, sizeof(sf->f_fsid),
258 &sf->f_namelen, sf->f_spare);
260 sf->f_blocks = f_blocks;
261 sf->f_bfree = f_bfree;
262 sf->f_bavail = f_bavail;
263 sf->f_files = f_files;
264 sf->f_ffree = f_ffree;
265 sf->f_type = HOSTFS_SUPER_MAGIC;
269 static struct inode *hostfs_alloc_inode(struct super_block *sb)
271 struct hostfs_inode_info *hi;
273 hi = kmalloc(sizeof(*hi), GFP_KERNEL);
277 *hi = ((struct hostfs_inode_info) { .host_filename = NULL,
280 inode_init_once(&hi->vfs_inode);
281 return(&hi->vfs_inode);
284 static void hostfs_delete_inode(struct inode *inode)
286 truncate_inode_pages(&inode->i_data, 0);
287 if(HOSTFS_I(inode)->fd != -1) {
288 close_file(&HOSTFS_I(inode)->fd);
289 HOSTFS_I(inode)->fd = -1;
294 static void hostfs_destroy_inode(struct inode *inode)
296 kfree(HOSTFS_I(inode)->host_filename);
298 /*XXX: This should not happen, probably. The check is here for
299 * additional safety.*/
300 if(HOSTFS_I(inode)->fd != -1) {
301 close_file(&HOSTFS_I(inode)->fd);
302 printk(KERN_DEBUG "Closing host fd in .destroy_inode\n");
305 kfree(HOSTFS_I(inode));
308 static void hostfs_read_inode(struct inode *inode)
313 static struct super_operations hostfs_sbops = {
314 .alloc_inode = hostfs_alloc_inode,
315 .drop_inode = generic_delete_inode,
316 .delete_inode = hostfs_delete_inode,
317 .destroy_inode = hostfs_destroy_inode,
318 .read_inode = hostfs_read_inode,
319 .statfs = hostfs_statfs,
322 int hostfs_readdir(struct file *file, void *ent, filldir_t filldir)
326 unsigned long long next, ino;
329 name = dentry_name(file->f_dentry, 0);
330 if(name == NULL) return(-ENOMEM);
331 dir = open_dir(name, &error);
333 if(dir == NULL) return(-error);
335 while((name = read_dir(dir, &next, &ino, &len)) != NULL){
336 error = (*filldir)(ent, name, len, file->f_pos,
345 int hostfs_file_open(struct inode *ino, struct file *file)
348 int mode = 0, r = 0, w = 0, fd;
350 mode = file->f_mode & (FMODE_READ | FMODE_WRITE);
351 if((mode & HOSTFS_I(ino)->mode) == mode)
354 /* The file may already have been opened, but with the wrong access,
355 * so this resets things and reopens the file with the new access.
357 if(HOSTFS_I(ino)->fd != -1){
358 close_file(&HOSTFS_I(ino)->fd);
359 HOSTFS_I(ino)->fd = -1;
362 HOSTFS_I(ino)->mode |= mode;
363 if(HOSTFS_I(ino)->mode & FMODE_READ)
365 if(HOSTFS_I(ino)->mode & FMODE_WRITE)
370 name = dentry_name(file->f_dentry, 0);
374 fd = open_file(name, r, w, append);
376 if(fd < 0) return(fd);
377 FILE_HOSTFS_I(file)->fd = fd;
382 int hostfs_fsync(struct file *file, struct dentry *dentry, int datasync)
384 return fsync_file(HOSTFS_I(dentry->d_inode)->fd, datasync);
387 static struct file_operations hostfs_file_fops = {
388 .llseek = generic_file_llseek,
389 .read = generic_file_read,
390 .sendfile = generic_file_sendfile,
391 .aio_read = generic_file_aio_read,
392 .aio_write = generic_file_aio_write,
393 .readv = generic_file_readv,
394 .writev = generic_file_writev,
395 .write = generic_file_write,
396 .mmap = generic_file_mmap,
397 .open = hostfs_file_open,
399 .fsync = hostfs_fsync,
402 static struct file_operations hostfs_dir_fops = {
403 .llseek = generic_file_llseek,
404 .readdir = hostfs_readdir,
405 .read = generic_read_dir,
408 int hostfs_writepage(struct page *page, struct writeback_control *wbc)
410 struct address_space *mapping = page->mapping;
411 struct inode *inode = mapping->host;
413 unsigned long long base;
414 int count = PAGE_CACHE_SIZE;
415 int end_index = inode->i_size >> PAGE_CACHE_SHIFT;
418 if (page->index >= end_index)
419 count = inode->i_size & (PAGE_CACHE_SIZE-1);
422 base = ((unsigned long long) page->index) << PAGE_CACHE_SHIFT;
424 err = write_file(HOSTFS_I(inode)->fd, &base, buffer, count);
426 ClearPageUptodate(page);
430 if (base > inode->i_size)
431 inode->i_size = base;
434 ClearPageError(page);
444 int hostfs_readpage(struct file *file, struct page *page)
450 start = (long long) page->index << PAGE_CACHE_SHIFT;
452 err = read_file(FILE_HOSTFS_I(file)->fd, &start, buffer,
454 if(err < 0) goto out;
456 memset(&buffer[err], 0, PAGE_CACHE_SIZE - err);
458 flush_dcache_page(page);
459 SetPageUptodate(page);
460 if (PageError(page)) ClearPageError(page);
468 int hostfs_prepare_write(struct file *file, struct page *page,
469 unsigned int from, unsigned int to)
472 long long start, tmp;
475 start = (long long) page->index << PAGE_CACHE_SHIFT;
479 err = read_file(FILE_HOSTFS_I(file)->fd, &tmp, buffer,
481 if(err < 0) goto out;
483 if(to != PAGE_CACHE_SIZE){
485 err = read_file(FILE_HOSTFS_I(file)->fd, &start, buffer + to,
486 PAGE_CACHE_SIZE - to);
487 if(err < 0) goto out;
495 int hostfs_commit_write(struct file *file, struct page *page, unsigned from,
498 struct address_space *mapping = page->mapping;
499 struct inode *inode = mapping->host;
504 start = (long long) (page->index << PAGE_CACHE_SHIFT) + from;
506 err = write_file(FILE_HOSTFS_I(file)->fd, &start, buffer + from,
509 if(!err && (start > inode->i_size))
510 inode->i_size = start;
516 static struct address_space_operations hostfs_aops = {
517 .writepage = hostfs_writepage,
518 .readpage = hostfs_readpage,
519 .set_page_dirty = __set_page_dirty_nobuffers,
520 .prepare_write = hostfs_prepare_write,
521 .commit_write = hostfs_commit_write
524 static int init_inode(struct inode *inode, struct dentry *dentry)
527 int type, err = -ENOMEM;
532 name = dentry_name(dentry, 0);
535 type = file_type(name, &maj, &min);
536 /*Reencode maj and min with the kernel encoding.*/
537 rdev = MKDEV(maj, min);
540 else type = OS_TYPE_DIR;
543 if(type == OS_TYPE_SYMLINK)
544 inode->i_op = &page_symlink_inode_operations;
545 else if(type == OS_TYPE_DIR)
546 inode->i_op = &hostfs_dir_iops;
547 else inode->i_op = &hostfs_iops;
549 if(type == OS_TYPE_DIR) inode->i_fop = &hostfs_dir_fops;
550 else inode->i_fop = &hostfs_file_fops;
552 if(type == OS_TYPE_SYMLINK)
553 inode->i_mapping->a_ops = &hostfs_link_aops;
554 else inode->i_mapping->a_ops = &hostfs_aops;
557 case OS_TYPE_CHARDEV:
558 init_special_inode(inode, S_IFCHR, rdev);
560 case OS_TYPE_BLOCKDEV:
561 init_special_inode(inode, S_IFBLK, rdev);
564 init_special_inode(inode, S_IFIFO, 0);
567 init_special_inode(inode, S_IFSOCK, 0);
574 int hostfs_create(struct inode *dir, struct dentry *dentry, int mode,
575 struct nameidata *nd)
582 inode = iget(dir->i_sb, 0);
583 if(inode == NULL) goto out;
585 error = init_inode(inode, dentry);
590 name = dentry_name(dentry, 0);
594 fd = file_create(name,
595 mode & S_IRUSR, mode & S_IWUSR, mode & S_IXUSR,
596 mode & S_IRGRP, mode & S_IWGRP, mode & S_IXGRP,
597 mode & S_IROTH, mode & S_IWOTH, mode & S_IXOTH);
600 else error = read_name(inode, name);
606 HOSTFS_I(inode)->fd = fd;
607 HOSTFS_I(inode)->mode = FMODE_READ | FMODE_WRITE;
608 d_instantiate(dentry, inode);
617 struct dentry *hostfs_lookup(struct inode *ino, struct dentry *dentry,
618 struct nameidata *nd)
625 inode = iget(ino->i_sb, 0);
629 err = init_inode(inode, dentry);
634 name = dentry_name(dentry, 0);
638 err = read_name(inode, name);
647 d_add(dentry, inode);
648 dentry->d_op = &hostfs_dentry_ops;
654 return(ERR_PTR(err));
657 static char *inode_dentry_name(struct inode *ino, struct dentry *dentry)
662 file = inode_name(ino, dentry->d_name.len + 1);
663 if(file == NULL) return(NULL);
666 strncat(file, dentry->d_name.name, dentry->d_name.len);
667 file[len + dentry->d_name.len] = '\0';
671 int hostfs_link(struct dentry *to, struct inode *ino, struct dentry *from)
673 char *from_name, *to_name;
676 if((from_name = inode_dentry_name(ino, from)) == NULL)
678 to_name = dentry_name(to, 0);
683 err = link_file(to_name, from_name);
689 int hostfs_unlink(struct inode *ino, struct dentry *dentry)
694 if((file = inode_dentry_name(ino, dentry)) == NULL) return(-ENOMEM);
698 err = unlink_file(file);
703 int hostfs_symlink(struct inode *ino, struct dentry *dentry, const char *to)
708 if((file = inode_dentry_name(ino, dentry)) == NULL) return(-ENOMEM);
709 err = make_symlink(file, to);
714 int hostfs_mkdir(struct inode *ino, struct dentry *dentry, int mode)
719 if((file = inode_dentry_name(ino, dentry)) == NULL) return(-ENOMEM);
720 err = do_mkdir(file, mode);
725 int hostfs_rmdir(struct inode *ino, struct dentry *dentry)
730 if((file = inode_dentry_name(ino, dentry)) == NULL) return(-ENOMEM);
731 err = do_rmdir(file);
736 int hostfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
742 inode = iget(dir->i_sb, 0);
746 err = init_inode(inode, dentry);
751 name = dentry_name(dentry, 0);
755 init_special_inode(inode, mode, dev);
756 err = do_mknod(name, mode, dev);
760 err = read_name(inode, name);
765 d_instantiate(dentry, inode);
776 int hostfs_rename(struct inode *from_ino, struct dentry *from,
777 struct inode *to_ino, struct dentry *to)
779 char *from_name, *to_name;
782 if((from_name = inode_dentry_name(from_ino, from)) == NULL)
784 if((to_name = inode_dentry_name(to_ino, to)) == NULL){
788 err = rename_file(from_name, to_name);
794 int hostfs_permission(struct inode *ino, int desired, struct nameidata *nd)
797 int r = 0, w = 0, x = 0, err;
799 if (desired & MAY_READ) r = 1;
800 if (desired & MAY_WRITE) w = 1;
801 if (desired & MAY_EXEC) x = 1;
802 name = inode_name(ino, 0);
803 if (name == NULL) return(-ENOMEM);
805 if (S_ISCHR(ino->i_mode) || S_ISBLK(ino->i_mode) ||
806 S_ISFIFO(ino->i_mode) || S_ISSOCK(ino->i_mode))
809 err = access_file(name, r, w, x);
812 err = generic_permission(ino, desired, NULL);
816 int hostfs_setattr(struct dentry *dentry, struct iattr *attr)
818 struct hostfs_iattr attrs;
822 err = inode_change_ok(dentry->d_inode, attr);
827 attr->ia_valid &= ~ATTR_SIZE;
830 if(attr->ia_valid & ATTR_MODE){
831 attrs.ia_valid |= HOSTFS_ATTR_MODE;
832 attrs.ia_mode = attr->ia_mode;
834 if(attr->ia_valid & ATTR_UID){
835 attrs.ia_valid |= HOSTFS_ATTR_UID;
836 attrs.ia_uid = attr->ia_uid;
838 if(attr->ia_valid & ATTR_GID){
839 attrs.ia_valid |= HOSTFS_ATTR_GID;
840 attrs.ia_gid = attr->ia_gid;
842 if(attr->ia_valid & ATTR_SIZE){
843 attrs.ia_valid |= HOSTFS_ATTR_SIZE;
844 attrs.ia_size = attr->ia_size;
846 if(attr->ia_valid & ATTR_ATIME){
847 attrs.ia_valid |= HOSTFS_ATTR_ATIME;
848 attrs.ia_atime = attr->ia_atime;
850 if(attr->ia_valid & ATTR_MTIME){
851 attrs.ia_valid |= HOSTFS_ATTR_MTIME;
852 attrs.ia_mtime = attr->ia_mtime;
854 if(attr->ia_valid & ATTR_CTIME){
855 attrs.ia_valid |= HOSTFS_ATTR_CTIME;
856 attrs.ia_ctime = attr->ia_ctime;
858 if(attr->ia_valid & ATTR_ATIME_SET){
859 attrs.ia_valid |= HOSTFS_ATTR_ATIME_SET;
861 if(attr->ia_valid & ATTR_MTIME_SET){
862 attrs.ia_valid |= HOSTFS_ATTR_MTIME_SET;
864 name = dentry_name(dentry, 0);
865 if(name == NULL) return(-ENOMEM);
866 err = set_attr(name, &attrs);
871 return(inode_setattr(dentry->d_inode, attr));
874 int hostfs_getattr(struct vfsmount *mnt, struct dentry *dentry,
877 generic_fillattr(dentry->d_inode, stat);
881 static struct inode_operations hostfs_iops = {
882 .create = hostfs_create,
884 .unlink = hostfs_unlink,
885 .symlink = hostfs_symlink,
886 .mkdir = hostfs_mkdir,
887 .rmdir = hostfs_rmdir,
888 .mknod = hostfs_mknod,
889 .rename = hostfs_rename,
890 .permission = hostfs_permission,
891 .setattr = hostfs_setattr,
892 .getattr = hostfs_getattr,
895 static struct inode_operations hostfs_dir_iops = {
896 .create = hostfs_create,
897 .lookup = hostfs_lookup,
899 .unlink = hostfs_unlink,
900 .symlink = hostfs_symlink,
901 .mkdir = hostfs_mkdir,
902 .rmdir = hostfs_rmdir,
903 .mknod = hostfs_mknod,
904 .rename = hostfs_rename,
905 .permission = hostfs_permission,
906 .setattr = hostfs_setattr,
907 .getattr = hostfs_getattr,
910 int hostfs_link_readpage(struct file *file, struct page *page)
916 start = page->index << PAGE_CACHE_SHIFT;
918 name = inode_name(page->mapping->host, 0);
919 if(name == NULL) return(-ENOMEM);
920 err = do_readlink(name, buffer, PAGE_CACHE_SIZE);
922 if(err == PAGE_CACHE_SIZE)
925 flush_dcache_page(page);
926 SetPageUptodate(page);
927 if (PageError(page)) ClearPageError(page);
935 static struct address_space_operations hostfs_link_aops = {
936 .readpage = hostfs_link_readpage,
939 static int hostfs_fill_sb_common(struct super_block *sb, void *d, int silent)
941 struct inode *root_inode;
942 char *name, *data = d;
945 sb->s_blocksize = 1024;
946 sb->s_blocksize_bits = 10;
947 sb->s_magic = HOSTFS_SUPER_MAGIC;
948 sb->s_op = &hostfs_sbops;
950 if((data == NULL) || (*data == '\0'))
954 name = kmalloc(strlen(data) + 1, GFP_KERNEL);
960 root_inode = iget(sb, 0);
961 if(root_inode == NULL)
964 err = init_inode(root_inode, NULL);
968 HOSTFS_I(root_inode)->host_filename = name;
971 sb->s_root = d_alloc_root(root_inode);
972 if(sb->s_root == NULL)
975 err = read_inode(root_inode);
977 /* No iput in this case because the dput does that for us */
993 static struct super_block *hostfs_read_sb(struct file_system_type *type,
994 int flags, const char *dev_name,
997 return(get_sb_nodev(type, flags, data, hostfs_fill_sb_common));
1000 static struct file_system_type hostfs_type = {
1001 .owner = THIS_MODULE,
1003 .get_sb = hostfs_read_sb,
1004 .kill_sb = kill_anon_super,
1008 static int __init init_hostfs(void)
1010 return(register_filesystem(&hostfs_type));
1013 static void __exit exit_hostfs(void)
1015 unregister_filesystem(&hostfs_type);
1018 module_init(init_hostfs)
1019 module_exit(exit_hostfs)
1020 MODULE_LICENSE("GPL");
1023 * Overrides for Emacs so that we follow Linus's tabbing style.
1024 * Emacs will notice this stuff at the end of the file and automatically
1025 * adjust the settings for this buffer only. This must remain at the end
1027 * ---------------------------------------------------------------------------
1029 * c-file-style: "linux"