Blame view

fs/ncpfs/file.c 6.7 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  /*
   *  file.c
   *
   *  Copyright (C) 1995, 1996 by Volker Lendecke
   *  Modified 1997 Peter Waltenberg, Bill Hawes, David Woodhouse for 2.1 dcache
   *
   */
  
  #include <asm/uaccess.h>
  #include <asm/system.h>
  
  #include <linux/time.h>
  #include <linux/kernel.h>
  #include <linux/errno.h>
  #include <linux/fcntl.h>
  #include <linux/stat.h>
  #include <linux/mm.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
18
  #include <linux/vmalloc.h>
e8edc6e03   Alexey Dobriyan   Detach sched.h fr...
19
  #include <linux/sched.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20

32c419d95   Al Viro   move internal-onl...
21
  #include "ncp_fs.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22

02c24a821   Josef Bacik   fs: push i_mutex ...
23
  static int ncp_fsync(struct file *file, loff_t start, loff_t end, int datasync)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
  {
02c24a821   Josef Bacik   fs: push i_mutex ...
25
  	return filemap_write_and_wait_range(file->f_mapping, start, end);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  }
  
  /*
   * Open a file with the specified read/write mode.
   */
  int ncp_make_open(struct inode *inode, int right)
  {
  	int error;
  	int access;
  
  	error = -EINVAL;
  	if (!inode) {
  		printk(KERN_ERR "ncp_make_open: got NULL inode
  ");
  		goto out;
  	}
  
  	DPRINTK("ncp_make_open: opened=%d, volume # %u, dir entry # %u
  ",
  		atomic_read(&NCP_FINFO(inode)->opened), 
  		NCP_FINFO(inode)->volNumber, 
  		NCP_FINFO(inode)->dirEntNum);
  	error = -EACCES;
8e3f90459   Ingo Molnar   [PATCH] sem2mutex...
49
  	mutex_lock(&NCP_FINFO(inode)->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
  	if (!atomic_read(&NCP_FINFO(inode)->opened)) {
  		struct ncp_entry_info finfo;
  		int result;
  
  		/* tries max. rights */
  		finfo.access = O_RDWR;
  		result = ncp_open_create_file_or_subdir(NCP_SERVER(inode),
  					inode, NULL, OC_MODE_OPEN,
  					0, AR_READ | AR_WRITE, &finfo);
  		if (!result)
  			goto update;
  		/* RDWR did not succeeded, try readonly or writeonly as requested */
  		switch (right) {
  			case O_RDONLY:
  				finfo.access = O_RDONLY;
  				result = ncp_open_create_file_or_subdir(NCP_SERVER(inode),
  					inode, NULL, OC_MODE_OPEN,
  					0, AR_READ, &finfo);
  				break;
  			case O_WRONLY:
  				finfo.access = O_WRONLY;
  				result = ncp_open_create_file_or_subdir(NCP_SERVER(inode),
  					inode, NULL, OC_MODE_OPEN,
  					0, AR_WRITE, &finfo);
  				break;
  		}
  		if (result) {
  			PPRINTK("ncp_make_open: failed, result=%d
  ", result);
  			goto out_unlock;
  		}
  		/*
  		 * Update the inode information.
  		 */
  	update:
  		ncp_update_inode(inode, &finfo);
  		atomic_set(&NCP_FINFO(inode)->opened, 1);
  	}
  
  	access = NCP_FINFO(inode)->access;
  	PPRINTK("ncp_make_open: file open, access=%x
  ", access);
  	if (access == right || access == O_RDWR) {
  		atomic_inc(&NCP_FINFO(inode)->opened);
  		error = 0;
  	}
  
  out_unlock:
8e3f90459   Ingo Molnar   [PATCH] sem2mutex...
98
  	mutex_unlock(&NCP_FINFO(inode)->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
99
100
101
102
103
104
105
  out:
  	return error;
  }
  
  static ssize_t
  ncp_file_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
  {
92e5baef8   Josef Sipek   [PATCH] struct pa...
106
  	struct dentry *dentry = file->f_path.dentry;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107
108
109
110
111
112
113
114
115
116
117
  	struct inode *inode = dentry->d_inode;
  	size_t already_read = 0;
  	off_t pos;
  	size_t bufsize;
  	int error;
  	void* freepage;
  	size_t freelen;
  
  	DPRINTK("ncp_file_read: enter %s/%s
  ",
  		dentry->d_parent->d_name.name, dentry->d_name.name);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
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
174
175
176
177
178
179
180
181
182
183
184
185
  	pos = *ppos;
  
  	if ((ssize_t) count < 0) {
  		return -EINVAL;
  	}
  	if (!count)
  		return 0;
  	if (pos > inode->i_sb->s_maxbytes)
  		return 0;
  	if (pos + count > inode->i_sb->s_maxbytes) {
  		count = inode->i_sb->s_maxbytes - pos;
  	}
  
  	error = ncp_make_open(inode, O_RDONLY);
  	if (error) {
  		DPRINTK(KERN_ERR "ncp_file_read: open failed, error=%d
  ", error);
  		return error;
  	}
  
  	bufsize = NCP_SERVER(inode)->buffer_size;
  
  	error = -EIO;
  	freelen = ncp_read_bounce_size(bufsize);
  	freepage = vmalloc(freelen);
  	if (!freepage)
  		goto outrel;
  	error = 0;
  	/* First read in as much as possible for each bufsize. */
  	while (already_read < count) {
  		int read_this_time;
  		size_t to_read = min_t(unsigned int,
  				     bufsize - (pos % bufsize),
  				     count - already_read);
  
  		error = ncp_read_bounce(NCP_SERVER(inode),
  			 	NCP_FINFO(inode)->file_handle,
  				pos, to_read, buf, &read_this_time, 
  				freepage, freelen);
  		if (error) {
  			error = -EIO;	/* NW errno -> Linux errno */
  			break;
  		}
  		pos += read_this_time;
  		buf += read_this_time;
  		already_read += read_this_time;
  
  		if (read_this_time != to_read) {
  			break;
  		}
  	}
  	vfree(freepage);
  
  	*ppos = pos;
  
  	file_accessed(file);
  
  	DPRINTK("ncp_file_read: exit %s/%s
  ",
  		dentry->d_parent->d_name.name, dentry->d_name.name);
  outrel:
  	ncp_inode_close(inode);		
  	return already_read ? already_read : error;
  }
  
  static ssize_t
  ncp_file_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
  {
92e5baef8   Josef Sipek   [PATCH] struct pa...
186
  	struct dentry *dentry = file->f_path.dentry;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
187
188
189
190
191
192
193
194
195
196
  	struct inode *inode = dentry->d_inode;
  	size_t already_written = 0;
  	off_t pos;
  	size_t bufsize;
  	int errno;
  	void* bouncebuffer;
  
  	DPRINTK("ncp_file_write: enter %s/%s
  ",
  		dentry->d_parent->d_name.name, dentry->d_name.name);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
197
198
199
200
  	if ((ssize_t) count < 0)
  		return -EINVAL;
  	pos = *ppos;
  	if (file->f_flags & O_APPEND) {
2e54eb96e   Petr Vandrovec   BKL: Remove BKL f...
201
  		pos = i_size_read(inode);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
202
203
204
205
  	}
  
  	if (pos + count > MAX_NON_LFS && !(file->f_flags&O_LARGEFILE)) {
  		if (pos >= MAX_NON_LFS) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
206
207
208
209
210
211
212
213
  			return -EFBIG;
  		}
  		if (count > MAX_NON_LFS - (u32)pos) {
  			count = MAX_NON_LFS - (u32)pos;
  		}
  	}
  	if (pos >= inode->i_sb->s_maxbytes) {
  		if (count || pos > inode->i_sb->s_maxbytes) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
  			return -EFBIG;
  		}
  	}
  	if (pos + count > inode->i_sb->s_maxbytes) {
  		count = inode->i_sb->s_maxbytes - pos;
  	}
  	
  	if (!count)
  		return 0;
  	errno = ncp_make_open(inode, O_WRONLY);
  	if (errno) {
  		DPRINTK(KERN_ERR "ncp_file_write: open failed, error=%d
  ", errno);
  		return errno;
  	}
  	bufsize = NCP_SERVER(inode)->buffer_size;
  
  	already_written = 0;
  
  	bouncebuffer = vmalloc(bufsize);
  	if (!bouncebuffer) {
  		errno = -EIO;	/* -ENOMEM */
  		goto outrel;
  	}
  	while (already_written < count) {
  		int written_this_time;
  		size_t to_write = min_t(unsigned int,
  				      bufsize - (pos % bufsize),
  				      count - already_written);
  
  		if (copy_from_user(bouncebuffer, buf, to_write)) {
  			errno = -EFAULT;
  			break;
  		}
  		if (ncp_write_kernel(NCP_SERVER(inode), 
  		    NCP_FINFO(inode)->file_handle,
  		    pos, to_write, bouncebuffer, &written_this_time) != 0) {
  			errno = -EIO;
  			break;
  		}
  		pos += written_this_time;
  		buf += written_this_time;
  		already_written += written_this_time;
  
  		if (written_this_time != to_write) {
  			break;
  		}
  	}
  	vfree(bouncebuffer);
870f48179   Christoph Hellwig   [PATCH] replace i...
263
  	file_update_time(file);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
264
265
  
  	*ppos = pos;
2e54eb96e   Petr Vandrovec   BKL: Remove BKL f...
266
267
268
269
270
  	if (pos > i_size_read(inode)) {
  		mutex_lock(&inode->i_mutex);
  		if (pos > i_size_read(inode))
  			i_size_write(inode, pos);
  		mutex_unlock(&inode->i_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
  	}
  	DPRINTK("ncp_file_write: exit %s/%s
  ",
  		dentry->d_parent->d_name.name, dentry->d_name.name);
  outrel:
  	ncp_inode_close(inode);		
  	return already_written ? already_written : errno;
  }
  
  static int ncp_release(struct inode *inode, struct file *file) {
  	if (ncp_make_closed(inode)) {
  		DPRINTK("ncp_release: failed to close
  ");
  	}
  	return 0;
  }
4b6f5d20b   Arjan van de Ven   [PATCH] Make most...
287
  const struct file_operations ncp_file_operations =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
288
  {
2e54eb96e   Petr Vandrovec   BKL: Remove BKL f...
289
  	.llseek		= generic_file_llseek,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
290
291
  	.read		= ncp_file_read,
  	.write		= ncp_file_write,
93d84b6d9   John Kacur   ncpfs: BKL ioctl ...
292
  	.unlocked_ioctl	= ncp_ioctl,
54f67f631   Petr Vandrovec   [PATCH] Move ncpf...
293
294
295
  #ifdef CONFIG_COMPAT
  	.compat_ioctl	= ncp_compat_ioctl,
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
296
297
298
299
  	.mmap		= ncp_mmap,
  	.release	= ncp_release,
  	.fsync		= ncp_fsync,
  };
92e1d5be9   Arjan van de Ven   [PATCH] mark stru...
300
  const struct inode_operations ncp_file_inode_operations =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
301
302
303
  {
  	.setattr	= ncp_notify_change,
  };