Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * some system calls possibly missing from libc |
| 4 | * |
Eric Andersen | cb81e64 | 2003-07-14 21:21:08 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 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 | /* 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 Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 30 | #include "libbb.h" |
| 31 | |
Eric Andersen | acc7757 | 2001-04-05 06:24:28 +0000 | [diff] [blame] | 32 | |
Eric Andersen | 85e5e72 | 2003-07-22 08:56:55 +0000 | [diff] [blame^] | 33 | /* These syscalls are not included in very old glibc versions */ |
| 34 | #if ((__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)) |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 35 | int delete_module(const char *name) |
| 36 | { |
| 37 | return(syscall(__NR_delete_module, name)); |
| 38 | } |
| 39 | int get_kernel_syms(__ptr_t ks) |
| 40 | { |
| 41 | return(syscall(__NR_get_kernel_syms, ks)); |
| 42 | } |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 43 | |
Eric Andersen | 64c8b17 | 2001-04-05 07:33:10 +0000 | [diff] [blame] | 44 | /* This may have 5 arguments (for old 2.0 kernels) or 2 arguments |
| 45 | * (for 2.2 and 2.4 kernels). Use the greatest common denominator, |
| 46 | * and let the kernel cope with whatever it gets. Its good at that. */ |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 47 | int init_module(void *first, void *second, void *third, void *fourth, void *fifth) |
| 48 | { |
| 49 | return(syscall(__NR_init_module, first, second, third, fourth, fifth)); |
| 50 | } |
Eric Andersen | 64c8b17 | 2001-04-05 07:33:10 +0000 | [diff] [blame] | 51 | |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 52 | int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret) |
| 53 | { |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 54 | #ifndef __NR_query_module |
| 55 | #warning This kernel does not support the query_module syscall |
| 56 | #warning -> The query_module system call is being stubbed out... |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 57 | bb_error_msg("\n\nTo make this application work, you will need to recompile\n" |
| 58 | "BusyBox with a kernel supporting the query_module system call.\n"); |
| 59 | errno=ENOSYS; |
| 60 | return -1; |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 61 | #else |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 62 | return(syscall(__NR_query_module, name, which, buf, bufsize, ret)); |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 63 | #endif |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 64 | } |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 65 | |
| 66 | /* Jump through hoops to fixup error return codes */ |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 67 | unsigned long create_module(const char *name, size_t size) |
| 68 | { |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 69 | long ret = syscall(__NR_create_module, name, size); |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 70 | |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 71 | if (ret == -1 && errno > 125) { |
| 72 | ret = -errno; |
| 73 | errno = 0; |
| 74 | } |
| 75 | return ret; |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Eric Andersen | 85e5e72 | 2003-07-22 08:56:55 +0000 | [diff] [blame^] | 78 | #endif |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 79 | |
| 80 | |
| 81 | /* END CODE */ |
| 82 | /* |
| 83 | Local Variables: |
| 84 | c-file-style: "linux" |
| 85 | c-basic-offset: 4 |
| 86 | tab-width: 4 |
| 87 | End: |
| 88 | */ |
| 89 | |