-
-
Notifications
You must be signed in to change notification settings - Fork 605
/
runtime.cc
687 lines (605 loc) · 15.6 KB
/
runtime.cc
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
/*
* Copyright (C) 2013 Cloudius Systems, Ltd.
*
* This work is open source software, licensed under the terms of the
* BSD license as described in the LICENSE file in the top-level directory.
*/
#include <osv/drivers_config.h>
#include <osv/sched.hh>
#include <osv/elf.hh>
#include <stdlib.h>
#include <cstring>
#include <string.h>
#include <exception>
#include <sys/mman.h>
#include <unistd.h>
#include <link.h>
#include <stdio.h>
#include <sys/poll.h>
#include <sys/ioctl.h>
#include <errno.h>
#include <sys/uio.h>
#include <wchar.h>
#include <locale.h>
#include <libintl.h>
#include <ctype.h>
#include <wctype.h>
#include <langinfo.h>
#include <stdarg.h>
#include <xlocale.h>
#include <cassert>
#include <sys/sysinfo.h>
#include "processor.hh"
#include <osv/debug.hh>
#include <osv/mempool.hh>
#include <osv/export.h>
#include <pwd.h>
#include <fcntl.h>
#include <osv/barrier.hh>
#include "smp.hh"
#include "bsd/sys/sys/sysctl.h"
#include <osv/power.hh>
#include <sys/time.h>
#include <osv/mmu.hh>
#include "libc/libc.hh"
#include <api/sys/times.h>
#include <map>
#include <boost/range/adaptor/reversed.hpp>
#include <osv/align.hh>
#include <osv/stubbing.hh>
#if CONF_drivers_acpi
#include "drivers/pvpanic.hh"
#endif
#include <api/sys/resource.h>
#include <api/math.h>
#include <osv/shutdown.hh>
#include <osv/execinfo.hh>
#include <osv/demangle.hh>
#include <processor.hh>
#include <grp.h>
#include <unordered_map>
#include <api/sys/prctl.h>
#include <sys/wait.h>
#include <pty.h>
#include <osv/pid.h>
#include <osv/kernel_config_lazy_stack.h>
#include <osv/kernel_config_lazy_stack_invariant.h>
// cxxabi.h from gcc 10 and earlier used to say that __cxa_finalize returns
// an int, while it should return void (and does so on gcc 11). To allow us
// to define __cxa_finalize with neither gcc 10 or 11 complaining, we need
// to hide the declaration in the header file
#define __cxa_finalize __cxa_finalize_ignore
#include <cxxabi.h>
#undef __cxa_finalize
#define __LC_LAST 13
void *__dso_handle;
static void print_backtrace(void)
{
void *addrs[128];
int len;
debug_ll("\n[backtrace]\n");
len = backtrace_safe(addrs, 128);
/* Start with i=1 to skip abort(const char *) */
for (int i = 1; i < len; i++) {
char name[1024];
void *addr = addrs[i] - INSTR_SIZE_MIN;
osv::lookup_name_demangled(addr, name, sizeof(name));
if (strncmp(name, "abort+", 6) == 0) {
// Skip abort() (which called abort(const char*) already skipped
continue;
}
debug_ll("0x%016lx <%s>\n", addr, name);
}
}
static std::atomic<bool> aborting { false };
void abort()
{
abort("Aborted\n");
}
void abort(const char *fmt, ...)
{
bool expected = false;
if (!aborting.compare_exchange_strong(expected, true)) {
do {} while (true);
}
#if CONF_lazy_stack
sched::ensure_next_stack_page_if_preemptable();
#endif
arch::irq_disable();
static char msg[1024];
va_list ap;
va_start(ap, fmt);
vsnprintf(msg, sizeof(msg), fmt, ap);
va_end(ap);
debug_early(msg);
// backtrace requires threads to be available, and also
// ELF s_program to be initialized.
if (sched::thread::current() && elf::get_program() != nullptr) {
print_backtrace();
} else {
debug_early("Halting.\n");
}
#ifndef AARCH64_PORT_STUB
#if CONF_drivers_acpi
panic::pvpanic::panicked();
#endif
#endif /* !AARCH64_PORT_STUB */
if (opt_power_off_on_abort) {
osv::poweroff();
} else {
osv::halt();
}
}
// __assert_fail() is used by the assert() macros
OSV_LIBC_API
void __assert_fail(const char *expr, const char *file, unsigned int line, const char *func)
{
abort("Assertion failed: %s (%s: %s: %d)\n", expr, file, func, line);
}
// __cxa_atexit and __cxa_finalize:
// Gcc implements static constructors and destructors in shared-objects (DSO)
// in the following way: Static constructors are added to a list DT_INIT_ARRAY
// in the object, and we run these functions after loading the object. Gcc's
// code for each constructor calls a function __cxxabiv1::__cxa_atexit (which
// we need to implement here) to register a destructor, linked to this DSO.
// Gcc also adds a single finalization function to DT_FINI_ARRAY (which we
// call when unloading the DSO), which calls __cxxabiv1::__cxa_finalize
// (which we need to implement here) - this function is supposed to call all
// the destructors previously registered for the given DSO.
//
// This implementation is greatly simplified by the assumption that the kernel
// never exits, so our code doesn't need to work during early initialization,
// nor does __cxa_finalize(0) need to work.
typedef void (*destructor_t)(void *);
static std::map<void *, std::vector<std::pair<destructor_t,void*>>> destructors;
static mutex destructors_mutex;
namespace __cxxabiv1 {
int __cxa_atexit(destructor_t destructor, void *arg, void *dso)
{
// As explained above, don't remember the kernel's own destructors.
if (dso == &__dso_handle)
return 0;
SCOPE_LOCK(destructors_mutex);
destructors[dso].push_back(std::make_pair(destructor, arg));
return 0;
}
void __cxa_finalize(void *dso)
{
if (!dso || dso == &__dso_handle) {
debug("__cxa_finalize() running kernel's destructors not supported\n");
return;
}
std::vector<std::pair<destructor_t,void*>> my_destructors;
WITH_LOCK(destructors_mutex) {
my_destructors = std::move(destructors[dso]);
destructors.erase(dso);
}
for (auto d : boost::adaptors::reverse(my_destructors)) {
d.first(d.second);
}
return;
}
}
OSV_LIBC_API
int getpagesize()
{
return 4096;
}
OSV_LIBC_API
int vfork()
{
WARN_STUBBED();
return -1;
}
OSV_LIBC_API
int fork()
{
WARN_STUBBED();
return -1;
}
OSV_LIBC_API
pid_t setsid(void)
{
WARN_STUBBED();
return -1;
}
NO_SYS(OSV_LIBC_API int execvp(const char *, char *const []));
OSV_LIBC_API
int mlockall(int flags)
{
WARN_STUBBED();
return 0;
}
OSV_LIBC_API
int munlockall(void)
{
WARN_STUBBED();
return 0;
}
OSV_LIBC_API
int mlock(const void*, size_t)
{
WARN_STUBBED();
return 0;
}
OSV_LIBC_API
int munlock(const void*, size_t)
{
WARN_STUBBED();
return 0;
}
NO_SYS(OSV_LIBC_API int mkfifo(const char*, mode_t));
NO_SYS(OSV_LIBC_API int mkfifoat(int, const char *, mode_t));
OSV_LIBC_API
int posix_fadvise(int fd, off_t offset, off_t len, int advice)
{
switch (advice) {
case POSIX_FADV_NORMAL:
case POSIX_FADV_SEQUENTIAL:
case POSIX_FADV_RANDOM:
case POSIX_FADV_NOREUSE:
case POSIX_FADV_WILLNEED:
case POSIX_FADV_DONTNEED:
return 0;
default:
return EINVAL;
}
}
LFS64(posix_fadvise) __attribute__((nothrow));
OSV_LIBC_API
int posix_fallocate(int fd, off_t offset, off_t len)
{
return ENOSYS;
}
LFS64(posix_fallocate) __attribute__((nothrow));
OSV_LIBC_API
int getpid()
{
return OSV_PID;
}
// WCTDEF(alnum), WCTDEF(alpha), WCTDEF(blank), WCTDEF(cntrl),
// WCTDEF(digit), WCTDEF(graph), WCTDEF(lower), WCTDEF(print),
// WCTDEF(punct), WCTDEF(space), WCTDEF(upper), WCTDEF(xdigit),
#include "ctype-data.h"
static struct __locale_struct c_locale = {
{ }, // __locales_data
c_locale_array + 128, // __ctype_b
c_tolower_array + 128, // __ctype_tolower
c_toupper_array + 128, // __ctype_toupper
{ }, // __names
};
locale_t __c_locale_ptr = &c_locale;
OSV_LIBC_API
void* __stack_chk_guard = reinterpret_cast<void*>(0x12345678abcdefull);
extern "C" OSV_LIBC_API
void __stack_chk_fail(void) {
abort("__stack_chk_fail(): Stack overflow detected. Aborting.\n");
}
namespace {
bool all_categories(int category_mask)
{
return (category_mask | (1 << LC_ALL)) == (1 << __LC_LAST) - 1;
}
}
struct __locale_data {
const void *values[0];
};
#define _NL_ITEM(category, index) (((category) << 16) | (index))
#define _NL_ITEM_CATEGORY(item) ((int) (item) >> 16)
#define _NL_ITEM_INDEX(item) ((int) (item) & 0xffff)
#define _NL_CTYPE_CLASS 0
#define _NL_CTYPE_TOUPPER 1
#define _NL_CTYPE_TOLOWER 3
extern "C" OSV_LIBC_API
__locale_t __newlocale(int category_mask, const char *locale, locale_t base)
__THROW
{
if (category_mask == 1 << LC_ALL) {
category_mask = ((1 << __LC_LAST) - 1) & ~(1 << LC_ALL);
}
assert(locale);
if (base == &c_locale) {
base = NULL;
}
if ((base == NULL || all_categories(category_mask))
&& (category_mask == 0 || strcmp(locale, "C") == 0)) {
return &c_locale;
}
struct __locale_struct result = base ? *base : c_locale;
if (category_mask == 0) {
auto result_ptr = new __locale_struct;
*result_ptr = result;
auto ctypes = result_ptr->__locales[LC_CTYPE]->values;
result_ptr->__ctype_b = (const unsigned short *)
ctypes[_NL_ITEM_INDEX(_NL_CTYPE_CLASS)] + 128;
result_ptr->__ctype_tolower = (const int *)
ctypes[_NL_ITEM_INDEX(_NL_CTYPE_TOLOWER)] + 128;
result_ptr->__ctype_toupper = (const int *)
ctypes[_NL_ITEM_INDEX(_NL_CTYPE_TOUPPER)] + 128;
return result_ptr;
}
errno = ENOENT;
return nullptr;
}
OSV_LIBC_API
long sysconf(int name)
{
switch (name) {
case _SC_CLK_TCK: return CLOCKS_PER_SEC;
case _SC_PAGESIZE: return mmu::page_size;
case _SC_THREAD_STACK_MIN: return 16384;
case _SC_LINE_MAX: return 2048;
case _SC_THREAD_PROCESS_SHARED: return true;
case _SC_NPROCESSORS_ONLN: return sched::cpus.size();
case _SC_NPROCESSORS_CONF: return sched::cpus.size();
case _SC_PHYS_PAGES: return memory::phys_mem_size / memory::page_size;
case _SC_AVPHYS_PAGES: return memory::stats::free() / memory::page_size;
case _SC_GETPW_R_SIZE_MAX: return 1024;
case _SC_IOV_MAX: return KERN_IOV_MAX;
case _SC_THREAD_SAFE_FUNCTIONS: return 1;
case _SC_GETGR_R_SIZE_MAX: return 1;
case _SC_OPEN_MAX: return FDMAX;
case _SC_MINSIGSTKSZ: return MINSIGSTKSZ;
case _SC_SIGSTKSZ: return SIGSTKSZ;
default:
debugf("sysconf(): stubbed for parameter %ld\n", name);
errno = EINVAL;
return -1;
}
}
OSV_LIBC_API
long pathconf(const char *, int name)
{
return fpathconf(-1, name);
}
OSV_LIBC_API
long fpathconf(int, int)
{
WARN_STUBBED();
return -1;
}
OSV_LIBC_API
size_t confstr(int name, char* buf, size_t len)
{
const char* v = nullptr;
switch (name) {
case _CS_GNU_LIBC_VERSION: v = "glibc 2.16";
case _CS_GNU_LIBPTHREAD_VERSION: v = "NPTL 2.16";
// Skip _CS_PATH as it does not make sense in OSv
}
if (v) {
// Return how many bytes needed to store the value including the null terminator
auto ret = strlen(v) + 1;
if (len > 0 && buf) {
snprintf(buf, len, "%s", v);
}
return ret;
} else {
errno = EINVAL;
return 0;
}
}
OSV_LIBC_API
FILE *popen(const char *command, const char *type)
{
WARN_STUBBED();
return NULL;
}
OSV_LIBC_API
int pclose(FILE *stream)
{
return 0;
}
void exit(int status)
{
debugf("program exited with status %ld\n", status);
osv::shutdown();
}
// "The function _exit() is like exit(3), but does not call any functions
// registered with atexit(3) or on_exit(3)."
//
OSV_LIBC_API
int atexit(void (*func)())
{
// nothing to do
return 0;
}
OSV_LIBC_API
int get_nprocs()
{
return sysconf(_SC_NPROCESSORS_ONLN);
}
OSV_LIBC_API
clock_t times(struct tms *buffer)
{
using namespace std::chrono;
struct timespec ts;
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts);
typedef duration<u64, std::ratio<1, CLOCKS_PER_SEC>> clockseconds;
clockseconds time;
time = duration_cast<clockseconds>(seconds(ts.tv_sec) + nanoseconds(ts.tv_nsec));
if (buffer) {
buffer->tms_utime = time.count();
buffer->tms_stime = 0;
buffer->tms_cutime = 0;
buffer->tms_cstime = 0;
return buffer->tms_utime;
} else {
return time.count();
}
}
static int prio_find_thread(sched::thread **th, int which, int id)
{
errno = 0;
if ((which == PRIO_USER) || (which == PRIO_PGRP)) {
*th = nullptr;
return 0;
}
if (which != PRIO_PROCESS) {
errno = EINVAL;
return -1;
}
if (id == 0) {
*th = sched::thread::current();
} else {
*th = sched::thread::find_by_id(id);
}
if (!*th) {
errno = ESRCH;
return -1;
}
return 0;
}
// Our priority formula is osv_prio = e^(prio * k), where k is a constant.
// We want osv_prio(20) = 86, and osv_prio(-20) = 1/86, as this gives the
// best agreement with Linux's current interpretation of the nice values
// (see tests/misc-setpriority.cc).
//
// So e^(20 * prio_k) = 86
// 20 * prio_k = ln(86)
// prio_k = ln(86) / 20
//
// When we are given OSv prio, obviously, the inverse formula applies:
//
// e^(prio * prio_k) = osv_prio
// prio * prio_k = ln(osv_prio)
// prio = ln(osv_prio) / prio_k
//
static constexpr float prio_k = log(86) / 20;
OSV_LIBC_API
int getpriority(int which, int id)
{
sched::thread *th;
int ret = prio_find_thread(&th, which, id);
if (ret < 0) {
return ret;
}
// Case for which which is not a process and we should just return and not
// do anything
if (!th && !ret) {
return 0;
}
// We're not super concerned with speed during get/set priority, which we
// expect to be fairly rare. So we can use the stdlib math functions
// instead of any fast approximations.
int prio = logf(th->priority()) / prio_k;
if (prio < -20) {
prio = -20;
}
if (prio > 19) {
prio = 19;
}
return prio;
}
OSV_LIBC_API
int setpriority(int which, int id, int prio)
{
sched::thread *th;
int ret = prio_find_thread(&th, which, id);
if (ret < 0) {
return ret;
}
if (!th && !ret) {
return 0;
}
float p = expf(prio_k * prio);
th->set_priority(p);
return 0;
}
OSV_LIBC_API
int initgroups(const char *user, gid_t group)
{
WARN_STUBBED();
return -1;
}
OSV_LIBC_API
int prctl(int option, ...)
{
switch (option) {
case PR_SET_DUMPABLE:
return 0;
}
errno = EINVAL;
return -1;
}
OSV_LIBC_API
int daemon(int nochdir, int noclose)
{
WARN_STUBBED();
return -1;
}
extern "C" OSV_LIBC_API
int sysctl(int *, int, void *, size_t *, void *, size_t)
{
WARN_STUBBED();
errno = ENOTDIR;
return -1;
}
extern "C" OSV_LIBC_API
char *tmpnam_r(char *s)
{
return s ? tmpnam(s) : NULL;
}
OSV_LIBC_API
pid_t wait3(int *status, int options, struct rusage *usage)
{
WARN_STUBBED();
errno = ECHILD;
return -1;
}
OSV_LIBC_API
pid_t wait4(pid_t pid, int *status, int options, struct rusage *usage)
{
WARN_STUBBED();
errno = ECHILD;
return -1;
}
OSV_LIBC_API
int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid)
{
WARN_STUBBED();
errno = ENOSYS;
return -1;
}
OSV_LIBC_API
int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid)
{
WARN_STUBBED();
errno = ENOSYS;
return -1;
}
OSV_LIBUTIL_API
int openpty(int *amaster, int *aslave, char *name,
const struct termios *termp,
const struct winsize *winp)
{
WARN_STUBBED();
errno = ENOENT;
return -1;
}
OSV_LIBUTIL_API
pid_t forkpty(int *amaster, char *name,
const struct termios *termp,
const struct winsize *winp)
{
WARN_STUBBED();
errno = ENOENT;
return -1;
}
OSV_LIBC_API
int nice(int inc)
{
return setpriority(PRIO_PROCESS, 0, getpriority(PRIO_PROCESS, 0)+inc);
}
OSV_LIBC_API
char *ctermid(char *s)
{
static char s2[L_ctermid];
WARN_STUBBED();
if (!s) s = s2;
*s = 0;
return s;
}
// OSv is always multi-threaded.
OSV_LIBC_API
char __libc_single_threaded = 0;