[PATCH 2/5] revoke: core code

From: Pekka J Enberg
Date: Sun Mar 11 2007 - 07:31:13 EST


From: Pekka Enberg <penberg@xxxxxxxxxxxxxx>

The revokeat(2) and frevoke(2) system calls invalidate open file
descriptors and shared mappings of an inode. After an successful
revocation, operations on file descriptors fail with the EBADF or
ENXIO error code for regular and device files,
respectively. Attempting to read from or write to a revoked mapping
causes SIGBUS.

The actual operation is done in two passes:

1. Revoke all file descriptors that point to the given inode. We do
this under tasklist_lock so that after this pass, we don't need
to worry about racing with close(2) or dup(2).

2. Take down shared memory mappings of the inode and close all file
pointers.

The file descriptors and memory mapping ranges are preserved until the
owning task does close(2) and munmap(2), respectively.

Signed-off-by: Pekka Enberg <penberg@xxxxxxxxxxxxxx>
---
fs/Makefile | 2
fs/revoke.c | 588 +++++++++++++++++++++++++++++++++++++++++++
fs/revoked_inode.c | 378 +++++++++++++++++++++++++++
include/linux/fs.h | 4
include/linux/revoked_fs_i.h | 20 +
include/linux/syscalls.h | 3
6 files changed, 994 insertions(+), 1 deletion(-)

Index: uml-2.6/fs/Makefile
===================================================================
--- uml-2.6.orig/fs/Makefile 2007-03-11 13:07:57.000000000 +0200
+++ uml-2.6/fs/Makefile 2007-03-11 13:09:20.000000000 +0200
@@ -11,7 +11,7 @@ obj-y := open.o read_write.o file_table.
attr.o bad_inode.o file.o filesystems.o namespace.o aio.o \
seq_file.o xattr.o libfs.o fs-writeback.o \
pnode.o drop_caches.o splice.o sync.o utimes.o \
- stack.o
+ stack.o revoke.o revoked_inode.o

ifeq ($(CONFIG_BLOCK),y)
obj-y += buffer.o bio.o block_dev.o direct-io.o mpage.o ioprio.o
Index: uml-2.6/include/linux/syscalls.h
===================================================================
--- uml-2.6.orig/include/linux/syscalls.h 2007-03-11 13:07:57.000000000 +0200
+++ uml-2.6/include/linux/syscalls.h 2007-03-11 13:09:20.000000000 +0200
@@ -605,4 +605,7 @@ asmlinkage long sys_getcpu(unsigned __us

int kernel_execve(const char *filename, char *const argv[], char *const envp[]);

+asmlinkage int sys_revokeat(int dfd, const char __user *filename);
+asmlinkage int sys_frevoke(unsigned int fd);
+
#endif
Index: uml-2.6/include/linux/fs.h
===================================================================
--- uml-2.6.orig/include/linux/fs.h 2007-03-11 13:07:57.000000000 +0200
+++ uml-2.6/include/linux/fs.h 2007-03-11 13:09:20.000000000 +0200
@@ -1100,6 +1100,7 @@ struct file_operations {
int (*flock) (struct file *, int, struct file_lock *);
ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int);
ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int);
+ int (*revoke)(struct file *);
};

