blob: 85c098a499f33ce858bdfaf85f76f053bd1b9376 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Dave Hansen1dd0dd12008-02-15 18:37:00 -05002 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/ctype.h>
7#include <linux/dcache.h>
Dave Hansen1dd0dd12008-02-15 18:37:00 -05008#include <linux/file.h>
9#include <linux/fs.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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/statfs.h>
Dave Hansen1dd0dd12008-02-15 18:37:00 -050017#include <linux/types.h>
Al Viro918377b2010-06-06 23:56:02 -040018#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "os.h"
21
Al Virof382d6e2008-02-23 04:53:53 -050022static struct inode *get_inode(struct super_block *, struct dentry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24struct hppfs_data {
25 struct list_head list;
26 char contents[PAGE_SIZE - sizeof(struct list_head)];
27};
28
29struct hppfs_private {
30 struct file *proc_file;
31 int host_fd;
32 loff_t len;
33 struct hppfs_data *contents;
34};
35
36struct hppfs_inode_info {
Jeff Dikea0612b12008-05-12 14:01:49 -070037 struct dentry *proc_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 struct inode vfs_inode;
39};
40
41static inline struct hppfs_inode_info *HPPFS_I(struct inode *inode)
42{
Paolo 'Blaisorblade' Giarrussofd589e02005-08-26 16:57:53 +020043 return container_of(inode, struct hppfs_inode_info, vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044}
45
46#define HPPFS_SUPER_MAGIC 0xb00000ee
47
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080048static const struct super_operations hppfs_sbops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50static int is_pid(struct dentry *dentry)
51{
52 struct super_block *sb;
53 int i;
54
55 sb = dentry->d_sb;
Jeff Dikea0612b12008-05-12 14:01:49 -070056 if (dentry->d_parent != sb->s_root)
Dave Hansen1dd0dd12008-02-15 18:37:00 -050057 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Dave Hansen1dd0dd12008-02-15 18:37:00 -050059 for (i = 0; i < dentry->d_name.len; i++) {
60 if (!isdigit(dentry->d_name.name[i]))
61 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 }
Dave Hansen1dd0dd12008-02-15 18:37:00 -050063 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
66static char *dentry_name(struct dentry *dentry, int extra)
67{
68 struct dentry *parent;
69 char *root, *name;
70 const char *seg_name;
71 int len, seg_len;
72
73 len = 0;
74 parent = dentry;
Dave Hansen1dd0dd12008-02-15 18:37:00 -050075 while (parent->d_parent != parent) {
76 if (is_pid(parent))
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 len += strlen("pid") + 1;
78 else len += parent->d_name.len + 1;
79 parent = parent->d_parent;
80 }
81
82 root = "proc";
83 len += strlen(root);
84 name = kmalloc(len + extra + 1, GFP_KERNEL);
Dave Hansen1dd0dd12008-02-15 18:37:00 -050085 if (name == NULL)
86 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 name[len] = '\0';
89 parent = dentry;
Dave Hansen1dd0dd12008-02-15 18:37:00 -050090 while (parent->d_parent != parent) {
91 if (is_pid(parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 seg_name = "pid";
93 seg_len = strlen("pid");
94 }
95 else {
96 seg_name = parent->d_name.name;
97 seg_len = parent->d_name.len;
98 }
99
100 len -= seg_len + 1;
101 name[len] = '/';
102 strncpy(&name[len + 1], seg_name, seg_len);
103 parent = parent->d_parent;
104 }
105 strncpy(name, root, strlen(root));
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500106 return name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static int file_removed(struct dentry *dentry, const char *file)
110{
111 char *host_file;
112 int extra, fd;
113
114 extra = 0;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500115 if (file != NULL)
116 extra += strlen(file) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 host_file = dentry_name(dentry, extra + strlen("/remove"));
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500119 if (host_file == NULL) {
120 printk(KERN_ERR "file_removed : allocation failed\n");
121 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
123
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500124 if (file != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 strcat(host_file, "/");
126 strcat(host_file, file);
127 }
128 strcat(host_file, "/remove");
129
130 fd = os_open_file(host_file, of_read(OPENFLAGS()), 0);
131 kfree(host_file);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500132 if (fd > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 os_close_file(fd);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500134 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static struct dentry *hppfs_lookup(struct inode *ino, struct dentry *dentry,
Jeff Dikea0612b12008-05-12 14:01:49 -0700140 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Al Viro0916a5e2011-07-17 22:27:22 -0400142 struct dentry *proc_dentry, *parent;
143 struct qstr *name = &dentry->d_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 struct inode *inode;
145 int err, deleted;
146
147 deleted = file_removed(dentry, NULL);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500148 if (deleted < 0)
149 return ERR_PTR(deleted);
150 else if (deleted)
151 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 parent = HPPFS_I(ino)->proc_dentry;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800154 mutex_lock(&parent->d_inode->i_mutex);
Al Viro0916a5e2011-07-17 22:27:22 -0400155 proc_dentry = lookup_one_len(name->name, parent, name->len);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800156 mutex_unlock(&parent->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500158 if (IS_ERR(proc_dentry))
159 return proc_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Al Virof382d6e2008-02-23 04:53:53 -0500161 err = -ENOMEM;
162 inode = get_inode(ino->i_sb, proc_dentry);
163 if (!inode)
Al Viro3cc06582011-07-17 22:24:15 -0400164 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 d_add(dentry, inode);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500167 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 out:
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500170 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800173static const struct inode_operations hppfs_file_iops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174};
175
Al Viro347f2172006-03-31 02:30:16 -0800176static ssize_t read_proc(struct file *file, char __user *buf, ssize_t count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 loff_t *ppos, int is_user)
178{
Al Viro347f2172006-03-31 02:30:16 -0800179 ssize_t (*read)(struct file *, char __user *, size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 ssize_t n;
181
Josef Sipek471b17e2006-12-08 02:37:07 -0800182 read = file->f_path.dentry->d_inode->i_fop->read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500184 if (!is_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 set_fs(KERNEL_DS);
186
187 n = (*read)(file, buf, count, &file->f_pos);
188
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500189 if (!is_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 set_fs(USER_DS);
191
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500192 if (ppos)
193 *ppos = file->f_pos;
Paolo 'Blaisorblade' Giarrusso8e0a2182005-07-14 00:33:41 -0700194 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
Al Viro347f2172006-03-31 02:30:16 -0800197static ssize_t hppfs_read_file(int fd, char __user *buf, ssize_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 ssize_t n;
200 int cur, err;
201 char *new_buf;
202
203 n = -ENOMEM;
204 new_buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500205 if (new_buf == NULL) {
206 printk(KERN_ERR "hppfs_read_file : kmalloc failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 goto out;
208 }
209 n = 0;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500210 while (count > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 cur = min_t(ssize_t, count, PAGE_SIZE);
212 err = os_read_file(fd, new_buf, cur);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500213 if (err < 0) {
214 printk(KERN_ERR "hppfs_read : read failed, "
215 "errno = %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 n = err;
217 goto out_free;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500218 } else if (err == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 break;
220
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500221 if (copy_to_user(buf, new_buf, err)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 n = -EFAULT;
223 goto out_free;
224 }
225 n += err;
226 count -= err;
227 }
228 out_free:
229 kfree(new_buf);
230 out:
Paolo 'Blaisorblade' Giarrusso8e0a2182005-07-14 00:33:41 -0700231 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Al Viro347f2172006-03-31 02:30:16 -0800234static ssize_t hppfs_read(struct file *file, char __user *buf, size_t count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 loff_t *ppos)
236{
237 struct hppfs_private *hppfs = file->private_data;
238 struct hppfs_data *data;
239 loff_t off;
240 int err;
241
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500242 if (hppfs->contents != NULL) {
Jeff Dikea0612b12008-05-12 14:01:49 -0700243 int rem;
244
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500245 if (*ppos >= hppfs->len)
246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 data = hppfs->contents;
249 off = *ppos;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500250 while (off >= sizeof(data->contents)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 data = list_entry(data->list.next, struct hppfs_data,
252 list);
253 off -= sizeof(data->contents);
254 }
255
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500256 if (off + count > hppfs->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 count = hppfs->len - off;
Jeff Dikea0612b12008-05-12 14:01:49 -0700258 rem = copy_to_user(buf, &data->contents[off], count);
259 *ppos += count - rem;
260 if (rem > 0)
261 return -EFAULT;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500262 } else if (hppfs->host_fd != -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 err = os_seek_file(hppfs->host_fd, *ppos);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500264 if (err) {
265 printk(KERN_ERR "hppfs_read : seek failed, "
266 "errno = %d\n", err);
267 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
Roel Kluin880fe762009-04-02 16:57:18 -0700269 err = hppfs_read_file(hppfs->host_fd, buf, count);
270 if (err < 0) {
271 printk(KERN_ERR "hppfs_read: read failed: %d\n", err);
272 return err;
273 }
274 count = err;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500275 if (count > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 *ppos += count;
277 }
278 else count = read_proc(hppfs->proc_file, buf, count, ppos, 1);
279
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500280 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Jeff Dikea0612b12008-05-12 14:01:49 -0700283static ssize_t hppfs_write(struct file *file, const char __user *buf,
284 size_t len, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 struct hppfs_private *data = file->private_data;
287 struct file *proc_file = data->proc_file;
Al Viro347f2172006-03-31 02:30:16 -0800288 ssize_t (*write)(struct file *, const char __user *, size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Josef Sipek471b17e2006-12-08 02:37:07 -0800290 write = proc_file->f_path.dentry->d_inode->i_fop->write;
Jeff Dikea0612b12008-05-12 14:01:49 -0700291 return (*write)(proc_file, buf, len, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294static int open_host_sock(char *host_file, int *filter_out)
295{
296 char *end;
297 int fd;
298
299 end = &host_file[strlen(host_file)];
300 strcpy(end, "/rw");
301 *filter_out = 1;
302 fd = os_connect_socket(host_file);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500303 if (fd > 0)
304 return fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 strcpy(end, "/r");
307 *filter_out = 0;
308 fd = os_connect_socket(host_file);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500309 return fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
312static void free_contents(struct hppfs_data *head)
313{
314 struct hppfs_data *data;
315 struct list_head *ele, *next;
316
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500317 if (head == NULL)
318 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500320 list_for_each_safe(ele, next, &head->list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 data = list_entry(ele, struct hppfs_data, list);
322 kfree(data);
323 }
324 kfree(head);
325}
326
327static struct hppfs_data *hppfs_get_data(int fd, int filter,
328 struct file *proc_file,
329 struct file *hppfs_file,
330 loff_t *size_out)
331{
332 struct hppfs_data *data, *new, *head;
333 int n, err;
334
335 err = -ENOMEM;
336 data = kmalloc(sizeof(*data), GFP_KERNEL);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500337 if (data == NULL) {
338 printk(KERN_ERR "hppfs_get_data : head allocation failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 goto failed;
340 }
341
342 INIT_LIST_HEAD(&data->list);
343
344 head = data;
345 *size_out = 0;
346
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500347 if (filter) {
348 while ((n = read_proc(proc_file, data->contents,
Jeff Dikea0612b12008-05-12 14:01:49 -0700349 sizeof(data->contents), NULL, 0)) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 os_write_file(fd, data->contents, n);
351 err = os_shutdown_socket(fd, 0, 1);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500352 if (err) {
353 printk(KERN_ERR "hppfs_get_data : failed to shut down "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 "socket\n");
355 goto failed_free;
356 }
357 }
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500358 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 n = os_read_file(fd, data->contents, sizeof(data->contents));
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500360 if (n < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 err = n;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500362 printk(KERN_ERR "hppfs_get_data : read failed, "
363 "errno = %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 goto failed_free;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500365 } else if (n == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 break;
367
368 *size_out += n;
369
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500370 if (n < sizeof(data->contents))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 break;
372
373 new = kmalloc(sizeof(*data), GFP_KERNEL);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500374 if (new == 0) {
375 printk(KERN_ERR "hppfs_get_data : data allocation "
376 "failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 err = -ENOMEM;
378 goto failed_free;
379 }
380
381 INIT_LIST_HEAD(&new->list);
382 list_add(&new->list, &data->list);
383 data = new;
384 }
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500385 return head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 failed_free:
388 free_contents(head);
389 failed:
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500390 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393static struct hppfs_private *hppfs_data(void)
394{
395 struct hppfs_private *data;
396
397 data = kmalloc(sizeof(*data), GFP_KERNEL);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500398 if (data == NULL)
399 return data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 *data = ((struct hppfs_private ) { .host_fd = -1,
402 .len = -1,
403 .contents = NULL } );
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500404 return data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407static int file_mode(int fmode)
408{
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500409 if (fmode == (FMODE_READ | FMODE_WRITE))
410 return O_RDWR;
411 if (fmode == FMODE_READ)
412 return O_RDONLY;
413 if (fmode == FMODE_WRITE)
414 return O_WRONLY;
415 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
418static int hppfs_open(struct inode *inode, struct file *file)
419{
David Howellsd76b0d92008-11-14 10:39:25 +1100420 const struct cred *cred = file->f_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 struct hppfs_private *data;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500422 struct vfsmount *proc_mnt;
Jeff Dikea0612b12008-05-12 14:01:49 -0700423 struct dentry *proc_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 char *host_file;
425 int err, fd, type, filter;
426
427 err = -ENOMEM;
428 data = hppfs_data();
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500429 if (data == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 goto out;
431
Josef Sipek471b17e2006-12-08 02:37:07 -0800432 host_file = dentry_name(file->f_path.dentry, strlen("/rw"));
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500433 if (host_file == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 goto out_free2;
435
436 proc_dentry = HPPFS_I(inode)->proc_dentry;
Al Virof382d6e2008-02-23 04:53:53 -0500437 proc_mnt = inode->i_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 /* XXX This isn't closed anywhere */
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500440 data->proc_file = dentry_open(dget(proc_dentry), mntget(proc_mnt),
David Howells745ca242008-11-14 10:39:22 +1100441 file_mode(file->f_mode), cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 err = PTR_ERR(data->proc_file);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500443 if (IS_ERR(data->proc_file))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 goto out_free1;
445
446 type = os_file_type(host_file);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500447 if (type == OS_TYPE_FILE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 fd = os_open_file(host_file, of_read(OPENFLAGS()), 0);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500449 if (fd >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 data->host_fd = fd;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500451 else
452 printk(KERN_ERR "hppfs_open : failed to open '%s', "
453 "errno = %d\n", host_file, -fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 data->contents = NULL;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500456 } else if (type == OS_TYPE_DIR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 fd = open_host_sock(host_file, &filter);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500458 if (fd > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 data->contents = hppfs_get_data(fd, filter,
Paolo 'Blaisorblade' Giarrusso3f580472005-07-07 17:56:51 -0700460 data->proc_file,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 file, &data->len);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500462 if (!IS_ERR(data->contents))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 data->host_fd = fd;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500464 } else
465 printk(KERN_ERR "hppfs_open : failed to open a socket "
466 "in '%s', errno = %d\n", host_file, -fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468 kfree(host_file);
469
470 file->private_data = data;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500471 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 out_free1:
474 kfree(host_file);
475 out_free2:
476 free_contents(data->contents);
477 kfree(data);
478 out:
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500479 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
482static int hppfs_dir_open(struct inode *inode, struct file *file)
483{
David Howellsd76b0d92008-11-14 10:39:25 +1100484 const struct cred *cred = file->f_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 struct hppfs_private *data;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500486 struct vfsmount *proc_mnt;
Jeff Dikea0612b12008-05-12 14:01:49 -0700487 struct dentry *proc_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 int err;
489
490 err = -ENOMEM;
491 data = hppfs_data();
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500492 if (data == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 goto out;
494
495 proc_dentry = HPPFS_I(inode)->proc_dentry;
Al Virof382d6e2008-02-23 04:53:53 -0500496 proc_mnt = inode->i_sb->s_fs_info;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500497 data->proc_file = dentry_open(dget(proc_dentry), mntget(proc_mnt),
David Howells745ca242008-11-14 10:39:22 +1100498 file_mode(file->f_mode), cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 err = PTR_ERR(data->proc_file);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500500 if (IS_ERR(data->proc_file))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 goto out_free;
502
503 file->private_data = data;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500504 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 out_free:
507 kfree(data);
508 out:
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500509 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
512static loff_t hppfs_llseek(struct file *file, loff_t off, int where)
513{
514 struct hppfs_private *data = file->private_data;
Paolo 'Blaisorblade' Giarrusso3f580472005-07-07 17:56:51 -0700515 struct file *proc_file = data->proc_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 loff_t (*llseek)(struct file *, loff_t, int);
517 loff_t ret;
518
Josef Sipek471b17e2006-12-08 02:37:07 -0800519 llseek = proc_file->f_path.dentry->d_inode->i_fop->llseek;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500520 if (llseek != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 ret = (*llseek)(proc_file, off, where);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500522 if (ret < 0)
523 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500526 return default_llseek(file, off, where);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800529static const struct file_operations hppfs_file_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 .owner = NULL,
531 .llseek = hppfs_llseek,
532 .read = hppfs_read,
533 .write = hppfs_write,
534 .open = hppfs_open,
535};
536
537struct hppfs_dirent {
538 void *vfs_dirent;
539 filldir_t filldir;
540 struct dentry *dentry;
541};
542
543static int hppfs_filldir(void *d, const char *name, int size,
Al Viroc8adf942006-10-09 20:26:58 +0100544 loff_t offset, u64 inode, unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 struct hppfs_dirent *dirent = d;
547
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500548 if (file_removed(dirent->dentry, name))
549 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500551 return (*dirent->filldir)(dirent->vfs_dirent, name, size, offset,
552 inode, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
555static int hppfs_readdir(struct file *file, void *ent, filldir_t filldir)
556{
557 struct hppfs_private *data = file->private_data;
Paolo 'Blaisorblade' Giarrusso3f580472005-07-07 17:56:51 -0700558 struct file *proc_file = data->proc_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 int (*readdir)(struct file *, void *, filldir_t);
560 struct hppfs_dirent dirent = ((struct hppfs_dirent)
561 { .vfs_dirent = ent,
562 .filldir = filldir,
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500563 .dentry = file->f_path.dentry
564 });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 int err;
566
Josef Sipek471b17e2006-12-08 02:37:07 -0800567 readdir = proc_file->f_path.dentry->d_inode->i_fop->readdir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 proc_file->f_pos = file->f_pos;
570 err = (*readdir)(proc_file, &dirent, hppfs_filldir);
571 file->f_pos = proc_file->f_pos;
572
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500573 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200576static int hppfs_fsync(struct file *file, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500578 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800581static const struct file_operations hppfs_dir_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 .owner = NULL,
583 .readdir = hppfs_readdir,
584 .open = hppfs_dir_open,
585 .fsync = hppfs_fsync,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200586 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587};
588
David Howells726c3342006-06-23 02:02:58 -0700589static int hppfs_statfs(struct dentry *dentry, struct kstatfs *sf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
591 sf->f_blocks = 0;
592 sf->f_bfree = 0;
593 sf->f_bavail = 0;
594 sf->f_files = 0;
595 sf->f_ffree = 0;
596 sf->f_type = HPPFS_SUPER_MAGIC;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500597 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
600static struct inode *hppfs_alloc_inode(struct super_block *sb)
601{
602 struct hppfs_inode_info *hi;
603
604 hi = kmalloc(sizeof(*hi), GFP_KERNEL);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500605 if (!hi)
606 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500608 hi->proc_dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 inode_init_once(&hi->vfs_inode);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500610 return &hi->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Al Viro33b0daa2010-06-07 00:12:50 -0400613void hppfs_evict_inode(struct inode *ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Al Viro33b0daa2010-06-07 00:12:50 -0400615 end_writeback(ino);
Jeff Dikea0612b12008-05-12 14:01:49 -0700616 dput(HPPFS_I(ino)->proc_dentry);
617 mntput(ino->i_sb->s_fs_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100620static void hppfs_i_callback(struct rcu_head *head)
621{
622 struct inode *inode = container_of(head, struct inode, i_rcu);
623 INIT_LIST_HEAD(&inode->i_dentry);
624 kfree(HPPFS_I(inode));
625}
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627static void hppfs_destroy_inode(struct inode *inode)
628{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100629 call_rcu(&inode->i_rcu, hppfs_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800632static const struct super_operations hppfs_sbops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 .alloc_inode = hppfs_alloc_inode,
634 .destroy_inode = hppfs_destroy_inode,
Al Viro33b0daa2010-06-07 00:12:50 -0400635 .evict_inode = hppfs_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 .statfs = hppfs_statfs,
637};
638
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500639static int hppfs_readlink(struct dentry *dentry, char __user *buffer,
640 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Al Viro7b264fc2009-12-23 00:43:50 -0500642 struct dentry *proc_dentry = HPPFS_I(dentry->d_inode)->proc_dentry;
Jeff Dikea0612b12008-05-12 14:01:49 -0700643 return proc_dentry->d_inode->i_op->readlink(proc_dentry, buffer,
644 buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Jeff Dikea0612b12008-05-12 14:01:49 -0700647static void *hppfs_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Al Viro7b264fc2009-12-23 00:43:50 -0500649 struct dentry *proc_dentry = HPPFS_I(dentry->d_inode)->proc_dentry;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500650
Jeff Dikea0612b12008-05-12 14:01:49 -0700651 return proc_dentry->d_inode->i_op->follow_link(proc_dentry, nd);
652}
Paolo 'Blaisorblade' Giarrussod7a60d52005-08-26 16:57:44 +0200653
Al Viro7b264fc2009-12-23 00:43:50 -0500654static void hppfs_put_link(struct dentry *dentry, struct nameidata *nd,
655 void *cookie)
656{
657 struct dentry *proc_dentry = HPPFS_I(dentry->d_inode)->proc_dentry;
658
659 if (proc_dentry->d_inode->i_op->put_link)
660 proc_dentry->d_inode->i_op->put_link(proc_dentry, nd, cookie);
661}
662
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800663static const struct inode_operations hppfs_dir_iops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 .lookup = hppfs_lookup,
665};
666
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800667static const struct inode_operations hppfs_link_iops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 .readlink = hppfs_readlink,
669 .follow_link = hppfs_follow_link,
Al Viro7b264fc2009-12-23 00:43:50 -0500670 .put_link = hppfs_put_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671};
672
Al Virof382d6e2008-02-23 04:53:53 -0500673static struct inode *get_inode(struct super_block *sb, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Al Virof382d6e2008-02-23 04:53:53 -0500675 struct inode *proc_ino = dentry->d_inode;
676 struct inode *inode = new_inode(sb);
677
Al Viro3cc06582011-07-17 22:24:15 -0400678 if (!inode) {
679 dput(dentry);
Al Virof382d6e2008-02-23 04:53:53 -0500680 return ERR_PTR(-ENOMEM);
Al Viro3cc06582011-07-17 22:24:15 -0400681 }
Al Virof382d6e2008-02-23 04:53:53 -0500682
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500683 if (S_ISDIR(dentry->d_inode->i_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 inode->i_op = &hppfs_dir_iops;
685 inode->i_fop = &hppfs_dir_fops;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500686 } else if (S_ISLNK(dentry->d_inode->i_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 inode->i_op = &hppfs_link_iops;
688 inode->i_fop = &hppfs_file_fops;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500689 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 inode->i_op = &hppfs_file_iops;
691 inode->i_fop = &hppfs_file_fops;
692 }
693
Al Viro3cc06582011-07-17 22:24:15 -0400694 HPPFS_I(inode)->proc_dentry = dentry;
Al Virof382d6e2008-02-23 04:53:53 -0500695
696 inode->i_uid = proc_ino->i_uid;
697 inode->i_gid = proc_ino->i_gid;
698 inode->i_atime = proc_ino->i_atime;
699 inode->i_mtime = proc_ino->i_mtime;
700 inode->i_ctime = proc_ino->i_ctime;
701 inode->i_ino = proc_ino->i_ino;
702 inode->i_mode = proc_ino->i_mode;
703 inode->i_nlink = proc_ino->i_nlink;
704 inode->i_size = proc_ino->i_size;
705 inode->i_blocks = proc_ino->i_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Jeff Dikea0612b12008-05-12 14:01:49 -0700707 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
710static int hppfs_fill_super(struct super_block *sb, void *d, int silent)
711{
712 struct inode *root_inode;
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500713 struct vfsmount *proc_mnt;
Al Virof382d6e2008-02-23 04:53:53 -0500714 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Al Viro0ceeca52010-02-05 09:34:36 -0500716 proc_mnt = mntget(current->nsproxy->pid_ns->proc_mnt);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500717 if (IS_ERR(proc_mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 goto out;
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 sb->s_blocksize = 1024;
721 sb->s_blocksize_bits = 10;
722 sb->s_magic = HPPFS_SUPER_MAGIC;
723 sb->s_op = &hppfs_sbops;
Al Virof382d6e2008-02-23 04:53:53 -0500724 sb->s_fs_info = proc_mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 err = -ENOMEM;
Al Viro3cc06582011-07-17 22:24:15 -0400727 root_inode = get_inode(sb, dget(proc_mnt->mnt_sb->s_root));
Al Virof382d6e2008-02-23 04:53:53 -0500728 if (!root_inode)
729 goto out_mntput;
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 sb->s_root = d_alloc_root(root_inode);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500732 if (!sb->s_root)
733 goto out_iput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500735 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500737 out_iput:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 iput(root_inode);
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500739 out_mntput:
740 mntput(proc_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 out:
742 return(err);
743}
744
Al Viro3c26ff62010-07-25 11:46:36 +0400745static struct dentry *hppfs_read_super(struct file_system_type *type,
David Howells454e2392006-06-23 02:02:57 -0700746 int flags, const char *dev_name,
Al Viro3c26ff62010-07-25 11:46:36 +0400747 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Al Viro3c26ff62010-07-25 11:46:36 +0400749 return mount_nodev(type, flags, data, hppfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
752static struct file_system_type hppfs_type = {
753 .owner = THIS_MODULE,
754 .name = "hppfs",
Al Viro3c26ff62010-07-25 11:46:36 +0400755 .mount = hppfs_read_super,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 .kill_sb = kill_anon_super,
757 .fs_flags = 0,
758};
759
760static int __init init_hppfs(void)
761{
Dave Hansen1dd0dd12008-02-15 18:37:00 -0500762 return register_filesystem(&hppfs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
765static void __exit exit_hppfs(void)
766{
767 unregister_filesystem(&hppfs_type);
768}
769
770module_init(init_hppfs)
771module_exit(exit_hppfs)
772MODULE_LICENSE("GPL");