2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.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"
25 struct hostfs_inode_info {
29 struct inode vfs_inode;
32 static inline struct hostfs_inode_info *HOSTFS_I(struct inode *inode)
34 return list_entry(inode, struct hostfs_inode_info, vfs_inode);
37 #define FILE_HOSTFS_I(file) HOSTFS_I((file)->f_path.dentry->d_inode)
39 int hostfs_d_delete(struct dentry *dentry)
44 struct dentry_operations hostfs_dentry_ops = {
45 .d_delete = hostfs_d_delete,
48 /* Changed in hostfs_args before the kernel starts running */
49 static char *root_ino = "";
50 static int append = 0;
52 #define HOSTFS_SUPER_MAGIC 0x00c0ffee
54 static const struct inode_operations hostfs_iops;
55 static const struct inode_operations hostfs_dir_iops;
56 static const struct address_space_operations hostfs_link_aops;
59 static int __init hostfs_args(char *options, int *add)
63 ptr = strchr(options, ',');
71 ptr = strchr(options, ',');
75 if(!strcmp(options, "append"))
77 else printf("hostfs_args - unsupported option - %s\n",
85 __uml_setup("hostfs=", hostfs_args,
86 "hostfs=<root dir>,<flags>,...\n"
87 " This is used to set hostfs parameters. The root directory argument\n"
88 " is used to confine all hostfs mounts to within the specified directory\n"
89 " tree on the host. If this isn't specified, then a user inside UML can\n"
90 " mount anything on the host that's accessible to the user that's running\n"
92 " The only flag currently supported is 'append', which specifies that all\n"
93 " files opened by hostfs will be opened in append mode.\n\n"
97 static char *dentry_name(struct dentry *dentry, int extra)
99 struct dentry *parent;
105 while(parent->d_parent != parent){
106 len += parent->d_name.len + 1;
107 parent = parent->d_parent;
110 root = HOSTFS_I(parent->d_inode)->host_filename;
112 name = kmalloc(len + extra + 1, GFP_KERNEL);
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, -1);
156 ino->i_mode = i_mode;
157 ino->i_nlink = i_nlink;
158 ino->i_size = i_size;
159 ino->i_blocks = i_blocks;
163 static char *follow_link(char *link)
166 char *name, *resolved, *end;
171 name = kmalloc(len, GFP_KERNEL);
175 n = do_readlink(link, name, len);
187 end = strrchr(link, '/');
192 len = strlen(link) + strlen(name) + 1;
194 resolved = kmalloc(len, GFP_KERNEL);
195 if(resolved == NULL){
200 sprintf(resolved, "%s%s", link, name);
211 static int read_inode(struct inode *ino)
216 /* Unfortunately, we are called from iget() when we don't have a dentry
219 if(list_empty(&ino->i_dentry))
223 name = inode_name(ino, 0);
227 if(file_type(name, NULL, NULL) == OS_TYPE_SYMLINK){
228 name = follow_link(name);
235 err = read_name(ino, name);
241 int hostfs_statfs(struct dentry *dentry, struct kstatfs *sf)
243 /* do_statfs uses struct statfs64 internally, but the linux kernel
244 * struct statfs still has 32-bit versions for most of these fields,
245 * so we convert them here
254 err = do_statfs(HOSTFS_I(dentry->d_sb->s_root->d_inode)->host_filename,
255 &sf->f_bsize, &f_blocks, &f_bfree, &f_bavail, &f_files,
256 &f_ffree, &sf->f_fsid, sizeof(sf->f_fsid),
257 &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 const 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_path.dentry, 0);
332 dir = open_dir(name, &error);
337 while((name = read_dir(dir, &next, &ino, &len)) != NULL){
338 error = (*filldir)(ent, name, len, file->f_pos,
347 int hostfs_file_open(struct inode *ino, struct file *file)
350 int mode = 0, r = 0, w = 0, fd;
352 mode = file->f_mode & (FMODE_READ | FMODE_WRITE);
353 if((mode & HOSTFS_I(ino)->mode) == mode)
356 /* The file may already have been opened, but with the wrong access,
357 * so this resets things and reopens the file with the new access.
359 if(HOSTFS_I(ino)->fd != -1){
360 close_file(&HOSTFS_I(ino)->fd);
361 HOSTFS_I(ino)->fd = -1;
364 HOSTFS_I(ino)->mode |= mode;
365 if(HOSTFS_I(ino)->mode & FMODE_READ)
367 if(HOSTFS_I(ino)->mode & FMODE_WRITE)
372 name = dentry_name(file->f_path.dentry, 0);
376 fd = open_file(name, r, w, append);
380 FILE_HOSTFS_I(file)->fd = fd;
385 int hostfs_fsync(struct file *file, struct dentry *dentry, int datasync)
387 return fsync_file(HOSTFS_I(dentry->d_inode)->fd, datasync);
390 static const struct file_operations hostfs_file_fops = {
391 .llseek = generic_file_llseek,
392 .read = do_sync_read,
393 .splice_read = generic_file_splice_read,
394 .aio_read = generic_file_aio_read,
395 .aio_write = generic_file_aio_write,
396 .write = do_sync_write,
397 .mmap = generic_file_mmap,
398 .open = hostfs_file_open,
400 .fsync = hostfs_fsync,
403 static const struct file_operations hostfs_dir_fops = {
404 .llseek = generic_file_llseek,
405 .readdir = hostfs_readdir,
406 .read = generic_read_dir,
409 int hostfs_writepage(struct page *page, struct writeback_control *wbc)
411 struct address_space *mapping = page->mapping;
412 struct inode *inode = mapping->host;
414 unsigned long long base;
415 int count = PAGE_CACHE_SIZE;
416 int end_index = inode->i_size >> PAGE_CACHE_SHIFT;
419 if (page->index >= end_index)
420 count = inode->i_size & (PAGE_CACHE_SIZE-1);
423 base = ((unsigned long long) page->index) << PAGE_CACHE_SHIFT;
425 err = write_file(HOSTFS_I(inode)->fd, &base, buffer, count);
427 ClearPageUptodate(page);
431 if (base > inode->i_size)
432 inode->i_size = base;
435 ClearPageError(page);
445 int hostfs_readpage(struct file *file, struct page *page)
451 start = (long long) page->index << PAGE_CACHE_SHIFT;
453 err = read_file(FILE_HOSTFS_I(file)->fd, &start, buffer,
455 if(err < 0) goto out;
457 memset(&buffer[err], 0, PAGE_CACHE_SIZE - err);
459 flush_dcache_page(page);
460 SetPageUptodate(page);
461 if (PageError(page)) ClearPageError(page);
469 int hostfs_prepare_write(struct file *file, struct page *page,
470 unsigned int from, unsigned int to)
473 long long start, tmp;
476 start = (long long) page->index << PAGE_CACHE_SHIFT;
480 err = read_file(FILE_HOSTFS_I(file)->fd, &tmp, buffer,
482 if(err < 0) goto out;
484 if(to != PAGE_CACHE_SIZE){
486 err = read_file(FILE_HOSTFS_I(file)->fd, &start, buffer + to,
487 PAGE_CACHE_SIZE - to);
488 if(err < 0) goto out;
496 int hostfs_commit_write(struct file *file, struct page *page, unsigned from,
499 struct address_space *mapping = page->mapping;
500 struct inode *inode = mapping->host;
505 start = (((long long) page->index) << PAGE_CACHE_SHIFT) + from;
507 err = write_file(FILE_HOSTFS_I(file)->fd, &start, buffer + from,
511 /* Actually, if !err, write_file has added to-from to start, so, despite
512 * the appearance, we are comparing i_size against the _last_ written
513 * location, as we should. */
515 if(!err && (start > inode->i_size))
516 inode->i_size = start;
522 static const struct address_space_operations hostfs_aops = {
523 .writepage = hostfs_writepage,
524 .readpage = hostfs_readpage,
525 .set_page_dirty = __set_page_dirty_nobuffers,
526 .prepare_write = hostfs_prepare_write,
527 .commit_write = hostfs_commit_write
530 static int init_inode(struct inode *inode, struct dentry *dentry)
533 int type, err = -ENOMEM;
538 name = dentry_name(dentry, 0);
541 type = file_type(name, &maj, &min);
542 /*Reencode maj and min with the kernel encoding.*/
543 rdev = MKDEV(maj, min);
546 else type = OS_TYPE_DIR;
549 if(type == OS_TYPE_SYMLINK)
550 inode->i_op = &page_symlink_inode_operations;
551 else if(type == OS_TYPE_DIR)
552 inode->i_op = &hostfs_dir_iops;
553 else inode->i_op = &hostfs_iops;
555 if(type == OS_TYPE_DIR) inode->i_fop = &hostfs_dir_fops;
556 else inode->i_fop = &hostfs_file_fops;
558 if(type == OS_TYPE_SYMLINK)
559 inode->i_mapping->a_ops = &hostfs_link_aops;
560 else inode->i_mapping->a_ops = &hostfs_aops;
563 case OS_TYPE_CHARDEV:
564 init_special_inode(inode, S_IFCHR, rdev);
566 case OS_TYPE_BLOCKDEV:
567 init_special_inode(inode, S_IFBLK, rdev);
570 init_special_inode(inode, S_IFIFO, 0);
573 init_special_inode(inode, S_IFSOCK, 0);
580 int hostfs_create(struct inode *dir, struct dentry *dentry, int mode,
581 struct nameidata *nd)
588 inode = iget(dir->i_sb, 0);
589 if(inode == NULL) goto out;
591 error = init_inode(inode, dentry);
596 name = dentry_name(dentry, 0);
600 fd = file_create(name,
601 mode & S_IRUSR, mode & S_IWUSR, mode & S_IXUSR,
602 mode & S_IRGRP, mode & S_IWGRP, mode & S_IXGRP,
603 mode & S_IROTH, mode & S_IWOTH, mode & S_IXOTH);
606 else error = read_name(inode, name);
612 HOSTFS_I(inode)->fd = fd;
613 HOSTFS_I(inode)->mode = FMODE_READ | FMODE_WRITE;
614 d_instantiate(dentry, inode);
623 struct dentry *hostfs_lookup(struct inode *ino, struct dentry *dentry,
624 struct nameidata *nd)
631 inode = iget(ino->i_sb, 0);
635 err = init_inode(inode, dentry);
640 name = dentry_name(dentry, 0);
644 err = read_name(inode, name);
653 d_add(dentry, inode);
654 dentry->d_op = &hostfs_dentry_ops;
663 static char *inode_dentry_name(struct inode *ino, struct dentry *dentry)
668 file = inode_name(ino, dentry->d_name.len + 1);
673 strncat(file, dentry->d_name.name, dentry->d_name.len);
674 file[len + dentry->d_name.len] = '\0';
678 int hostfs_link(struct dentry *to, struct inode *ino, struct dentry *from)
680 char *from_name, *to_name;
683 if((from_name = inode_dentry_name(ino, from)) == NULL)
685 to_name = dentry_name(to, 0);
690 err = link_file(to_name, from_name);
696 int hostfs_unlink(struct inode *ino, struct dentry *dentry)
701 if((file = inode_dentry_name(ino, dentry)) == NULL)
706 err = unlink_file(file);
711 int hostfs_symlink(struct inode *ino, struct dentry *dentry, const char *to)
716 if((file = inode_dentry_name(ino, dentry)) == NULL)
718 err = make_symlink(file, to);
723 int hostfs_mkdir(struct inode *ino, struct dentry *dentry, int mode)
728 if((file = inode_dentry_name(ino, dentry)) == NULL)
730 err = do_mkdir(file, mode);
735 int hostfs_rmdir(struct inode *ino, struct dentry *dentry)
740 if((file = inode_dentry_name(ino, dentry)) == NULL)
742 err = do_rmdir(file);
747 int hostfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
753 inode = iget(dir->i_sb, 0);
757 err = init_inode(inode, dentry);
762 name = dentry_name(dentry, 0);
766 init_special_inode(inode, mode, dev);
767 err = do_mknod(name, mode, MAJOR(dev), MINOR(dev));
771 err = read_name(inode, name);
776 d_instantiate(dentry, inode);
787 int hostfs_rename(struct inode *from_ino, struct dentry *from,
788 struct inode *to_ino, struct dentry *to)
790 char *from_name, *to_name;
793 if((from_name = inode_dentry_name(from_ino, from)) == NULL)
795 if((to_name = inode_dentry_name(to_ino, to)) == NULL){
799 err = rename_file(from_name, to_name);
805 int hostfs_permission(struct inode *ino, int desired, struct nameidata *nd)
808 int r = 0, w = 0, x = 0, err;
810 if (desired & MAY_READ) r = 1;
811 if (desired & MAY_WRITE) w = 1;
812 if (desired & MAY_EXEC) x = 1;
813 name = inode_name(ino, 0);
817 if (S_ISCHR(ino->i_mode) || S_ISBLK(ino->i_mode) ||
818 S_ISFIFO(ino->i_mode) || S_ISSOCK(ino->i_mode))
821 err = access_file(name, r, w, x);
824 err = generic_permission(ino, desired, NULL);
828 int hostfs_setattr(struct dentry *dentry, struct iattr *attr)
830 struct hostfs_iattr attrs;
834 int fd = HOSTFS_I(dentry->d_inode)->fd;
836 err = inode_change_ok(dentry->d_inode, attr);
841 attr->ia_valid &= ~ATTR_SIZE;
844 if(attr->ia_valid & ATTR_MODE){
845 attrs.ia_valid |= HOSTFS_ATTR_MODE;
846 attrs.ia_mode = attr->ia_mode;
848 if(attr->ia_valid & ATTR_UID){
849 attrs.ia_valid |= HOSTFS_ATTR_UID;
850 attrs.ia_uid = attr->ia_uid;
852 if(attr->ia_valid & ATTR_GID){
853 attrs.ia_valid |= HOSTFS_ATTR_GID;
854 attrs.ia_gid = attr->ia_gid;
856 if(attr->ia_valid & ATTR_SIZE){
857 attrs.ia_valid |= HOSTFS_ATTR_SIZE;
858 attrs.ia_size = attr->ia_size;
860 if(attr->ia_valid & ATTR_ATIME){
861 attrs.ia_valid |= HOSTFS_ATTR_ATIME;
862 attrs.ia_atime = attr->ia_atime;
864 if(attr->ia_valid & ATTR_MTIME){
865 attrs.ia_valid |= HOSTFS_ATTR_MTIME;
866 attrs.ia_mtime = attr->ia_mtime;
868 if(attr->ia_valid & ATTR_CTIME){
869 attrs.ia_valid |= HOSTFS_ATTR_CTIME;
870 attrs.ia_ctime = attr->ia_ctime;
872 if(attr->ia_valid & ATTR_ATIME_SET){
873 attrs.ia_valid |= HOSTFS_ATTR_ATIME_SET;
875 if(attr->ia_valid & ATTR_MTIME_SET){
876 attrs.ia_valid |= HOSTFS_ATTR_MTIME_SET;
878 name = dentry_name(dentry, 0);
881 err = set_attr(name, &attrs, fd);
886 return inode_setattr(dentry->d_inode, attr);
889 int hostfs_getattr(struct vfsmount *mnt, struct dentry *dentry,
892 generic_fillattr(dentry->d_inode, stat);
896 static const struct inode_operations hostfs_iops = {
897 .create = hostfs_create,
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 static const struct inode_operations hostfs_dir_iops = {
911 .create = hostfs_create,
912 .lookup = hostfs_lookup,
914 .unlink = hostfs_unlink,
915 .symlink = hostfs_symlink,
916 .mkdir = hostfs_mkdir,
917 .rmdir = hostfs_rmdir,
918 .mknod = hostfs_mknod,
919 .rename = hostfs_rename,
920 .permission = hostfs_permission,
921 .setattr = hostfs_setattr,
922 .getattr = hostfs_getattr,
925 int hostfs_link_readpage(struct file *file, struct page *page)
931 name = inode_name(page->mapping->host, 0);
934 err = do_readlink(name, buffer, PAGE_CACHE_SIZE);
936 if(err == PAGE_CACHE_SIZE)
939 flush_dcache_page(page);
940 SetPageUptodate(page);
941 if (PageError(page)) ClearPageError(page);
949 static const struct address_space_operations hostfs_link_aops = {
950 .readpage = hostfs_link_readpage,
953 static int hostfs_fill_sb_common(struct super_block *sb, void *d, int silent)
955 struct inode *root_inode;
956 char *host_root_path, *req_root = d;
959 sb->s_blocksize = 1024;
960 sb->s_blocksize_bits = 10;
961 sb->s_magic = HOSTFS_SUPER_MAGIC;
962 sb->s_op = &hostfs_sbops;
964 /* NULL is printed as <NULL> by sprintf: avoid that. */
965 if (req_root == NULL)
969 host_root_path = kmalloc(strlen(root_ino) + 1
970 + strlen(req_root) + 1, GFP_KERNEL);
971 if(host_root_path == NULL)
974 sprintf(host_root_path, "%s/%s", root_ino, req_root);
976 root_inode = iget(sb, 0);
977 if(root_inode == NULL)
980 err = init_inode(root_inode, NULL);
984 HOSTFS_I(root_inode)->host_filename = host_root_path;
985 /* Avoid that in the error path, iput(root_inode) frees again
986 * host_root_path through hostfs_destroy_inode! */
987 host_root_path = NULL;
990 sb->s_root = d_alloc_root(root_inode);
991 if(sb->s_root == NULL)
994 err = read_inode(root_inode);
996 /* No iput in this case because the dput does that for us */
1007 kfree(host_root_path);
1012 static int hostfs_read_sb(struct file_system_type *type,
1013 int flags, const char *dev_name,
1014 void *data, struct vfsmount *mnt)
1016 return get_sb_nodev(type, flags, data, hostfs_fill_sb_common, mnt);
1019 static struct file_system_type hostfs_type = {
1020 .owner = THIS_MODULE,
1022 .get_sb = hostfs_read_sb,
1023 .kill_sb = kill_anon_super,
1027 static int __init init_hostfs(void)
1029 return register_filesystem(&hostfs_type);
1032 static void __exit exit_hostfs(void)
1034 unregister_filesystem(&hostfs_type);
1037 module_init(init_hostfs)
1038 module_exit(exit_hostfs)
1039 MODULE_LICENSE("GPL");