This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / fs / bad_inode.c
1 /*
2  *  linux/fs/bad_inode.c
3  *
4  *  Copyright (C) 1997, Stephen Tweedie
5  *
6  *  Provide stub functions for unreadable inodes
7  *
8  *  Fabian Frederick : August 2003 - All file operations assigned to EIO
9  */
10
11 #include <linux/fs.h>
12 #include <linux/module.h>
13 #include <linux/stat.h>
14 #include <linux/time.h>
15 #include <linux/smp_lock.h>
16
17 /*
18  * The follow_link operation is special: it must behave as a no-op
19  * so that a bad root inode can at least be unmounted. To do this
20  * we must dput() the base and return the dentry with a dget().
21  */
22 static int bad_follow_link(struct dentry *dent, struct nameidata *nd)
23 {
24         nd_set_link(nd, ERR_PTR(-EIO));
25         return 0;
26 }
27
28 static int return_EIO(void)
29 {
30         return -EIO;
31 }
32
33 #define EIO_ERROR ((void *) (return_EIO))
34
35 static struct file_operations bad_file_ops =
36 {
37         .llseek         = EIO_ERROR,
38         .aio_read       = EIO_ERROR,
39         .read           = EIO_ERROR,
40         .write          = EIO_ERROR,
41         .aio_write      = EIO_ERROR,
42         .readdir        = EIO_ERROR,
43         .poll           = EIO_ERROR,
44         .ioctl          = EIO_ERROR,
45         .mmap           = EIO_ERROR,
46         .open           = EIO_ERROR,
47         .flush          = EIO_ERROR,
48         .release        = EIO_ERROR,
49         .fsync          = EIO_ERROR,
50         .aio_fsync      = EIO_ERROR,
51         .fasync         = EIO_ERROR,
52         .lock           = EIO_ERROR,
53         .readv          = EIO_ERROR,
54         .writev         = EIO_ERROR,
55         .sendfile       = EIO_ERROR,
56         .sendpage       = EIO_ERROR,
57         .get_unmapped_area = EIO_ERROR,
58 };
59
60 struct inode_operations bad_inode_ops =
61 {
62         .create         = EIO_ERROR,
63         .lookup         = EIO_ERROR,
64         .link           = EIO_ERROR,
65         .unlink         = EIO_ERROR,
66         .symlink        = EIO_ERROR,
67         .mkdir          = EIO_ERROR,
68         .rmdir          = EIO_ERROR,
69         .mknod          = EIO_ERROR,
70         .rename         = EIO_ERROR,
71         .readlink       = EIO_ERROR,
72         .follow_link    = bad_follow_link,
73         .truncate       = EIO_ERROR,
74         .permission     = EIO_ERROR,
75         .getattr        = EIO_ERROR,
76         .setattr        = EIO_ERROR,
77         .setxattr       = EIO_ERROR,
78         .getxattr       = EIO_ERROR,
79         .listxattr      = EIO_ERROR,
80         .removexattr    = EIO_ERROR,
81 };
82
83
84 /*
85  * When a filesystem is unable to read an inode due to an I/O error in
86  * its read_inode() function, it can call make_bad_inode() to return a
87  * set of stubs which will return EIO errors as required. 
88  *
89  * We only need to do limited initialisation: all other fields are
90  * preinitialised to zero automatically.
91  */
92  
93 /**
94  *      make_bad_inode - mark an inode bad due to an I/O error
95  *      @inode: Inode to mark bad
96  *
97  *      When an inode cannot be read due to a media or remote network
98  *      failure this function makes the inode "bad" and causes I/O operations
99  *      on it to fail from this point on.
100  */
101  
102 void make_bad_inode(struct inode * inode) 
103 {
104         remove_inode_hash(inode);
105
106         inode->i_mode = S_IFREG;
107         inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
108         inode->i_op = &bad_inode_ops;   
109         inode->i_fop = &bad_file_ops;   
110 }
111 EXPORT_SYMBOL(make_bad_inode);
112
113 /*
114  * This tests whether an inode has been flagged as bad. The test uses
115  * &bad_inode_ops to cover the case of invalidated inodes as well as
116  * those created by make_bad_inode() above.
117  */
118  
119 /**
120  *      is_bad_inode - is an inode errored
121  *      @inode: inode to test
122  *
123  *      Returns true if the inode in question has been marked as bad.
124  */
125  
126 int is_bad_inode(struct inode * inode) 
127 {
128         return (inode->i_op == &bad_inode_ops); 
129 }
130
131 EXPORT_SYMBOL(is_bad_inode);