libc_windows_amd64.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. // Copyright 2020 The Libc Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package libc // import "modernc.org/libc"
  5. import (
  6. "modernc.org/libc/errno"
  7. "modernc.org/libc/sys/types"
  8. "os"
  9. "strings"
  10. "syscall"
  11. "unsafe"
  12. )
  13. // int sigaction(int signum, const struct sigaction *act, struct sigaction *oldact);
  14. func Xsigaction(t *TLS, signum int32, act, oldact uintptr) int32 {
  15. panic(todo(""))
  16. // musl/arch/x86_64/ksigaction.h
  17. //
  18. // struct k_sigaction {
  19. // void (*handler)(int);
  20. // unsigned long flags;
  21. // void (*restorer)(void);
  22. // unsigned mask[2];
  23. // };
  24. // type k_sigaction struct {
  25. // handler uintptr
  26. // flags ulong
  27. // restorer uintptr
  28. // mask [2]uint32
  29. // }
  30. // var kact, koldact uintptr
  31. // if act != 0 {
  32. // kact = t.Alloc(int(unsafe.Sizeof(k_sigaction{})))
  33. // defer Xfree(t, kact)
  34. // *(*k_sigaction)(unsafe.Pointer(kact)) = k_sigaction{
  35. // handler: (*signal.Sigaction)(unsafe.Pointer(act)).F__sigaction_handler.Fsa_handler,
  36. // flags: ulong((*signal.Sigaction)(unsafe.Pointer(act)).Fsa_flags),
  37. // restorer: (*signal.Sigaction)(unsafe.Pointer(act)).Fsa_restorer,
  38. // }
  39. // Xmemcpy(t, kact+unsafe.Offsetof(k_sigaction{}.mask), act+unsafe.Offsetof(signal.Sigaction{}.Fsa_mask), types.Size_t(unsafe.Sizeof(k_sigaction{}.mask)))
  40. // }
  41. // if oldact != 0 {
  42. // panic(todo(""))
  43. // }
  44. // if _, _, err := unix.Syscall6(unix.SYS_RT_SIGACTION, uintptr(signal.SIGABRT), kact, koldact, unsafe.Sizeof(k_sigaction{}.mask), 0, 0); err != 0 {
  45. // t.setErrno(err)
  46. // return -1
  47. // }
  48. // if oldact != 0 {
  49. // panic(todo(""))
  50. // }
  51. // return 0
  52. }
  53. // int fcntl(int fd, int cmd, ... /* arg */ );
  54. func Xfcntl64(t *TLS, fd, cmd int32, args uintptr) int32 {
  55. panic(todo(""))
  56. // var arg uintptr
  57. // if args != 0 {
  58. // arg = *(*uintptr)(unsafe.Pointer(args))
  59. // }
  60. // n, _, err := unix.Syscall(unix.SYS_FCNTL, uintptr(fd), uintptr(cmd), arg)
  61. // if err != 0 {
  62. // if dmesgs {
  63. // dmesg("%v: fd %v cmd %v", origin(1), fcntlCmdStr(fd), cmd)
  64. // }
  65. // t.setErrno(err)
  66. // return -1
  67. // }
  68. // if dmesgs {
  69. // dmesg("%v: %d %s %#x: %d", origin(1), fd, fcntlCmdStr(cmd), arg, n)
  70. // }
  71. // return int32(n)
  72. }
  73. // int lstat(const char *pathname, struct stat *statbuf);
  74. func Xlstat64(t *TLS, pathname, statbuf uintptr) int32 {
  75. panic(todo(""))
  76. // if _, _, err := unix.Syscall(unix.SYS_LSTAT, pathname, statbuf, 0); err != 0 {
  77. // if dmesgs {
  78. // dmesg("%v: %q: %v", origin(1), GoString(pathname), err)
  79. // }
  80. // t.setErrno(err)
  81. // return -1
  82. // }
  83. // if dmesgs {
  84. // dmesg("%v: %q: ok", origin(1), GoString(pathname))
  85. // }
  86. // return 0
  87. }
  88. // int stat(const char *pathname, struct stat *statbuf);
  89. func Xstat64(t *TLS, pathname, statbuf uintptr) int32 {
  90. panic(todo(""))
  91. // if _, _, err := unix.Syscall(unix.SYS_STAT, pathname, statbuf, 0); err != 0 {
  92. // if dmesgs {
  93. // dmesg("%v: %q: %v", origin(1), GoString(pathname), err)
  94. // }
  95. // t.setErrno(err)
  96. // return -1
  97. // }
  98. // if dmesgs {
  99. // dmesg("%v: %q: ok", origin(1), GoString(pathname))
  100. // }
  101. // return 0
  102. }
  103. // int fstat(int fd, struct stat *statbuf);
  104. func Xfstat64(t *TLS, fd int32, statbuf uintptr) int32 {
  105. panic(todo(""))
  106. // if _, _, err := unix.Syscall(unix.SYS_FSTAT, uintptr(fd), statbuf, 0); err != 0 {
  107. // if dmesgs {
  108. // dmesg("%v: fd %d: %v", origin(1), fd, err)
  109. // }
  110. // t.setErrno(err)
  111. // return -1
  112. // }
  113. // if dmesgs {
  114. // dmesg("%v: %d size %#x: ok\n%+v", origin(1), fd, (*stat.Stat)(unsafe.Pointer(statbuf)).Fst_size, (*stat.Stat)(unsafe.Pointer(statbuf)))
  115. // }
  116. // return 0
  117. }
  118. func Xmmap(t *TLS, addr uintptr, length types.Size_t, prot, flags, fd int32, offset types.Off_t) uintptr {
  119. return Xmmap64(t, addr, length, prot, flags, fd, offset)
  120. }
  121. // void *mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset);
  122. func Xmmap64(t *TLS, addr uintptr, length types.Size_t, prot, flags, fd int32, offset types.Off_t) uintptr {
  123. panic(todo(""))
  124. // data, _, err := unix.Syscall6(unix.SYS_MMAP, addr, uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(offset))
  125. // if err != 0 {
  126. // if dmesgs {
  127. // dmesg("%v: %v", origin(1), err)
  128. // }
  129. // t.setErrno(err)
  130. // return ^uintptr(0) // (void*)-1
  131. // }
  132. // if dmesgs {
  133. // dmesg("%v: %#x", origin(1), data)
  134. // }
  135. // return data
  136. }
  137. // void *mremap(void *old_address, size_t old_size, size_t new_size, int flags, ... /* void *new_address */);
  138. func Xmremap(t *TLS, old_address uintptr, old_size, new_size types.Size_t, flags int32, args uintptr) uintptr {
  139. panic(todo(""))
  140. // var arg uintptr
  141. // if args != 0 {
  142. // arg = *(*uintptr)(unsafe.Pointer(args))
  143. // }
  144. // data, _, err := unix.Syscall6(unix.SYS_MREMAP, old_address, uintptr(old_size), uintptr(new_size), uintptr(flags), arg, 0)
  145. // if err != 0 {
  146. // if dmesgs {
  147. // dmesg("%v: %v", origin(1), err)
  148. // }
  149. // t.setErrno(err)
  150. // return ^uintptr(0) // (void*)-1
  151. // }
  152. // if dmesgs {
  153. // dmesg("%v: %#x", origin(1), data)
  154. // }
  155. // return data
  156. }
  157. // int ftruncate(int fd, off_t length);
  158. func Xftruncate64(t *TLS, fd int32, length types.Off_t) int32 {
  159. panic(todo(""))
  160. // if _, _, err := unix.Syscall(unix.SYS_FTRUNCATE, uintptr(fd), uintptr(length), 0); err != 0 {
  161. // if dmesgs {
  162. // dmesg("%v: fd %d: %v", origin(1), fd, err)
  163. // }
  164. // t.setErrno(err)
  165. // return -1
  166. // }
  167. // if dmesgs {
  168. // dmesg("%v: %d %#x: ok", origin(1), fd, length)
  169. // }
  170. // return 0
  171. }
  172. // off64_t lseek64(int fd, off64_t offset, int whence);
  173. func Xlseek64(t *TLS, fd int32, offset types.Off_t, whence int32) types.Off_t {
  174. f, ok := fdToFile(fd)
  175. if !ok {
  176. t.setErrno(errno.EBADF)
  177. return -1
  178. }
  179. n, err := syscall.Seek(f.Handle, offset, int(whence))
  180. if err != nil {
  181. if dmesgs {
  182. dmesg("%v: fd %v, off %#x, whence %v: %v", origin(1), f._fd, offset, whenceStr(whence), n)
  183. }
  184. t.setErrno(err)
  185. return -1
  186. }
  187. if dmesgs {
  188. dmesg("%v: fd %v, off %#x, whence %v: ok", origin(1), f._fd, offset, whenceStr(whence))
  189. }
  190. return n
  191. }
  192. // int utime(const char *filename, const struct utimbuf *times);
  193. func Xutime(t *TLS, filename, times uintptr) int32 {
  194. panic(todo(""))
  195. // if _, _, err := unix.Syscall(unix.SYS_UTIME, filename, times, 0); err != 0 {
  196. // t.setErrno(err)
  197. // return -1
  198. // }
  199. // return 0
  200. }
  201. // unsigned int alarm(unsigned int seconds);
  202. func Xalarm(t *TLS, seconds uint32) uint32 {
  203. panic(todo(""))
  204. // n, _, err := unix.Syscall(unix.SYS_ALARM, uintptr(seconds), 0, 0)
  205. // if err != 0 {
  206. // panic(todo(""))
  207. // }
  208. // return uint32(n)
  209. }
  210. // time_t time(time_t *tloc);
  211. func Xtime(t *TLS, tloc uintptr) types.Time_t {
  212. panic(todo(""))
  213. // n, _, err := unix.Syscall(unix.SYS_TIME, tloc, 0, 0)
  214. // if err != 0 {
  215. // t.setErrno(err)
  216. // return types.Time_t(-1)
  217. // }
  218. // if tloc != 0 {
  219. // *(*types.Time_t)(unsafe.Pointer(tloc)) = types.Time_t(n)
  220. // }
  221. // return types.Time_t(n)
  222. }
  223. // int getrlimit(int resource, struct rlimit *rlim);
  224. func Xgetrlimit64(t *TLS, resource int32, rlim uintptr) int32 {
  225. panic(todo(""))
  226. // if _, _, err := unix.Syscall(unix.SYS_GETRLIMIT, uintptr(resource), uintptr(rlim), 0); err != 0 {
  227. // t.setErrno(err)
  228. // return -1
  229. // }
  230. // return 0
  231. }
  232. // int mkdir(const char *path, mode_t mode);
  233. func Xmkdir(t *TLS, path uintptr, mode types.Mode_t) int32 {
  234. panic(todo(""))
  235. // if _, _, err := unix.Syscall(unix.SYS_MKDIR, path, uintptr(mode), 0); err != 0 {
  236. // t.setErrno(err)
  237. // return -1
  238. // }
  239. // if dmesgs {
  240. // dmesg("%v: %q: ok", origin(1), GoString(path))
  241. // }
  242. // return 0
  243. }
  244. // int symlink(const char *target, const char *linkpath);
  245. func Xsymlink(t *TLS, target, linkpath uintptr) int32 {
  246. panic(todo(""))
  247. // if _, _, err := unix.Syscall(unix.SYS_SYMLINK, target, linkpath, 0); err != 0 {
  248. // t.setErrno(err)
  249. // return -1
  250. // }
  251. // if dmesgs {
  252. // dmesg("%v: %q %q: ok", origin(1), GoString(target), GoString(linkpath))
  253. // }
  254. // return 0
  255. }
  256. // int utimes(const char *filename, const struct timeval times[2]);
  257. func Xutimes(t *TLS, filename, times uintptr) int32 {
  258. panic(todo(""))
  259. // if _, _, err := unix.Syscall(unix.SYS_UTIMES, filename, times, 0); err != 0 {
  260. // t.setErrno(err)
  261. // return -1
  262. // }
  263. // if dmesgs {
  264. // dmesg("%v: %q: ok", origin(1), GoString(filename))
  265. // }
  266. // return 0
  267. }
  268. // int unlink(const char *pathname);
  269. func Xunlink(t *TLS, pathname uintptr) int32 {
  270. err := syscall.DeleteFile((*uint16)(unsafe.Pointer(pathname)))
  271. if err != nil {
  272. t.setErrno(err)
  273. return -1
  274. }
  275. if dmesgs {
  276. dmesg("%v: %q: ok", origin(1), GoString(pathname))
  277. }
  278. return 0
  279. }
  280. // int access(const char *pathname, int mode);
  281. func Xaccess(t *TLS, pathname uintptr, mode int32) int32 {
  282. panic(todo(""))
  283. // if _, _, err := unix.Syscall(unix.SYS_ACCESS, pathname, uintptr(mode), 0); err != 0 {
  284. // if dmesgs {
  285. // dmesg("%v: %q: %v", origin(1), GoString(pathname), err)
  286. // }
  287. // t.setErrno(err)
  288. // return -1
  289. // }
  290. // if dmesgs {
  291. // dmesg("%v: %q %#o: ok", origin(1), GoString(pathname), mode)
  292. // }
  293. // return 0
  294. }
  295. // int rmdir(const char *pathname);
  296. func Xrmdir(t *TLS, pathname uintptr) int32 {
  297. panic(todo(""))
  298. // if _, _, err := unix.Syscall(unix.SYS_RMDIR, pathname, 0, 0); err != 0 {
  299. // t.setErrno(err)
  300. // return -1
  301. // }
  302. // if dmesgs {
  303. // dmesg("%v: %q: ok", origin(1), GoString(pathname))
  304. // }
  305. // return 0
  306. }
  307. // int mknod(const char *pathname, mode_t mode, dev_t dev);
  308. func Xmknod(t *TLS, pathname uintptr, mode types.Mode_t, dev types.Dev_t) int32 {
  309. panic(todo(""))
  310. // if _, _, err := unix.Syscall(unix.SYS_MKNOD, pathname, uintptr(mode), uintptr(dev)); err != 0 {
  311. // t.setErrno(err)
  312. // return -1
  313. // }
  314. // return 0
  315. }
  316. // // int chown(const char *pathname, uid_t owner, gid_t group);
  317. // func Xchown(t *TLS, pathname uintptr, owner types.Uid_t, group types.Gid_t) int32 {
  318. // panic(todo(""))
  319. // // if _, _, err := unix.Syscall(unix.SYS_CHOWN, pathname, uintptr(owner), uintptr(group)); err != 0 {
  320. // // t.setErrno(err)
  321. // // return -1
  322. // // }
  323. //
  324. // // return 0
  325. // }
  326. // int link(const char *oldpath, const char *newpath);
  327. func Xlink(t *TLS, oldpath, newpath uintptr) int32 {
  328. panic(todo(""))
  329. // if _, _, err := unix.Syscall(unix.SYS_LINK, oldpath, newpath, 0); err != 0 {
  330. // t.setErrno(err)
  331. // return -1
  332. // }
  333. // return 0
  334. }
  335. // int pipe(int pipefd[2]);
  336. func Xpipe(t *TLS, pipefd uintptr) int32 {
  337. panic(todo(""))
  338. // if _, _, err := unix.Syscall(unix.SYS_PIPE, pipefd, 0, 0); err != 0 {
  339. // t.setErrno(err)
  340. // return -1
  341. // }
  342. // return 0
  343. }
  344. // int dup2(int oldfd, int newfd);
  345. func Xdup2(t *TLS, oldfd, newfd int32) int32 {
  346. panic(todo(""))
  347. // n, _, err := unix.Syscall(unix.SYS_DUP2, uintptr(oldfd), uintptr(newfd), 0)
  348. // if err != 0 {
  349. // t.setErrno(err)
  350. // return -1
  351. // }
  352. // return int32(n)
  353. }
  354. // ssize_t readlink(const char *restrict path, char *restrict buf, size_t bufsize);
  355. func Xreadlink(t *TLS, path, buf uintptr, bufsize types.Size_t) types.Ssize_t {
  356. panic(todo(""))
  357. // n, _, err := unix.Syscall(unix.SYS_READLINK, path, buf, uintptr(bufsize))
  358. // if err != 0 {
  359. // t.setErrno(err)
  360. // return -1
  361. // }
  362. // return types.Ssize_t(n)
  363. }
  364. // FILE *fopen64(const char *pathname, const char *mode);
  365. func Xfopen64(t *TLS, pathname, mode uintptr) uintptr {
  366. m := strings.ReplaceAll(GoString(mode), "b", "")
  367. var flags int
  368. switch m {
  369. case "r":
  370. flags = os.O_RDONLY
  371. case "r+":
  372. flags = os.O_RDWR
  373. case "w":
  374. flags = os.O_WRONLY | os.O_CREATE | os.O_TRUNC
  375. case "w+":
  376. flags = os.O_RDWR | os.O_CREATE | os.O_TRUNC
  377. case "a":
  378. flags = os.O_WRONLY | os.O_CREATE | os.O_APPEND
  379. case "a+":
  380. flags = os.O_RDWR | os.O_CREATE | os.O_APPEND
  381. default:
  382. panic(m)
  383. }
  384. //TODO- flags |= fcntl.O_LARGEFILE
  385. h, err := syscall.Open(GoString(pathname), int(flags), uint32(0666))
  386. if err != nil {
  387. t.setErrno(err)
  388. return 0
  389. }
  390. p, _ := wrapFdHandle(h)
  391. if p != 0 {
  392. return p
  393. }
  394. _ = syscall.Close(h)
  395. t.setErrno(errno.ENOMEM)
  396. return 0
  397. }
  398. func Xrecv(t *TLS, sockfd uint64, buf uintptr, len, flags int32) int32 {
  399. panic(todo(""))
  400. }
  401. func Xsend(t *TLS, sockfd uint64, buf uintptr, len, flags int32) int32 {
  402. panic(todo(""))
  403. }
  404. func Xshutdown(t *TLS, sockfd uint64, how int32) int32 {
  405. panic(todo(""))
  406. }
  407. func Xgetpeername(t *TLS, sockfd uint64, addr uintptr, addrlen uintptr) int32 {
  408. panic(todo(""))
  409. }
  410. func Xgetsockname(t *TLS, sockfd uint64, addr, addrlen uintptr) int32 {
  411. panic(todo(""))
  412. }
  413. func Xsocket(t *TLS, domain, type1, protocol int32) uint64 {
  414. panic(todo(""))
  415. }
  416. func Xbind(t *TLS, sockfd uint64, addr uintptr, addrlen int32) int32 {
  417. panic(todo(""))
  418. }
  419. func Xconnect(t *TLS, sockfd uint64, addr uintptr, addrlen int32) int32 {
  420. panic(todo(""))
  421. }
  422. func Xlisten(t *TLS, sockfd uint64, backlog int32) int32 {
  423. panic(todo(""))
  424. }
  425. func Xaccept(t *TLS, sockfd uint64, addr uintptr, addrlen uintptr) uint64 {
  426. panic(todo(""))
  427. }
  428. // LRESULT LRESULT DefWindowProcW(
  429. //
  430. // HWND hWnd,
  431. // UINT Msg,
  432. // WPARAM wParam,
  433. // LPARAM lParam
  434. //
  435. // );
  436. func XDefWindowProcW(t *TLS, _ ...interface{}) int64 {
  437. panic(todo(""))
  438. }
  439. func XSendMessageTimeoutW(t *TLS, _ ...interface{}) int64 {
  440. panic(todo(""))
  441. }