bad_inode.c 7.9 KB

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