file.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. /*
  2. * file.c
  3. *
  4. * PURPOSE
  5. * File handling routines for the OSTA-UDF(tm) filesystem.
  6. *
  7. * COPYRIGHT
  8. * This file is distributed under the terms of the GNU General Public
  9. * License (GPL). Copies of the GPL can be obtained from:
  10. * ftp://prep.ai.mit.edu/pub/gnu/GPL
  11. * Each contributing author retains all rights to their own work.
  12. *
  13. * (C) 1998-1999 Dave Boynton
  14. * (C) 1998-2004 Ben Fennema
  15. * (C) 1999-2000 Stelias Computing Inc
  16. *
  17. * HISTORY
  18. *
  19. * 10/02/98 dgb Attempt to integrate into udf.o
  20. * 10/07/98 Switched to using generic_readpage, etc., like isofs
  21. * And it works!
  22. * 12/06/98 blf Added udf_file_read. uses generic_file_read for all cases but
  23. * ICBTAG_FLAG_AD_IN_ICB.
  24. * 04/06/99 64 bit file handling on 32 bit systems taken from ext2 file.c
  25. * 05/12/99 Preliminary file write support
  26. */
  27. #include "udfdecl.h"
  28. #include <linux/fs.h>
  29. #include <linux/udf_fs.h>
  30. #include <asm/uaccess.h>
  31. #include <linux/kernel.h>
  32. #include <linux/string.h> /* memset */
  33. #include <linux/capability.h>
  34. #include <linux/errno.h>
  35. #include <linux/smp_lock.h>
  36. #include <linux/pagemap.h>
  37. #include <linux/buffer_head.h>
  38. #include <linux/aio.h>
  39. #include "udf_i.h"
  40. #include "udf_sb.h"
  41. static int udf_adinicb_readpage(struct file *file, struct page *page)
  42. {
  43. struct inode *inode = page->mapping->host;
  44. char *kaddr;
  45. BUG_ON(!PageLocked(page));
  46. kaddr = kmap(page);
  47. memset(kaddr, 0, PAGE_CACHE_SIZE);
  48. memcpy(kaddr, UDF_I(inode)->i_ext.i_data + UDF_I(inode)->i_lenEAttr,
  49. inode->i_size);
  50. flush_dcache_page(page);
  51. SetPageUptodate(page);
  52. kunmap(page);
  53. unlock_page(page);
  54. return 0;
  55. }
  56. static int udf_adinicb_writepage(struct page *page,
  57. struct writeback_control *wbc)
  58. {
  59. struct inode *inode = page->mapping->host;
  60. char *kaddr;
  61. BUG_ON(!PageLocked(page));
  62. kaddr = kmap(page);
  63. memcpy(UDF_I(inode)->i_ext.i_data + UDF_I(inode)->i_lenEAttr, kaddr,
  64. inode->i_size);
  65. mark_inode_dirty(inode);
  66. SetPageUptodate(page);
  67. kunmap(page);
  68. unlock_page(page);
  69. return 0;
  70. }
  71. static int udf_adinicb_write_end(struct file *file,
  72. struct address_space *mapping,
  73. loff_t pos, unsigned len, unsigned copied,
  74. struct page *page, void *fsdata)
  75. {
  76. struct inode *inode = mapping->host;
  77. unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
  78. char *kaddr;
  79. kaddr = kmap_atomic(page, KM_USER0);
  80. memcpy(UDF_I(inode)->i_ext.i_data + UDF_I(inode)->i_lenEAttr + offset,
  81. kaddr + offset, copied);
  82. kunmap_atomic(kaddr, KM_USER0);
  83. return simple_write_end(file, mapping, pos, len, copied, page, fsdata);
  84. }
  85. const struct address_space_operations udf_adinicb_aops = {
  86. .readpage = udf_adinicb_readpage,
  87. .writepage = udf_adinicb_writepage,
  88. .sync_page = block_sync_page,
  89. .write_begin = simple_write_begin,
  90. .write_end = udf_adinicb_write_end,
  91. };
  92. static ssize_t udf_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
  93. unsigned long nr_segs, loff_t ppos)
  94. {
  95. ssize_t retval;
  96. struct file *file = iocb->ki_filp;
  97. struct inode *inode = file->f_path.dentry->d_inode;
  98. int err, pos;
  99. size_t count = iocb->ki_left;
  100. if (UDF_I(inode)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
  101. if (file->f_flags & O_APPEND)
  102. pos = inode->i_size;
  103. else
  104. pos = ppos;
  105. if (inode->i_sb->s_blocksize <
  106. (udf_file_entry_alloc_offset(inode) +
  107. pos + count)) {
  108. udf_expand_file_adinicb(inode, pos + count, &err);
  109. if (UDF_I(inode)->i_alloc_type ==
  110. ICBTAG_FLAG_AD_IN_ICB) {
  111. udf_debug("udf_expand_adinicb: err=%d\n", err);
  112. return err;
  113. }
  114. } else {
  115. if (pos + count > inode->i_size)
  116. UDF_I(inode)->i_lenAlloc = pos + count;
  117. else
  118. UDF_I(inode)->i_lenAlloc = inode->i_size;
  119. }
  120. }
  121. retval = generic_file_aio_write(iocb, iov, nr_segs, ppos);
  122. if (retval > 0)
  123. mark_inode_dirty(inode);
  124. return retval;
  125. }
  126. /*
  127. * udf_ioctl
  128. *
  129. * PURPOSE
  130. * Issue an ioctl.
  131. *
  132. * DESCRIPTION
  133. * Optional - sys_ioctl() will return -ENOTTY if this routine is not
  134. * available, and the ioctl cannot be handled without filesystem help.
  135. *
  136. * sys_ioctl() handles these ioctls that apply only to regular files:
  137. * FIBMAP [requires udf_block_map()], FIGETBSZ, FIONREAD
  138. * These ioctls are also handled by sys_ioctl():
  139. * FIOCLEX, FIONCLEX, FIONBIO, FIOASYNC
  140. * All other ioctls are passed to the filesystem.
  141. *
  142. * Refer to sys_ioctl() in fs/ioctl.c
  143. * sys_ioctl() -> .
  144. *
  145. * PRE-CONDITIONS
  146. * inode Pointer to inode that ioctl was issued on.
  147. * filp Pointer to file that ioctl was issued on.
  148. * cmd The ioctl command.
  149. * arg The ioctl argument [can be interpreted as a
  150. * user-space pointer if desired].
  151. *
  152. * POST-CONDITIONS
  153. * <return> Success (>=0) or an error code (<=0) that
  154. * sys_ioctl() will return.
  155. *
  156. * HISTORY
  157. * July 1, 1997 - Andrew E. Mileski
  158. * Written, tested, and released.
  159. */
  160. int udf_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
  161. unsigned long arg)
  162. {
  163. long old_block, new_block;
  164. int result = -EINVAL;
  165. if (file_permission(filp, MAY_READ) != 0) {
  166. udf_debug("no permission to access inode %lu\n",
  167. inode->i_ino);
  168. return -EPERM;
  169. }
  170. if (!arg) {
  171. udf_debug("invalid argument to udf_ioctl\n");
  172. return -EINVAL;
  173. }
  174. switch (cmd) {
  175. case UDF_GETVOLIDENT:
  176. if (copy_to_user((char __user *)arg,
  177. UDF_SB(inode->i_sb)->s_volume_ident, 32))
  178. return -EFAULT;
  179. else
  180. return 0;
  181. case UDF_RELOCATE_BLOCKS:
  182. if (!capable(CAP_SYS_ADMIN))
  183. return -EACCES;
  184. if (get_user(old_block, (long __user *)arg))
  185. return -EFAULT;
  186. result = udf_relocate_blocks(inode->i_sb,
  187. old_block, &new_block);
  188. if (result == 0)
  189. result = put_user(new_block, (long __user *)arg);
  190. return result;
  191. case UDF_GETEASIZE:
  192. result = put_user(UDF_I(inode)->i_lenEAttr, (int __user *)arg);
  193. break;
  194. case UDF_GETEABLOCK:
  195. result = copy_to_user((char __user *)arg,
  196. UDF_I(inode)->i_ext.i_data,
  197. UDF_I(inode)->i_lenEAttr) ? -EFAULT : 0;
  198. break;
  199. }
  200. return result;
  201. }
  202. /*
  203. * udf_release_file
  204. *
  205. * PURPOSE
  206. * Called when all references to the file are closed
  207. *
  208. * DESCRIPTION
  209. * Discard prealloced blocks
  210. *
  211. * HISTORY
  212. *
  213. */
  214. static int udf_release_file(struct inode *inode, struct file *filp)
  215. {
  216. if (filp->f_mode & FMODE_WRITE) {
  217. lock_kernel();
  218. udf_discard_prealloc(inode);
  219. unlock_kernel();
  220. }
  221. return 0;
  222. }
  223. const struct file_operations udf_file_operations = {
  224. .read = do_sync_read,
  225. .aio_read = generic_file_aio_read,
  226. .ioctl = udf_ioctl,
  227. .open = generic_file_open,
  228. .mmap = generic_file_mmap,
  229. .write = do_sync_write,
  230. .aio_write = udf_file_aio_write,
  231. .release = udf_release_file,
  232. .fsync = udf_fsync_file,
  233. .splice_read = generic_file_splice_read,
  234. };
  235. const struct inode_operations udf_file_inode_operations = {
  236. .truncate = udf_truncate,
  237. };