struct inode_operations {
@@ -1739,6 +1740,9 @@ extern ssize_t generic_splice_sendpage(s
extern long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
size_t len, unsigned int flags);

+/* fs/revoke.c */
+extern int generic_file_revoke(struct file *);
+
extern void
file_ra_state_init(struct file_ra_state *ra, struct address_space *mapping);
extern loff_t no_llseek(struct file *file, loff_t offset, int origin);
Index: uml-2.6/fs/revoke.c
===================================================================
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
+++ uml-2.6/fs/revoke.c 2007-03-11 13:14:42.000000000 +0200
@@ -0,0 +1,588 @@
+/*
+ * fs/revoke.c - Invalidate all current open file descriptors of an inode.
+ *
+ * Copyright (C) 2006-2007 Pekka Enberg
+ *
+ * This file is released under the GPLv2.
+ */
+
+#include <linux/file.h>
+#include <linux/fs.h>
+#include <linux/namei.h>
+#include <linux/mm.h>
+#include <linux/mman.h>
+#include <linux/module.h>
+#include <linux/mount.h>
+#include <linux/sched.h>
+#include <linux/revoked_fs_i.h>
+
+/*
+ * This is used for pre-allocating an array of file pointers so that we don't
+ * have to do memory allocation under tasklist_lock.
+ */
+struct revoke_table {
+ struct file **files;
+ unsigned long size;
+ unsigned long end;
+ unsigned long restore_start;
+};
+
+struct kmem_cache *revokefs_inode_cache;
+
+/*
+ * Revoked file descriptors point to inodes in the revokefs filesystem.
+ */
+static struct vfsmount *revokefs_mnt;
+
+static struct file *get_revoked_file(void)
+{
+ struct dentry *dentry;
+ struct inode *inode;
+ struct file *filp;
+ struct qstr name;
+
+ filp = get_empty_filp();
+ if (!filp)
+ goto err;
+
+ inode = new_inode(revokefs_mnt->mnt_sb);
+ if (!inode)
+ goto err_inode;
+
+ name.name = "revoked_file";
+ name.len = strlen(name.name);
+ dentry = d_alloc(revokefs_mnt->mnt_sb->s_root, &name);
+ if (!dentry)
+ goto err_dentry;
+
+ d_instantiate(dentry, inode);
+
+ filp->f_mapping = inode->i_mapping;
+ filp->f_dentry = dget(dentry);
+ filp->f_vfsmnt = mntget(revokefs_mnt);
+ filp->f_op = fops_get(inode->i_fop);
+ filp->f_pos = 0;
+
+ return filp;
+
+ err_dentry:
+ iput(inode);
+ err_inode:
+ fput(filp);
+ err:
+ return NULL;
+}
+
+static inline int inode_matches(struct file *file, struct inode *inode,
+ struct file *to_exclude)
+{
+ return file && file != to_exclude && file->f_dentry->d_inode == inode;
+}
+
+static inline bool revoke_table_is_full(struct revoke_table *table)
+{
+ return table->end == table->size;
+}
+
+static inline struct file *revoke_table_get(struct revoke_table *table)
+{
+ return table->files[table->end++];
+}
+
+/*
+ * LOCKING: task_lock(owner)
+ */
+static int revoke_fds(struct task_struct *owner,
+ struct inode *inode,
+ struct file *to_exclude, struct revoke_table *table)
+{
+ struct files_struct *files;
+ struct fdtable *fdt;
+ unsigned int fd;
+ int err = 0;
+
+ files = get_files_struct(owner);
+ if (!files)
+ goto out;
+
+ spin_lock(&files->file_lock);
+ fdt = files_fdtable(files);
+
+ for (fd = 0; fd < fdt->max_fds; fd++) {
+ struct revokefs_inode_info *info;
+ struct file *filp, *new_filp;
+ struct inode *new_inode;
+
+ filp = fcheck_files(files, fd);
+ if (!inode_matches(filp, inode, to_exclude))
+ continue;
+
+ if (!filp->f_op->revoke) {
+ err = -EOPNOTSUPP;
+ goto failed;
+ }
+
+ if (revoke_table_is_full(table)) {
+ err = -ENOMEM;
+ goto failed;
+ }
+
+ new_filp = revoke_table_get(table);
+ get_file(new_filp);
+
+ /*
+ * Replace original struct file pointer with a pointer to
+ * a 'revoked file.' After this point, we don't need to worry
+ * about racing with sys_close or sys_dup.
+ */
+ rcu_assign_pointer(fdt->fd[fd], new_filp);
+
+ /*
+ * Hold on to task until we can take down the file and its
+ * mmap.
+ */
+ get_task_struct(owner);
+
+ new_inode = new_filp->f_dentry->d_inode;
+ make_revoked_inode(new_inode, inode->i_mode & S_IFMT);
+
+ info = revokefs_i(new_inode);
+ info->fd = fd;
+ info->file = filp;
+ info->owner = owner;
+ }
+ failed:
+ spin_unlock(&files->file_lock);
+ put_files_struct(files);
+ out:
+ return err;
+}
+
+static int revoke_vma(struct vm_area_struct *vma, struct zap_details *details)
+{
+ unsigned long restart_addr, start_addr, end_addr;
+ int need_break;
+
+ start_addr = vma->vm_start;
+ end_addr = vma->vm_end;
+
+ /*
+ * Not holding ->mmap_sem here.
+ */
+ vma->vm_flags |= VM_REVOKED;
+ smp_mb();
+ again:
+ restart_addr = zap_page_range(vma, start_addr, end_addr - start_addr,
+ details);
+
+ need_break = need_resched() || need_lockbreak(details->i_mmap_lock);
+ if (need_break)
+ goto out_need_break;
+
+ if (restart_addr < end_addr) {
+ start_addr = restart_addr;
+ goto again;
+ }
+ return 0;
+
+ out_need_break:
+ spin_unlock(details->i_mmap_lock);
+ cond_resched();
+ spin_lock(details->i_mmap_lock);
+ return -EINTR;
+}
+
+static int revoke_mapping(struct address_space *mapping, struct file *to_exclude)
+{
+ struct vm_area_struct *vma;
+ struct prio_tree_iter iter;
+ struct zap_details details;
+ int err = 0;
+
+ details.i_mmap_lock = &mapping->i_mmap_lock;
+
+ spin_lock(&mapping->i_mmap_lock);
+ vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, 0, ULONG_MAX) {
+ if ((vma->vm_flags & VM_SHARED) && vma->vm_file != to_exclude) {
+ err = revoke_vma(vma, &details);
+ if (err)
+ goto out;
+ }
+ }
+
+ list_for_each_entry(vma, &mapping->i_mmap_nonlinear, shared.vm_set.list) {
+ if ((vma->vm_flags & VM_SHARED) && vma->vm_file != to_exclude) {
+ err = revoke_vma(vma, &details);
+ if (err)
+ goto out;
+ }
+ }
+ out:
+ spin_unlock(&mapping->i_mmap_lock);
+ return err;
+}
+
+static void restore_file(struct revokefs_inode_info *info)
+{
+ struct files_struct *files;
+
+ files = get_files_struct(info->owner);
+ if (files) {
+ struct fdtable *fdt;
+ struct file *filp;
+
+ spin_lock(&files->file_lock);
+ fdt = files_fdtable(files);
+
+ filp = fdt->fd[info->fd];
+ if (filp)
+ fput(filp);
+
+ rcu_assign_pointer(fdt->fd[info->fd], info->file);
+ FD_SET(info->fd, fdt->close_on_exec);
+ spin_unlock(&files->file_lock);
+ put_files_struct(files);
+ }
+ put_task_struct(info->owner);
+ info->owner = NULL; /* To avoid double-restore. */
+}
+
+static void restore_files(struct revoke_table *table)
+{
+ unsigned long i;
+
+ for (i = table->restore_start; i < table->end; i++) {
+ struct revokefs_inode_info *info;
+ struct file *filp;
+
+ filp = table->files[i];
+ info = revokefs_i(filp->f_dentry->d_inode);
+
+ restore_file(info);
+ }
+}
+
+static int revoke_files(struct revoke_table *table)
+{
+ unsigned long i;
+ int err = 0;
+
+ for (i = 0; i < table->end; i++) {
+ struct revokefs_inode_info *info;
+ struct file *this, *filp;
+
+ this = table->files[i];
+ info = revokefs_i(this->f_dentry->d_inode);
+
+ /*
+ * Increase count before attempting to close file as
+ * an partially closed file can no longer be restored.
+ */
+ table->restore_start++;
+ filp = info->file;
+ err = filp->f_op->revoke(filp);
+ put_task_struct(info->owner);
+ info->owner = NULL; /* To avoid restoring closed file. */
+ if (err)
+ goto failed;
+ }
+ return 0;
+
+ failed:
+ restore_files(table);
+ return err;
+}
+
+/*
+ * Returns the maximum number of file descriptors pointing to an inode.
+ *
+ * LOCKING: read_lock(&tasklist_lock)
+ */
+static unsigned long inode_fds(struct inode *inode, struct file *to_exclude)
+{
+ struct task_struct *g, *p;
+ unsigned long nr_fds = 0;
+
+ do_each_thread(g, p) {
+ struct files_struct *files;
+ struct fdtable *fdt;
+ unsigned int fd;
+
+ files = get_files_struct(p);
+ if (!files)
+ continue;
+
+ spin_lock(&files->file_lock);
+ fdt = files_fdtable(files);
+ for (fd = 0; fd < fdt->max_fds; fd++) {
+ struct file *file;
+
+ file = fcheck_files(files, fd);
+ if (inode_matches(file, inode, to_exclude)) {
+ nr_fds += fdt->max_fds;
+ break;
+ }
+ }
+ spin_unlock(&files->file_lock);
+ put_files_struct(files);
+ }
+ while_each_thread(g, p);
+ return nr_fds;
+}
+
+static void free_revoke_table(struct revoke_table *table)
+{
+ int i;
+
+ for (i = 0; i < table->size; i++)
+ fput(table->files[i]);
+
+ kfree(table->files);
+ kfree(table);
+}
+
+static struct revoke_table *__alloc_revoke_table(unsigned long size)
+{
+ struct revoke_table *table;
+ int i;
+
+ table = kzalloc(sizeof *table, GFP_KERNEL);
+ if (!table)
+ return NULL;
+
+ table->size = size;
+ table->files = kcalloc(size, sizeof(struct file *), GFP_KERNEL);
+ if (!table->files) {
+ kfree(table);
+ return NULL;
+ }
+
+ for (i = 0; i < table->size; i++) {
+ struct file *filp;
+
+ filp = get_revoked_file();
+ if (!filp)
+ goto err;
+
+ table->files[i] = filp;
+ }
+ return table;
+ err:
+ free_revoke_table(table);
+ return NULL;
+}
+
+static struct revoke_table *alloc_revoke_table(struct inode *inode,
+ struct file *to_exclude)
+{
+ unsigned long nr_fds;
+
+ read_lock(&tasklist_lock);
+ nr_fds = inode_fds(inode, to_exclude);
+ read_unlock(&tasklist_lock);
+
+ return __alloc_revoke_table(nr_fds);
+}
+
+static int do_revoke(struct inode *inode, struct file *to_exclude)
+{
+ struct revoke_table *table = NULL;
+ struct task_struct *g, *p;
+ int err = 0;
+
+ if (current->fsuid != inode->i_uid && !capable(CAP_FOWNER)) {
+ err = -EPERM;
+ goto out;
+ }
+
+ retry:
+ if (signal_pending(current)) {
+ err = -ERESTARTSYS;
+ goto out;
+ }
+
+ table = alloc_revoke_table(inode, to_exclude);
+ if (!table) {
+ err = -ENOMEM;
+ goto out;
+ }
+
+ read_lock(&tasklist_lock);
+
+ /*
+ * If someone forked while we were allocating memory, try again.
+ */
+ if (inode_fds(inode, to_exclude) > table->size) {
+ read_unlock(&tasklist_lock);
+ free_revoke_table(table);
+ goto retry;
+ }
+
+ /*
+ * First revoke the descriptors. After we are done, no one can start
+ * new operations on them.
+ */
+ do_each_thread(g, p) {
+ err = revoke_fds(p, inode, to_exclude, table);
+ if (err)
+ goto exit_loop;
+ }
+ while_each_thread(g, p);
+ exit_loop:
+ read_unlock(&tasklist_lock);
+
+ if (err) {
+ restore_files(table);
+ goto out_free_table;
+ }
+
+ /*
+ * Take down shared memory mappings.
+ */
+ err = revoke_mapping(inode->i_mapping, to_exclude);
+ if (err) {
+ restore_files(table);
+ goto out_free_table;
+ }
+
+ /*
+ * Now, revoke the files for good.
+ */
+ err = revoke_files(table);
+ out_free_table:
+ free_revoke_table(table);
+ out:
+ return err;
+}
+
+asmlinkage int sys_revokeat(int dfd, const char __user * filename)
+{
+ struct nameidata nd;
+ int err;
+
+ err = __user_walk_fd(dfd, filename, 0, &nd);
+ if (!err) {
+ err = do_revoke(nd.dentry->d_inode, NULL);
+ path_release(&nd);
+ }
+ return err;
+}
+
+asmlinkage int sys_frevoke(unsigned int fd)
+{
+ struct file *file = fget(fd);
+ int err = -EBADF;
+
+ if (file) {
+ err = do_revoke(file->f_dentry->d_inode, file);
+ fput(file);
+ }
+ return err;
+}
+
+int generic_file_revoke(struct file *file)
+{
+ int err;
+
+ /*
+ * Flush pending writes.
+ */
+ err = do_fsync(file, 1);
+ if (err)
+ goto out;
+
+ /*
+ * Make pending reads fail.
+ */
+ err = invalidate_inode_pages2(file->f_mapping);
+
+ out:
+ return err;
+}
+
+EXPORT_SYMBOL(generic_file_revoke);
+
+/*
+ * Filesystem for revoked files.
+ */
+
+static struct inode *revokefs_alloc_inode(struct super_block *sb)
+{
+ struct revokefs_inode_info *info;
+
+ info = kmem_cache_alloc(revokefs_inode_cache, GFP_NOFS);
+ if (!info)
+ return NULL;
+
+ return &info->vfs_inode;
+}
+
+static void revokefs_destroy_inode(struct inode *inode)
+{
+ kmem_cache_free(revokefs_inode_cache, revokefs_i(inode));
+}
+
+static struct super_operations revokefs_super_ops = {
+ .alloc_inode = revokefs_alloc_inode,
+ .destroy_inode = revokefs_destroy_inode,
+ .drop_inode = generic_delete_inode,
+};
+
+static int revokefs_get_sb(struct file_system_type *fs_type,
+ int flags, const char *dev_name, void *data,
+ struct vfsmount *mnt)
+{
+ return get_sb_pseudo(fs_type, "revoke:", &revokefs_super_ops,
+ REVOKEFS_MAGIC, mnt);
+}
+
+struct file_system_type revokefs_fs_type = {
+ .name = "revokefs",
+ .get_sb = revokefs_get_sb,
+ .kill_sb = kill_anon_super
+};
+
+static void revokefs_init_inode(void *obj, struct kmem_cache *cache,
+ unsigned long flags)
+{
+ struct revokefs_inode_info *info = obj;
+
+ if ((flags & (SLAB_CTOR_VERIFY | SLAB_CTOR_CONSTRUCTOR)) ==
+ SLAB_CTOR_CONSTRUCTOR) {
+ info->owner = NULL;
+ inode_init_once(&info->vfs_inode);
+ }
+}
+
+static int __init revokefs_init(void)
+{
+ int err = -ENOMEM;
+
+ revokefs_inode_cache =
+ kmem_cache_create("revokefs_inode_cache",
+ sizeof(struct revokefs_inode_info),
+ 0,
+ (SLAB_HWCACHE_ALIGN | SLAB_RECLAIM_ACCOUNT |
+ SLAB_MEM_SPREAD), revokefs_init_inode, NULL);
+ if (!revokefs_inode_cache)
+ goto out;
+
+ err = register_filesystem(&revokefs_fs_type);
+ if (err)
+ goto err_register;
+
+ revokefs_mnt = kern_mount(&revokefs_fs_type);
+ if (IS_ERR(revokefs_mnt)) {
+ err = PTR_ERR(revokefs_mnt);
+ goto err_mnt;
+ }
+ out:
+ return err;
+ err_mnt:
+ unregister_filesystem(&revokefs_fs_type);
+ err_register:
+ kmem_cache_destroy(revokefs_inode_cache);
+ return err;
+}
+
+late_initcall(revokefs_init);
Index: uml-2.6/fs/revoked_inode.c
===================================================================
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
+++ uml-2.6/fs/revoked_inode.c 2007-03-11 13:09:20.000000000 +0200
@@ -0,0 +1,378 @@
+/*
+ * fs/revoked_inode.c
+ *
+ * Copyright (C) 2007 Pekka Enberg
+ *
+ * Provide stub functions for revoked inodes. Based on fs/bad_inode.c which is
+ *
+ * Copyright (C) 1997 Stephen Tweedie
+ *
+ * This file is released under the GPLv2.
+ */
+
+#include <linux/fs.h>
+#include <linux/module.h>
+#include <linux/stat.h>
+#include <linux/time.h>
+#include <linux/smp_lock.h>
+#include <linux/namei.h>
+#include <linux/poll.h>
+#include <linux/revoked_fs_i.h>
+
+static loff_t revoked_file_llseek(struct file *file, loff_t offset, int origin)
+{
+ return -EBADF;
+}
+
+static ssize_t revoked_file_read(struct file *filp, char __user * buf,
+ size_t size, loff_t * ppos)
+{
+ return -EBADF;
+}
+
+static ssize_t revoked_special_file_read(struct file *filp, char __user * buf,
+ size_t size, loff_t * ppos)
+{
+ return 0;
+}
+
+static ssize_t revoked_file_write(struct file *filp, const char __user * buf,
+ size_t siz, loff_t * ppos)
+{
+ return -EBADF;
+}
+
+static ssize_t revoked_file_aio_read(struct kiocb *iocb,
+ const struct iovec *iov,
+ unsigned long nr_segs, loff_t pos)
+{
+ return -EBADF;
+}
+
+static ssize_t revoked_file_aio_write(struct kiocb *iocb,
+ const struct iovec *iov,
+ unsigned long nr_segs, loff_t pos)
+{
+ return -EBADF;
+}
+
+static int revoked_file_readdir(struct file *filp, void *dirent,
+ filldir_t filldir)
+{
+ return -EBADF;
+}
+
+static unsigned int revoked_file_poll(struct file *filp, poll_table * wait)
+{
+ return POLLERR;
+}
+
+static int revoked_file_ioctl(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg)
+{
+ return -EBADF;
+}
+
+static long revoked_file_unlocked_ioctl(struct file *file, unsigned cmd,
+ unsigned long arg)
+{
+ return -EBADF;
+}
+
+static long revoked_file_compat_ioctl(struct file *file, unsigned int cmd,
+ unsigned long arg)
+{
+ return -EBADF;
+}
+
+static int revoked_file_mmap(struct file *file, struct vm_area_struct *vma)
+{
+ return -EBADF;
+}
+
+static int revoked_file_open(struct inode *inode, struct file *filp)
+{
+ return -EBADF;
+}
+
+static int revoked_file_flush(struct file *file, fl_owner_t id)
+{
+ return filp_close(file, id);
+}
+
+static int revoked_file_release(struct inode *inode, struct file *filp)
+{
+ return -EBADF;
+}
+
+static int revoked_file_fsync(struct file *file, struct dentry *dentry,
+ int datasync)
+{
+ return -EBADF;
+}
+
+static int revoked_file_aio_fsync(struct kiocb *iocb, int datasync)
+{
+ return -EBADF;
+}
+
+static int revoked_file_fasync(int fd, struct file *filp, int on)
+{
+ return -EBADF;
+}
+
+static int revoked_file_lock(struct file *file, int cmd, struct file_lock *fl)
+{
+ return -EBADF;
+}
+
+static ssize_t revoked_file_sendfile(struct file *in_file, loff_t * ppos,
+ size_t count, read_actor_t actor,
+ void *target)
+{
+ return -EBADF;
+}
+
+static ssize_t revoked_file_sendpage(struct file *file, struct page *page,
+ int off, size_t len, loff_t * pos,
+ int more)
+{
+ return -EBADF;
+}
+
+static unsigned long revoked_file_get_unmapped_area(struct file *file,
+ unsigned long addr,
+ unsigned long len,
+ unsigned long pgoff,
+ unsigned long flags)
+{
+ return -EBADF;
+}
+
+static int revoked_file_check_flags(int flags)
+{
+ return -EBADF;
+}
+
+static int revoked_file_dir_notify(struct file *file, unsigned long arg)
+{
+ return -EBADF;
+}
+
+static int revoked_file_flock(struct file *filp, int cmd, struct file_lock *fl)
+{
+ return -EBADF;
+}
+
+static ssize_t revoked_file_splice_write(struct pipe_inode_info *pipe,
+ struct file *out, loff_t * ppos,
+ size_t len, unsigned int flags)
+{
+ return -EBADF;
+}
+
+static ssize_t revoked_file_splice_read(struct file *in, loff_t * ppos,
+ struct pipe_inode_info *pipe,
+ size_t len, unsigned int flags)
+{
+ return -EBADF;
+}
+
+static const struct file_operations revoked_file_ops = {
+ .llseek = revoked_file_llseek,
+ .read = revoked_file_read,
+ .write = revoked_file_write,
+ .aio_read = revoked_file_aio_read,
+ .aio_write = revoked_file_aio_write,
+ .readdir = revoked_file_readdir,
+ .poll = revoked_file_poll,
+ .ioctl = revoked_file_ioctl,
+ .unlocked_ioctl = revoked_file_unlocked_ioctl,
+ .compat_ioctl = revoked_file_compat_ioctl,
+ .mmap = revoked_file_mmap,
+ .open = revoked_file_open,
+ .flush = revoked_file_flush,
+ .release = revoked_file_release,
+ .fsync = revoked_file_fsync,
+ .aio_fsync = revoked_file_aio_fsync,
+ .fasync = revoked_file_fasync,
+ .lock = revoked_file_lock,
+ .sendfile = revoked_file_sendfile,
+ .sendpage = revoked_file_sendpage,
+ .get_unmapped_area = revoked_file_get_unmapped_area,
+ .check_flags = revoked_file_check_flags,
+ .dir_notify = revoked_file_dir_notify,
+ .flock = revoked_file_flock,
+ .splice_write = revoked_file_splice_write,
+ .splice_read = revoked_file_splice_read,
+};
+
+static const struct file_operations revoked_special_file_ops = {
+ .llseek = revoked_file_llseek,
+ .read = revoked_special_file_read,
+ .write = revoked_file_write,
+ .aio_read = revoked_file_aio_read,
+ .aio_write = revoked_file_aio_write,
+ .readdir = revoked_file_readdir,
+ .poll = revoked_file_poll,
+ .ioctl = revoked_file_ioctl,
+ .unlocked_ioctl = revoked_file_unlocked_ioctl,
+ .compat_ioctl = revoked_file_compat_ioctl,
+ .mmap = revoked_file_mmap,
+ .open = revoked_file_open,
+ .flush = revoked_file_flush,
+ .release = revoked_file_release,
+ .fsync = revoked_file_fsync,
+ .aio_fsync = revoked_file_aio_fsync,
+ .fasync = revoked_file_fasync,
+ .lock = revoked_file_lock,
+ .sendfile = revoked_file_sendfile,
+ .sendpage = revoked_file_sendpage,
+ .get_unmapped_area = revoked_file_get_unmapped_area,
+ .check_flags = revoked_file_check_flags,
+ .dir_notify = revoked_file_dir_notify,
+ .flock = revoked_file_flock,
+ .splice_write = revoked_file_splice_write,
+ .splice_read = revoked_file_splice_read,
+};
+
+static int revoked_inode_create(struct inode *dir, struct dentry *dentry,
+ int mode, struct nameidata *nd)
+{
+ return -EBADF;
+}
+
+static struct dentry *revoked_inode_lookup(struct inode *dir,
+ struct dentry *dentry,
+ struct nameidata *nd)
+{
+ return ERR_PTR(-EBADF);
+}
+
+static int revoked_inode_link(struct dentry *old_dentry, struct inode *dir,
+ struct dentry *dentry)
+{
+ return -EBADF;
+}
+
+static int revoked_inode_unlink(struct inode *dir, struct dentry *dentry)
+{
+ return -EBADF;
+}
+
+static int revoked_inode_symlink(struct inode *dir, struct dentry *dentry,
+ const char *symname)
+{
+ return -EBADF;
+}
+
+static int revoked_inode_mkdir(struct inode *dir, struct dentry *dentry,
+ int mode)
+{
+ return -EBADF;
+}
+
+static int revoked_inode_rmdir(struct inode *dir, struct dentry *dentry)
+{
+ return -EBADF;
+}
+
+static int revoked_inode_mknod(struct inode *dir, struct dentry *dentry,
+ int mode, dev_t rdev)
+{
+ return -EBADF;
+}
+
+static int revoked_inode_rename(struct inode *old_dir,
+ struct dentry *old_dentry,
+ struct inode *new_dir,
+ struct dentry *new_dentry)
+{
+ return -EBADF;
+}
+
+static int revoked_inode_readlink(struct dentry *dentry, char __user * buffer,
+ int buflen)
+{
+ return -EBADF;
+}
+
+static int revoked_inode_permission(struct inode *inode, int mask,
+ struct nameidata *nd)
+{
+ return -EBADF;
+}
+
+static int revoked_inode_getattr(struct vfsmount *mnt, struct dentry *dentry,
+ struct kstat *stat)
+{
+ return -EBADF;
+}
+
+static int revoked_inode_setattr(struct dentry *direntry, struct iattr *attrs)
+{
+ return -EBADF;
+}
+
+static int revoked_inode_setxattr(struct dentry *dentry, const char *name,
+ const void *value, size_t size, int flags)
+{
+ return -EBADF;
+}
+
+static ssize_t revoked_inode_getxattr(struct dentry *dentry, const char *name,
+ void *buffer, size_t size)
+{
+ return -EBADF;
+}
+
+static ssize_t revoked_inode_listxattr(struct dentry *dentry, char *buffer,
+ size_t buffer_size)
+{
+ return -EBADF;
+}
+
+static int revoked_inode_removexattr(struct dentry *dentry, const char *name)
+{
+ return -EBADF;
+}
+
+static struct inode_operations revoked_inode_ops = {
+ .create = revoked_inode_create,
+ .lookup = revoked_inode_lookup,
+ .link = revoked_inode_link,
+ .unlink = revoked_inode_unlink,
+ .symlink = revoked_inode_symlink,
+ .mkdir = revoked_inode_mkdir,
+ .rmdir = revoked_inode_rmdir,
+ .mknod = revoked_inode_mknod,
+ .rename = revoked_inode_rename,
+ .readlink = revoked_inode_readlink,
+ /* follow_link must be no-op, otherwise unmounting this inode
+ won't work */
+ /* put_link returns void */
+ /* truncate returns void */
+ .permission = revoked_inode_permission,
+ .getattr = revoked_inode_getattr,
+ .setattr = revoked_inode_setattr,
+ .setxattr = revoked_inode_setxattr,
+ .getxattr = revoked_inode_getxattr,
+ .listxattr = revoked_inode_listxattr,
+ .removexattr = revoked_inode_removexattr,
+ /* truncate_range returns void */
+};
+
+void make_revoked_inode(struct inode *inode, int mode)
+{
+ remove_inode_hash(inode);
+
+ inode->i_mode = mode;
+ inode->i_atime = inode->i_mtime = inode->i_ctime =
+ current_fs_time(inode->i_sb);
+ inode->i_op = &revoked_inode_ops;
+
+ if (special_file(mode))
+ inode->i_fop = &revoked_special_file_ops;
+ else
+ inode->i_fop = &revoked_file_ops;
+}
Index: uml-2.6/include/linux/revoked_fs_i.h
===================================================================
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
+++ uml-2.6/include/linux/revoked_fs_i.h 2007-03-11 13:09:20.000000000 +0200
@@ -0,0 +1,20 @@
+#ifndef _LINUX_REVOKED_FS_I_H
+#define _LINUX_REVOKED_FS_I_H
+
+#define REVOKEFS_MAGIC 0x5245564B /* REVK */
+
+struct revokefs_inode_info {
+ struct task_struct *owner;
+ struct file *file;
+ unsigned int fd;
+ struct inode vfs_inode;
+};
+
+static inline struct revokefs_inode_info *revokefs_i(struct inode *inode)
+{
+ return container_of(inode, struct revokefs_inode_info, vfs_inode);
+}
+
+void make_revoked_inode(struct inode *, int);
+
+#endif
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/