Blame view

fs/udf/file.c 6.47 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
  /*
   * file.c
   *
   * PURPOSE
   *  File handling routines for the OSTA-UDF(tm) filesystem.
   *
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
   * COPYRIGHT
   *  This file is distributed under the terms of the GNU General Public
   *  License (GPL). Copies of the GPL can be obtained from:
   *    ftp://prep.ai.mit.edu/pub/gnu/GPL
   *  Each contributing author retains all rights to their own work.
   *
   *  (C) 1998-1999 Dave Boynton
   *  (C) 1998-2004 Ben Fennema
   *  (C) 1999-2000 Stelias Computing Inc
   *
   * HISTORY
   *
   *  10/02/98 dgb  Attempt to integrate into udf.o
   *  10/07/98      Switched to using generic_readpage, etc., like isofs
   *                And it works!
   *  12/06/98 blf  Added udf_file_read. uses generic_file_read for all cases but
   *                ICBTAG_FLAG_AD_IN_ICB.
   *  04/06/99      64 bit file handling on 32 bit systems taken from ext2 file.c
   *  05/12/99      Preliminary file write support
   */
  
  #include "udfdecl.h"
  #include <linux/fs.h>
  #include <linux/udf_fs.h>
  #include <asm/uaccess.h>
  #include <linux/kernel.h>
cb00ea352   Cyrill Gorcunov   UDF: coding style...
33
  #include <linux/string.h>	/* memset */
16f7e0fe2   Randy Dunlap   [PATCH] capable/c...
34
  #include <linux/capability.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
35
36
37
38
  #include <linux/errno.h>
  #include <linux/smp_lock.h>
  #include <linux/pagemap.h>
  #include <linux/buffer_head.h>
e8edc6e03   Alexey Dobriyan   Detach sched.h fr...
39
  #include <linux/aio.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40
41
42
  
  #include "udf_i.h"
  #include "udf_sb.h"
cb00ea352   Cyrill Gorcunov   UDF: coding style...
43
  static int udf_adinicb_readpage(struct file *file, struct page *page)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
44
45
46
  {
  	struct inode *inode = page->mapping->host;
  	char *kaddr;
cd7619d6b   Matt Mackall   [PATCH] Extermina...
47
  	BUG_ON(!PageLocked(page));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
48
49
50
51
52
53
54
55
56
57
  
  	kaddr = kmap(page);
  	memset(kaddr, 0, PAGE_CACHE_SIZE);
  	memcpy(kaddr, UDF_I_DATA(inode) + UDF_I_LENEATTR(inode), inode->i_size);
  	flush_dcache_page(page);
  	SetPageUptodate(page);
  	kunmap(page);
  	unlock_page(page);
  	return 0;
  }
cb00ea352   Cyrill Gorcunov   UDF: coding style...
58
59
  static int udf_adinicb_writepage(struct page *page,
  				 struct writeback_control *wbc)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
60
61
62
  {
  	struct inode *inode = page->mapping->host;
  	char *kaddr;
cd7619d6b   Matt Mackall   [PATCH] Extermina...
63
  	BUG_ON(!PageLocked(page));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64
65
66
67
68
69
70
71
72
  
  	kaddr = kmap(page);
  	memcpy(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode), kaddr, inode->i_size);
  	mark_inode_dirty(inode);
  	SetPageUptodate(page);
  	kunmap(page);
  	unlock_page(page);
  	return 0;
  }
cb00ea352   Cyrill Gorcunov   UDF: coding style...
73
74
  static int udf_adinicb_prepare_write(struct file *file, struct page *page,
  				     unsigned offset, unsigned to)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
75
76
77
78
  {
  	kmap(page);
  	return 0;
  }
cb00ea352   Cyrill Gorcunov   UDF: coding style...
79
80
  static int udf_adinicb_commit_write(struct file *file, struct page *page,
  				    unsigned offset, unsigned to)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
81
82
83
84
85
  {
  	struct inode *inode = page->mapping->host;
  	char *kaddr = page_address(page);
  
  	memcpy(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode) + offset,
cb00ea352   Cyrill Gorcunov   UDF: coding style...
86
  	       kaddr + offset, to - offset);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
