forked from xen-project/xen
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnetbsd.c
270 lines (227 loc) · 6.66 KB
/
netbsd.c
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/*
* Copyright (c) 2007-2008, D G Murray <[email protected]>
* Copyright (c) 2016-2017, Akshay Jaggi <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; If not, see <http://www.gnu.org/licenses/>.
*
* Split out from linux.c
*/
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <xenctrl.h>
#include <xen/xen.h>
#include <xen/xenio.h>
#include "private.h"
#define DEVXEN "/kern/xen/privcmd"
int osdep_gnttab_open(xengnttab_handle *xgt)
{
int fd = open(DEVXEN, O_RDWR | O_CLOEXEC);
if ( fd == -1 )
return -1;
xgt->fd = fd;
return 0;
}
int osdep_gnttab_close(xengnttab_handle *xgt)
{
if ( xgt->fd == -1 )
return 0;
return close(xgt->fd);
}
int osdep_gnttab_set_max_grants(xengnttab_handle *xgt, uint32_t count)
{
return 0;
}
void *osdep_gnttab_grant_map(xengnttab_handle *xgt,
uint32_t count, int flags, int prot,
uint32_t *domids, uint32_t *refs,
uint32_t notify_offset,
evtchn_port_t notify_port)
{
uint32_t i;
int fd = xgt->fd;
struct ioctl_gntdev_mmap_grant_ref map;
void *addr = NULL;
int domids_stride;
unsigned int refs_size = count * sizeof(struct ioctl_gntdev_grant_ref);
int rv;
domids_stride = !!(flags & XENGNTTAB_GRANT_MAP_SINGLE_DOMAIN);
map.refs = malloc(refs_size);
for ( i = 0; i < count; i++ )
{
map.refs[i].domid = domids[i * domids_stride];
map.refs[i].ref = refs[i];
}
map.count = count;
addr = mmap(NULL, count * XC_PAGE_SIZE,
prot, flags | MAP_ANON | MAP_SHARED, -1, 0);
if ( map.va == MAP_FAILED )
{
GTERROR(xgt->logger, "osdep_gnttab_grant_map: mmap failed");
munmap((void *)map.va, count * XC_PAGE_SIZE);
addr = MAP_FAILED;
}
map.va = addr;
map.notify.offset = 0;
map.notify.action = 0;
if ( notify_offset < XC_PAGE_SIZE * count )
{
map.notify.offset = notify_offset;
map.notify.action |= UNMAP_NOTIFY_CLEAR_BYTE;
}
if ( notify_port != -1 )
{
map.notify.event_channel_port = notify_port;
map.notify.action |= UNMAP_NOTIFY_SEND_EVENT;
}
rv = ioctl(fd, IOCTL_GNTDEV_MMAP_GRANT_REF, &map);
if ( rv )
{
GTERROR(xgt->logger,
"ioctl IOCTL_GNTDEV_MMAP_GRANT_REF failed: %d", rv);
munmap(addr, count * XC_PAGE_SIZE);
addr = MAP_FAILED;
}
free(map.refs);
return addr;
}
int osdep_gnttab_unmap(xengnttab_handle *xgt,
void *start_address,
uint32_t count)
{
int rc;
if ( start_address == NULL )
{
errno = EINVAL;
return -1;
}
/* Next, unmap the memory. */
rc = munmap(start_address, count * XC_PAGE_SIZE);
return rc;
}
int osdep_gnttab_grant_copy(xengnttab_handle *xgt,
uint32_t count,
xengnttab_grant_copy_segment_t *segs)
{
errno = ENOSYS;
return -1;
}
int osdep_gntshr_open(xengntshr_handle *xgs)
{
int fd = open(DEVXEN, O_RDWR);
if ( fd == -1 )
return -1;
xgs->fd = fd;
return 0;
}
int osdep_gntshr_close(xengntshr_handle *xgs)
{
if ( xgs->fd == -1 )
return 0;
return close(xgs->fd);
}
void *osdep_gntshr_share_pages(xengntshr_handle *xgs,
uint32_t domid, int count,
uint32_t *refs, int writable,
uint32_t notify_offset,
evtchn_port_t notify_port)
{
int err;
int fd = xgs->fd;
void *area = NULL;
struct ioctl_gntdev_alloc_grant_ref alloc;
alloc.gref_ids = malloc(count * sizeof(uint32_t));
if ( alloc.gref_ids == NULL )
return NULL;
alloc.domid = domid;
alloc.flags = writable ? GNTDEV_ALLOC_FLAG_WRITABLE : 0;
alloc.count = count;
area = mmap(NULL, count * XC_PAGE_SIZE,
PROT_READ | PROT_WRITE, MAP_ANON | MAP_SHARED, -1, 0);
if ( area == MAP_FAILED )
{
GTERROR(xgs->logger, "osdep_gnttab_grant_map: mmap failed");
area = MAP_FAILED;
goto out;
}
alloc.va = area;
alloc.notify.offset = 0;
alloc.notify.action = 0;
if ( notify_offset < XC_PAGE_SIZE * count )
{
alloc.notify.offset = notify_offset;
alloc.notify.action |= UNMAP_NOTIFY_CLEAR_BYTE;
}
if ( notify_port != -1 )
{
alloc.notify.event_channel_port = notify_port;
alloc.notify.action |= UNMAP_NOTIFY_SEND_EVENT;
}
err = ioctl(fd, IOCTL_GNTDEV_ALLOC_GRANT_REF, &alloc);
if ( err )
{
GSERROR(xgs->logger, "IOCTL_GNTDEV_ALLOC_GRANT_REF failed");
munmap(area, count * XC_PAGE_SIZE);
area = MAP_FAILED;
goto out;
}
memcpy(refs, alloc.gref_ids, count * sizeof(uint32_t));
out:
free(alloc.gref_ids);
return area;
}
int osdep_gntshr_unshare(xengntshr_handle *xgs,
void *start_address, uint32_t count)
{
return munmap(start_address, count * XC_PAGE_SIZE);
}
/*
* The functions below are Linux-isms that will likely never be implemented
* on NetBSD unless NetBSD also implements something akin to Linux dmabuf.
*/
int osdep_gnttab_dmabuf_exp_from_refs(xengnttab_handle *xgt, uint32_t domid,
uint32_t flags, uint32_t count,
const uint32_t *refs,
uint32_t *dmabuf_fd)
{
abort();
}
int osdep_gnttab_dmabuf_exp_wait_released(xengnttab_handle *xgt,
uint32_t fd, uint32_t wait_to_ms)
{
abort();
}
int osdep_gnttab_dmabuf_imp_to_refs(xengnttab_handle *xgt, uint32_t domid,
uint32_t fd, uint32_t count, uint32_t *refs)
{
abort();
}
int osdep_gnttab_dmabuf_imp_release(xengnttab_handle *xgt, uint32_t fd)
{
abort();
}
/*
* Local variables:
* mode: C
* c-file-style: "BSD"
* c-basic-offset: 4
* tab-width: 4
* indent-tabs-mode: nil
* End:
*/