bad_inode.c 7.8 KB

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