hostfs: Make hostfs_readpage more readable
[firefly-linux-kernel-4.4.55.git] / fs / hostfs / hostfs_kern.c
1 /*
2  * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3  * Licensed under the GPL
4  *
5  * Ported the filesystem routines to 2.5.
6  * 2003-02-10 Petr Baudis <pasky@ucw.cz>
7  */
8
9 #include <linux/fs.h>
10 #include <linux/magic.h>
11 #include <linux/module.h>
12 #include <linux/mm.h>
13 #include <linux/pagemap.h>
14 #include <linux/statfs.h>
15 #include <linux/slab.h>
16 #include <linux/seq_file.h>
17 #include <linux/mount.h>
18 #include <linux/namei.h>
19 #include "hostfs.h"
20 #include <init.h>
21 #include <kern.h>
22
23 struct hostfs_inode_info {
24         int fd;
25         fmode_t mode;
26         struct inode vfs_inode;
27         struct mutex open_mutex;
28 };
29
30 static inline struct hostfs_inode_info *HOSTFS_I(struct inode *inode)
31 {
32         return list_entry(inode, struct hostfs_inode_info, vfs_inode);
33 }
34
35 #define FILE_HOSTFS_I(file) HOSTFS_I(file_inode(file))
36
37 /* Changed in hostfs_args before the kernel starts running */
38 static char *root_ino = "";
39 static int append = 0;
40
41 static const struct inode_operations hostfs_iops;
42 static const struct inode_operations hostfs_dir_iops;
43 static const struct inode_operations hostfs_link_iops;
44
45 #ifndef MODULE
46 static int __init hostfs_args(char *options, int *add)
47 {
48         char *ptr;
49
50         ptr = strchr(options, ',');
51         if (ptr != NULL)
52                 *ptr++ = '\0';
53         if (*options != '\0')
54                 root_ino = options;
55
56         options = ptr;
57         while (options) {
58                 ptr = strchr(options, ',');
59                 if (ptr != NULL)
60                         *ptr++ = '\0';
61                 if (*options != '\0') {
62                         if (!strcmp(options, "append"))
63                                 append = 1;
64                         else printf("hostfs_args - unsupported option - %s\n",
65                                     options);
66                 }
67                 options = ptr;
68         }
69         return 0;
70 }
71
72 __uml_setup("hostfs=", hostfs_args,
73 "hostfs=<root dir>,<flags>,...\n"
74 "    This is used to set hostfs parameters.  The root directory argument\n"
75 "    is used to confine all hostfs mounts to within the specified directory\n"
76 "    tree on the host.  If this isn't specified, then a user inside UML can\n"
77 "    mount anything on the host that's accessible to the user that's running\n"
78 "    it.\n"
79 "    The only flag currently supported is 'append', which specifies that all\n"
80 "    files opened by hostfs will be opened in append mode.\n\n"
81 );
82 #endif
83
84 static char *__dentry_name(struct dentry *dentry, char *name)
85 {
86         char *p = dentry_path_raw(dentry, name, PATH_MAX);
87         char *root;
88         size_t len;
89
90         root = dentry->d_sb->s_fs_info;
91         len = strlen(root);
92         if (IS_ERR(p)) {
93                 __putname(name);
94                 return NULL;
95         }
96         strlcpy(name, root, PATH_MAX);
97         if (len > p - name) {
98                 __putname(name);
99                 return NULL;
100         }
101         if (p > name + len) {
102                 char *s = name + len;
103                 while ((*s++ = *p++) != '\0')
104                         ;
105         }
106         return name;
107 }
108
109 static char *dentry_name(struct dentry *dentry)
110 {
111         char *name = __getname();
112         if (!name)
113                 return NULL;
114
115         return __dentry_name(dentry, name);
116 }
117
118 static char *inode_name(struct inode *ino)
119 {
120         struct dentry *dentry;
121         char *name;
122
123         dentry = d_find_alias(ino);
124         if (!dentry)
125                 return NULL;
126
127         name = dentry_name(dentry);
128
129         dput(dentry);
130
131         return name;
132 }
133
134 static char *follow_link(char *link)
135 {
136         int len, n;
137         char *name, *resolved, *end;
138
139         len = 64;
140         while (1) {
141                 n = -ENOMEM;
142                 name = kmalloc(len, GFP_KERNEL);
143                 if (name == NULL)
144                         goto out;
145
146                 n = hostfs_do_readlink(link, name, len);
147                 if (n < len)
148                         break;
149                 len *= 2;
150                 kfree(name);
151         }
152         if (n < 0)
153                 goto out_free;
154
155         if (*name == '/')
156                 return name;
157
158         end = strrchr(link, '/');
159         if (end == NULL)
160                 return name;
161
162         *(end + 1) = '\0';
163         len = strlen(link) + strlen(name) + 1;
164
165         resolved = kmalloc(len, GFP_KERNEL);
166         if (resolved == NULL) {
167                 n = -ENOMEM;
168                 goto out_free;
169         }
170
171         sprintf(resolved, "%s%s", link, name);
172         kfree(name);
173         kfree(link);
174         return resolved;
175
176  out_free:
177         kfree(name);
178  out:
179         return ERR_PTR(n);
180 }
181
182 static struct inode *hostfs_iget(struct super_block *sb)
183 {
184         struct inode *inode = new_inode(sb);
185         if (!inode)
186                 return ERR_PTR(-ENOMEM);
187         return inode;
188 }
189
190 static int hostfs_statfs(struct dentry *dentry, struct kstatfs *sf)
191 {
192         /*
193          * do_statfs uses struct statfs64 internally, but the linux kernel
194          * struct statfs still has 32-bit versions for most of these fields,
195          * so we convert them here
196          */
197         int err;
198         long long f_blocks;
199         long long f_bfree;
200         long long f_bavail;
201         long long f_files;
202         long long f_ffree;
203
204         err = do_statfs(dentry->d_sb->s_fs_info,
205                         &sf->f_bsize, &f_blocks, &f_bfree, &f_bavail, &f_files,
206                         &f_ffree, &sf->f_fsid, sizeof(sf->f_fsid),
207                         &sf->f_namelen);
208         if (err)
209                 return err;
210         sf->f_blocks = f_blocks;
211         sf->f_bfree = f_bfree;
212         sf->f_bavail = f_bavail;
213         sf->f_files = f_files;
214         sf->f_ffree = f_ffree;
215         sf->f_type = HOSTFS_SUPER_MAGIC;
216         return 0;
217 }
218
219 static struct inode *hostfs_alloc_inode(struct super_block *sb)
220 {
221         struct hostfs_inode_info *hi;
222
223         hi = kmalloc(sizeof(*hi), GFP_KERNEL);
224         if (hi == NULL)
225                 return NULL;
226         hi->fd = -1;
227         hi->mode = 0;
228         inode_init_once(&hi->vfs_inode);
229         mutex_init(&hi->open_mutex);
230         return &hi->vfs_inode;
231 }
232
233 static void hostfs_evict_inode(struct inode *inode)
234 {
235         truncate_inode_pages_final(&inode->i_data);
236         clear_inode(inode);
237         if (HOSTFS_I(inode)->fd != -1) {
238                 close_file(&HOSTFS_I(inode)->fd);
239                 HOSTFS_I(inode)->fd = -1;
240         }
241 }
242
243 static void hostfs_i_callback(struct rcu_head *head)
244 {
245         struct inode *inode = container_of(head, struct inode, i_rcu);
246         kfree(HOSTFS_I(inode));
247 }
248
249 static void hostfs_destroy_inode(struct inode *inode)
250 {
251         call_rcu(&inode->i_rcu, hostfs_i_callback);
252 }
253
254 static int hostfs_show_options(struct seq_file *seq, struct dentry *root)
255 {
256         const char *root_path = root->d_sb->s_fs_info;
257         size_t offset = strlen(root_ino) + 1;
258
259         if (strlen(root_path) > offset)
260                 seq_printf(seq, ",%s", root_path + offset);
261
262         return 0;
263 }
264
265 static const struct super_operations hostfs_sbops = {
266         .alloc_inode    = hostfs_alloc_inode,
267         .destroy_inode  = hostfs_destroy_inode,
268         .evict_inode    = hostfs_evict_inode,
269         .statfs         = hostfs_statfs,
270         .show_options   = hostfs_show_options,
271 };
272
273 static int hostfs_readdir(struct file *file, struct dir_context *ctx)
274 {
275         void *dir;
276         char *name;
277         unsigned long long next, ino;
278         int error, len;
279         unsigned int type;
280
281         name = dentry_name(file->f_path.dentry);
282         if (name == NULL)
283                 return -ENOMEM;
284         dir = open_dir(name, &error);
285         __putname(name);
286         if (dir == NULL)
287                 return -error;
288         next = ctx->pos;
289         while ((name = read_dir(dir, &next, &ino, &len, &type)) != NULL) {
290                 if (!dir_emit(ctx, name, len, ino, type))
291                         break;
292                 ctx->pos = next;
293         }
294         close_dir(dir);
295         return 0;
296 }
297
298 static int hostfs_open(struct inode *ino, struct file *file)
299 {
300         char *name;
301         fmode_t mode = 0;
302         int err;
303         int r = 0, w = 0, fd;
304
305         mode = file->f_mode & (FMODE_READ | FMODE_WRITE);
306         if ((mode & HOSTFS_I(ino)->mode) == mode)
307                 return 0;
308
309         mode |= HOSTFS_I(ino)->mode;
310
311 retry:
312         if (mode & FMODE_READ)
313                 r = 1;
314         if (mode & FMODE_WRITE)
315                 w = 1;
316         if (w)
317                 r = 1;
318
319         name = dentry_name(file->f_path.dentry);
320         if (name == NULL)
321                 return -ENOMEM;
322
323         fd = open_file(name, r, w, append);
324         __putname(name);
325         if (fd < 0)
326                 return fd;
327
328         mutex_lock(&HOSTFS_I(ino)->open_mutex);
329         /* somebody else had handled it first? */
330         if ((mode & HOSTFS_I(ino)->mode) == mode) {
331                 mutex_unlock(&HOSTFS_I(ino)->open_mutex);
332                 close_file(&fd);
333                 return 0;
334         }
335         if ((mode | HOSTFS_I(ino)->mode) != mode) {
336                 mode |= HOSTFS_I(ino)->mode;
337                 mutex_unlock(&HOSTFS_I(ino)->open_mutex);
338                 close_file(&fd);
339                 goto retry;
340         }
341         if (HOSTFS_I(ino)->fd == -1) {
342                 HOSTFS_I(ino)->fd = fd;
343         } else {
344                 err = replace_file(fd, HOSTFS_I(ino)->fd);
345                 close_file(&fd);
346                 if (err < 0) {
347                         mutex_unlock(&HOSTFS_I(ino)->open_mutex);
348                         return err;
349                 }
350         }
351         HOSTFS_I(ino)->mode = mode;
352         mutex_unlock(&HOSTFS_I(ino)->open_mutex);
353
354         return 0;
355 }
356
357 static int hostfs_file_release(struct inode *inode, struct file *file)
358 {
359         filemap_write_and_wait(inode->i_mapping);
360
361         return 0;
362 }
363
364 static int hostfs_fsync(struct file *file, loff_t start, loff_t end,
365                         int datasync)
366 {
367         struct inode *inode = file->f_mapping->host;
368         int ret;
369
370         ret = filemap_write_and_wait_range(inode->i_mapping, start, end);
371         if (ret)
372                 return ret;
373
374         mutex_lock(&inode->i_mutex);
375         ret = fsync_file(HOSTFS_I(inode)->fd, datasync);
376         mutex_unlock(&inode->i_mutex);
377
378         return ret;
379 }
380
381 static const struct file_operations hostfs_file_fops = {
382         .llseek         = generic_file_llseek,
383         .read           = new_sync_read,
384         .splice_read    = generic_file_splice_read,
385         .read_iter      = generic_file_read_iter,
386         .write_iter     = generic_file_write_iter,
387         .write          = new_sync_write,
388         .mmap           = generic_file_mmap,
389         .open           = hostfs_open,
390         .release        = hostfs_file_release,
391         .fsync          = hostfs_fsync,
392 };
393
394 static const struct file_operations hostfs_dir_fops = {
395         .llseek         = generic_file_llseek,
396         .iterate        = hostfs_readdir,
397         .read           = generic_read_dir,
398         .open           = hostfs_open,
399         .fsync          = hostfs_fsync,
400 };
401
402 static int hostfs_writepage(struct page *page, struct writeback_control *wbc)
403 {
404         struct address_space *mapping = page->mapping;
405         struct inode *inode = mapping->host;
406         char *buffer;
407         unsigned long long base;
408         int count = PAGE_CACHE_SIZE;
409         int end_index = inode->i_size >> PAGE_CACHE_SHIFT;
410         int err;
411
412         if (page->index >= end_index)
413                 count = inode->i_size & (PAGE_CACHE_SIZE-1);
414
415         buffer = kmap(page);
416         base = ((unsigned long long) page->index) << PAGE_CACHE_SHIFT;
417
418         err = write_file(HOSTFS_I(inode)->fd, &base, buffer, count);
419         if (err != count) {
420                 ClearPageUptodate(page);
421                 goto out;
422         }
423
424         if (base > inode->i_size)
425                 inode->i_size = base;
426
427         if (PageError(page))
428                 ClearPageError(page);
429         err = 0;
430
431  out:
432         kunmap(page);
433
434         unlock_page(page);
435         return err;
436 }
437
438 static int hostfs_readpage(struct file *file, struct page *page)
439 {
440         char *buffer;
441         long long start;
442         int bytes_read, ret;
443
444         start = (long long) page->index << PAGE_CACHE_SHIFT;
445         buffer = kmap(page);
446         bytes_read = read_file(FILE_HOSTFS_I(file)->fd, &start, buffer,
447                         PAGE_CACHE_SIZE);
448         if (bytes_read < 0) {
449                 ret = bytes_read;
450                 goto out;
451         }
452
453         memset(buffer + bytes_read, 0, PAGE_CACHE_SIZE - bytes_read);
454
455         flush_dcache_page(page);
456         SetPageUptodate(page);
457         if (PageError(page)) ClearPageError(page);
458         ret = 0;
459  out:
460         kunmap(page);
461         unlock_page(page);
462         return ret;
463 }
464
465 static int hostfs_write_begin(struct file *file, struct address_space *mapping,
466                               loff_t pos, unsigned len, unsigned flags,
467                               struct page **pagep, void **fsdata)
468 {
469         pgoff_t index = pos >> PAGE_CACHE_SHIFT;
470
471         *pagep = grab_cache_page_write_begin(mapping, index, flags);
472         if (!*pagep)
473                 return -ENOMEM;
474         return 0;
475 }
476
477 static int hostfs_write_end(struct file *file, struct address_space *mapping,
478                             loff_t pos, unsigned len, unsigned copied,
479                             struct page *page, void *fsdata)
480 {
481         struct inode *inode = mapping->host;
482         void *buffer;
483         unsigned from = pos & (PAGE_CACHE_SIZE - 1);
484         int err;
485
486         buffer = kmap(page);
487         err = write_file(FILE_HOSTFS_I(file)->fd, &pos, buffer + from, copied);
488         kunmap(page);
489
490         if (!PageUptodate(page) && err == PAGE_CACHE_SIZE)
491                 SetPageUptodate(page);
492
493         /*
494          * If err > 0, write_file has added err to pos, so we are comparing
495          * i_size against the last byte written.
496          */
497         if (err > 0 && (pos > inode->i_size))
498                 inode->i_size = pos;
499         unlock_page(page);
500         page_cache_release(page);
501
502         return err;
503 }
504
505 static const struct address_space_operations hostfs_aops = {
506         .writepage      = hostfs_writepage,
507         .readpage       = hostfs_readpage,
508         .set_page_dirty = __set_page_dirty_nobuffers,
509         .write_begin    = hostfs_write_begin,
510         .write_end      = hostfs_write_end,
511 };
512
513 static int read_name(struct inode *ino, char *name)
514 {
515         dev_t rdev;
516         struct hostfs_stat st;
517         int err = stat_file(name, &st, -1);
518         if (err)
519                 return err;
520
521         /* Reencode maj and min with the kernel encoding.*/
522         rdev = MKDEV(st.maj, st.min);
523
524         switch (st.mode & S_IFMT) {
525         case S_IFLNK:
526                 ino->i_op = &hostfs_link_iops;
527                 break;
528         case S_IFDIR:
529                 ino->i_op = &hostfs_dir_iops;
530                 ino->i_fop = &hostfs_dir_fops;
531                 break;
532         case S_IFCHR:
533         case S_IFBLK:
534         case S_IFIFO:
535         case S_IFSOCK:
536                 init_special_inode(ino, st.mode & S_IFMT, rdev);
537                 ino->i_op = &hostfs_iops;
538                 break;
539         case S_IFREG:
540                 ino->i_op = &hostfs_iops;
541                 ino->i_fop = &hostfs_file_fops;
542                 ino->i_mapping->a_ops = &hostfs_aops;
543                 break;
544         default:
545                 return -EIO;
546         }
547
548         ino->i_ino = st.ino;
549         ino->i_mode = st.mode;
550         set_nlink(ino, st.nlink);
551         i_uid_write(ino, st.uid);
552         i_gid_write(ino, st.gid);
553         ino->i_atime = st.atime;
554         ino->i_mtime = st.mtime;
555         ino->i_ctime = st.ctime;
556         ino->i_size = st.size;
557         ino->i_blocks = st.blocks;
558         return 0;
559 }
560
561 static int hostfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
562                          bool excl)
563 {
564         struct inode *inode;
565         char *name;
566         int error, fd;
567
568         inode = hostfs_iget(dir->i_sb);
569         if (IS_ERR(inode)) {
570                 error = PTR_ERR(inode);
571                 goto out;
572         }
573
574         error = -ENOMEM;
575         name = dentry_name(dentry);
576         if (name == NULL)
577                 goto out_put;
578
579         fd = file_create(name,
580                          mode & S_IRUSR, mode & S_IWUSR, mode & S_IXUSR,
581                          mode & S_IRGRP, mode & S_IWGRP, mode & S_IXGRP,
582                          mode & S_IROTH, mode & S_IWOTH, mode & S_IXOTH);
583         if (fd < 0)
584                 error = fd;
585         else
586                 error = read_name(inode, name);
587
588         __putname(name);
589         if (error)
590                 goto out_put;
591
592         HOSTFS_I(inode)->fd = fd;
593         HOSTFS_I(inode)->mode = FMODE_READ | FMODE_WRITE;
594         d_instantiate(dentry, inode);
595         return 0;
596
597  out_put:
598         iput(inode);
599  out:
600         return error;
601 }
602
603 static struct dentry *hostfs_lookup(struct inode *ino, struct dentry *dentry,
604                                     unsigned int flags)
605 {
606         struct inode *inode;
607         char *name;
608         int err;
609
610         inode = hostfs_iget(ino->i_sb);
611         if (IS_ERR(inode)) {
612                 err = PTR_ERR(inode);
613                 goto out;
614         }
615
616         err = -ENOMEM;
617         name = dentry_name(dentry);
618         if (name == NULL)
619                 goto out_put;
620
621         err = read_name(inode, name);
622
623         __putname(name);
624         if (err == -ENOENT) {
625                 iput(inode);
626                 inode = NULL;
627         }
628         else if (err)
629                 goto out_put;
630
631         d_add(dentry, inode);
632         return NULL;
633
634  out_put:
635         iput(inode);
636  out:
637         return ERR_PTR(err);
638 }
639
640 static int hostfs_link(struct dentry *to, struct inode *ino,
641                        struct dentry *from)
642 {
643         char *from_name, *to_name;
644         int err;
645
646         if ((from_name = dentry_name(from)) == NULL)
647                 return -ENOMEM;
648         to_name = dentry_name(to);
649         if (to_name == NULL) {
650                 __putname(from_name);
651                 return -ENOMEM;
652         }
653         err = link_file(to_name, from_name);
654         __putname(from_name);
655         __putname(to_name);
656         return err;
657 }
658
659 static int hostfs_unlink(struct inode *ino, struct dentry *dentry)
660 {
661         char *file;
662         int err;
663
664         if (append)
665                 return -EPERM;
666
667         if ((file = dentry_name(dentry)) == NULL)
668                 return -ENOMEM;
669
670         err = unlink_file(file);
671         __putname(file);
672         return err;
673 }
674
675 static int hostfs_symlink(struct inode *ino, struct dentry *dentry,
676                           const char *to)
677 {
678         char *file;
679         int err;
680
681         if ((file = dentry_name(dentry)) == NULL)
682                 return -ENOMEM;
683         err = make_symlink(file, to);
684         __putname(file);
685         return err;
686 }
687
688 static int hostfs_mkdir(struct inode *ino, struct dentry *dentry, umode_t mode)
689 {
690         char *file;
691         int err;
692
693         if ((file = dentry_name(dentry)) == NULL)
694                 return -ENOMEM;
695         err = do_mkdir(file, mode);
696         __putname(file);
697         return err;
698 }
699
700 static int hostfs_rmdir(struct inode *ino, struct dentry *dentry)
701 {
702         char *file;
703         int err;
704
705         if ((file = dentry_name(dentry)) == NULL)
706                 return -ENOMEM;
707         err = do_rmdir(file);
708         __putname(file);
709         return err;
710 }
711
712 static int hostfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
713 {
714         struct inode *inode;
715         char *name;
716         int err;
717
718         inode = hostfs_iget(dir->i_sb);
719         if (IS_ERR(inode)) {
720                 err = PTR_ERR(inode);
721                 goto out;
722         }
723
724         err = -ENOMEM;
725         name = dentry_name(dentry);
726         if (name == NULL)
727                 goto out_put;
728
729         init_special_inode(inode, mode, dev);
730         err = do_mknod(name, mode, MAJOR(dev), MINOR(dev));
731         if (!err)
732                 goto out_free;
733
734         err = read_name(inode, name);
735         __putname(name);
736         if (err)
737                 goto out_put;
738         if (err)
739                 goto out_put;
740
741         d_instantiate(dentry, inode);
742         return 0;
743
744  out_free:
745         __putname(name);
746  out_put:
747         iput(inode);
748  out:
749         return err;
750 }
751
752 static int hostfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
753                           struct inode *new_dir, struct dentry *new_dentry,
754                           unsigned int flags)
755 {
756         char *old_name, *new_name;
757         int err;
758
759         if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE))
760                 return -EINVAL;
761
762         old_name = dentry_name(old_dentry);
763         if (old_name == NULL)
764                 return -ENOMEM;
765         new_name = dentry_name(new_dentry);
766         if (new_name == NULL) {
767                 __putname(old_name);
768                 return -ENOMEM;
769         }
770         if (!flags)
771                 err = rename_file(old_name, new_name);
772         else
773                 err = rename2_file(old_name, new_name, flags);
774
775         __putname(old_name);
776         __putname(new_name);
777         return err;
778 }
779
780 static int hostfs_permission(struct inode *ino, int desired)
781 {
782         char *name;
783         int r = 0, w = 0, x = 0, err;
784
785         if (desired & MAY_NOT_BLOCK)
786                 return -ECHILD;
787
788         if (desired & MAY_READ) r = 1;
789         if (desired & MAY_WRITE) w = 1;
790         if (desired & MAY_EXEC) x = 1;
791         name = inode_name(ino);
792         if (name == NULL)
793                 return -ENOMEM;
794
795         if (S_ISCHR(ino->i_mode) || S_ISBLK(ino->i_mode) ||
796             S_ISFIFO(ino->i_mode) || S_ISSOCK(ino->i_mode))
797                 err = 0;
798         else
799                 err = access_file(name, r, w, x);
800         __putname(name);
801         if (!err)
802                 err = generic_permission(ino, desired);
803         return err;
804 }
805
806 static int hostfs_setattr(struct dentry *dentry, struct iattr *attr)
807 {
808         struct inode *inode = dentry->d_inode;
809         struct hostfs_iattr attrs;
810         char *name;
811         int err;
812
813         int fd = HOSTFS_I(inode)->fd;
814
815         err = inode_change_ok(inode, attr);
816         if (err)
817                 return err;
818
819         if (append)
820                 attr->ia_valid &= ~ATTR_SIZE;
821
822         attrs.ia_valid = 0;
823         if (attr->ia_valid & ATTR_MODE) {
824                 attrs.ia_valid |= HOSTFS_ATTR_MODE;
825                 attrs.ia_mode = attr->ia_mode;
826         }
827         if (attr->ia_valid & ATTR_UID) {
828                 attrs.ia_valid |= HOSTFS_ATTR_UID;
829                 attrs.ia_uid = from_kuid(&init_user_ns, attr->ia_uid);
830         }
831         if (attr->ia_valid & ATTR_GID) {
832                 attrs.ia_valid |= HOSTFS_ATTR_GID;
833                 attrs.ia_gid = from_kgid(&init_user_ns, attr->ia_gid);
834         }
835         if (attr->ia_valid & ATTR_SIZE) {
836                 attrs.ia_valid |= HOSTFS_ATTR_SIZE;
837                 attrs.ia_size = attr->ia_size;
838         }
839         if (attr->ia_valid & ATTR_ATIME) {
840                 attrs.ia_valid |= HOSTFS_ATTR_ATIME;
841                 attrs.ia_atime = attr->ia_atime;
842         }
843         if (attr->ia_valid & ATTR_MTIME) {
844                 attrs.ia_valid |= HOSTFS_ATTR_MTIME;
845                 attrs.ia_mtime = attr->ia_mtime;
846         }
847         if (attr->ia_valid & ATTR_CTIME) {
848                 attrs.ia_valid |= HOSTFS_ATTR_CTIME;
849                 attrs.ia_ctime = attr->ia_ctime;
850         }
851         if (attr->ia_valid & ATTR_ATIME_SET) {
852                 attrs.ia_valid |= HOSTFS_ATTR_ATIME_SET;
853         }
854         if (attr->ia_valid & ATTR_MTIME_SET) {
855                 attrs.ia_valid |= HOSTFS_ATTR_MTIME_SET;
856         }
857         name = dentry_name(dentry);
858         if (name == NULL)
859                 return -ENOMEM;
860         err = set_attr(name, &attrs, fd);
861         __putname(name);
862         if (err)
863                 return err;
864
865         if ((attr->ia_valid & ATTR_SIZE) &&
866             attr->ia_size != i_size_read(inode))
867                 truncate_setsize(inode, attr->ia_size);
868
869         setattr_copy(inode, attr);
870         mark_inode_dirty(inode);
871         return 0;
872 }
873
874 static const struct inode_operations hostfs_iops = {
875         .permission     = hostfs_permission,
876         .setattr        = hostfs_setattr,
877 };
878
879 static const struct inode_operations hostfs_dir_iops = {
880         .create         = hostfs_create,
881         .lookup         = hostfs_lookup,
882         .link           = hostfs_link,
883         .unlink         = hostfs_unlink,
884         .symlink        = hostfs_symlink,
885         .mkdir          = hostfs_mkdir,
886         .rmdir          = hostfs_rmdir,
887         .mknod          = hostfs_mknod,
888         .rename2        = hostfs_rename2,
889         .permission     = hostfs_permission,
890         .setattr        = hostfs_setattr,
891 };
892
893 static void *hostfs_follow_link(struct dentry *dentry, struct nameidata *nd)
894 {
895         char *link = __getname();
896         if (link) {
897                 char *path = dentry_name(dentry);
898                 int err = -ENOMEM;
899                 if (path) {
900                         err = hostfs_do_readlink(path, link, PATH_MAX);
901                         if (err == PATH_MAX)
902                                 err = -E2BIG;
903                         __putname(path);
904                 }
905                 if (err < 0) {
906                         __putname(link);
907                         link = ERR_PTR(err);
908                 }
909         } else {
910                 link = ERR_PTR(-ENOMEM);
911         }
912
913         nd_set_link(nd, link);
914         return NULL;
915 }
916
917 static void hostfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
918 {
919         char *s = nd_get_link(nd);
920         if (!IS_ERR(s))
921                 __putname(s);
922 }
923
924 static const struct inode_operations hostfs_link_iops = {
925         .readlink       = generic_readlink,
926         .follow_link    = hostfs_follow_link,
927         .put_link       = hostfs_put_link,
928 };
929
930 static int hostfs_fill_sb_common(struct super_block *sb, void *d, int silent)
931 {
932         struct inode *root_inode;
933         char *host_root_path, *req_root = d;
934         int err;
935
936         sb->s_blocksize = 1024;
937         sb->s_blocksize_bits = 10;
938         sb->s_magic = HOSTFS_SUPER_MAGIC;
939         sb->s_op = &hostfs_sbops;
940         sb->s_d_op = &simple_dentry_operations;
941         sb->s_maxbytes = MAX_LFS_FILESIZE;
942
943         /* NULL is printed as <NULL> by sprintf: avoid that. */
944         if (req_root == NULL)
945                 req_root = "";
946
947         err = -ENOMEM;
948         sb->s_fs_info = host_root_path =
949                 kmalloc(strlen(root_ino) + strlen(req_root) + 2, GFP_KERNEL);
950         if (host_root_path == NULL)
951                 goto out;
952
953         sprintf(host_root_path, "%s/%s", root_ino, req_root);
954
955         root_inode = new_inode(sb);
956         if (!root_inode)
957                 goto out;
958
959         err = read_name(root_inode, host_root_path);
960         if (err)
961                 goto out_put;
962
963         if (S_ISLNK(root_inode->i_mode)) {
964                 char *name = follow_link(host_root_path);
965                 if (IS_ERR(name))
966                         err = PTR_ERR(name);
967                 else
968                         err = read_name(root_inode, name);
969                 kfree(name);
970                 if (err)
971                         goto out_put;
972         }
973
974         err = -ENOMEM;
975         sb->s_root = d_make_root(root_inode);
976         if (sb->s_root == NULL)
977                 goto out;
978
979         return 0;
980
981 out_put:
982         iput(root_inode);
983 out:
984         return err;
985 }
986
987 static struct dentry *hostfs_read_sb(struct file_system_type *type,
988                           int flags, const char *dev_name,
989                           void *data)
990 {
991         return mount_nodev(type, flags, data, hostfs_fill_sb_common);
992 }
993
994 static void hostfs_kill_sb(struct super_block *s)
995 {
996         kill_anon_super(s);
997         kfree(s->s_fs_info);
998 }
999
1000 static struct file_system_type hostfs_type = {
1001         .owner          = THIS_MODULE,
1002         .name           = "hostfs",
1003         .mount          = hostfs_read_sb,
1004         .kill_sb        = hostfs_kill_sb,
1005         .fs_flags       = 0,
1006 };
1007 MODULE_ALIAS_FS("hostfs");
1008
1009 static int __init init_hostfs(void)
1010 {
1011         return register_filesystem(&hostfs_type);
1012 }
1013
1014 static void __exit exit_hostfs(void)
1015 {
1016         unregister_filesystem(&hostfs_type);
1017 }
1018
1019 module_init(init_hostfs)
1020 module_exit(exit_hostfs)
1021 MODULE_LICENSE("GPL");