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