4 * Copyright (C) 1995, 1996 by Volker Lendecke
5 * Modified 1997 Peter Waltenberg, Bill Hawes, David Woodhouse for 2.1 dcache
9 #include <linux/stat.h>
10 #include <linux/time.h>
11 #include <linux/kernel.h>
13 #include <linux/shm.h>
14 #include <linux/errno.h>
15 #include <linux/mman.h>
16 #include <linux/string.h>
17 #include <linux/slab.h>
18 #include <linux/fcntl.h>
19 #include <linux/ncp_fs.h>
21 #include "ncplib_kernel.h"
22 #include <asm/uaccess.h>
23 #include <asm/system.h>
26 * Fill in the supplied page for mmap
27 * XXX: how are we excluding truncate/invalidate here? Maybe need to lock
30 static int ncp_file_mmap_fault(struct vm_area_struct
*area
,
33 struct file
*file
= area
->vm_file
;
34 struct dentry
*dentry
= file
->f_path
.dentry
;
35 struct inode
*inode
= dentry
->d_inode
;
37 unsigned int already_read
;
40 int pos
; /* XXX: loff_t ? */
43 * ncpfs has nothing against high pages as long
44 * as recvmsg and memset works on it
46 vmf
->page
= alloc_page(GFP_HIGHUSER
);
49 pg_addr
= kmap(vmf
->page
);
50 pos
= vmf
->pgoff
<< PAGE_SHIFT
;
53 if ((unsigned long)vmf
->virtual_address
+ PAGE_SIZE
> area
->vm_end
) {
54 WARN_ON(1); /* shouldn't happen? */
55 count
= area
->vm_end
- (unsigned long)vmf
->virtual_address
;
57 /* what we can read in one go */
58 bufsize
= NCP_SERVER(inode
)->buffer_size
;
61 if (ncp_make_open(inode
, O_RDONLY
) >= 0) {
62 while (already_read
< count
) {
66 to_read
= bufsize
- (pos
% bufsize
);
68 to_read
= min_t(unsigned int, to_read
, count
- already_read
);
70 if (ncp_read_kernel(NCP_SERVER(inode
),
71 NCP_FINFO(inode
)->file_handle
,
73 pg_addr
+ already_read
,
74 &read_this_time
) != 0) {
77 pos
+= read_this_time
;
78 already_read
+= read_this_time
;
80 if (read_this_time
< to_read
) {
84 ncp_inode_close(inode
);
88 if (already_read
< PAGE_SIZE
)
89 memset(pg_addr
+ already_read
, 0, PAGE_SIZE
- already_read
);
90 flush_dcache_page(vmf
->page
);
94 * If I understand ncp_read_kernel() properly, the above always
95 * fetches from the network, here the analogue of disk.
98 count_vm_event(PGMAJFAULT
);
99 return VM_FAULT_MAJOR
;
102 static struct vm_operations_struct ncp_file_mmap
=
104 .fault
= ncp_file_mmap_fault
,
108 /* This is used for a general mmap of a ncp file */
109 int ncp_mmap(struct file
*file
, struct vm_area_struct
*vma
)
111 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
113 DPRINTK("ncp_mmap: called\n");
115 if (!ncp_conn_valid(NCP_SERVER(inode
)))
118 /* only PAGE_COW or read-only supported now */
119 if (vma
->vm_flags
& VM_SHARED
)
121 /* we do not support files bigger than 4GB... We eventually
122 supports just 4GB... */
123 if (((vma
->vm_end
- vma
->vm_start
) >> PAGE_SHIFT
) + vma
->vm_pgoff
124 > (1U << (32 - PAGE_SHIFT
)))
127 vma
->vm_ops
= &ncp_file_mmap
;