os-syscall.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * BSD syscalls
  3. *
  4. * Copyright (c) 2003-2008 Fabrice Bellard
  5. * Copyright (c) 2013-2014 Stacey D. Son
  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
  15. * GNU 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, see <http://www.gnu.org/licenses/>.
  19. */
  20. /*
  21. * We need the FreeBSD "legacy" definitions. Rust needs the FreeBSD 11 system
  22. * calls since it doesn't use libc at all, so we have to emulate that despite
  23. * FreeBSD 11 being EOL'd.
  24. */
  25. #define _WANT_FREEBSD11_STAT
  26. #define _WANT_FREEBSD11_STATFS
  27. #define _WANT_FREEBSD11_DIRENT
  28. #define _WANT_KERNEL_ERRNO
  29. #define _WANT_SEMUN
  30. #include "qemu/osdep.h"
  31. #include "qemu/cutils.h"
  32. #include "qemu/path.h"
  33. #include <sys/syscall.h>
  34. #include <sys/param.h>
  35. #include <sys/sysctl.h>
  36. #include <utime.h>
  37. #include "qemu.h"
  38. #include "signal-common.h"
  39. #include "user/syscall-trace.h"
  40. #include "bsd-file.h"
  41. void target_set_brk(abi_ulong new_brk)
  42. {
  43. }
  44. /*
  45. * errno conversion.
  46. */
  47. abi_long get_errno(abi_long ret)
  48. {
  49. if (ret == -1) {
  50. return -host_to_target_errno(errno);
  51. } else {
  52. return ret;
  53. }
  54. }
  55. int host_to_target_errno(int err)
  56. {
  57. /*
  58. * All the BSDs have the property that the error numbers are uniform across
  59. * all architectures for a given BSD, though they may vary between different
  60. * BSDs.
  61. */
  62. return err;
  63. }
  64. bool is_error(abi_long ret)
  65. {
  66. return (abi_ulong)ret >= (abi_ulong)(-4096);
  67. }
  68. /*
  69. * do_syscall() should always have a single exit point at the end so that
  70. * actions, such as logging of syscall results, can be performed. All errnos
  71. * that do_syscall() returns must be -TARGET_<errcode>.
  72. */
  73. abi_long do_freebsd_syscall(void *cpu_env, int num, abi_long arg1,
  74. abi_long arg2, abi_long arg3, abi_long arg4,
  75. abi_long arg5, abi_long arg6, abi_long arg7,
  76. abi_long arg8)
  77. {
  78. return 0;
  79. }
  80. void syscall_init(void)
  81. {
  82. }