87
88
89
90
91
92
93
94
  	mark_inode_dirty(inode);
  	SetPageUptodate(page);
  	kunmap(page);
  	/* only one page here */
  	if (to > inode->i_size)
  		inode->i_size = to;
  	return 0;
  }
f5e54d6e5   Christoph Hellwig   [PATCH] mark addr...
95
  const struct address_space_operations udf_adinicb_aops = {
cb00ea352   Cyrill Gorcunov   UDF: coding style...
96
97
98
99
100
  	.readpage = udf_adinicb_readpage,
  	.writepage = udf_adinicb_writepage,
  	.sync_page = block_sync_page,
  	.prepare_write = udf_adinicb_prepare_write,
  	.commit_write = udf_adinicb_commit_write,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
101
  };
543ade1fc   Badari Pulavarty   [PATCH] Streamlin...
102
  static ssize_t udf_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
cb00ea352   Cyrill Gorcunov   UDF: coding style...
103
  				  unsigned long nr_segs, loff_t ppos)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
104
105
  {
  	ssize_t retval;
543ade1fc   Badari Pulavarty   [PATCH] Streamlin...
106
  	struct file *file = iocb->ki_filp;
5096e933a   Josef Sipek   [PATCH] struct pa...
107
  	struct inode *inode = file->f_path.dentry->d_inode;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
108
  	int err, pos;
543ade1fc   Badari Pulavarty   [PATCH] Streamlin...
109
  	size_t count = iocb->ki_left;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
110

cb00ea352   Cyrill Gorcunov   UDF: coding style...
111
  	if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
112
113
114
  		if (file->f_flags & O_APPEND)
  			pos = inode->i_size;
  		else
543ade1fc   Badari Pulavarty   [PATCH] Streamlin...
115
  			pos = ppos;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
116

cb00ea352   Cyrill Gorcunov   UDF: coding style...
117
118
  		if (inode->i_sb->s_blocksize <
  		    (udf_file_entry_alloc_offset(inode) + pos + count)) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
119
  			udf_expand_file_adinicb(inode, pos + count, &err);
cb00ea352   Cyrill Gorcunov   UDF: coding style...
120
  			if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
121
122
123
124
  				udf_debug("udf_expand_adinicb: err=%d
  ", err);
  				return err;
  			}
cb00ea352   Cyrill Gorcunov   UDF: coding style...
125
  		} else {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
126
127
128
129
130
131
  			if (pos + count > inode->i_size)
  				UDF_I_LENALLOC(inode) = pos + count;
  			else
  				UDF_I_LENALLOC(inode) = inode->i_size;
  		}
  	}
543ade1fc   Badari Pulavarty   [PATCH] Streamlin...
132
  	retval = generic_file_aio_write(iocb, iov, nr_segs, ppos);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
  
  	if (retval > 0)
  		mark_inode_dirty(inode);
  	return retval;
  }
  
  /*
   * udf_ioctl
   *
   * PURPOSE
   *	Issue an ioctl.
   *
   * DESCRIPTION
   *	Optional - sys_ioctl() will return -ENOTTY if this routine is not
   *	available, and the ioctl cannot be handled without filesystem help.
   *
   *	sys_ioctl() handles these ioctls that apply only to regular files:
   *		FIBMAP [requires udf_block_map()], FIGETBSZ, FIONREAD
   *	These ioctls are also handled by sys_ioctl():
   *		FIOCLEX, FIONCLEX, FIONBIO, FIOASYNC
   *	All other ioctls are passed to the filesystem.
   *
   *	Refer to sys_ioctl() in fs/ioctl.c
   *	sys_ioctl() -> .
   *
   * PRE-CONDITIONS
   *	inode			Pointer to inode that ioctl was issued on.
   *	filp			Pointer to file that ioctl was issued on.
   *	cmd			The ioctl command.
   *	arg			The ioctl argument [can be interpreted as a
   *				user-space pointer if desired].
   *
   * POST-CONDITIONS
   *	<return>		Success (>=0) or an error code (<=0) that
   *				sys_ioctl() will return.
   *
   * HISTORY
   *	July 1, 1997 - Andrew E. Mileski
   *	Written, tested, and released.
   */
  int udf_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
