1
2
3
4
5
6
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
98
99
100
101
102
103
|
/*
Copyright (C) 1994 Free Software Foundation
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2, or (at
your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "priv.h"
#include <string.h>
/* Actually read or write a file. The file size must already permit
the requested access. NP is the file to read/write. DATA is a buffer
to write from or fill on read. OFFSET is the absolute address (-1
not permitted here); AMT is the size of the read/write to perform;
DIR is set for writing and clear for reading. The inode must
be locked. If NOTIME is set, then don't update the mtime or atime. */
error_t
_diskfs_rdwr_internal (struct node *np,
char *volatile data,
volatile int offset,
volatile int amt,
int dir,
int notime)
{
char *window;
int winoff;
volatile int cc;
memory_object_t memobj;
int err = 0;
if (dir)
assert (!diskfs_readonly);
if (!diskfs_readonly && !notime)
{
if (dir)
np->dn_set_mtime = 1;
else
np->dn_set_atime = 1;
}
memobj = diskfs_get_filemap (np);
while (amt > 0)
{
winoff = trunc_page (offset);
window = 0;
/* We map in 8 pages at a time. Where'd that come from? Well, the
vax has a 1024 pagesize and with 8k blocks that seems like a
reasonable number. */
err = vm_map (mach_task_self (), (u_int *)&window, 8 * __vm_page_size,
0, 1, memobj, winoff, 0, VM_PROT_READ|VM_PROT_WRITE,
VM_PROT_READ|VM_PROT_WRITE, VM_INHERIT_NONE);
assert (!err);
diskfs_register_memory_fault_area (diskfs_get_filemap_pager_struct (np),
winoff, window, 8 * __vm_page_size);
if ((offset - winoff) + amt > 8 * __vm_page_size)
cc = 8 * __vm_page_size - (offset - winoff);
else
cc = amt;
if (!(err = diskfs_catch_exception ()))
{
if (dir)
bcopy (data, window + (offset - winoff), cc);
else
bcopy (window + (offset - winoff), data, cc);
diskfs_end_catch_exception ();
}
vm_deallocate (mach_task_self (), (u_int) window, 8 * __vm_page_size);
diskfs_unregister_memory_fault_area (window, 8 * __vm_page_size);
if (err)
break;
amt -= cc;
offset += cc;
data += cc;
}
assert (amt == 0 || err);
if (!diskfs_readonly && !notime)
{
if (dir)
np->dn_set_mtime = 1;
else
np->dn_set_atime = 1;
}
mach_port_deallocate (mach_task_self (), memobj);
return err;
}
|