aboutsummaryrefslogtreecommitdiffstats
path: root/init/subsys.c
blob: 0435f1afc0499d31bc3ea9ba31076312563bbc4d (plain)
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
#include <errno.h>
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/prctl.h>
#include <sys/syscall.h>
#include <sys/mman.h>
#include <unistd.h>

#include <config.h>
#include <log.h>
#include <util.h>

#define STACK_SIZE 8192 * 512

struct subsystem_info {
    char *fn_name;
    int (*fn)(void);
};

int __subsystem_entry(struct subsystem_info *info)
{

    char *name = malloc(16 * sizeof(char));
    snprintf(name, 16, NAME_SHORTHAND ": %s", info->fn_name);
    name[15] = '\0';
    prctl(PR_SET_NAME, name);
    free(name);

    int ret = info->fn();

    free(info);

    return ret;
}

int __impl_start_subsystem(char *fn_name, int (*fn)(void))
{
    void *stack = mmap(NULL, STACK_SIZE, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_GROWSDOWN | MAP_STACK | MAP_PRIVATE, -1, 0);
    if((long)stack < 0)
        die("subsys mmap:");

    struct subsystem_info *info = malloc(sizeof(struct subsystem_info));
    info->fn_name = fn_name;
    info->fn = fn;

    int pid = clone((int (*)(void *))__subsystem_entry, stack, CLONE_FILES | CLONE_VM, info);
    if(pid < 0) {
        munmap(stack, STACK_SIZE);
        die("subsys clone:");
    }

    return 0;
}