cb00ea352   Cyrill Gorcunov   UDF: coding style...
174
  	      unsigned long arg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
175
176
  {
  	int result = -EINVAL;
cb00ea352   Cyrill Gorcunov   UDF: coding style...
177
178
179
  	if (file_permission(filp, MAY_READ) != 0) {
  		udf_debug("no permission to access inode %lu
  ", inode->i_ino);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
180
181
  		return -EPERM;
  	}
cb00ea352   Cyrill Gorcunov   UDF: coding style...
182
  	if (!arg) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
183
184
185
186
  		udf_debug("invalid argument to udf_ioctl
  ");
  		return -EINVAL;
  	}
cb00ea352   Cyrill Gorcunov   UDF: coding style...
187
188
189
190
191
192
  	switch (cmd) {
  	case UDF_GETVOLIDENT:
  		return copy_to_user((char __user *)arg,
  				    UDF_SB_VOLIDENT(inode->i_sb),
  				    32) ? -EFAULT : 0;
  	case UDF_RELOCATE_BLOCKS:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
193
194
  		{
  			long old, new;
cb00ea352   Cyrill Gorcunov   UDF: coding style...
195
196
197
198
  			if (!capable(CAP_SYS_ADMIN))
  				return -EACCES;
  			if (get_user(old, (long __user *)arg))
  				return -EFAULT;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
199
  			if ((result = udf_relocate_blocks(inode->i_sb,
cb00ea352   Cyrill Gorcunov   UDF: coding style...
200
  							  old, &new)) == 0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
201
202
203
204
  				result = put_user(new, (long __user *)arg);
  
  			return result;
  		}
cb00ea352   Cyrill Gorcunov   UDF: coding style...
205
206
207
  	case UDF_GETEASIZE:
  		result = put_user(UDF_I_LENEATTR(inode), (int __user *)arg);
  		break;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
208

cb00ea352   Cyrill Gorcunov   UDF: coding style...
209
210
211
212
  	case UDF_GETEABLOCK:
  		result = copy_to_user((char __user *)arg, UDF_I_DATA(inode),
  				      UDF_I_LENEATTR(inode)) ? -EFAULT : 0;
  		break;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
  	}
  
  	return result;
  }
  
  /*
   * udf_release_file
   *
   * PURPOSE
   *  Called when all references to the file are closed
   *
   * DESCRIPTION
   *  Discard prealloced blocks
   *
   * HISTORY
   *
   */
cb00ea352   Cyrill Gorcunov   UDF: coding style...
230
  static int udf_release_file(struct inode *inode, struct file *filp)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
231
  {
cb00ea352   Cyrill Gorcunov   UDF: coding style...
232
  	if (filp->f_mode & FMODE_WRITE) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
233
234
235
236
237
238
  		lock_kernel();
  		udf_discard_prealloc(inode);
  		unlock_kernel();
  	}
  	return 0;
  }
4b6f5d20b   Arjan van de Ven   [PATCH] Make most...
239
  const struct file_operations udf_file_operations = {
cb00ea352   Cyrill Gorcunov   UDF: coding style...
240
241
242
243
244
245
246
247
248
249
  	.read = do_sync_read,
  	.aio_read = generic_file_aio_read,
  	.ioctl = udf_ioctl,
  	.open = generic_file_open,
  	.mmap = generic_file_mmap,
  	.write = do_sync_write,
  	.aio_write = udf_file_aio_write,
  	.release = udf_release_file,
  	.fsync = udf_fsync_file,
  	.splice_read = generic_file_splice_read,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
250
  };
c5ef1c42c   Arjan van de Ven   [PATCH] mark stru...
251
  const struct inode_operations udf_file_inode_operations = {
cb00ea352   Cyrill Gorcunov   UDF: coding style...
252
  	.truncate = udf_truncate,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
253
  };