module_syscalls.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * some system calls possibly missing from libc
  4. *
  5. * Copyright (C) 1999-2004 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. #include <stdio.h>
  23. #include <errno.h>
  24. #include <unistd.h>
  25. #include <sys/syscall.h>
  26. #include "libbb.h"
  27. /* uClibc always supplies (possibly ENOSYS) versions of these functions. */
  28. #ifndef __UCLIBC__
  29. /* These syscalls are not included in very old glibc versions */
  30. int delete_module(const char *name)
  31. {
  32. #ifndef __NR_delete_module
  33. #warning This kernel does not support the delete_module syscall
  34. #warning -> The delete_module system call is being stubbed out...
  35. errno=ENOSYS;
  36. return -1;
  37. #else
  38. return(syscall(__NR_delete_module, name));
  39. #endif
  40. }
  41. int get_kernel_syms(__ptr_t ks)
  42. {
  43. #ifndef __NR_get_kernel_syms
  44. #warning This kernel does not support the get_kernel_syms syscall
  45. #warning -> The get_kernel_syms system call is being stubbed out...
  46. errno=ENOSYS;
  47. return -1;
  48. #else
  49. return(syscall(__NR_get_kernel_syms, ks));
  50. #endif
  51. }
  52. /* This may have 5 arguments (for old 2.0 kernels) or 2 arguments
  53. * (for 2.2 and 2.4 kernels). Use the greatest common denominator,
  54. * and let the kernel cope with whatever it gets. Its good at that. */
  55. int init_module(void *first, void *second, void *third, void *fourth, void *fifth)
  56. {
  57. #ifndef __NR_init_module
  58. #warning This kernel does not support the init_module syscall
  59. #warning -> The init_module system call is being stubbed out...
  60. errno=ENOSYS;
  61. return -1;
  62. #else
  63. return(syscall(__NR_init_module, first, second, third, fourth, fifth));
  64. #endif
  65. }
  66. int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret)
  67. {
  68. #ifndef __NR_query_module
  69. #warning This kernel does not support the query_module syscall
  70. #warning -> The query_module system call is being stubbed out...
  71. bb_error_msg("\n\nTo make this application work, you will need to recompile\n"
  72. "BusyBox with a kernel supporting the query_module system call.\n");
  73. errno=ENOSYS;
  74. return -1;
  75. #else
  76. return(syscall(__NR_query_module, name, which, buf, bufsize, ret));
  77. #endif
  78. }
  79. /* Jump through hoops to fixup error return codes */
  80. unsigned long create_module(const char *name, size_t size)
  81. {
  82. #ifndef __NR_create_module
  83. #warning This kernel does not support the create_module syscall
  84. #warning -> The create_module system call is being stubbed out...
  85. errno=ENOSYS;
  86. return -1;
  87. #else
  88. long ret = syscall(__NR_create_module, name, size);
  89. if (ret == -1 && errno > 125) {
  90. ret = -errno;
  91. errno = 0;
  92. }
  93. return ret;
  94. #endif
  95. }
  96. #endif /* __UCLIBC__ */
  97. /* END CODE */
  98. /*
  99. Local Variables:
  100. c-file-style: "linux"
  101. c-basic-offset: 4
  102. tab-width: 4
  103. End:
  104. */