bad_inode.c 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  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. #include <linux/fs.h>
  11. #include <linux/module.h>
  12. #include <linux/stat.h>
  13. #include <linux/time.h>
  14. #include <linux/namei.h>
  15. #include <linux/poll.h>
  16. static loff_t bad_file_llseek(struct file *file, loff_t offset, int origin)
  17. {
  18. return -EIO;
  19. }
  20. static ssize_t bad_file_read(struct file *filp, char __user *buf,
  21. size_t size, loff_t *ppos)
  22. {
  23. return -EIO;
  24. }
  25. static ssize_t bad_file_write(struct file *filp, const char __user *buf,
  26. size_t siz, loff_t *ppos)
  27. {
  28. return -EIO;
  29. }
  30. static ssize_t bad_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
  31. unsigned long nr_segs, loff_t pos)
  32. {
  33. return -EIO;
  34. }
  35. static ssize_t bad_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
  36. unsigned long nr_segs, loff_t pos)
  37. {
  38. return -EIO;
  39. }
  40. static int bad_file_readdir(struct file *filp, void *dirent, filldir_t filldir)
  41. {
  42. return -EIO;
  43. }
  44. static unsigned int bad_file_poll(struct file *filp, poll_table *wait)
  45. {
  46. return POLLERR;
  47. }
  48. static int bad_file_ioctl (struct inode *inode, struct file *filp,
  49. unsigned int cmd, unsigned long arg)
  50. {
  51. return -EIO;
  52. }
  53. static long bad_file_unlocked_ioctl(struct file *file, unsigned cmd,
  54. unsigned long arg)
  55. {
  56. return -EIO;
  57. }
  58. static long bad_file_compat_ioctl(struct file *file, unsigned int cmd,
  59. unsigned long arg)
  60. {
  61. return -EIO;
  62. }
  63. static int bad_file_mmap(struct file *file, struct vm_area_struct *vma)
  64. {
  65. return -EIO;
  66. }
  67. static int bad_file_open(struct inode *inode, struct file *filp)
  68. {
  69. return -EIO;
  70. }
  71. static int bad_file_flush(struct file *file, fl_owner_t id)
  72. {
  73. return -EIO;
  74. }
  75. static int bad_file_release(struct inode *inode, struct file *filp)
  76. {
  77. return -EIO;
  78. }
  79. static int bad_file_fsync(struct file *file, struct dentry *dentry,
  80. int datasync)
  81. {
  82. return -EIO;
  83. }
  84. static int bad_file_aio_fsync(struct kiocb *iocb, int datasync)
  85. {
  86. return -EIO;
  87. }
  88. static int bad_file_fasync(int fd, struct file *filp, int on)
  89. {
  90. return -EIO;
  91. }
  92. static int bad_file_lock(struct file *file, int cmd, struct file_lock *fl)
  93. {
  94. return -EIO;
  95. }
  96. static ssize_t bad_file_sendfile(struct file *in_file, loff_t *ppos,
  97. size_t count, read_actor_t actor, void *target)
  98. {
  99. return -EIO;
  100. }
  101. static ssize_t bad_file_sendpage(struct file *file, struct page *page,
  102. int off, size_t len, loff_t *pos, int more)
  103. {
  104. return -EIO;
  105. }
  106. static unsigned long bad_file_get_unmapped_area(struct file *file,
  107. unsigned long addr, unsigned long len,
  108. unsigned long pgoff, unsigned long flags)
  109. {
  110. return -EIO;
  111. }
  112. static int bad_file_check_flags(int flags)
  113. {
  114. return -EIO;
  115. }
  116. static int bad_file_dir_notify(struct file *file, unsigned long arg)
  117. {
  118. return -EIO;
  119. }
  120. static int bad_file_flock(struct file *filp, int cmd, struct file_lock *fl)
  121. {
  122. return -EIO;
  123. }
  124. static ssize_t bad_file_splice_write(struct pipe_inode_info *pipe,
  125. struct file *out, loff_t *ppos, size_t len,
  126. unsigned int flags)
  127. {
  128. return -EIO;
  129. }
  130. static ssize_t bad_file_splice_read(struct file *in, loff_t *ppos,
  131. struct pipe_inode_info *pipe, size_t len,
  132. unsigned int flags)
  133. {
  134. return -EIO;
  135. }
  136. static const struct file_operations bad_file_ops =
  137. {
  138. .llseek = bad_file_llseek,
  139. .read = bad_file_read,
  140. .write = bad_file_write,
  141. .aio_read = bad_file_aio_read,
  142. .aio_write = bad_file_aio_write,
  143. .readdir = bad_file_readdir,
  144. .poll = bad_file_poll,
  145. .ioctl = bad_file_ioctl,
  146. .unlocked_ioctl = bad_file_unlocked_ioctl,
  147. .compat_ioctl = bad_file_compat_ioctl,
  148. .mmap = bad_file_mmap,
  149. .open = bad_file_open,
  150. .flush = bad_file_flush,
  151. .release = bad_file_release,
  152. .fsync = bad_file_fsync,
  153. .aio_fsync = bad_file_aio_fsync,
  154. .fasync = bad_file_fasync,
  155. .lock = bad_file_lock,
  156. .sendfile = bad_file_sendfile,
  157. .sendpage = bad_file_sendpage,
  158. .get_unmapped_area = bad_file_get_unmapped_area,
  159. .check_flags = bad_file_check_flags,
  160. .dir_notify = bad_file_dir_notify,
  161. .flock = bad_file_flock,
  162. .splice_write = bad_file_splice_write,
  163. .splice_read = bad_file_splice_read,
  164. };
  165. static int bad_inode_create (struct inode *dir, struct dentry *dentry,
  166. int mode, struct nameidata *nd)
  167. {
  168. return -EIO;
  169. }
  170. static struct dentry *bad_inode_lookup(struct inode *dir,
  171. struct dentry *dentry, struct nameidata *nd)
  172. {
  173. return ERR_PTR(-EIO);
  174. }
  175. static int bad_inode_link (struct dentry *old_dentry, struct inode *dir,
  176. struct dentry *dentry)
  177. {
  178. return -EIO;
  179. }
  180. static int bad_inode_unlink(struct inode *dir, struct dentry *dentry)
  181. {
  182. return -EIO;
  183. }
  184. static int bad_inode_symlink (struct inode *dir, struct dentry *dentry,
  185. const char *symname)
  186. {
  187. return -EIO;
  188. }
  189. static int bad_inode_mkdir(struct inode *dir, struct dentry *dentry,
  190. int mode)
  191. {
  192. return -EIO;
  193. }
  194. static int bad_inode_rmdir (struct inode *dir, struct dentry *dentry)
  195. {
  196. return -EIO;
  197. }
  198. static int bad_inode_mknod (struct inode *dir, struct dentry *dentry,
  199. int mode, dev_t rdev)
  200. {
  201. return -EIO;
  202. }
  203. static int bad_inode_rename (struct inode *old_dir, struct dentry *old_dentry,
  204. struct inode *new_dir, struct dentry *new_dentry)
  205. {
  206. return -EIO;
  207. }
  208. static int bad_inode_readlink(struct dentry *dentry, char __user *buffer,
  209. int buflen)
  210. {
  211. return -EIO;
  212. }
  213. static int bad_inode_permission(struct inode *inode, int mask,
  214. struct nameidata *nd)
  215. {
  216. return -EIO;
  217. }
  218. static int bad_inode_getattr(struct vfsmount *mnt, struct dentry *dentry,
  219. struct kstat *stat)
  220. {
  221. return -EIO;
  222. }
  223. static int bad_inode_setattr(struct dentry *direntry, struct iattr *attrs)
  224. {
  225. return -EIO;
  226. }
  227. static int bad_inode_setxattr(struct dentry *dentry, const char *name,
  228. const void *value, size_t size, int flags)
  229. {
  230. return -EIO;
  231. }
  232. static ssize_t bad_inode_getxattr(struct dentry *dentry, const char *name,
  233. void *buffer, size_t size)
  234. {
  235. return -EIO;
  236. }
  237. static ssize_t bad_inode_listxattr(struct dentry *dentry, char *buffer,
  238. size_t buffer_size)
  239. {
  240. return -EIO;
  241. }
  242. static int bad_inode_removexattr(struct dentry *dentry, const char *name)
  243. {
  244. return -EIO;
  245. }
  246. static const struct inode_operations bad_inode_ops =
  247. {
  248. .create = bad_inode_create,
  249. .lookup = bad_inode_lookup,
  250. .link = bad_inode_link,
  251. .unlink = bad_inode_unlink,
  252. .symlink = bad_inode_symlink,
  253. .mkdir = bad_inode_mkdir,
  254. .rmdir = bad_inode_rmdir,
  255. .mknod = bad_inode_mknod,
  256. .rename = bad_inode_rename,
  257. .readlink = bad_inode_readlink,
  258. /* follow_link must be no-op, otherwise unmounting this inode
  259. won't work */
  260. /* put_link returns void */
  261. /* truncate returns void */
  262. .permission = bad_inode_permission,
  263. .getattr = bad_inode_getattr,
  264. .setattr = bad_inode_setattr,
  265. .setxattr = bad_inode_setxattr,
  266. .getxattr = bad_inode_getxattr,
  267. .listxattr = bad_inode_listxattr,
  268. .removexattr = bad_inode_removexattr,
  269. /* truncate_range returns void */
  270. };
  271. /*
  272. * When a filesystem is unable to read an inode due to an I/O error in
  273. * its read_inode() function, it can call make_bad_inode() to return a
  274. * set of stubs which will return EIO errors as required.
  275. *
  276. * We only need to do limited initialisation: all other fields are
  277. * preinitialised to zero automatically.
  278. */
  279. /**
  280. * make_bad_inode - mark an inode bad due to an I/O error
  281. * @inode: Inode to mark bad
  282. *
  283. * When an inode cannot be read due to a media or remote network
  284. * failure this function makes the inode "bad" and causes I/O operations
  285. * on it to fail from this point on.
  286. */
  287. void make_bad_inode(struct inode *inode)
  288. {
  289. remove_inode_hash(inode);
  290. inode->i_mode = S_IFREG;
  291. inode->i_atime = inode->i_mtime = inode->i_ctime =
  292. current_fs_time(inode->i_sb);
  293. inode->i_op = &bad_inode_ops;
  294. inode->i_fop = &bad_file_ops;
  295. }
  296. EXPORT_SYMBOL(make_bad_inode);
  297. /*
  298. * This tests whether an inode has been flagged as bad. The test uses
  299. * &bad_inode_ops to cover the case of invalidated inodes as well as
  300. * those created by make_bad_inode() above.
  301. */
  302. /**
  303. * is_bad_inode - is an inode errored
  304. * @inode: inode to test
  305. *
  306. * Returns true if the inode in question has been marked as bad.
  307. */
  308. int is_bad_inode(struct inode *inode)
  309. {
  310. return (inode->i_op == &bad_inode_ops);
  311. }
  312. EXPORT_SYMBOL(is_bad_inode);