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
|
/* insmod.c - Load a module into the Linux kernel.
*
* Copyright 2012 Elie De Brauwer <eliedebrauwer@gmail.com>
USE_INSMOD(NEWTOY(insmod, "<1", TOYFLAG_BIN|TOYFLAG_NEEDROOT))
config INSMOD
bool "insmod"
default y
help
usage: insmod MODULE [MODULE_OPTIONS]
Load the module named MODULE passing options if given.
*/
#include "toys.h"
#include <sys/syscall.h>
#define init_module(mod, len, opts) syscall(__NR_init_module, mod, len, opts)
void insmod_main(void)
{
char * buf = NULL;
int len, res, i;
int fd = xopen(*toys.optargs, O_RDONLY);
len = fdlength(fd);
buf = xmalloc(len);
xreadall(fd, buf, len);
i = 1;
while(toys.optargs[i] &&
strlen(toybuf) + strlen(toys.optargs[i]) + 2 < sizeof(toybuf))
{
strcat(toybuf, toys.optargs[i++]);
strcat(toybuf, " ");
}
res = init_module(buf, len, toybuf);
if (CFG_TOYBOX_FREE) {
if (buf != toybuf) free(buf);
close(fd);
}
if (res) perror_exit("failed to load %s", toys.optargs[0]);
}
|