blob: 6b6ebed06a2f5e62475947b8f4983689efc0a7ea [file] [log] [blame]
Eric Andersena2a978a2001-04-05 06:08:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * some system calls possibly missing from libc
4 *
Eric Andersencb81e642003-07-14 21:21:08 +00005 * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
Eric Andersena2a978a2001-04-05 06:08:14 +00006 *
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/* Kernel headers before 2.1.mumble need this on the Alpha to get
27 _syscall* defined. */
28#define __LIBRARY__
29#include <sys/syscall.h>
Eric Andersen806c74f2002-03-12 00:35:40 +000030#if __GNU_LIBRARY__ < 5
31/* This is needed for libc5 */
Eric Andersena2a978a2001-04-05 06:08:14 +000032#include <asm/unistd.h>
Manuel Novoa III a2949aa2001-06-29 18:59:32 +000033#endif
Eric Andersena2a978a2001-04-05 06:08:14 +000034#include "libbb.h"
35
Eric Andersenacc77572001-04-05 06:24:28 +000036
Eric Andersen9260fc52001-10-24 00:44:11 +000037#if __GNU_LIBRARY__ < 5 || ((__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1))
Eric Andersena2a978a2001-04-05 06:08:14 +000038/* These syscalls are not included as part of libc5 */
Eric Andersen82ab3d72003-05-26 18:48:56 +000039int delete_module(const char *name)
40{
41 return(syscall(__NR_delete_module, name));
42}
43int get_kernel_syms(__ptr_t ks)
44{
45 return(syscall(__NR_get_kernel_syms, ks));
46}
Eric Andersena2a978a2001-04-05 06:08:14 +000047
Eric Andersen64c8b172001-04-05 07:33:10 +000048/* This may have 5 arguments (for old 2.0 kernels) or 2 arguments
49 * (for 2.2 and 2.4 kernels). Use the greatest common denominator,
50 * and let the kernel cope with whatever it gets. Its good at that. */
Eric Andersen82ab3d72003-05-26 18:48:56 +000051int init_module(void *first, void *second, void *third, void *fourth, void *fifth)
52{
53 return(syscall(__NR_init_module, first, second, third, fourth, fifth));
54}
Eric Andersen64c8b172001-04-05 07:33:10 +000055
Eric Andersen82ab3d72003-05-26 18:48:56 +000056int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret)
57{
Eric Andersena2a978a2001-04-05 06:08:14 +000058#ifndef __NR_query_module
59#warning This kernel does not support the query_module syscall
60#warning -> The query_module system call is being stubbed out...
Eric Andersen82ab3d72003-05-26 18:48:56 +000061 bb_error_msg("\n\nTo make this application work, you will need to recompile\n"
62 "BusyBox with a kernel supporting the query_module system call.\n");
63 errno=ENOSYS;
64 return -1;
Eric Andersena2a978a2001-04-05 06:08:14 +000065#else
Eric Andersen82ab3d72003-05-26 18:48:56 +000066 return(syscall(__NR_query_module, name, which, buf, bufsize, ret));
Eric Andersena2a978a2001-04-05 06:08:14 +000067#endif
Eric Andersen82ab3d72003-05-26 18:48:56 +000068}
Eric Andersena2a978a2001-04-05 06:08:14 +000069
70/* Jump through hoops to fixup error return codes */
Eric Andersena2a978a2001-04-05 06:08:14 +000071unsigned long create_module(const char *name, size_t size)
72{
Eric Andersen82ab3d72003-05-26 18:48:56 +000073 long ret = syscall(__NR_create_module, name, size);
Eric Andersena2a978a2001-04-05 06:08:14 +000074
Eric Andersen82ab3d72003-05-26 18:48:56 +000075 if (ret == -1 && errno > 125) {
76 ret = -errno;
77 errno = 0;
78 }
79 return ret;
Eric Andersena2a978a2001-04-05 06:08:14 +000080}
81
82#endif /* __GNU_LIBRARY__ < 5 */
83
84
85/* END CODE */
86/*
87Local Variables:
88c-file-style: "linux"
89c-basic-offset: 4
90tab-width: 4
91End:
92*/
93