emul.c revision 1.49 1 1.49 pooka /* $NetBSD: emul.c,v 1.49 2008/09/30 19:25:56 pooka Exp $ */
2 1.1 pooka
3 1.1 pooka /*
4 1.1 pooka * Copyright (c) 2007 Antti Kantee. All Rights Reserved.
5 1.1 pooka *
6 1.1 pooka * Development of this software was supported by Google Summer of Code.
7 1.1 pooka *
8 1.1 pooka * Redistribution and use in source and binary forms, with or without
9 1.1 pooka * modification, are permitted provided that the following conditions
10 1.1 pooka * are met:
11 1.1 pooka * 1. Redistributions of source code must retain the above copyright
12 1.1 pooka * notice, this list of conditions and the following disclaimer.
13 1.1 pooka * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 pooka * notice, this list of conditions and the following disclaimer in the
15 1.1 pooka * documentation and/or other materials provided with the distribution.
16 1.1 pooka *
17 1.1 pooka * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
18 1.1 pooka * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 1.1 pooka * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 1.1 pooka * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 1.1 pooka * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 1.1 pooka * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23 1.1 pooka * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 1.1 pooka * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 1.1 pooka * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 1.1 pooka * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 1.1 pooka * SUCH DAMAGE.
28 1.1 pooka */
29 1.1 pooka
30 1.9 pooka #define malloc(a,b,c) __wrap_malloc(a,b,c)
31 1.9 pooka
32 1.1 pooka #include <sys/param.h>
33 1.1 pooka #include <sys/malloc.h>
34 1.1 pooka #include <sys/null.h>
35 1.1 pooka #include <sys/vnode.h>
36 1.1 pooka #include <sys/stat.h>
37 1.35 martin #include <sys/select.h>
38 1.1 pooka #include <sys/syslog.h>
39 1.1 pooka #include <sys/namei.h>
40 1.1 pooka #include <sys/kauth.h>
41 1.1 pooka #include <sys/conf.h>
42 1.1 pooka #include <sys/device.h>
43 1.1 pooka #include <sys/queue.h>
44 1.20 pooka #include <sys/file.h>
45 1.1 pooka #include <sys/filedesc.h>
46 1.5 pooka #include <sys/kthread.h>
47 1.15 ad #include <sys/cpu.h>
48 1.17 pooka #include <sys/kmem.h>
49 1.20 pooka #include <sys/poll.h>
50 1.1 pooka
51 1.1 pooka #include <machine/stdarg.h>
52 1.1 pooka
53 1.44 pooka #include <rump/rumpuser.h>
54 1.44 pooka
55 1.8 pooka #include <uvm/uvm_map.h>
56 1.8 pooka
57 1.10 pooka #include "rump_private.h"
58 1.1 pooka
59 1.1 pooka time_t time_second = 1;
60 1.1 pooka
61 1.38 ad kmutex_t *proc_lock;
62 1.1 pooka struct lwp lwp0;
63 1.1 pooka struct vnode *rootvp;
64 1.1 pooka struct device *root_device;
65 1.5 pooka dev_t rootdev;
66 1.25 pooka int physmem = 256*256; /* 256 * 1024*1024 / 4k, PAGE_SIZE not always set */
67 1.16 pooka int doing_shutdown;
68 1.17 pooka int ncpu = 1;
69 1.19 pooka const int schedppq = 1;
70 1.28 ad int hardclock_ticks;
71 1.1 pooka
72 1.1 pooka char hostname[MAXHOSTNAMELEN];
73 1.1 pooka size_t hostnamelen;
74 1.1 pooka
75 1.5 pooka u_long bufmem_valimit;
76 1.5 pooka u_long bufmem_hiwater;
77 1.5 pooka u_long bufmem_lowater;
78 1.5 pooka u_long bufmem;
79 1.5 pooka u_int nbuf;
80 1.5 pooka
81 1.6 pooka const char *panicstr;
82 1.26 pooka const char ostype[] = "NetBSD";
83 1.26 pooka const char osrelease[] = "999"; /* paradroid 4evah */
84 1.26 pooka const char kernel_ident[] = "RUMP-ROAST";
85 1.26 pooka const char *domainname;
86 1.26 pooka int domainnamelen;
87 1.6 pooka
88 1.20 pooka const struct filterops seltrue_filtops;
89 1.20 pooka
90 1.1 pooka void
91 1.1 pooka panic(const char *fmt, ...)
92 1.1 pooka {
93 1.1 pooka va_list ap;
94 1.1 pooka
95 1.1 pooka va_start(ap, fmt);
96 1.21 pooka printf("panic: ");
97 1.1 pooka vprintf(fmt, ap);
98 1.1 pooka va_end(ap);
99 1.1 pooka printf("\n");
100 1.1 pooka abort();
101 1.1 pooka }
102 1.1 pooka
103 1.1 pooka void
104 1.1 pooka log(int level, const char *fmt, ...)
105 1.1 pooka {
106 1.1 pooka va_list ap;
107 1.1 pooka
108 1.1 pooka va_start(ap, fmt);
109 1.1 pooka vprintf(fmt, ap);
110 1.1 pooka va_end(ap);
111 1.1 pooka }
112 1.1 pooka
113 1.1 pooka void
114 1.42 pooka vlog(int level, const char *fmt, va_list ap)
115 1.42 pooka {
116 1.42 pooka
117 1.42 pooka vprintf(fmt, ap);
118 1.42 pooka }
119 1.42 pooka
120 1.42 pooka void
121 1.1 pooka uprintf(const char *fmt, ...)
122 1.1 pooka {
123 1.1 pooka va_list ap;
124 1.1 pooka
125 1.1 pooka va_start(ap, fmt);
126 1.1 pooka vprintf(fmt, ap);
127 1.1 pooka va_end(ap);
128 1.1 pooka }
129 1.1 pooka
130 1.16 pooka void
131 1.16 pooka printf_nolog(const char *fmt, ...)
132 1.16 pooka {
133 1.16 pooka va_list ap;
134 1.16 pooka
135 1.16 pooka va_start(ap, fmt);
136 1.16 pooka vprintf(fmt, ap);
137 1.16 pooka va_end(ap);
138 1.16 pooka }
139 1.16 pooka
140 1.27 pooka void
141 1.27 pooka aprint_normal(const char *fmt, ...)
142 1.27 pooka {
143 1.27 pooka va_list ap;
144 1.27 pooka
145 1.27 pooka va_start(ap, fmt);
146 1.27 pooka vprintf(fmt, ap);
147 1.27 pooka va_end(ap);
148 1.27 pooka }
149 1.27 pooka
150 1.1 pooka int
151 1.1 pooka copyin(const void *uaddr, void *kaddr, size_t len)
152 1.1 pooka {
153 1.1 pooka
154 1.1 pooka memcpy(kaddr, uaddr, len);
155 1.1 pooka return 0;
156 1.1 pooka }
157 1.1 pooka
158 1.1 pooka int
159 1.1 pooka copyout(const void *kaddr, void *uaddr, size_t len)
160 1.1 pooka {
161 1.1 pooka
162 1.1 pooka memcpy(uaddr, kaddr, len);
163 1.1 pooka return 0;
164 1.1 pooka }
165 1.1 pooka
166 1.1 pooka int
167 1.1 pooka copystr(const void *kfaddr, void *kdaddr, size_t len, size_t *done)
168 1.1 pooka {
169 1.1 pooka
170 1.1 pooka return copyinstr(kfaddr, kdaddr, len, done);
171 1.1 pooka }
172 1.1 pooka
173 1.1 pooka int
174 1.1 pooka copyinstr(const void *uaddr, void *kaddr, size_t len, size_t *done)
175 1.1 pooka {
176 1.1 pooka
177 1.1 pooka strlcpy(kaddr, uaddr, len);
178 1.31 pooka if (done)
179 1.31 pooka *done = strlen(kaddr)+1; /* includes termination */
180 1.1 pooka return 0;
181 1.1 pooka }
182 1.1 pooka
183 1.1 pooka int
184 1.45 pooka kcopy(const void *src, void *dst, size_t len)
185 1.45 pooka {
186 1.45 pooka
187 1.45 pooka memcpy(dst, src, len);
188 1.45 pooka return 0;
189 1.45 pooka }
190 1.45 pooka
191 1.45 pooka int
192 1.1 pooka uiomove(void *buf, size_t n, struct uio *uio)
193 1.1 pooka {
194 1.1 pooka struct iovec *iov;
195 1.1 pooka uint8_t *b = buf;
196 1.1 pooka size_t cnt;
197 1.17 pooka int rv;
198 1.1 pooka
199 1.1 pooka if (uio->uio_vmspace != UIO_VMSPACE_SYS)
200 1.1 pooka panic("%s: vmspace != UIO_VMSPACE_SYS", __func__);
201 1.1 pooka
202 1.17 pooka /*
203 1.17 pooka * See if rump ubc code claims the offset. This is of course
204 1.17 pooka * a blatant violation of abstraction levels, but let's keep
205 1.17 pooka * me simple & stupid for now.
206 1.17 pooka */
207 1.18 pooka if (rump_ubc_magic_uiomove(buf, n, uio, &rv, NULL))
208 1.17 pooka return rv;
209 1.1 pooka
210 1.1 pooka while (n && uio->uio_resid) {
211 1.1 pooka iov = uio->uio_iov;
212 1.1 pooka cnt = iov->iov_len;
213 1.1 pooka if (cnt == 0) {
214 1.1 pooka uio->uio_iov++;
215 1.1 pooka uio->uio_iovcnt--;
216 1.1 pooka continue;
217 1.1 pooka }
218 1.1 pooka if (cnt > n)
219 1.1 pooka cnt = n;
220 1.1 pooka
221 1.1 pooka if (uio->uio_rw == UIO_READ)
222 1.1 pooka memcpy(iov->iov_base, b, cnt);
223 1.1 pooka else
224 1.1 pooka memcpy(b, iov->iov_base, cnt);
225 1.1 pooka
226 1.1 pooka iov->iov_base = (uint8_t *)iov->iov_base + cnt;
227 1.1 pooka iov->iov_len -= cnt;
228 1.1 pooka b += cnt;
229 1.1 pooka uio->uio_resid -= cnt;
230 1.1 pooka uio->uio_offset += cnt;
231 1.1 pooka n -= cnt;
232 1.1 pooka }
233 1.1 pooka
234 1.1 pooka return 0;
235 1.1 pooka }
236 1.1 pooka
237 1.1 pooka void
238 1.1 pooka uio_setup_sysspace(struct uio *uio)
239 1.1 pooka {
240 1.1 pooka
241 1.1 pooka uio->uio_vmspace = UIO_VMSPACE_SYS;
242 1.1 pooka }
243 1.1 pooka
244 1.1 pooka const struct bdevsw *
245 1.1 pooka bdevsw_lookup(dev_t dev)
246 1.1 pooka {
247 1.1 pooka
248 1.1 pooka return (const struct bdevsw *)1;
249 1.1 pooka }
250 1.1 pooka
251 1.1 pooka devclass_t
252 1.1 pooka device_class(device_t dev)
253 1.1 pooka {
254 1.1 pooka
255 1.1 pooka if (dev != root_device)
256 1.1 pooka panic("%s: dev != root_device not supported", __func__);
257 1.1 pooka
258 1.1 pooka return DV_DISK;
259 1.1 pooka }
260 1.1 pooka
261 1.1 pooka void
262 1.1 pooka getmicrouptime(struct timeval *tvp)
263 1.1 pooka {
264 1.12 pooka int error;
265 1.1 pooka
266 1.12 pooka rumpuser_gettimeofday(tvp, &error);
267 1.1 pooka }
268 1.1 pooka
269 1.5 pooka void
270 1.1 pooka malloc_type_attach(struct malloc_type *type)
271 1.1 pooka {
272 1.1 pooka
273 1.1 pooka return;
274 1.1 pooka }
275 1.1 pooka
276 1.1 pooka void
277 1.1 pooka malloc_type_detach(struct malloc_type *type)
278 1.1 pooka {
279 1.1 pooka
280 1.1 pooka return;
281 1.1 pooka }
282 1.1 pooka
283 1.9 pooka void *
284 1.9 pooka __wrap_malloc(unsigned long size, struct malloc_type *type, int flags)
285 1.9 pooka {
286 1.9 pooka void *rv;
287 1.9 pooka
288 1.16 pooka rv = rumpuser_malloc(size, (flags & (M_CANFAIL | M_NOWAIT)) != 0);
289 1.9 pooka if (rv && flags & M_ZERO)
290 1.9 pooka memset(rv, 0, size);
291 1.9 pooka
292 1.9 pooka return rv;
293 1.9 pooka }
294 1.9 pooka
295 1.1 pooka void
296 1.1 pooka nanotime(struct timespec *ts)
297 1.1 pooka {
298 1.1 pooka struct timeval tv;
299 1.12 pooka int error;
300 1.1 pooka
301 1.12 pooka rumpuser_gettimeofday(&tv, &error);
302 1.1 pooka TIMEVAL_TO_TIMESPEC(&tv, ts);
303 1.1 pooka }
304 1.1 pooka
305 1.1 pooka /* hooray for mick, so what if I do */
306 1.1 pooka void
307 1.1 pooka getnanotime(struct timespec *ts)
308 1.1 pooka {
309 1.1 pooka
310 1.1 pooka nanotime(ts);
311 1.1 pooka }
312 1.1 pooka
313 1.1 pooka void
314 1.2 pooka microtime(struct timeval *tv)
315 1.2 pooka {
316 1.12 pooka int error;
317 1.2 pooka
318 1.12 pooka rumpuser_gettimeofday(tv, &error);
319 1.2 pooka }
320 1.2 pooka
321 1.2 pooka void
322 1.5 pooka getmicrotime(struct timeval *tv)
323 1.5 pooka {
324 1.12 pooka int error;
325 1.5 pooka
326 1.12 pooka rumpuser_gettimeofday(tv, &error);
327 1.5 pooka }
328 1.5 pooka
329 1.5 pooka void
330 1.1 pooka bdev_strategy(struct buf *bp)
331 1.1 pooka {
332 1.1 pooka
333 1.1 pooka panic("%s: not supported", __func__);
334 1.1 pooka }
335 1.5 pooka
336 1.8 pooka int
337 1.8 pooka bdev_type(dev_t dev)
338 1.5 pooka {
339 1.5 pooka
340 1.8 pooka return D_DISK;
341 1.5 pooka }
342 1.5 pooka
343 1.17 pooka struct kthdesc {
344 1.17 pooka void (*f)(void *);
345 1.17 pooka void *arg;
346 1.17 pooka struct lwp *mylwp;
347 1.17 pooka };
348 1.17 pooka
349 1.17 pooka static lwpid_t curlid = 2;
350 1.17 pooka
351 1.17 pooka static void *
352 1.17 pooka threadbouncer(void *arg)
353 1.17 pooka {
354 1.17 pooka struct kthdesc *k = arg;
355 1.17 pooka void (*f)(void *);
356 1.17 pooka void *thrarg;
357 1.17 pooka
358 1.17 pooka f = k->f;
359 1.17 pooka thrarg = k->arg;
360 1.17 pooka rumpuser_set_curlwp(k->mylwp);
361 1.17 pooka kmem_free(k, sizeof(struct kthdesc));
362 1.17 pooka
363 1.17 pooka f(thrarg);
364 1.17 pooka panic("unreachable, should kthread_exit()");
365 1.17 pooka }
366 1.17 pooka
367 1.5 pooka int
368 1.5 pooka kthread_create(pri_t pri, int flags, struct cpu_info *ci,
369 1.5 pooka void (*func)(void *), void *arg, lwp_t **newlp, const char *fmt, ...)
370 1.5 pooka {
371 1.17 pooka struct kthdesc *k;
372 1.17 pooka struct lwp *l;
373 1.17 pooka int rv;
374 1.17 pooka
375 1.47 pooka if (!rump_threads) {
376 1.47 pooka /* fake them */
377 1.47 pooka if (strcmp(fmt, "vrele") == 0) {
378 1.47 pooka printf("rump warning: threads not enabled, not starting"
379 1.47 pooka " vrele thread\n");
380 1.47 pooka return 0;
381 1.47 pooka } else if (strcmp(fmt, "cachegc") == 0) {
382 1.47 pooka printf("rump warning: threads not enabled, not starting"
383 1.47 pooka " namecache g/c thread\n");
384 1.47 pooka return 0;
385 1.47 pooka } else
386 1.47 pooka panic("threads not available, setenv RUMP_THREADS 1");
387 1.47 pooka }
388 1.23 pooka
389 1.17 pooka KASSERT(fmt != NULL);
390 1.17 pooka if (ci != NULL)
391 1.17 pooka panic("%s: bounded threads not supported", __func__);
392 1.17 pooka
393 1.17 pooka k = kmem_alloc(sizeof(struct kthdesc), KM_SLEEP);
394 1.17 pooka k->f = func;
395 1.17 pooka k->arg = arg;
396 1.17 pooka k->mylwp = l = rump_setup_curlwp(0, curlid++, 0);
397 1.17 pooka rv = rumpuser_thread_create(threadbouncer, k);
398 1.17 pooka if (rv)
399 1.17 pooka return rv;
400 1.5 pooka
401 1.17 pooka if (newlp)
402 1.17 pooka *newlp = l;
403 1.5 pooka return 0;
404 1.5 pooka }
405 1.5 pooka
406 1.5 pooka void
407 1.17 pooka kthread_exit(int ecode)
408 1.5 pooka {
409 1.5 pooka
410 1.17 pooka rumpuser_thread_exit();
411 1.5 pooka }
412 1.11 pooka
413 1.11 pooka void
414 1.11 pooka callout_init(callout_t *c, u_int flags)
415 1.11 pooka {
416 1.11 pooka
417 1.17 pooka panic("%s: not implemented", __func__);
418 1.11 pooka }
419 1.11 pooka
420 1.11 pooka void
421 1.11 pooka callout_reset(callout_t *c, int ticks, void (*func)(void *), void *arg)
422 1.11 pooka {
423 1.11 pooka
424 1.11 pooka panic("%s: not implemented", __func__);
425 1.11 pooka }
426 1.11 pooka
427 1.11 pooka bool
428 1.11 pooka callout_stop(callout_t *c)
429 1.11 pooka {
430 1.11 pooka
431 1.11 pooka panic("%s: not implemented", __func__);
432 1.11 pooka }
433 1.20 pooka
434 1.46 pooka void
435 1.46 pooka callout_schedule(callout_t *c, int ticks)
436 1.46 pooka {
437 1.46 pooka
438 1.46 pooka panic("%s: not implemented", __func__);
439 1.46 pooka }
440 1.46 pooka
441 1.46 pooka void
442 1.46 pooka callout_setfunc(callout_t *c, void (*func)(void *), void *arg)
443 1.46 pooka {
444 1.46 pooka
445 1.46 pooka panic("%s: not implemented", __func__);
446 1.46 pooka }
447 1.46 pooka
448 1.20 pooka struct proc *
449 1.20 pooka p_find(pid_t pid, uint flags)
450 1.20 pooka {
451 1.20 pooka
452 1.20 pooka panic("%s: not implemented", __func__);
453 1.20 pooka }
454 1.20 pooka
455 1.20 pooka struct pgrp *
456 1.20 pooka pg_find(pid_t pid, uint flags)
457 1.20 pooka {
458 1.20 pooka
459 1.20 pooka panic("%s: not implemented", __func__);
460 1.20 pooka }
461 1.20 pooka
462 1.20 pooka void
463 1.20 pooka kpsignal(struct proc *p, ksiginfo_t *ksi, void *data)
464 1.20 pooka {
465 1.20 pooka
466 1.20 pooka panic("%s: not implemented", __func__);
467 1.20 pooka }
468 1.20 pooka
469 1.20 pooka void
470 1.20 pooka kpgsignal(struct pgrp *pgrp, ksiginfo_t *ksi, void *data, int checkctty)
471 1.20 pooka {
472 1.20 pooka
473 1.20 pooka panic("%s: not implemented", __func__);
474 1.20 pooka }
475 1.20 pooka
476 1.20 pooka int
477 1.20 pooka pgid_in_session(struct proc *p, pid_t pg_id)
478 1.20 pooka {
479 1.20 pooka
480 1.20 pooka panic("%s: not implemented", __func__);
481 1.20 pooka }
482 1.20 pooka
483 1.20 pooka int
484 1.20 pooka sigispending(struct lwp *l, int signo)
485 1.20 pooka {
486 1.20 pooka
487 1.20 pooka return 0;
488 1.20 pooka }
489 1.20 pooka
490 1.20 pooka void
491 1.33 ad knote_fdclose(int fd)
492 1.20 pooka {
493 1.20 pooka
494 1.20 pooka /* since we don't add knotes, we don't have to remove them */
495 1.20 pooka }
496 1.20 pooka
497 1.20 pooka int
498 1.20 pooka seltrue_kqfilter(dev_t dev, struct knote *kn)
499 1.20 pooka {
500 1.20 pooka
501 1.20 pooka panic("%s: not implemented", __func__);
502 1.20 pooka }
503 1.20 pooka
504 1.20 pooka int
505 1.20 pooka kpause(const char *wmesg, bool intr, int timeo, kmutex_t *mtx)
506 1.20 pooka {
507 1.20 pooka extern int hz;
508 1.20 pooka int rv, error;
509 1.40 pooka struct timespec time;
510 1.40 pooka
511 1.20 pooka if (mtx)
512 1.20 pooka mutex_exit(mtx);
513 1.40 pooka
514 1.40 pooka time.tv_sec = timeo / hz;
515 1.40 pooka time.tv_nsec = (timeo % hz) * (1000000000 / hz);
516 1.40 pooka
517 1.40 pooka rv = rumpuser_nanosleep(&time, NULL, &error);
518 1.40 pooka
519 1.20 pooka if (mtx)
520 1.20 pooka mutex_enter(mtx);
521 1.20 pooka
522 1.20 pooka if (rv)
523 1.20 pooka return error;
524 1.20 pooka
525 1.20 pooka return 0;
526 1.20 pooka }
527 1.27 pooka
528 1.27 pooka void
529 1.27 pooka suspendsched()
530 1.27 pooka {
531 1.27 pooka
532 1.27 pooka panic("%s: not implemented", __func__);
533 1.27 pooka }
534 1.29 ad
535 1.29 ad void
536 1.29 ad yield(void)
537 1.29 ad {
538 1.29 ad
539 1.29 ad rumpuser_yield();
540 1.29 ad }
541 1.32 bjs
542 1.32 bjs
543 1.32 bjs u_int
544 1.32 bjs lwp_unsleep(lwp_t *l, bool cleanup)
545 1.32 bjs {
546 1.32 bjs
547 1.32 bjs KASSERT(mutex_owned(l->l_mutex));
548 1.32 bjs
549 1.32 bjs return (*l->l_syncobj->sobj_unsleep)(l, cleanup);
550 1.32 bjs }
551 1.34 yamt
552 1.34 yamt vaddr_t
553 1.36 yamt calc_cache_size(struct vm_map *map, int pct, int va_pct)
554 1.34 yamt {
555 1.34 yamt paddr_t t;
556 1.34 yamt
557 1.34 yamt t = (paddr_t)physmem * pct / 100 * PAGE_SIZE;
558 1.34 yamt if ((vaddr_t)t != t) {
559 1.34 yamt panic("%s: needs tweak", __func__);
560 1.34 yamt }
561 1.34 yamt return t;
562 1.34 yamt }
563 1.35 martin
564 1.35 martin int
565 1.35 martin seltrue(dev_t dev, int events, struct lwp *l)
566 1.35 martin {
567 1.35 martin return (events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM));
568 1.35 martin }
569 1.35 martin
570 1.35 martin void
571 1.35 martin selrecord(lwp_t *selector, struct selinfo *sip)
572 1.35 martin {
573 1.35 martin }
574 1.35 martin
575 1.35 martin void
576 1.35 martin selinit(struct selinfo *sip)
577 1.35 martin {
578 1.35 martin }
579 1.35 martin
580 1.35 martin void
581 1.35 martin selnotify(struct selinfo *sip, int events, long knhint)
582 1.35 martin {
583 1.35 martin }
584 1.35 martin
585 1.35 martin void
586 1.35 martin seldestroy(struct selinfo *sip)
587 1.35 martin {
588 1.35 martin }
589 1.37 matt
590 1.37 matt const char *
591 1.37 matt device_xname(device_t dv)
592 1.37 matt {
593 1.37 matt return "bogus0";
594 1.37 matt }
595 1.41 pooka
596 1.41 pooka void
597 1.41 pooka assert_sleepable(void)
598 1.41 pooka {
599 1.41 pooka
600 1.41 pooka /* always sleepable, although we should improve this */
601 1.41 pooka }
602 1.43 pooka
603 1.43 pooka int
604 1.43 pooka devsw_attach(const char *devname, const struct bdevsw *bdev, int *bmajor,
605 1.43 pooka const struct cdevsw *cdev, int *cmajor)
606 1.43 pooka {
607 1.43 pooka
608 1.43 pooka panic("%s: not implemented", __func__);
609 1.43 pooka }
610 1.43 pooka
611 1.43 pooka int
612 1.43 pooka devsw_detach(const struct bdevsw *bdev, const struct cdevsw *cdev)
613 1.43 pooka {
614 1.43 pooka
615 1.43 pooka panic("%s: not implemented", __func__);
616 1.43 pooka }
617 1.49 pooka
618 1.49 pooka void
619 1.49 pooka proc_crmod_enter()
620 1.49 pooka {
621 1.49 pooka
622 1.49 pooka panic("%s: not implemented", __func__);
623 1.49 pooka }
624 1.49 pooka
625 1.49 pooka void
626 1.49 pooka proc_crmod_leave(kauth_cred_t c1, kauth_cred_t c2, bool sugid)
627 1.49 pooka {
628 1.49 pooka
629 1.49 pooka panic("%s: not implemented", __func__);
630 1.49 pooka }
631