Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 3 | * some system calls possibly missing from libc |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 4 | * |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen |
| 6 | * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org> |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | * |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 22 | */ |
| 23 | |
| 24 | #include <stdio.h> |
| 25 | #include <errno.h> |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 26 | #include <unistd.h> |
| 27 | /* Kernel headers before 2.1.mumble need this on the Alpha to get |
| 28 | _syscall* defined. */ |
| 29 | #define __LIBRARY__ |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 30 | #include <sys/syscall.h> |
Eric Andersen | 806c74f | 2002-03-12 00:35:40 +0000 | [diff] [blame] | 31 | #if __GNU_LIBRARY__ < 5 |
| 32 | /* This is needed for libc5 */ |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 33 | #include <asm/unistd.h> |
Manuel Novoa III | a2949aa | 2001-06-29 18:59:32 +0000 | [diff] [blame] | 34 | #endif |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 35 | #include "libbb.h" |
| 36 | |
Eric Andersen | a2a978a | 2001-04-05 06:08:14 +0000 | [diff] [blame] | 37 | int sysfs( int option, unsigned int fs_index, char * buf) |
| 38 | { |
| 39 | return(syscall(__NR_sysfs, option, fs_index, buf)); |
| 40 | } |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 41 | |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 42 | int pivot_root(const char * new_root,const char * put_old) |
| 43 | { |
Eric Andersen | e76c3b0 | 2001-04-05 03:14:39 +0000 | [diff] [blame] | 44 | #ifndef __NR_pivot_root |
| 45 | #warning This kernel does not support the pivot_root syscall |
| 46 | #warning -> The pivot_root system call is being stubbed out... |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 47 | /* BusyBox was compiled against a kernel that did not support |
| 48 | * the pivot_root system call. To make this application work, |
| 49 | * you will need to recompile with a kernel supporting the |
| 50 | * pivot_root system call. |
| 51 | */ |
| 52 | bb_error_msg("\n\nTo make this application work, you will need to recompile\n" |
| 53 | "BusyBox with a kernel supporting the pivot_root system call.\n"); |
| 54 | errno=ENOSYS; |
| 55 | return -1; |
Eric Andersen | e76c3b0 | 2001-04-05 03:14:39 +0000 | [diff] [blame] | 56 | #else |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 57 | return(syscall(__NR_pivot_root, new_root, put_old)); |
Eric Andersen | e76c3b0 | 2001-04-05 03:14:39 +0000 | [diff] [blame] | 58 | #endif |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 59 | } |
Eric Andersen | e76c3b0 | 2001-04-05 03:14:39 +0000 | [diff] [blame] | 60 | |
| 61 | |
| 62 | |
Eric Andersen | 831ed16 | 2001-04-05 22:38:32 +0000 | [diff] [blame] | 63 | #if __GNU_LIBRARY__ < 5 || ((__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)) |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 64 | |
Eric Andersen | e76c3b0 | 2001-04-05 03:14:39 +0000 | [diff] [blame] | 65 | /* These syscalls are not included as part of libc5 */ |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 66 | int bdflush(int func, int data) |
| 67 | { |
| 68 | return(syscall(__NR_bdflush, func, data)); |
| 69 | } |
Eric Andersen | e76c3b0 | 2001-04-05 03:14:39 +0000 | [diff] [blame] | 70 | |
| 71 | #ifndef __alpha__ |
| 72 | # define __NR_klogctl __NR_syslog |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 73 | int klogctl(int type, char *b, int len) |
| 74 | { |
| 75 | return(syscall(__NR_klogctl, type, b, len)); |
| 76 | } |
Eric Andersen | e76c3b0 | 2001-04-05 03:14:39 +0000 | [diff] [blame] | 77 | #endif |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 78 | |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 79 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 80 | int umount2(const char * special_file, int flags) |
| 81 | { |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 82 | #ifndef __NR_pivot_root |
| 83 | #warning This kernel does not support the umount2 syscall |
| 84 | #warning -> The umount2 system call is being stubbed out... |
| 85 | /* BusyBox was compiled against a kernel that did not support |
| 86 | * the umount2 system call. To make this application work, |
| 87 | * you will need to recompile with a kernel supporting the |
| 88 | * umount2 system call. |
| 89 | */ |
| 90 | bb_error_msg("\n\nTo make this application work, you will need to recompile\n" |
| 91 | "BusyBox with a kernel supporting the umount2 system call.\n"); |
| 92 | errno=ENOSYS; |
| 93 | return -1; |
| 94 | #else |
| 95 | return(syscall(__NR_umount2, special_file, flags)); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 96 | #endif |
Eric Andersen | 82ab3d7 | 2003-05-26 18:48:56 +0000 | [diff] [blame] | 97 | } |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 98 | |
Eric Andersen | e76c3b0 | 2001-04-05 03:14:39 +0000 | [diff] [blame] | 99 | |
| 100 | #endif /* __GNU_LIBRARY__ < 5 */ |
| 101 | |
| 102 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 103 | /* END CODE */ |
| 104 | /* |
| 105 | Local Variables: |
| 106 | c-file-style: "linux" |
| 107 | c-basic-offset: 4 |
| 108 | tab-width: 4 |
| 109 | End: |
| 110 | */ |