Accomodate the fact that newer libc versions may in fact not
[oweals/busybox.git] / libbb / module_syscalls.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * some system calls possibly missing from libc
4  *
5  * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  *
21  */
22
23 #include <stdio.h>
24 #include <errno.h>
25 #include <unistd.h>
26 #include <sys/syscall.h>
27 #include "libbb.h"
28
29
30 /* These syscalls are not included in very old glibc versions */
31 int delete_module(const char *name)
32 {
33 #ifndef __NR_delete_module
34 #warning This kernel does not support the delete_module syscall
35 #warning -> The delete_module system call is being stubbed out...
36     errno=ENOSYS;
37     return -1;
38 #else
39     return(syscall(__NR_delete_module, name));
40 #endif
41 }
42
43 int get_kernel_syms(__ptr_t ks)
44 {
45 #ifndef __NR_get_kernel_syms
46 #warning This kernel does not support the get_kernel_syms syscall
47 #warning -> The get_kernel_syms system call is being stubbed out...
48     errno=ENOSYS;
49     return -1;
50 #else
51     return(syscall(__NR_get_kernel_syms, ks));
52 #endif
53 }
54
55 /* This may have 5 arguments (for old 2.0 kernels) or 2 arguments
56  * (for 2.2 and 2.4 kernels).  Use the greatest common denominator,
57  * and let the kernel cope with whatever it gets.  Its good at that. */
58 int init_module(void *first, void *second, void *third, void *fourth, void *fifth)
59 {
60 #ifndef __NR_init_module
61 #warning This kernel does not support the init_module syscall
62 #warning -> The init_module system call is being stubbed out...
63     errno=ENOSYS;
64     return -1;
65 #else
66     return(syscall(__NR_init_module, first, second, third, fourth, fifth));
67 #endif
68 }
69
70 int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret)
71 {
72 #ifndef __NR_query_module
73 #warning This kernel does not support the query_module syscall
74 #warning -> The query_module system call is being stubbed out...
75     bb_error_msg("\n\nTo make this application work, you will need to recompile\n"
76             "BusyBox with a kernel supporting the query_module system call.\n");
77     errno=ENOSYS;
78     return -1;
79 #else
80     return(syscall(__NR_query_module, name, which, buf, bufsize, ret));
81 #endif
82 }
83
84 /* Jump through hoops to fixup error return codes */
85 unsigned long create_module(const char *name, size_t size)
86 {
87 #ifndef __NR_create_module
88 #warning This kernel does not support the create_module syscall
89 #warning -> The create_module system call is being stubbed out...
90     errno=ENOSYS;
91     return -1;
92 #else
93     long ret = syscall(__NR_create_module, name, size);
94
95     if (ret == -1 && errno > 125) {
96         ret = -errno;
97         errno = 0;
98     }
99     return ret;
100 #endif
101 }
102
103
104 /* END CODE */
105 /*
106 Local Variables:
107 c-file-style: "linux"
108 c-basic-offset: 4
109 tab-width: 4
110 End:
111 */
112