2 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
6 #include <linux/ctype.h>
7 #include <linux/dcache.h>
8 #include <linux/file.h>
10 #include <linux/init.h>
11 #include <linux/kernel.h>
12 #include <linux/list.h>
13 #include <linux/module.h>
14 #include <linux/mount.h>
15 #include <linux/slab.h>
16 #include <linux/statfs.h>
17 #include <linux/types.h>
18 #include <linux/pid_namespace.h>
19 #include <linux/namei.h>
20 #include <asm/uaccess.h>
23 static struct inode
*get_inode(struct super_block
*, struct dentry
*);
26 struct list_head list
;
27 char contents
[PAGE_SIZE
- sizeof(struct list_head
)];
30 struct hppfs_private
{
31 struct file
*proc_file
;
34 struct hppfs_data
*contents
;
37 struct hppfs_inode_info
{
38 struct dentry
*proc_dentry
;
39 struct inode vfs_inode
;
42 static inline struct hppfs_inode_info
*HPPFS_I(struct inode
*inode
)
44 return container_of(inode
, struct hppfs_inode_info
, vfs_inode
);
47 #define HPPFS_SUPER_MAGIC 0xb00000ee
49 static const struct super_operations hppfs_sbops
;
51 static int is_pid(struct dentry
*dentry
)
53 struct super_block
*sb
;
57 if (dentry
->d_parent
!= sb
->s_root
)
60 for (i
= 0; i
< dentry
->d_name
.len
; i
++) {
61 if (!isdigit(dentry
->d_name
.name
[i
]))
67 static char *dentry_name(struct dentry
*dentry
, int extra
)
69 struct dentry
*parent
;
76 while (parent
->d_parent
!= parent
) {
78 len
+= strlen("pid") + 1;
79 else len
+= parent
->d_name
.len
+ 1;
80 parent
= parent
->d_parent
;
85 name
= kmalloc(len
+ extra
+ 1, GFP_KERNEL
);
91 while (parent
->d_parent
!= parent
) {
94 seg_len
= strlen("pid");
97 seg_name
= parent
->d_name
.name
;
98 seg_len
= parent
->d_name
.len
;
103 strncpy(&name
[len
+ 1], seg_name
, seg_len
);
104 parent
= parent
->d_parent
;
106 strncpy(name
, root
, strlen(root
));
110 static int file_removed(struct dentry
*dentry
, const char *file
)
117 extra
+= strlen(file
) + 1;
119 host_file
= dentry_name(dentry
, extra
+ strlen("/remove"));
120 if (host_file
== NULL
) {
121 printk(KERN_ERR
"file_removed : allocation failed\n");
126 strcat(host_file
, "/");
127 strcat(host_file
, file
);
129 strcat(host_file
, "/remove");
131 fd
= os_open_file(host_file
, of_read(OPENFLAGS()), 0);
140 static struct dentry
*hppfs_lookup(struct inode
*ino
, struct dentry
*dentry
,
141 struct nameidata
*nd
)
143 struct dentry
*proc_dentry
, *parent
;
144 struct qstr
*name
= &dentry
->d_name
;
148 deleted
= file_removed(dentry
, NULL
);
150 return ERR_PTR(deleted
);
152 return ERR_PTR(-ENOENT
);
154 parent
= HPPFS_I(ino
)->proc_dentry
;
155 mutex_lock(&parent
->d_inode
->i_mutex
);
156 proc_dentry
= lookup_one_len(name
->name
, parent
, name
->len
);
157 mutex_unlock(&parent
->d_inode
->i_mutex
);
159 if (IS_ERR(proc_dentry
))
163 inode
= get_inode(ino
->i_sb
, proc_dentry
);
167 d_add(dentry
, inode
);
174 static const struct inode_operations hppfs_file_iops
= {
177 static ssize_t
read_proc(struct file
*file
, char __user
*buf
, ssize_t count
,
178 loff_t
*ppos
, int is_user
)
180 ssize_t (*read
)(struct file
*, char __user
*, size_t, loff_t
*);
183 read
= file
->f_path
.dentry
->d_inode
->i_fop
->read
;
188 n
= (*read
)(file
, buf
, count
, &file
->f_pos
);
198 static ssize_t
hppfs_read_file(int fd
, char __user
*buf
, ssize_t count
)
205 new_buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
206 if (new_buf
== NULL
) {
207 printk(KERN_ERR
"hppfs_read_file : kmalloc failed\n");
212 cur
= min_t(ssize_t
, count
, PAGE_SIZE
);
213 err
= os_read_file(fd
, new_buf
, cur
);
215 printk(KERN_ERR
"hppfs_read : read failed, "
216 "errno = %d\n", err
);
222 if (copy_to_user(buf
, new_buf
, err
)) {
235 static ssize_t
hppfs_read(struct file
*file
, char __user
*buf
, size_t count
,
238 struct hppfs_private
*hppfs
= file
->private_data
;
239 struct hppfs_data
*data
;
243 if (hppfs
->contents
!= NULL
) {
246 if (*ppos
>= hppfs
->len
)
249 data
= hppfs
->contents
;
251 while (off
>= sizeof(data
->contents
)) {
252 data
= list_entry(data
->list
.next
, struct hppfs_data
,
254 off
-= sizeof(data
->contents
);
257 if (off
+ count
> hppfs
->len
)
258 count
= hppfs
->len
- off
;
259 rem
= copy_to_user(buf
, &data
->contents
[off
], count
);
260 *ppos
+= count
- rem
;
263 } else if (hppfs
->host_fd
!= -1) {
264 err
= os_seek_file(hppfs
->host_fd
, *ppos
);
266 printk(KERN_ERR
"hppfs_read : seek failed, "
267 "errno = %d\n", err
);
270 err
= hppfs_read_file(hppfs
->host_fd
, buf
, count
);
272 printk(KERN_ERR
"hppfs_read: read failed: %d\n", err
);
279 else count
= read_proc(hppfs
->proc_file
, buf
, count
, ppos
, 1);
284 static ssize_t
hppfs_write(struct file
*file
, const char __user
*buf
,
285 size_t len
, loff_t
*ppos
)
287 struct hppfs_private
*data
= file
->private_data
;
288 struct file
*proc_file
= data
->proc_file
;
289 ssize_t (*write
)(struct file
*, const char __user
*, size_t, loff_t
*);
291 write
= proc_file
->f_path
.dentry
->d_inode
->i_fop
->write
;
292 return (*write
)(proc_file
, buf
, len
, ppos
);
295 static int open_host_sock(char *host_file
, int *filter_out
)
300 end
= &host_file
[strlen(host_file
)];
303 fd
= os_connect_socket(host_file
);
309 fd
= os_connect_socket(host_file
);
313 static void free_contents(struct hppfs_data
*head
)
315 struct hppfs_data
*data
;
316 struct list_head
*ele
, *next
;
321 list_for_each_safe(ele
, next
, &head
->list
) {
322 data
= list_entry(ele
, struct hppfs_data
, list
);
328 static struct hppfs_data
*hppfs_get_data(int fd
, int filter
,
329 struct file
*proc_file
,
330 struct file
*hppfs_file
,
333 struct hppfs_data
*data
, *new, *head
;
337 data
= kmalloc(sizeof(*data
), GFP_KERNEL
);
339 printk(KERN_ERR
"hppfs_get_data : head allocation failed\n");
343 INIT_LIST_HEAD(&data
->list
);
349 while ((n
= read_proc(proc_file
, data
->contents
,
350 sizeof(data
->contents
), NULL
, 0)) > 0)
351 os_write_file(fd
, data
->contents
, n
);
352 err
= os_shutdown_socket(fd
, 0, 1);
354 printk(KERN_ERR
"hppfs_get_data : failed to shut down "
360 n
= os_read_file(fd
, data
->contents
, sizeof(data
->contents
));
363 printk(KERN_ERR
"hppfs_get_data : read failed, "
364 "errno = %d\n", err
);
371 if (n
< sizeof(data
->contents
))
374 new = kmalloc(sizeof(*data
), GFP_KERNEL
);
376 printk(KERN_ERR
"hppfs_get_data : data allocation "
382 INIT_LIST_HEAD(&new->list
);
383 list_add(&new->list
, &data
->list
);
394 static struct hppfs_private
*hppfs_data(void)
396 struct hppfs_private
*data
;
398 data
= kmalloc(sizeof(*data
), GFP_KERNEL
);
402 *data
= ((struct hppfs_private
) { .host_fd
= -1,
404 .contents
= NULL
} );
408 static int file_mode(int fmode
)
410 if (fmode
== (FMODE_READ
| FMODE_WRITE
))
412 if (fmode
== FMODE_READ
)
414 if (fmode
== FMODE_WRITE
)
419 static int hppfs_open(struct inode
*inode
, struct file
*file
)
421 const struct cred
*cred
= file
->f_cred
;
422 struct hppfs_private
*data
;
423 struct vfsmount
*proc_mnt
;
424 struct dentry
*proc_dentry
;
426 int err
, fd
, type
, filter
;
433 host_file
= dentry_name(file
->f_path
.dentry
, strlen("/rw"));
434 if (host_file
== NULL
)
437 proc_dentry
= HPPFS_I(inode
)->proc_dentry
;
438 proc_mnt
= inode
->i_sb
->s_fs_info
;
440 /* XXX This isn't closed anywhere */
441 data
->proc_file
= dentry_open(dget(proc_dentry
), mntget(proc_mnt
),
442 file_mode(file
->f_mode
), cred
);
443 err
= PTR_ERR(data
->proc_file
);
444 if (IS_ERR(data
->proc_file
))
447 type
= os_file_type(host_file
);
448 if (type
== OS_TYPE_FILE
) {
449 fd
= os_open_file(host_file
, of_read(OPENFLAGS()), 0);
453 printk(KERN_ERR
"hppfs_open : failed to open '%s', "
454 "errno = %d\n", host_file
, -fd
);
456 data
->contents
= NULL
;
457 } else if (type
== OS_TYPE_DIR
) {
458 fd
= open_host_sock(host_file
, &filter
);
460 data
->contents
= hppfs_get_data(fd
, filter
,
463 if (!IS_ERR(data
->contents
))
466 printk(KERN_ERR
"hppfs_open : failed to open a socket "
467 "in '%s', errno = %d\n", host_file
, -fd
);
471 file
->private_data
= data
;
477 free_contents(data
->contents
);
483 static int hppfs_dir_open(struct inode
*inode
, struct file
*file
)
485 const struct cred
*cred
= file
->f_cred
;
486 struct hppfs_private
*data
;
487 struct vfsmount
*proc_mnt
;
488 struct dentry
*proc_dentry
;
496 proc_dentry
= HPPFS_I(inode
)->proc_dentry
;
497 proc_mnt
= inode
->i_sb
->s_fs_info
;
498 data
->proc_file
= dentry_open(dget(proc_dentry
), mntget(proc_mnt
),
499 file_mode(file
->f_mode
), cred
);
500 err
= PTR_ERR(data
->proc_file
);
501 if (IS_ERR(data
->proc_file
))
504 file
->private_data
= data
;
513 static loff_t
hppfs_llseek(struct file
*file
, loff_t off
, int where
)
515 struct hppfs_private
*data
= file
->private_data
;
516 struct file
*proc_file
= data
->proc_file
;
517 loff_t (*llseek
)(struct file
*, loff_t
, int);
520 llseek
= proc_file
->f_path
.dentry
->d_inode
->i_fop
->llseek
;
521 if (llseek
!= NULL
) {
522 ret
= (*llseek
)(proc_file
, off
, where
);
527 return default_llseek(file
, off
, where
);
530 static const struct file_operations hppfs_file_fops
= {
532 .llseek
= hppfs_llseek
,
534 .write
= hppfs_write
,
538 struct hppfs_dirent
{
541 struct dentry
*dentry
;
544 static int hppfs_filldir(void *d
, const char *name
, int size
,
545 loff_t offset
, u64 inode
, unsigned int type
)
547 struct hppfs_dirent
*dirent
= d
;
549 if (file_removed(dirent
->dentry
, name
))
552 return (*dirent
->filldir
)(dirent
->vfs_dirent
, name
, size
, offset
,
556 static int hppfs_readdir(struct file
*file
, void *ent
, filldir_t filldir
)
558 struct hppfs_private
*data
= file
->private_data
;
559 struct file
*proc_file
= data
->proc_file
;
560 int (*readdir
)(struct file
*, void *, filldir_t
);
561 struct hppfs_dirent dirent
= ((struct hppfs_dirent
)
564 .dentry
= file
->f_path
.dentry
568 readdir
= proc_file
->f_path
.dentry
->d_inode
->i_fop
->readdir
;
570 proc_file
->f_pos
= file
->f_pos
;
571 err
= (*readdir
)(proc_file
, &dirent
, hppfs_filldir
);
572 file
->f_pos
= proc_file
->f_pos
;
577 static int hppfs_fsync(struct file
*file
, loff_t start
, loff_t end
,
580 return filemap_write_and_wait_range(file
->f_mapping
, start
, end
);
583 static const struct file_operations hppfs_dir_fops
= {
585 .readdir
= hppfs_readdir
,
586 .open
= hppfs_dir_open
,
587 .fsync
= hppfs_fsync
,
588 .llseek
= default_llseek
,
591 static int hppfs_statfs(struct dentry
*dentry
, struct kstatfs
*sf
)
598 sf
->f_type
= HPPFS_SUPER_MAGIC
;
602 static struct inode
*hppfs_alloc_inode(struct super_block
*sb
)
604 struct hppfs_inode_info
*hi
;
606 hi
= kmalloc(sizeof(*hi
), GFP_KERNEL
);
610 hi
->proc_dentry
= NULL
;
611 inode_init_once(&hi
->vfs_inode
);
612 return &hi
->vfs_inode
;
615 void hppfs_evict_inode(struct inode
*ino
)
618 dput(HPPFS_I(ino
)->proc_dentry
);
619 mntput(ino
->i_sb
->s_fs_info
);
622 static void hppfs_i_callback(struct rcu_head
*head
)
624 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
625 kfree(HPPFS_I(inode
));
628 static void hppfs_destroy_inode(struct inode
*inode
)
630 call_rcu(&inode
->i_rcu
, hppfs_i_callback
);
633 static const struct super_operations hppfs_sbops
= {
634 .alloc_inode
= hppfs_alloc_inode
,
635 .destroy_inode
= hppfs_destroy_inode
,
636 .evict_inode
= hppfs_evict_inode
,
637 .statfs
= hppfs_statfs
,
640 static int hppfs_readlink(struct dentry
*dentry
, char __user
*buffer
,
643 struct dentry
*proc_dentry
= HPPFS_I(dentry
->d_inode
)->proc_dentry
;
644 return proc_dentry
->d_inode
->i_op
->readlink(proc_dentry
, buffer
,
648 static void *hppfs_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
650 struct dentry
*proc_dentry
= HPPFS_I(dentry
->d_inode
)->proc_dentry
;
652 return proc_dentry
->d_inode
->i_op
->follow_link(proc_dentry
, nd
);
655 static void hppfs_put_link(struct dentry
*dentry
, struct nameidata
*nd
,
658 struct dentry
*proc_dentry
= HPPFS_I(dentry
->d_inode
)->proc_dentry
;
660 if (proc_dentry
->d_inode
->i_op
->put_link
)
661 proc_dentry
->d_inode
->i_op
->put_link(proc_dentry
, nd
, cookie
);
664 static const struct inode_operations hppfs_dir_iops
= {
665 .lookup
= hppfs_lookup
,
668 static const struct inode_operations hppfs_link_iops
= {
669 .readlink
= hppfs_readlink
,
670 .follow_link
= hppfs_follow_link
,
671 .put_link
= hppfs_put_link
,
674 static struct inode
*get_inode(struct super_block
*sb
, struct dentry
*dentry
)
676 struct inode
*proc_ino
= dentry
->d_inode
;
677 struct inode
*inode
= new_inode(sb
);
681 return ERR_PTR(-ENOMEM
);
684 if (S_ISDIR(dentry
->d_inode
->i_mode
)) {
685 inode
->i_op
= &hppfs_dir_iops
;
686 inode
->i_fop
= &hppfs_dir_fops
;
687 } else if (S_ISLNK(dentry
->d_inode
->i_mode
)) {
688 inode
->i_op
= &hppfs_link_iops
;
689 inode
->i_fop
= &hppfs_file_fops
;
691 inode
->i_op
= &hppfs_file_iops
;
692 inode
->i_fop
= &hppfs_file_fops
;
695 HPPFS_I(inode
)->proc_dentry
= dentry
;
697 inode
->i_uid
= proc_ino
->i_uid
;
698 inode
->i_gid
= proc_ino
->i_gid
;
699 inode
->i_atime
= proc_ino
->i_atime
;
700 inode
->i_mtime
= proc_ino
->i_mtime
;
701 inode
->i_ctime
= proc_ino
->i_ctime
;
702 inode
->i_ino
= proc_ino
->i_ino
;
703 inode
->i_mode
= proc_ino
->i_mode
;
704 set_nlink(inode
, proc_ino
->i_nlink
);
705 inode
->i_size
= proc_ino
->i_size
;
706 inode
->i_blocks
= proc_ino
->i_blocks
;
711 static int hppfs_fill_super(struct super_block
*sb
, void *d
, int silent
)
713 struct inode
*root_inode
;
714 struct vfsmount
*proc_mnt
;
717 proc_mnt
= mntget(current
->nsproxy
->pid_ns
->proc_mnt
);
718 if (IS_ERR(proc_mnt
))
721 sb
->s_blocksize
= 1024;
722 sb
->s_blocksize_bits
= 10;
723 sb
->s_magic
= HPPFS_SUPER_MAGIC
;
724 sb
->s_op
= &hppfs_sbops
;
725 sb
->s_fs_info
= proc_mnt
;
728 root_inode
= get_inode(sb
, dget(proc_mnt
->mnt_root
));
732 sb
->s_root
= d_alloc_root(root_inode
);
746 static struct dentry
*hppfs_read_super(struct file_system_type
*type
,
747 int flags
, const char *dev_name
,
750 return mount_nodev(type
, flags
, data
, hppfs_fill_super
);
753 static struct file_system_type hppfs_type
= {
754 .owner
= THIS_MODULE
,
756 .mount
= hppfs_read_super
,
757 .kill_sb
= kill_anon_super
,
761 static int __init
init_hppfs(void)
763 return register_filesystem(&hppfs_type
);
766 static void __exit
exit_hppfs(void)
768 unregister_filesystem(&hppfs_type
);
771 module_init(init_hppfs
)
772 module_exit(exit_hppfs
)
773 MODULE_LICENSE("GPL");