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>
10 #include <asm/system.h>
12 #include <linux/time.h>
13 #include <linux/kernel.h>
14 #include <linux/errno.h>
15 #include <linux/fcntl.h>
16 #include <linux/stat.h>
18 #include <linux/vmalloc.h>
19 #include <linux/sched.h>
20 #include <linux/smp_lock.h>
22 #include <linux/ncp_fs.h>
23 #include "ncplib_kernel.h"
25 static int ncp_fsync(struct file
*file
, int datasync
)
31 * Open a file with the specified read/write mode.
33 int ncp_make_open(struct inode
*inode
, int right
)
40 printk(KERN_ERR
"ncp_make_open: got NULL inode\n");
44 DPRINTK("ncp_make_open: opened=%d, volume # %u, dir entry # %u\n",
45 atomic_read(&NCP_FINFO(inode
)->opened
),
46 NCP_FINFO(inode
)->volNumber
,
47 NCP_FINFO(inode
)->dirEntNum
);
49 mutex_lock(&NCP_FINFO(inode
)->open_mutex
);
50 if (!atomic_read(&NCP_FINFO(inode
)->opened
)) {
51 struct ncp_entry_info finfo
;
54 /* tries max. rights */
55 finfo
.access
= O_RDWR
;
56 result
= ncp_open_create_file_or_subdir(NCP_SERVER(inode
),
57 inode
, NULL
, OC_MODE_OPEN
,
58 0, AR_READ
| AR_WRITE
, &finfo
);
61 /* RDWR did not succeeded, try readonly or writeonly as requested */
64 finfo
.access
= O_RDONLY
;
65 result
= ncp_open_create_file_or_subdir(NCP_SERVER(inode
),
66 inode
, NULL
, OC_MODE_OPEN
,
70 finfo
.access
= O_WRONLY
;
71 result
= ncp_open_create_file_or_subdir(NCP_SERVER(inode
),
72 inode
, NULL
, OC_MODE_OPEN
,
77 PPRINTK("ncp_make_open: failed, result=%d\n", result
);
81 * Update the inode information.
84 ncp_update_inode(inode
, &finfo
);
85 atomic_set(&NCP_FINFO(inode
)->opened
, 1);
88 access
= NCP_FINFO(inode
)->access
;
89 PPRINTK("ncp_make_open: file open, access=%x\n", access
);
90 if (access
== right
|| access
== O_RDWR
) {
91 atomic_inc(&NCP_FINFO(inode
)->opened
);
96 mutex_unlock(&NCP_FINFO(inode
)->open_mutex
);
102 ncp_file_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*ppos
)
104 struct dentry
*dentry
= file
->f_path
.dentry
;
105 struct inode
*inode
= dentry
->d_inode
;
106 size_t already_read
= 0;
113 DPRINTK("ncp_file_read: enter %s/%s\n",
114 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
116 if (!ncp_conn_valid(NCP_SERVER(inode
)))
121 if ((ssize_t
) count
< 0) {
126 if (pos
> inode
->i_sb
->s_maxbytes
)
128 if (pos
+ count
> inode
->i_sb
->s_maxbytes
) {
129 count
= inode
->i_sb
->s_maxbytes
- pos
;
132 error
= ncp_make_open(inode
, O_RDONLY
);
134 DPRINTK(KERN_ERR
"ncp_file_read: open failed, error=%d\n", error
);
138 bufsize
= NCP_SERVER(inode
)->buffer_size
;
141 freelen
= ncp_read_bounce_size(bufsize
);
142 freepage
= vmalloc(freelen
);
146 /* First read in as much as possible for each bufsize. */
147 while (already_read
< count
) {
149 size_t to_read
= min_t(unsigned int,
150 bufsize
- (pos
% bufsize
),
151 count
- already_read
);
153 error
= ncp_read_bounce(NCP_SERVER(inode
),
154 NCP_FINFO(inode
)->file_handle
,
155 pos
, to_read
, buf
, &read_this_time
,
158 error
= -EIO
; /* NW errno -> Linux errno */
161 pos
+= read_this_time
;
162 buf
+= read_this_time
;
163 already_read
+= read_this_time
;
165 if (read_this_time
!= to_read
) {
175 DPRINTK("ncp_file_read: exit %s/%s\n",
176 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
178 ncp_inode_close(inode
);
179 return already_read
? already_read
: error
;
183 ncp_file_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*ppos
)
185 struct dentry
*dentry
= file
->f_path
.dentry
;
186 struct inode
*inode
= dentry
->d_inode
;
187 size_t already_written
= 0;
193 DPRINTK("ncp_file_write: enter %s/%s\n",
194 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
195 if (!ncp_conn_valid(NCP_SERVER(inode
)))
197 if ((ssize_t
) count
< 0)
200 if (file
->f_flags
& O_APPEND
) {
204 if (pos
+ count
> MAX_NON_LFS
&& !(file
->f_flags
&O_LARGEFILE
)) {
205 if (pos
>= MAX_NON_LFS
) {
208 if (count
> MAX_NON_LFS
- (u32
)pos
) {
209 count
= MAX_NON_LFS
- (u32
)pos
;
212 if (pos
>= inode
->i_sb
->s_maxbytes
) {
213 if (count
|| pos
> inode
->i_sb
->s_maxbytes
) {
217 if (pos
+ count
> inode
->i_sb
->s_maxbytes
) {
218 count
= inode
->i_sb
->s_maxbytes
- pos
;
223 errno
= ncp_make_open(inode
, O_WRONLY
);
225 DPRINTK(KERN_ERR
"ncp_file_write: open failed, error=%d\n", errno
);
228 bufsize
= NCP_SERVER(inode
)->buffer_size
;
232 bouncebuffer
= vmalloc(bufsize
);
234 errno
= -EIO
; /* -ENOMEM */
237 while (already_written
< count
) {
238 int written_this_time
;
239 size_t to_write
= min_t(unsigned int,
240 bufsize
- (pos
% bufsize
),
241 count
- already_written
);
243 if (copy_from_user(bouncebuffer
, buf
, to_write
)) {
247 if (ncp_write_kernel(NCP_SERVER(inode
),
248 NCP_FINFO(inode
)->file_handle
,
249 pos
, to_write
, bouncebuffer
, &written_this_time
) != 0) {
253 pos
+= written_this_time
;
254 buf
+= written_this_time
;
255 already_written
+= written_this_time
;
257 if (written_this_time
!= to_write
) {
263 file_update_time(file
);
267 if (pos
> inode
->i_size
) {
270 DPRINTK("ncp_file_write: exit %s/%s\n",
271 dentry
->d_parent
->d_name
.name
, dentry
->d_name
.name
);
273 ncp_inode_close(inode
);
274 return already_written
? already_written
: errno
;
277 static int ncp_release(struct inode
*inode
, struct file
*file
) {
278 if (ncp_make_closed(inode
)) {
279 DPRINTK("ncp_release: failed to close\n");
284 static loff_t
ncp_remote_llseek(struct file
*file
, loff_t offset
, int origin
)
288 ret
= generic_file_llseek_unlocked(file
, offset
, origin
);
293 const struct file_operations ncp_file_operations
=
295 .llseek
= ncp_remote_llseek
,
296 .read
= ncp_file_read
,
297 .write
= ncp_file_write
,
298 .unlocked_ioctl
= ncp_ioctl
,
300 .compat_ioctl
= ncp_compat_ioctl
,
303 .release
= ncp_release
,
307 const struct inode_operations ncp_file_inode_operations
=
309 .setattr
= ncp_notify_change
,