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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
|
/*
* functions to read and write an executable or file image
*/
#include <lib9.h>
#include <bio.h>
#include "mach.h"
static int mget(Map*, ulong, char*, int);
static int mput(Map*, ulong, char*, int);
struct segment* reloc(Map*, ulong, long*);
/*
* routines to get/put various types
*/
int
get8(Map *map, ulong addr, vlong *x)
{
if (!map) {
werrstr("get8: invalid map");
return -1;
}
if (map->nsegs == 1 && map->seg[0].fd < 0) {
*x = (vlong)addr;
return 1;
}
if (mget(map, addr, (char *)x, 8) < 0)
return -1;
*x = machdata->swav(*x);
return (1);
}
int
get4(Map *map, ulong addr, long *x)
{
if (!map) {
werrstr("get4: invalid map");
return -1;
}
if (map->nsegs == 1 && map->seg[0].fd < 0) {
*x = addr;
return 1;
}
if (mget(map, addr, (char *)x, 4) < 0)
return -1;
*x = machdata->swal(*x);
return (1);
}
int
get2(Map *map, ulong addr, ushort *x)
{
if (!map) {
werrstr("get2: invalid map");
return -1;
}
if (map->nsegs == 1 && map->seg[0].fd < 0) {
*x = addr;
return 1;
}
if (mget(map, addr, (char *)x, 2) < 0)
return -1;
*x = machdata->swab(*x);
return (1);
}
int
get1(Map *map, ulong addr, uchar *x, int size)
{
uchar *cp;
if (!map) {
werrstr("get1: invalid map");
return -1;
}
if (map->nsegs == 1 && map->seg[0].fd < 0) {
cp = (uchar*)&addr;
while (cp < (uchar*)(&addr+1) && size-- > 0)
*x++ = *cp++;
while (size-- > 0)
*x++ = 0;
} else
return mget(map, addr, (char*)x, size);
return 1;
}
int
put8(Map *map, ulong addr, vlong v)
{
if (!map) {
werrstr("put8: invalid map");
return -1;
}
v = machdata->swav(v);
return mput(map, addr, (char *)&v, 8);
}
int
put4(Map *map, ulong addr, long v)
{
if (!map) {
werrstr("put4: invalid map");
return -1;
}
v = machdata->swal(v);
return mput(map, addr, (char *)&v, 4);
}
int
put2(Map *map, ulong addr, ushort v)
{
if (!map) {
werrstr("put2: invalid map");
return -1;
}
v = machdata->swab(v);
return mput(map, addr, (char *)&v, 2);
}
int
put1(Map *map, ulong addr, uchar *v, int size)
{
if (!map) {
werrstr("put1: invalid map");
return -1;
}
return mput(map, addr, (char *)v, size);
}
static int
mget(Map *map, ulong addr, char *buf, int size)
{
long off;
int i, j, k;
struct segment *s;
s = reloc(map, addr, &off);
if (!s)
return -1;
if (s->fd < 0) {
werrstr("unreadable map");
return -1;
}
if (s->mget)
return s->mget(s, addr, off, buf, size);
seek(s->fd, off, 0);
for (i = j = 0; i < 2; i++) { /* in case read crosses page */
k = read(s->fd, buf, size-j);
if (k < 0) {
werrstr("can't read address %lux: %r", addr);
return -1;
}
j += k;
if (j == size)
return j;
}
werrstr("partial read at address %lux", addr);
return -1;
}
static int
mput(Map *map, ulong addr, char *buf, int size)
{
long off;
int i, j, k;
struct segment *s;
s = reloc(map, addr, &off);
if (!s)
return -1;
if (s->fd < 0) {
werrstr("unwritable map");
return -1;
}
if (s->mput)
return s->mput(s, addr, off, buf, size);
seek(s->fd, off, 0);
for (i = j = 0; i < 2; i++) { /* in case read crosses page */
k = write(s->fd, buf, size-j);
if (k < 0) {
werrstr("can't write address %lux: %r", addr);
return -1;
}
j += k;
if (j == size)
return j;
}
werrstr("partial write at address %lux", addr);
return -1;
}
/*
* convert address to file offset; returns nonzero if ok
*/
struct segment*
reloc(Map *map, ulong addr, long *offp)
{
int i;
for (i = 0; i < map->nsegs; i++) {
if (map->seg[i].inuse)
if (map->seg[i].b <= addr && addr < map->seg[i].e) {
*offp = addr + map->seg[i].f - map->seg[i].b;
return &map->seg[i];
}
}
werrstr("can't translate address %lux", addr);
return 0;
}
|