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