4 * Copyright (C) 1995, 1996 by Volker Lendecke
5 * Modified 1997 Peter Waltenberg, Bill Hawes, David Woodhouse for 2.1 dcache
9 #include <asm/uaccess.h>
11 #include <linux/time.h>
12 #include <linux/kernel.h>
13 #include <linux/errno.h>
14 #include <linux/fcntl.h>
15 #include <linux/stat.h>
17 #include <linux/vmalloc.h>
18 #include <linux/sched.h>
22 static int ncp_fsync(struct file
*file
, loff_t start
, loff_t end
, int datasync
)
24 return filemap_write_and_wait_range(file
->f_mapping
, start
, end
);
28 * Open a file with the specified read/write mode.
30 int ncp_make_open(struct inode
*inode
, int right
)
37 printk(KERN_ERR
"ncp_make_open: got NULL inode\n");
41 DPRINTK("ncp_make_open: opened=%d, volume # %u, dir entry # %u\n",
42 atomic_read(&NCP_FINFO(inode
)->opened
),
43 NCP_FINFO(inode
)->volNumber
,
44 NCP_FINFO(inode
)->dirEntNum
);
46 mutex_lock(&NCP_FINFO(inode
)->open_mutex
);
47 if (!atomic_read(&NCP_FINFO(inode
)->opened
)) {
48 struct ncp_entry_info finfo
;
51 /* tries max. rights */
52 finfo
.access
= O_RDWR
;
53 result
= ncp_open_create_file_or_subdir(NCP_SERVER(inode
),
54 inode
, NULL
, OC_MODE_OPEN
,
55 0, AR_READ
| AR_WRITE
, &finfo
);
58 /* RDWR did not succeeded, try readonly or writeonly as requested */
61 finfo
.access
= O_RDONLY
;
62 result
= ncp_open_create_file_or_subdir(NCP_SERVER(inode
),
63 inode
, NULL
, OC_MODE_OPEN
,
67 finfo
.access
= O_WRONLY
;
68 result
= ncp_open_create_file_or_subdir(NCP_SERVER(inode
),
69 inode
, NULL
, OC_MODE_OPEN
,
74 PPRINTK("ncp_make_open: failed, result=%d\n", result
);
78 * Update the inode information.
81 ncp_update_inode(inode
, &finfo
);
82 atomic_set(&NCP_FINFO(inode
)->opened
, 1);
85 access
= NCP_FINFO(inode
)->access
;
86 PPRINTK("ncp_make_open: file open, access=%x\n", access
);
87 if (access
== right
|| access
== O_RDWR
) {
88 atomic_inc(&NCP_FINFO(inode
)->opened
);
93 mutex_unlock(&NCP_FINFO(inode
)->open_mutex
);
99 ncp_file_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*ppos
)
101 struct dentry
*dentry
= file
->f_path
.dentry
;
102 struct inode
*inode
= dentry
->d_inode
;
103 size_t already_read
= 0;
110 DPRINTK("ncp_file_read: enter %s/%s\n",
111 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
115 if ((ssize_t
) count
< 0) {
120 if (pos
> inode
->i_sb
->s_maxbytes
)
122 if (pos
+ count
> inode
->i_sb
->s_maxbytes
) {
123 count
= inode
->i_sb
->s_maxbytes
- pos
;
126 error
= ncp_make_open(inode
, O_RDONLY
);
128 DPRINTK(KERN_ERR
"ncp_file_read: open failed, error=%d\n", error
);
132 bufsize
= NCP_SERVER(inode
)->buffer_size
;
135 freelen
= ncp_read_bounce_size(bufsize
);
136 freepage
= vmalloc(freelen
);
140 /* First read in as much as possible for each bufsize. */
141 while (already_read
< count
) {
143 size_t to_read
= min_t(unsigned int,
144 bufsize
- (pos
% bufsize
),
145 count
- already_read
);
147 error
= ncp_read_bounce(NCP_SERVER(inode
),
148 NCP_FINFO(inode
)->file_handle
,
149 pos
, to_read
, buf
, &read_this_time
,
152 error
= -EIO
; /* NW errno -> Linux errno */
155 pos
+= read_this_time
;
156 buf
+= read_this_time
;
157 already_read
+= read_this_time
;
159 if (read_this_time
!= to_read
) {
169 DPRINTK("ncp_file_read: exit %s/%s\n",
170 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
172 ncp_inode_close(inode
);
173 return already_read
? already_read
: error
;
177 ncp_file_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*ppos
)
179 struct dentry
*dentry
= file
->f_path
.dentry
;
180 struct inode
*inode
= dentry
->d_inode
;
181 size_t already_written
= 0;
187 DPRINTK("ncp_file_write: enter %s/%s\n",
188 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
189 if ((ssize_t
) count
< 0)
192 if (file
->f_flags
& O_APPEND
) {
193 pos
= i_size_read(inode
);
196 if (pos
+ count
> MAX_NON_LFS
&& !(file
->f_flags
&O_LARGEFILE
)) {
197 if (pos
>= MAX_NON_LFS
) {
200 if (count
> MAX_NON_LFS
- (u32
)pos
) {
201 count
= MAX_NON_LFS
- (u32
)pos
;
204 if (pos
>= inode
->i_sb
->s_maxbytes
) {
205 if (count
|| pos
> inode
->i_sb
->s_maxbytes
) {
209 if (pos
+ count
> inode
->i_sb
->s_maxbytes
) {
210 count
= inode
->i_sb
->s_maxbytes
- pos
;
215 errno
= ncp_make_open(inode
, O_WRONLY
);
217 DPRINTK(KERN_ERR
"ncp_file_write: open failed, error=%d\n", errno
);
220 bufsize
= NCP_SERVER(inode
)->buffer_size
;
224 errno
= file_update_time(file
);
228 bouncebuffer
= vmalloc(bufsize
);
230 errno
= -EIO
; /* -ENOMEM */
233 while (already_written
< count
) {
234 int written_this_time
;
235 size_t to_write
= min_t(unsigned int,
236 bufsize
- (pos
% bufsize
),
237 count
- already_written
);
239 if (copy_from_user(bouncebuffer
, buf
, to_write
)) {
243 if (ncp_write_kernel(NCP_SERVER(inode
),
244 NCP_FINFO(inode
)->file_handle
,
245 pos
, to_write
, bouncebuffer
, &written_this_time
) != 0) {
249 pos
+= written_this_time
;
250 buf
+= written_this_time
;
251 already_written
+= written_this_time
;
253 if (written_this_time
!= to_write
) {
261 if (pos
> i_size_read(inode
)) {
262 mutex_lock(&inode
->i_mutex
);
263 if (pos
> i_size_read(inode
))
264 i_size_write(inode
, pos
);
265 mutex_unlock(&inode
->i_mutex
);
267 DPRINTK("ncp_file_write: exit %s/%s\n",
268 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
270 ncp_inode_close(inode
);
271 return already_written
? already_written
: errno
;
274 static int ncp_release(struct inode
*inode
, struct file
*file
) {
275 if (ncp_make_closed(inode
)) {
276 DPRINTK("ncp_release: failed to close\n");
281 const struct file_operations ncp_file_operations
=
283 .llseek
= generic_file_llseek
,
284 .read
= ncp_file_read
,
285 .write
= ncp_file_write
,
286 .unlocked_ioctl
= ncp_ioctl
,
288 .compat_ioctl
= ncp_compat_ioctl
,
291 .release
= ncp_release
,
295 const struct inode_operations ncp_file_inode_operations
=
297 .setattr
= ncp_notify_change
,