hostfs: hostfs_file_open: Fix a fd leak in hostfs_file_open
[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_file_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_file_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 };
399
400 static int hostfs_writepage(struct page *page, struct writeback_control *wbc)
401 {
402         struct address_space *mapping = page->mapping;
403         struct inode *inode = mapping->host;
404         char *buffer;
405         unsigned long long base;
406         int count = PAGE_CACHE_SIZE;
407         int end_index = inode->i_size >> PAGE_CACHE_SHIFT;
408         int err;
409
410         if (page->index >= end_index)
411                 count = inode->i_size & (PAGE_CACHE_SIZE-1);
412
413         buffer = kmap(page);
414         base = ((unsigned long long) page->index) << PAGE_CACHE_SHIFT;
415
416         err = write_file(HOSTFS_I(inode)->fd, &base, buffer, count);
417         if (err != count) {
418                 ClearPageUptodate(page);
419                 goto out;
420         }
421
422         if (base > inode->i_size)
423                 inode->i_size = base;
424
425         if (PageError(page))
426                 ClearPageError(page);
427         err = 0;
428
429  out:
430         kunmap(page);
431
432         unlock_page(page);
433         return err;
434 }
435
436 static int hostfs_readpage(struct file *file, struct page *page)
437 {
438         char *buffer;
439         long long start;
440         int err = 0;
441
442         start = (long long) page->index << PAGE_CACHE_SHIFT;
443         buffer = kmap(page);
444         err = read_file(FILE_HOSTFS_I(file)->fd, &start, buffer,
445                         PAGE_CACHE_SIZE);
446         if (err < 0)
447                 goto out;
448
449         memset(&buffer[err], 0, PAGE_CACHE_SIZE - err);
450
451         flush_dcache_page(page);
452         SetPageUptodate(page);
453         if (PageError(page)) ClearPageError(page);
454         err = 0;
455  out:
456         kunmap(page);
457         unlock_page(page);
458         return err;
459 }
460
461 static int hostfs_write_begin(struct file *file, struct address_space *mapping,
462                               loff_t pos, unsigned len, unsigned flags,
463                               struct page **pagep, void **fsdata)
464 {
465         pgoff_t index = pos >> PAGE_CACHE_SHIFT;
466
467         *pagep = grab_cache_page_write_begin(mapping, index, flags);
468         if (!*pagep)
469                 return -ENOMEM;
470         return 0;
471 }
472
473 static int hostfs_write_end(struct file *file, struct address_space *mapping,
474                             loff_t pos, unsigned len, unsigned copied,
475                             struct page *page, void *fsdata)
476 {
477         struct inode *inode = mapping->host;
478         void *buffer;
479         unsigned from = pos & (PAGE_CACHE_SIZE - 1);
480         int err;
481
482         buffer = kmap(page);
483         err = write_file(FILE_HOSTFS_I(file)->fd, &pos, buffer + from, copied);
484         kunmap(page);
485
486         if (!PageUptodate(page) && err == PAGE_CACHE_SIZE)
487                 SetPageUptodate(page);
488
489         /*
490          * If err > 0, write_file has added err to pos, so we are comparing
491          * i_size against the last byte written.
492          */
493         if (err > 0 && (pos > inode->i_size))
494                 inode->i_size = pos;
495         unlock_page(page);
496         page_cache_release(page);
497
498         return err;
499 }
500
501 static const struct address_space_operations hostfs_aops = {
502         .writepage      = hostfs_writepage,
503         .readpage       = hostfs_readpage,
504         .set_page_dirty = __set_page_dirty_nobuffers,
505         .write_begin    = hostfs_write_begin,
506         .write_end      = hostfs_write_end,
507 };
508
509 static int read_name(struct inode *ino, char *name)
510 {
511         dev_t rdev;
512         struct hostfs_stat st;
513         int err = stat_file(name, &st, -1);
514         if (err)
515                 return err;
516
517         /* Reencode maj and min with the kernel encoding.*/
518         rdev = MKDEV(st.maj, st.min);
519
520         switch (st.mode & S_IFMT) {
521         case S_IFLNK:
522                 ino->i_op = &hostfs_link_iops;
523                 break;
524         case S_IFDIR:
525                 ino->i_op = &hostfs_dir_iops;
526                 ino->i_fop = &hostfs_dir_fops;
527                 break;
528         case S_IFCHR:
529         case S_IFBLK:
530         case S_IFIFO:
531         case S_IFSOCK:
532                 init_special_inode(ino, st.mode & S_IFMT, rdev);
533                 ino->i_op = &hostfs_iops;
534                 break;
535
536         default:
537                 ino->i_op = &hostfs_iops;
538                 ino->i_fop = &hostfs_file_fops;
539                 ino->i_mapping->a_ops = &hostfs_aops;
540         }
541
542         ino->i_ino = st.ino;
543         ino->i_mode = st.mode;
544         set_nlink(ino, st.nlink);
545         i_uid_write(ino, st.uid);
546         i_gid_write(ino, st.gid);
547         ino->i_atime = st.atime;
548         ino->i_mtime = st.mtime;
549         ino->i_ctime = st.ctime;
550         ino->i_size = st.size;
551         ino->i_blocks = st.blocks;
552         return 0;
553 }
554
555 static int hostfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
556                          bool excl)
557 {
558         struct inode *inode;
559         char *name;
560         int error, fd;
561
562         inode = hostfs_iget(dir->i_sb);
563         if (IS_ERR(inode)) {
564                 error = PTR_ERR(inode);
565                 goto out;
566         }
567
568         error = -ENOMEM;
569         name = dentry_name(dentry);
570         if (name == NULL)
571                 goto out_put;
572
573         fd = file_create(name,
574                          mode & S_IRUSR, mode & S_IWUSR, mode & S_IXUSR,
575                          mode & S_IRGRP, mode & S_IWGRP, mode & S_IXGRP,
576                          mode & S_IROTH, mode & S_IWOTH, mode & S_IXOTH);
577         if (fd < 0)
578                 error = fd;
579         else
580                 error = read_name(inode, name);
581
582         __putname(name);
583         if (error)
584                 goto out_put;
585
586         HOSTFS_I(inode)->fd = fd;
587         HOSTFS_I(inode)->mode = FMODE_READ | FMODE_WRITE;
588         d_instantiate(dentry, inode);
589         return 0;
590
591  out_put:
592         iput(inode);
593  out:
594         return error;
595 }
596
597 static struct dentry *hostfs_lookup(struct inode *ino, struct dentry *dentry,
598                                     unsigned int flags)
599 {
600         struct inode *inode;
601         char *name;
602         int err;
603
604         inode = hostfs_iget(ino->i_sb);
605         if (IS_ERR(inode)) {
606                 err = PTR_ERR(inode);
607                 goto out;
608         }
609
610         err = -ENOMEM;
611         name = dentry_name(dentry);
612         if (name == NULL)
613                 goto out_put;
614
615         err = read_name(inode, name);
616
617         __putname(name);
618         if (err == -ENOENT) {
619                 iput(inode);
620                 inode = NULL;
621         }
622         else if (err)
623                 goto out_put;
624
625         d_add(dentry, inode);
626         return NULL;
627
628  out_put:
629         iput(inode);
630  out:
631         return ERR_PTR(err);
632 }
633
634 static int hostfs_link(struct dentry *to, struct inode *ino,
635                        struct dentry *from)
636 {
637         char *from_name, *to_name;
638         int err;
639
640         if ((from_name = dentry_name(from)) == NULL)
641                 return -ENOMEM;
642         to_name = dentry_name(to);
643         if (to_name == NULL) {
644                 __putname(from_name);
645                 return -ENOMEM;
646         }
647         err = link_file(to_name, from_name);
648         __putname(from_name);
649         __putname(to_name);
650         return err;
651 }
652
653 static int hostfs_unlink(struct inode *ino, struct dentry *dentry)
654 {
655         char *file;
656         int err;
657
658         if (append)
659                 return -EPERM;
660
661         if ((file = dentry_name(dentry)) == NULL)
662                 return -ENOMEM;
663
664         err = unlink_file(file);
665         __putname(file);
666         return err;
667 }
668
669 static int hostfs_symlink(struct inode *ino, struct dentry *dentry,
670                           const char *to)
671 {
672         char *file;
673         int err;
674
675         if ((file = dentry_name(dentry)) == NULL)
676                 return -ENOMEM;
677         err = make_symlink(file, to);
678         __putname(file);
679         return err;
680 }
681
682 static int hostfs_mkdir(struct inode *ino, struct dentry *dentry, umode_t mode)
683 {
684         char *file;
685         int err;
686
687         if ((file = dentry_name(dentry)) == NULL)
688                 return -ENOMEM;
689         err = do_mkdir(file, mode);
690         __putname(file);
691         return err;
692 }
693
694 static int hostfs_rmdir(struct inode *ino, struct dentry *dentry)
695 {
696         char *file;
697         int err;
698
699         if ((file = dentry_name(dentry)) == NULL)
700                 return -ENOMEM;
701         err = do_rmdir(file);
702         __putname(file);
703         return err;
704 }
705
706 static int hostfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
707 {
708         struct inode *inode;
709         char *name;
710         int err;
711
712         inode = hostfs_iget(dir->i_sb);
713         if (IS_ERR(inode)) {
714                 err = PTR_ERR(inode);
715                 goto out;
716         }
717
718         err = -ENOMEM;
719         name = dentry_name(dentry);
720         if (name == NULL)
721                 goto out_put;
722
723         init_special_inode(inode, mode, dev);
724         err = do_mknod(name, mode, MAJOR(dev), MINOR(dev));
725         if (!err)
726                 goto out_free;
727
728         err = read_name(inode, name);
729         __putname(name);
730         if (err)
731                 goto out_put;
732         if (err)
733                 goto out_put;
734
735         d_instantiate(dentry, inode);
736         return 0;
737
738  out_free:
739         __putname(name);
740  out_put:
741         iput(inode);
742  out:
743         return err;
744 }
745
746 static int hostfs_rename2(struct inode *old_dir, struct dentry *old_dentry,
747                           struct inode *new_dir, struct dentry *new_dentry,
748                           unsigned int flags)
749 {
750         char *old_name, *new_name;
751         int err;
752
753         if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE))
754                 return -EINVAL;
755
756         old_name = dentry_name(old_dentry);
757         if (old_name == NULL)
758                 return -ENOMEM;
759         new_name = dentry_name(new_dentry);
760         if (new_name == NULL) {
761                 __putname(old_name);
762                 return -ENOMEM;
763         }
764         if (!flags)
765                 err = rename_file(old_name, new_name);
766         else
767                 err = rename2_file(old_name, new_name, flags);
768
769         __putname(old_name);
770         __putname(new_name);
771         return err;
772 }
773
774 static int hostfs_permission(struct inode *ino, int desired)
775 {
776         char *name;
777         int r = 0, w = 0, x = 0, err;
778
779         if (desired & MAY_NOT_BLOCK)
780                 return -ECHILD;
781
782         if (desired & MAY_READ) r = 1;
783         if (desired & MAY_WRITE) w = 1;
784         if (desired & MAY_EXEC) x = 1;
785         name = inode_name(ino);
786         if (name == NULL)
787                 return -ENOMEM;
788
789         if (S_ISCHR(ino->i_mode) || S_ISBLK(ino->i_mode) ||
790             S_ISFIFO(ino->i_mode) || S_ISSOCK(ino->i_mode))
791                 err = 0;
792         else
793                 err = access_file(name, r, w, x);
794         __putname(name);
795         if (!err)
796                 err = generic_permission(ino, desired);
797         return err;
798 }
799
800 static int hostfs_setattr(struct dentry *dentry, struct iattr *attr)
801 {
802         struct inode *inode = dentry->d_inode;
803         struct hostfs_iattr attrs;
804         char *name;
805         int err;
806
807         int fd = HOSTFS_I(inode)->fd;
808
809         err = inode_change_ok(inode, attr);
810         if (err)
811                 return err;
812
813         if (append)
814                 attr->ia_valid &= ~ATTR_SIZE;
815
816         attrs.ia_valid = 0;
817         if (attr->ia_valid & ATTR_MODE) {
818                 attrs.ia_valid |= HOSTFS_ATTR_MODE;
819                 attrs.ia_mode = attr->ia_mode;
820         }
821         if (attr->ia_valid & ATTR_UID) {
822                 attrs.ia_valid |= HOSTFS_ATTR_UID;
823                 attrs.ia_uid = from_kuid(&init_user_ns, attr->ia_uid);
824         }
825         if (attr->ia_valid & ATTR_GID) {
826                 attrs.ia_valid |= HOSTFS_ATTR_GID;
827                 attrs.ia_gid = from_kgid(&init_user_ns, attr->ia_gid);
828         }
829         if (attr->ia_valid & ATTR_SIZE) {
830                 attrs.ia_valid |= HOSTFS_ATTR_SIZE;
831                 attrs.ia_size = attr->ia_size;
832         }
833         if (attr->ia_valid & ATTR_ATIME) {
834                 attrs.ia_valid |= HOSTFS_ATTR_ATIME;
835                 attrs.ia_atime = attr->ia_atime;
836         }
837         if (attr->ia_valid & ATTR_MTIME) {
838                 attrs.ia_valid |= HOSTFS_ATTR_MTIME;
839                 attrs.ia_mtime = attr->ia_mtime;
840         }
841         if (attr->ia_valid & ATTR_CTIME) {
842                 attrs.ia_valid |= HOSTFS_ATTR_CTIME;
843                 attrs.ia_ctime = attr->ia_ctime;
844         }
845         if (attr->ia_valid & ATTR_ATIME_SET) {
846                 attrs.ia_valid |= HOSTFS_ATTR_ATIME_SET;
847         }
848         if (attr->ia_valid & ATTR_MTIME_SET) {
849                 attrs.ia_valid |= HOSTFS_ATTR_MTIME_SET;
850         }
851         name = dentry_name(dentry);
852         if (name == NULL)
853                 return -ENOMEM;
854         err = set_attr(name, &attrs, fd);
855         __putname(name);
856         if (err)
857                 return err;
858
859         if ((attr->ia_valid & ATTR_SIZE) &&
860             attr->ia_size != i_size_read(inode))
861                 truncate_setsize(inode, attr->ia_size);
862
863         setattr_copy(inode, attr);
864         mark_inode_dirty(inode);
865         return 0;
866 }
867
868 static const struct inode_operations hostfs_iops = {
869         .permission     = hostfs_permission,
870         .setattr        = hostfs_setattr,
871 };
872
873 static const struct inode_operations hostfs_dir_iops = {
874         .create         = hostfs_create,
875         .lookup         = hostfs_lookup,
876         .link           = hostfs_link,
877         .unlink         = hostfs_unlink,
878         .symlink        = hostfs_symlink,
879         .mkdir          = hostfs_mkdir,
880         .rmdir          = hostfs_rmdir,
881         .mknod          = hostfs_mknod,
882         .rename2        = hostfs_rename2,
883         .permission     = hostfs_permission,
884         .setattr        = hostfs_setattr,
885 };
886
887 static void *hostfs_follow_link(struct dentry *dentry, struct nameidata *nd)
888 {
889         char *link = __getname();
890         if (link) {
891                 char *path = dentry_name(dentry);
892                 int err = -ENOMEM;
893                 if (path) {
894                         err = hostfs_do_readlink(path, link, PATH_MAX);
895                         if (err == PATH_MAX)
896                                 err = -E2BIG;
897                         __putname(path);
898                 }
899                 if (err < 0) {
900                         __putname(link);
901                         link = ERR_PTR(err);
902                 }
903         } else {
904                 link = ERR_PTR(-ENOMEM);
905         }
906
907         nd_set_link(nd, link);
908         return NULL;
909 }
910
911 static void hostfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
912 {
913         char *s = nd_get_link(nd);
914         if (!IS_ERR(s))
915                 __putname(s);
916 }
917
918 static const struct inode_operations hostfs_link_iops = {
919         .readlink       = generic_readlink,
920         .follow_link    = hostfs_follow_link,
921         .put_link       = hostfs_put_link,
922 };
923
924 static int hostfs_fill_sb_common(struct super_block *sb, void *d, int silent)
925 {
926         struct inode *root_inode;
927         char *host_root_path, *req_root = d;
928         int err;
929
930         sb->s_blocksize = 1024;
931         sb->s_blocksize_bits = 10;
932         sb->s_magic = HOSTFS_SUPER_MAGIC;
933         sb->s_op = &hostfs_sbops;
934         sb->s_d_op = &simple_dentry_operations;
935         sb->s_maxbytes = MAX_LFS_FILESIZE;
936
937         /* NULL is printed as <NULL> by sprintf: avoid that. */
938         if (req_root == NULL)
939                 req_root = "";
940
941         err = -ENOMEM;
942         sb->s_fs_info = host_root_path =
943                 kmalloc(strlen(root_ino) + strlen(req_root) + 2, GFP_KERNEL);
944         if (host_root_path == NULL)
945                 goto out;
946
947         sprintf(host_root_path, "%s/%s", root_ino, req_root);
948
949         root_inode = new_inode(sb);
950         if (!root_inode)
951                 goto out;
952
953         err = read_name(root_inode, host_root_path);
954         if (err)
955                 goto out_put;
956
957         if (S_ISLNK(root_inode->i_mode)) {
958                 char *name = follow_link(host_root_path);
959                 if (IS_ERR(name))
960                         err = PTR_ERR(name);
961                 else
962                         err = read_name(root_inode, name);
963                 kfree(name);
964                 if (err)
965                         goto out_put;
966         }
967
968         err = -ENOMEM;
969         sb->s_root = d_make_root(root_inode);
970         if (sb->s_root == NULL)
971                 goto out;
972
973         return 0;
974
975 out_put:
976         iput(root_inode);
977 out:
978         return err;
979 }
980
981 static struct dentry *hostfs_read_sb(struct file_system_type *type,
982                           int flags, const char *dev_name,
983                           void *data)
984 {
985         return mount_nodev(type, flags, data, hostfs_fill_sb_common);
986 }
987
988 static void hostfs_kill_sb(struct super_block *s)
989 {
990         kill_anon_super(s);
991         kfree(s->s_fs_info);
992 }
993
994 static struct file_system_type hostfs_type = {
995         .owner          = THIS_MODULE,
996         .name           = "hostfs",
997         .mount          = hostfs_read_sb,
998         .kill_sb        = hostfs_kill_sb,
999         .fs_flags       = 0,
1000 };
1001 MODULE_ALIAS_FS("hostfs");
1002
1003 static int __init init_hostfs(void)
1004 {
1005         return register_filesystem(&hostfs_type);
1006 }
1007
1008 static void __exit exit_hostfs(void)
1009 {
1010         unregister_filesystem(&hostfs_type);
1011 }
1012
1013 module_init(init_hostfs)
1014 module_exit(exit_hostfs)
1015 MODULE_LICENSE("GPL");