]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/hppfs/hppfs.c
[patch] hppfs: remove hppfs_permission
[net-next-2.6.git] / fs / hppfs / hppfs.c
CommitLineData
1da177e4 1/*
1dd0dd11 2 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
1da177e4
LT
3 * Licensed under the GPL
4 */
5
1dd0dd11
DH
6#include <linux/ctype.h>
7#include <linux/dcache.h>
3f580470 8#include <linux/file.h>
1dd0dd11 9#include <linux/fs.h>
1da177e4 10#include <linux/init.h>
1da177e4 11#include <linux/kernel.h>
1dd0dd11
DH
12#include <linux/list.h>
13#include <linux/module.h>
14#include <linux/mount.h>
15#include <linux/slab.h>
1da177e4 16#include <linux/statfs.h>
1dd0dd11 17#include <linux/types.h>
1da177e4 18#include <asm/uaccess.h>
1da177e4
LT
19#include "os.h"
20
f382d6e6 21static struct inode *get_inode(struct super_block *, struct dentry *);
1da177e4
LT
22
23struct hppfs_data {
24 struct list_head list;
25 char contents[PAGE_SIZE - sizeof(struct list_head)];
26};
27
28struct hppfs_private {
29 struct file *proc_file;
30 int host_fd;
31 loff_t len;
32 struct hppfs_data *contents;
33};
34
35struct hppfs_inode_info {
a0612b1f 36 struct dentry *proc_dentry;
1da177e4
LT
37 struct inode vfs_inode;
38};
39
40static inline struct hppfs_inode_info *HPPFS_I(struct inode *inode)
41{
fd589e0b 42 return container_of(inode, struct hppfs_inode_info, vfs_inode);
1da177e4
LT
43}
44
45#define HPPFS_SUPER_MAGIC 0xb00000ee
46
ee9b6d61 47static const struct super_operations hppfs_sbops;
1da177e4
LT
48
49static int is_pid(struct dentry *dentry)
50{
51 struct super_block *sb;
52 int i;
53
54 sb = dentry->d_sb;
a0612b1f 55 if (dentry->d_parent != sb->s_root)
1dd0dd11 56 return 0;
1da177e4 57
1dd0dd11
DH
58 for (i = 0; i < dentry->d_name.len; i++) {
59 if (!isdigit(dentry->d_name.name[i]))
60 return 0;
1da177e4 61 }
1dd0dd11 62 return 1;
1da177e4
LT
63}
64
65static char *dentry_name(struct dentry *dentry, int extra)
66{
67 struct dentry *parent;
68 char *root, *name;
69 const char *seg_name;
70 int len, seg_len;
71
72 len = 0;
73 parent = dentry;
1dd0dd11
DH
74 while (parent->d_parent != parent) {
75 if (is_pid(parent))
1da177e4
LT
76 len += strlen("pid") + 1;
77 else len += parent->d_name.len + 1;
78 parent = parent->d_parent;
79 }
80
81 root = "proc";
82 len += strlen(root);
83 name = kmalloc(len + extra + 1, GFP_KERNEL);
1dd0dd11
DH
84 if (name == NULL)
85 return NULL;
1da177e4
LT
86
87 name[len] = '\0';
88 parent = dentry;
1dd0dd11
DH
89 while (parent->d_parent != parent) {
90 if (is_pid(parent)) {
1da177e4
LT
91 seg_name = "pid";
92 seg_len = strlen("pid");
93 }
94 else {
95 seg_name = parent->d_name.name;
96 seg_len = parent->d_name.len;
97 }
98
99 len -= seg_len + 1;
100 name[len] = '/';
101 strncpy(&name[len + 1], seg_name, seg_len);
102 parent = parent->d_parent;
103 }
104 strncpy(name, root, strlen(root));
1dd0dd11 105 return name;
1da177e4
LT
106}
107
1da177e4
LT
108static int file_removed(struct dentry *dentry, const char *file)
109{
110 char *host_file;
111 int extra, fd;
112
113 extra = 0;
1dd0dd11
DH
114 if (file != NULL)
115 extra += strlen(file) + 1;
1da177e4
LT
116
117 host_file = dentry_name(dentry, extra + strlen("/remove"));
1dd0dd11
DH
118 if (host_file == NULL) {
119 printk(KERN_ERR "file_removed : allocation failed\n");
120 return -ENOMEM;
1da177e4
LT
121 }
122
1dd0dd11 123 if (file != NULL) {
1da177e4
LT
124 strcat(host_file, "/");
125 strcat(host_file, file);
126 }
127 strcat(host_file, "/remove");
128
129 fd = os_open_file(host_file, of_read(OPENFLAGS()), 0);
130 kfree(host_file);
1dd0dd11 131 if (fd > 0) {
1da177e4 132 os_close_file(fd);
1dd0dd11 133 return 1;
1da177e4 134 }
1dd0dd11 135 return 0;
1da177e4
LT
136}
137
1da177e4 138static struct dentry *hppfs_lookup(struct inode *ino, struct dentry *dentry,
a0612b1f 139 struct nameidata *nd)
1da177e4
LT
140{
141 struct dentry *proc_dentry, *new, *parent;
142 struct inode *inode;
143 int err, deleted;
144
145 deleted = file_removed(dentry, NULL);
1dd0dd11
DH
146 if (deleted < 0)
147 return ERR_PTR(deleted);
148 else if (deleted)
149 return ERR_PTR(-ENOENT);
1da177e4
LT
150
151 err = -ENOMEM;
152 parent = HPPFS_I(ino)->proc_dentry;
1b1dcc1b 153 mutex_lock(&parent->d_inode->i_mutex);
1da177e4 154 proc_dentry = d_lookup(parent, &dentry->d_name);
1dd0dd11 155 if (proc_dentry == NULL) {
1da177e4 156 proc_dentry = d_alloc(parent, &dentry->d_name);
1dd0dd11 157 if (proc_dentry == NULL) {
1b1dcc1b 158 mutex_unlock(&parent->d_inode->i_mutex);
1da177e4
LT
159 goto out;
160 }
161 new = (*parent->d_inode->i_op->lookup)(parent->d_inode,
162 proc_dentry, NULL);
1dd0dd11 163 if (new) {
1da177e4
LT
164 dput(proc_dentry);
165 proc_dentry = new;
166 }
167 }
1b1dcc1b 168 mutex_unlock(&parent->d_inode->i_mutex);
1da177e4 169
1dd0dd11
DH
170 if (IS_ERR(proc_dentry))
171 return proc_dentry;
1da177e4 172
f382d6e6
AV
173 err = -ENOMEM;
174 inode = get_inode(ino->i_sb, proc_dentry);
175 if (!inode)
1da177e4 176 goto out_dput;
1da177e4
LT
177
178 d_add(dentry, inode);
1dd0dd11 179 return NULL;
1da177e4 180
1da177e4
LT
181 out_dput:
182 dput(proc_dentry);
183 out:
1dd0dd11 184 return ERR_PTR(err);
1da177e4
LT
185}
186
92e1d5be 187static const struct inode_operations hppfs_file_iops = {
1da177e4
LT
188};
189
347f217c 190static ssize_t read_proc(struct file *file, char __user *buf, ssize_t count,
1da177e4
LT
191 loff_t *ppos, int is_user)
192{
347f217c 193 ssize_t (*read)(struct file *, char __user *, size_t, loff_t *);
1da177e4
LT
194 ssize_t n;
195
471b17e7 196 read = file->f_path.dentry->d_inode->i_fop->read;
1da177e4 197
1dd0dd11 198 if (!is_user)
1da177e4
LT
199 set_fs(KERNEL_DS);
200
201 n = (*read)(file, buf, count, &file->f_pos);
202
1dd0dd11 203 if (!is_user)
1da177e4
LT
204 set_fs(USER_DS);
205
1dd0dd11
DH
206 if (ppos)
207 *ppos = file->f_pos;
8e0a2181 208 return n;
1da177e4
LT
209}
210
347f217c 211static ssize_t hppfs_read_file(int fd, char __user *buf, ssize_t count)
1da177e4
LT
212{
213 ssize_t n;
214 int cur, err;
215 char *new_buf;
216
217 n = -ENOMEM;
218 new_buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1dd0dd11
DH
219 if (new_buf == NULL) {
220 printk(KERN_ERR "hppfs_read_file : kmalloc failed\n");
1da177e4
LT
221 goto out;
222 }
223 n = 0;
1dd0dd11 224 while (count > 0) {
1da177e4
LT
225 cur = min_t(ssize_t, count, PAGE_SIZE);
226 err = os_read_file(fd, new_buf, cur);
1dd0dd11
DH
227 if (err < 0) {
228 printk(KERN_ERR "hppfs_read : read failed, "
229 "errno = %d\n", err);
1da177e4
LT
230 n = err;
231 goto out_free;
1dd0dd11 232 } else if (err == 0)
1da177e4
LT
233 break;
234
1dd0dd11 235 if (copy_to_user(buf, new_buf, err)) {
1da177e4
LT
236 n = -EFAULT;
237 goto out_free;
238 }
239 n += err;
240 count -= err;
241 }
242 out_free:
243 kfree(new_buf);
244 out:
8e0a2181 245 return n;
1da177e4
LT
246}
247
347f217c 248static ssize_t hppfs_read(struct file *file, char __user *buf, size_t count,
1da177e4
LT
249 loff_t *ppos)
250{
251 struct hppfs_private *hppfs = file->private_data;
252 struct hppfs_data *data;
253 loff_t off;
254 int err;
255
1dd0dd11 256 if (hppfs->contents != NULL) {
a0612b1f
JD
257 int rem;
258
1dd0dd11
DH
259 if (*ppos >= hppfs->len)
260 return 0;
1da177e4
LT
261
262 data = hppfs->contents;
263 off = *ppos;
1dd0dd11 264 while (off >= sizeof(data->contents)) {
1da177e4
LT
265 data = list_entry(data->list.next, struct hppfs_data,
266 list);
267 off -= sizeof(data->contents);
268 }
269
1dd0dd11 270 if (off + count > hppfs->len)
1da177e4 271 count = hppfs->len - off;
a0612b1f
JD
272 rem = copy_to_user(buf, &data->contents[off], count);
273 *ppos += count - rem;
274 if (rem > 0)
275 return -EFAULT;
1dd0dd11 276 } else if (hppfs->host_fd != -1) {
1da177e4 277 err = os_seek_file(hppfs->host_fd, *ppos);
1dd0dd11
DH
278 if (err) {
279 printk(KERN_ERR "hppfs_read : seek failed, "
280 "errno = %d\n", err);
281 return err;
1da177e4
LT
282 }
283 count = hppfs_read_file(hppfs->host_fd, buf, count);
1dd0dd11 284 if (count > 0)
1da177e4
LT
285 *ppos += count;
286 }
287 else count = read_proc(hppfs->proc_file, buf, count, ppos, 1);
288
1dd0dd11 289 return count;
1da177e4
LT
290}
291
a0612b1f
JD
292static ssize_t hppfs_write(struct file *file, const char __user *buf,
293 size_t len, loff_t *ppos)
1da177e4
LT
294{
295 struct hppfs_private *data = file->private_data;
296 struct file *proc_file = data->proc_file;
347f217c 297 ssize_t (*write)(struct file *, const char __user *, size_t, loff_t *);
1da177e4 298
471b17e7 299 write = proc_file->f_path.dentry->d_inode->i_fop->write;
a0612b1f 300 return (*write)(proc_file, buf, len, ppos);
1da177e4
LT
301}
302
303static int open_host_sock(char *host_file, int *filter_out)
304{
305 char *end;
306 int fd;
307
308 end = &host_file[strlen(host_file)];
309 strcpy(end, "/rw");
310 *filter_out = 1;
311 fd = os_connect_socket(host_file);
1dd0dd11
DH
312 if (fd > 0)
313 return fd;
1da177e4
LT
314
315 strcpy(end, "/r");
316 *filter_out = 0;
317 fd = os_connect_socket(host_file);
1dd0dd11 318 return fd;
1da177e4
LT
319}
320
321static void free_contents(struct hppfs_data *head)
322{
323 struct hppfs_data *data;
324 struct list_head *ele, *next;
325
1dd0dd11
DH
326 if (head == NULL)
327 return;
1da177e4 328
1dd0dd11 329 list_for_each_safe(ele, next, &head->list) {
1da177e4
LT
330 data = list_entry(ele, struct hppfs_data, list);
331 kfree(data);
332 }
333 kfree(head);
334}
335
336static struct hppfs_data *hppfs_get_data(int fd, int filter,
337 struct file *proc_file,
338 struct file *hppfs_file,
339 loff_t *size_out)
340{
341 struct hppfs_data *data, *new, *head;
342 int n, err;
343
344 err = -ENOMEM;
345 data = kmalloc(sizeof(*data), GFP_KERNEL);
1dd0dd11
DH
346 if (data == NULL) {
347 printk(KERN_ERR "hppfs_get_data : head allocation failed\n");
1da177e4
LT
348 goto failed;
349 }
350
351 INIT_LIST_HEAD(&data->list);
352
353 head = data;
354 *size_out = 0;
355
1dd0dd11
DH
356 if (filter) {
357 while ((n = read_proc(proc_file, data->contents,
a0612b1f 358 sizeof(data->contents), NULL, 0)) > 0)
1da177e4
LT
359 os_write_file(fd, data->contents, n);
360 err = os_shutdown_socket(fd, 0, 1);
1dd0dd11
DH
361 if (err) {
362 printk(KERN_ERR "hppfs_get_data : failed to shut down "
1da177e4
LT
363 "socket\n");
364 goto failed_free;
365 }
366 }
1dd0dd11 367 while (1) {
1da177e4 368 n = os_read_file(fd, data->contents, sizeof(data->contents));
1dd0dd11 369 if (n < 0) {
1da177e4 370 err = n;
1dd0dd11
DH
371 printk(KERN_ERR "hppfs_get_data : read failed, "
372 "errno = %d\n", err);
1da177e4 373 goto failed_free;
1dd0dd11 374 } else if (n == 0)
1da177e4
LT
375 break;
376
377 *size_out += n;
378
1dd0dd11 379 if (n < sizeof(data->contents))
1da177e4
LT
380 break;
381
382 new = kmalloc(sizeof(*data), GFP_KERNEL);
1dd0dd11
DH
383 if (new == 0) {
384 printk(KERN_ERR "hppfs_get_data : data allocation "
385 "failed\n");
1da177e4
LT
386 err = -ENOMEM;
387 goto failed_free;
388 }
389
390 INIT_LIST_HEAD(&new->list);
391 list_add(&new->list, &data->list);
392 data = new;
393 }
1dd0dd11 394 return head;
1da177e4
LT
395
396 failed_free:
397 free_contents(head);
398 failed:
1dd0dd11 399 return ERR_PTR(err);
1da177e4
LT
400}
401
402static struct hppfs_private *hppfs_data(void)
403{
404 struct hppfs_private *data;
405
406 data = kmalloc(sizeof(*data), GFP_KERNEL);
1dd0dd11
DH
407 if (data == NULL)
408 return data;
1da177e4
LT
409
410 *data = ((struct hppfs_private ) { .host_fd = -1,
411 .len = -1,
412 .contents = NULL } );
1dd0dd11 413 return data;
1da177e4
LT
414}
415
416static int file_mode(int fmode)
417{
1dd0dd11
DH
418 if (fmode == (FMODE_READ | FMODE_WRITE))
419 return O_RDWR;
420 if (fmode == FMODE_READ)
421 return O_RDONLY;
422 if (fmode == FMODE_WRITE)
423 return O_WRONLY;
424 return 0;
1da177e4
LT
425}
426
427static int hppfs_open(struct inode *inode, struct file *file)
428{
429 struct hppfs_private *data;
1dd0dd11 430 struct vfsmount *proc_mnt;
a0612b1f 431 struct dentry *proc_dentry;
1da177e4
LT
432 char *host_file;
433 int err, fd, type, filter;
434
435 err = -ENOMEM;
436 data = hppfs_data();
1dd0dd11 437 if (data == NULL)
1da177e4
LT
438 goto out;
439
471b17e7 440 host_file = dentry_name(file->f_path.dentry, strlen("/rw"));
1dd0dd11 441 if (host_file == NULL)
1da177e4
LT
442 goto out_free2;
443
444 proc_dentry = HPPFS_I(inode)->proc_dentry;
f382d6e6 445 proc_mnt = inode->i_sb->s_fs_info;
1da177e4
LT
446
447 /* XXX This isn't closed anywhere */
1dd0dd11 448 data->proc_file = dentry_open(dget(proc_dentry), mntget(proc_mnt),
1da177e4
LT
449 file_mode(file->f_mode));
450 err = PTR_ERR(data->proc_file);
1dd0dd11 451 if (IS_ERR(data->proc_file))
1da177e4
LT
452 goto out_free1;
453
454 type = os_file_type(host_file);
1dd0dd11 455 if (type == OS_TYPE_FILE) {
1da177e4 456 fd = os_open_file(host_file, of_read(OPENFLAGS()), 0);
1dd0dd11 457 if (fd >= 0)
1da177e4 458 data->host_fd = fd;
1dd0dd11
DH
459 else
460 printk(KERN_ERR "hppfs_open : failed to open '%s', "
461 "errno = %d\n", host_file, -fd);
1da177e4
LT
462
463 data->contents = NULL;
1dd0dd11 464 } else if (type == OS_TYPE_DIR) {
1da177e4 465 fd = open_host_sock(host_file, &filter);
1dd0dd11 466 if (fd > 0) {
1da177e4 467 data->contents = hppfs_get_data(fd, filter,
3f580470 468 data->proc_file,
1da177e4 469 file, &data->len);
1dd0dd11 470 if (!IS_ERR(data->contents))
1da177e4 471 data->host_fd = fd;
1dd0dd11
DH
472 } else
473 printk(KERN_ERR "hppfs_open : failed to open a socket "
474 "in '%s', errno = %d\n", host_file, -fd);
1da177e4
LT
475 }
476 kfree(host_file);
477
478 file->private_data = data;
1dd0dd11 479 return 0;
1da177e4
LT
480
481 out_free1:
482 kfree(host_file);
483 out_free2:
484 free_contents(data->contents);
485 kfree(data);
486 out:
1dd0dd11 487 return err;
1da177e4
LT
488}
489
490static int hppfs_dir_open(struct inode *inode, struct file *file)
491{
492 struct hppfs_private *data;
1dd0dd11 493 struct vfsmount *proc_mnt;
a0612b1f 494 struct dentry *proc_dentry;
1da177e4
LT
495 int err;
496
497 err = -ENOMEM;
498 data = hppfs_data();
1dd0dd11 499 if (data == NULL)
1da177e4
LT
500 goto out;
501
502 proc_dentry = HPPFS_I(inode)->proc_dentry;
f382d6e6 503 proc_mnt = inode->i_sb->s_fs_info;
1dd0dd11 504 data->proc_file = dentry_open(dget(proc_dentry), mntget(proc_mnt),
1da177e4
LT
505 file_mode(file->f_mode));
506 err = PTR_ERR(data->proc_file);
1dd0dd11 507 if (IS_ERR(data->proc_file))
1da177e4
LT
508 goto out_free;
509
510 file->private_data = data;
1dd0dd11 511 return 0;
1da177e4
LT
512
513 out_free:
514 kfree(data);
515 out:
1dd0dd11 516 return err;
1da177e4
LT
517}
518
519static loff_t hppfs_llseek(struct file *file, loff_t off, int where)
520{
521 struct hppfs_private *data = file->private_data;
3f580470 522 struct file *proc_file = data->proc_file;
1da177e4
LT
523 loff_t (*llseek)(struct file *, loff_t, int);
524 loff_t ret;
525
471b17e7 526 llseek = proc_file->f_path.dentry->d_inode->i_fop->llseek;
1dd0dd11 527 if (llseek != NULL) {
1da177e4 528 ret = (*llseek)(proc_file, off, where);
1dd0dd11
DH
529 if (ret < 0)
530 return ret;
1da177e4
LT
531 }
532
1dd0dd11 533 return default_llseek(file, off, where);
1da177e4
LT
534}
535
4b6f5d20 536static const struct file_operations hppfs_file_fops = {
1da177e4
LT
537 .owner = NULL,
538 .llseek = hppfs_llseek,
539 .read = hppfs_read,
540 .write = hppfs_write,
541 .open = hppfs_open,
542};
543
544struct hppfs_dirent {
545 void *vfs_dirent;
546 filldir_t filldir;
547 struct dentry *dentry;
548};
549
550static int hppfs_filldir(void *d, const char *name, int size,
c8adf94a 551 loff_t offset, u64 inode, unsigned int type)
1da177e4
LT
552{
553 struct hppfs_dirent *dirent = d;
554
1dd0dd11
DH
555 if (file_removed(dirent->dentry, name))
556 return 0;
1da177e4 557
1dd0dd11
DH
558 return (*dirent->filldir)(dirent->vfs_dirent, name, size, offset,
559 inode, type);
1da177e4
LT
560}
561
562static int hppfs_readdir(struct file *file, void *ent, filldir_t filldir)
563{
564 struct hppfs_private *data = file->private_data;
3f580470 565 struct file *proc_file = data->proc_file;
1da177e4
LT
566 int (*readdir)(struct file *, void *, filldir_t);
567 struct hppfs_dirent dirent = ((struct hppfs_dirent)
568 { .vfs_dirent = ent,
569 .filldir = filldir,
1dd0dd11
DH
570 .dentry = file->f_path.dentry
571 });
1da177e4
LT
572 int err;
573
471b17e7 574 readdir = proc_file->f_path.dentry->d_inode->i_fop->readdir;
1da177e4
LT
575
576 proc_file->f_pos = file->f_pos;
577 err = (*readdir)(proc_file, &dirent, hppfs_filldir);
578 file->f_pos = proc_file->f_pos;
579
1dd0dd11 580 return err;
1da177e4
LT
581}
582
583static int hppfs_fsync(struct file *file, struct dentry *dentry, int datasync)
584{
1dd0dd11 585 return 0;
1da177e4
LT
586}
587
4b6f5d20 588static const struct file_operations hppfs_dir_fops = {
1da177e4
LT
589 .owner = NULL,
590 .readdir = hppfs_readdir,
591 .open = hppfs_dir_open,
592 .fsync = hppfs_fsync,
593};
594
726c3342 595static int hppfs_statfs(struct dentry *dentry, struct kstatfs *sf)
1da177e4
LT
596{
597 sf->f_blocks = 0;
598 sf->f_bfree = 0;
599 sf->f_bavail = 0;
600 sf->f_files = 0;
601 sf->f_ffree = 0;
602 sf->f_type = HPPFS_SUPER_MAGIC;
1dd0dd11 603 return 0;
1da177e4
LT
604}
605
606static struct inode *hppfs_alloc_inode(struct super_block *sb)
607{
608 struct hppfs_inode_info *hi;
609
610 hi = kmalloc(sizeof(*hi), GFP_KERNEL);
1dd0dd11
DH
611 if (!hi)
612 return NULL;
1da177e4 613
1dd0dd11 614 hi->proc_dentry = NULL;
1da177e4 615 inode_init_once(&hi->vfs_inode);
1dd0dd11 616 return &hi->vfs_inode;
1da177e4
LT
617}
618
619void hppfs_delete_inode(struct inode *ino)
620{
a0612b1f
JD
621 dput(HPPFS_I(ino)->proc_dentry);
622 mntput(ino->i_sb->s_fs_info);
623
1da177e4
LT
624 clear_inode(ino);
625}
626
627static void hppfs_destroy_inode(struct inode *inode)
628{
629 kfree(HPPFS_I(inode));
630}
631
ee9b6d61 632static const struct super_operations hppfs_sbops = {
1da177e4
LT
633 .alloc_inode = hppfs_alloc_inode,
634 .destroy_inode = hppfs_destroy_inode,
1da177e4
LT
635 .delete_inode = hppfs_delete_inode,
636 .statfs = hppfs_statfs,
637};
638
1dd0dd11
DH
639static int hppfs_readlink(struct dentry *dentry, char __user *buffer,
640 int buflen)
1da177e4 641{
1da177e4 642 struct dentry *proc_dentry;
1da177e4
LT
643
644 proc_dentry = HPPFS_I(dentry->d_inode)->proc_dentry;
a0612b1f
JD
645 return proc_dentry->d_inode->i_op->readlink(proc_dentry, buffer,
646 buflen);
1da177e4
LT
647}
648
a0612b1f 649static void *hppfs_follow_link(struct dentry *dentry, struct nameidata *nd)
1da177e4 650{
1da177e4 651 struct dentry *proc_dentry;
1da177e4
LT
652
653 proc_dentry = HPPFS_I(dentry->d_inode)->proc_dentry;
1da177e4 654
a0612b1f
JD
655 return proc_dentry->d_inode->i_op->follow_link(proc_dentry, nd);
656}
1da177e4 657
92e1d5be 658static const struct inode_operations hppfs_dir_iops = {
1da177e4
LT
659 .lookup = hppfs_lookup,
660};
661
92e1d5be 662static const struct inode_operations hppfs_link_iops = {
1da177e4
LT
663 .readlink = hppfs_readlink,
664 .follow_link = hppfs_follow_link,
665};
666
f382d6e6 667static struct inode *get_inode(struct super_block *sb, struct dentry *dentry)
1da177e4 668{
f382d6e6
AV
669 struct inode *proc_ino = dentry->d_inode;
670 struct inode *inode = new_inode(sb);
671
672 if (!inode)
673 return ERR_PTR(-ENOMEM);
674
1dd0dd11 675 if (S_ISDIR(dentry->d_inode->i_mode)) {
1da177e4
LT
676 inode->i_op = &hppfs_dir_iops;
677 inode->i_fop = &hppfs_dir_fops;
1dd0dd11 678 } else if (S_ISLNK(dentry->d_inode->i_mode)) {
1da177e4
LT
679 inode->i_op = &hppfs_link_iops;
680 inode->i_fop = &hppfs_file_fops;
1dd0dd11 681 } else {
1da177e4
LT
682 inode->i_op = &hppfs_file_iops;
683 inode->i_fop = &hppfs_file_fops;
684 }
685
a0612b1f 686 HPPFS_I(inode)->proc_dentry = dget(dentry);
f382d6e6
AV
687
688 inode->i_uid = proc_ino->i_uid;
689 inode->i_gid = proc_ino->i_gid;
690 inode->i_atime = proc_ino->i_atime;
691 inode->i_mtime = proc_ino->i_mtime;
692 inode->i_ctime = proc_ino->i_ctime;
693 inode->i_ino = proc_ino->i_ino;
694 inode->i_mode = proc_ino->i_mode;
695 inode->i_nlink = proc_ino->i_nlink;
696 inode->i_size = proc_ino->i_size;
697 inode->i_blocks = proc_ino->i_blocks;
1da177e4 698
a0612b1f 699 return inode;
1da177e4
LT
700}
701
702static int hppfs_fill_super(struct super_block *sb, void *d, int silent)
703{
704 struct inode *root_inode;
1dd0dd11 705 struct vfsmount *proc_mnt;
f382d6e6 706 int err = -ENOENT;
1da177e4 707
f382d6e6 708 proc_mnt = do_kern_mount("proc", 0, "proc", NULL);
1dd0dd11 709 if (IS_ERR(proc_mnt))
1da177e4
LT
710 goto out;
711
1da177e4
LT
712 sb->s_blocksize = 1024;
713 sb->s_blocksize_bits = 10;
714 sb->s_magic = HPPFS_SUPER_MAGIC;
715 sb->s_op = &hppfs_sbops;
f382d6e6 716 sb->s_fs_info = proc_mnt;
1da177e4
LT
717
718 err = -ENOMEM;
f382d6e6
AV
719 root_inode = get_inode(sb, proc_mnt->mnt_sb->s_root);
720 if (!root_inode)
721 goto out_mntput;
722
1da177e4 723 sb->s_root = d_alloc_root(root_inode);
1dd0dd11
DH
724 if (!sb->s_root)
725 goto out_iput;
1da177e4 726
1dd0dd11 727 return 0;
1da177e4 728
1dd0dd11 729 out_iput:
1da177e4 730 iput(root_inode);
1dd0dd11
DH
731 out_mntput:
732 mntput(proc_mnt);
1da177e4
LT
733 out:
734 return(err);
735}
736
454e2398
DH
737static int hppfs_read_super(struct file_system_type *type,
738 int flags, const char *dev_name,
739 void *data, struct vfsmount *mnt)
1da177e4 740{
454e2398 741 return get_sb_nodev(type, flags, data, hppfs_fill_super, mnt);
1da177e4
LT
742}
743
744static struct file_system_type hppfs_type = {
745 .owner = THIS_MODULE,
746 .name = "hppfs",
747 .get_sb = hppfs_read_super,
748 .kill_sb = kill_anon_super,
749 .fs_flags = 0,
750};
751
752static int __init init_hppfs(void)
753{
1dd0dd11 754 return register_filesystem(&hppfs_type);
1da177e4
LT
755}
756
757static void __exit exit_hppfs(void)
758{
759 unregister_filesystem(&hppfs_type);
760}
761
762module_init(init_hppfs)
763module_exit(exit_hppfs)
764MODULE_LICENSE("GPL");