You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mkerrors.sh 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668
  1. #!/usr/bin/env bash
  2. # Copyright 2009 The Go Authors. All rights reserved.
  3. # Use of this source code is governed by a BSD-style
  4. # license that can be found in the LICENSE file.
  5. # Generate Go code listing errors and other #defined constant
  6. # values (ENAMETOOLONG etc.), by asking the preprocessor
  7. # about the definitions.
  8. unset LANG
  9. export LC_ALL=C
  10. export LC_CTYPE=C
  11. if test -z "$GOARCH" -o -z "$GOOS"; then
  12. echo 1>&2 "GOARCH or GOOS not defined in environment"
  13. exit 1
  14. fi
  15. # Check that we are using the new build system if we should
  16. if [[ "$GOOS" = "linux" ]] && [[ "$GOLANG_SYS_BUILD" != "docker" ]]; then
  17. echo 1>&2 "In the Docker based build system, mkerrors should not be called directly."
  18. echo 1>&2 "See README.md"
  19. exit 1
  20. fi
  21. if [[ "$GOOS" = "aix" ]]; then
  22. CC=${CC:-gcc}
  23. else
  24. CC=${CC:-cc}
  25. fi
  26. if [[ "$GOOS" = "solaris" ]]; then
  27. # Assumes GNU versions of utilities in PATH.
  28. export PATH=/usr/gnu/bin:$PATH
  29. fi
  30. uname=$(uname)
  31. includes_AIX='
  32. #include <net/if.h>
  33. #include <net/netopt.h>
  34. #include <netinet/ip_mroute.h>
  35. #include <sys/protosw.h>
  36. #include <sys/stropts.h>
  37. #include <sys/mman.h>
  38. #include <sys/poll.h>
  39. #include <sys/termio.h>
  40. #include <termios.h>
  41. #include <fcntl.h>
  42. #define AF_LOCAL AF_UNIX
  43. '
  44. includes_Darwin='
  45. #define _DARWIN_C_SOURCE
  46. #define KERNEL
  47. #define _DARWIN_USE_64_BIT_INODE
  48. #include <stdint.h>
  49. #include <sys/attr.h>
  50. #include <sys/types.h>
  51. #include <sys/event.h>
  52. #include <sys/ptrace.h>
  53. #include <sys/socket.h>
  54. #include <sys/sockio.h>
  55. #include <sys/sysctl.h>
  56. #include <sys/mman.h>
  57. #include <sys/mount.h>
  58. #include <sys/utsname.h>
  59. #include <sys/wait.h>
  60. #include <sys/xattr.h>
  61. #include <net/bpf.h>
  62. #include <net/if.h>
  63. #include <net/if_types.h>
  64. #include <net/route.h>
  65. #include <netinet/in.h>
  66. #include <netinet/ip.h>
  67. #include <termios.h>
  68. '
  69. includes_DragonFly='
  70. #include <sys/types.h>
  71. #include <sys/event.h>
  72. #include <sys/socket.h>
  73. #include <sys/sockio.h>
  74. #include <sys/stat.h>
  75. #include <sys/sysctl.h>
  76. #include <sys/mman.h>
  77. #include <sys/mount.h>
  78. #include <sys/wait.h>
  79. #include <sys/ioctl.h>
  80. #include <net/bpf.h>
  81. #include <net/if.h>
  82. #include <net/if_types.h>
  83. #include <net/route.h>
  84. #include <netinet/in.h>
  85. #include <termios.h>
  86. #include <netinet/ip.h>
  87. #include <net/ip_mroute/ip_mroute.h>
  88. '
  89. includes_FreeBSD='
  90. #include <sys/capsicum.h>
  91. #include <sys/param.h>
  92. #include <sys/types.h>
  93. #include <sys/event.h>
  94. #include <sys/socket.h>
  95. #include <sys/sockio.h>
  96. #include <sys/stat.h>
  97. #include <sys/sysctl.h>
  98. #include <sys/mman.h>
  99. #include <sys/mount.h>
  100. #include <sys/wait.h>
  101. #include <sys/ioctl.h>
  102. #include <net/bpf.h>
  103. #include <net/if.h>
  104. #include <net/if_types.h>
  105. #include <net/route.h>
  106. #include <netinet/in.h>
  107. #include <termios.h>
  108. #include <netinet/ip.h>
  109. #include <netinet/ip_mroute.h>
  110. #include <sys/extattr.h>
  111. #if __FreeBSD__ >= 10
  112. #define IFT_CARP 0xf8 // IFT_CARP is deprecated in FreeBSD 10
  113. #undef SIOCAIFADDR
  114. #define SIOCAIFADDR _IOW(105, 26, struct oifaliasreq) // ifaliasreq contains if_data
  115. #undef SIOCSIFPHYADDR
  116. #define SIOCSIFPHYADDR _IOW(105, 70, struct oifaliasreq) // ifaliasreq contains if_data
  117. #endif
  118. '
  119. includes_Linux='
  120. #define _LARGEFILE_SOURCE
  121. #define _LARGEFILE64_SOURCE
  122. #ifndef __LP64__
  123. #define _FILE_OFFSET_BITS 64
  124. #endif
  125. #define _GNU_SOURCE
  126. // <sys/ioctl.h> is broken on powerpc64, as it fails to include definitions of
  127. // these structures. We just include them copied from <bits/termios.h>.
  128. #if defined(__powerpc__)
  129. struct sgttyb {
  130. char sg_ispeed;
  131. char sg_ospeed;
  132. char sg_erase;
  133. char sg_kill;
  134. short sg_flags;
  135. };
  136. struct tchars {
  137. char t_intrc;
  138. char t_quitc;
  139. char t_startc;
  140. char t_stopc;
  141. char t_eofc;
  142. char t_brkc;
  143. };
  144. struct ltchars {
  145. char t_suspc;
  146. char t_dsuspc;
  147. char t_rprntc;
  148. char t_flushc;
  149. char t_werasc;
  150. char t_lnextc;
  151. };
  152. #endif
  153. #include <bits/sockaddr.h>
  154. #include <sys/epoll.h>
  155. #include <sys/eventfd.h>
  156. #include <sys/inotify.h>
  157. #include <sys/ioctl.h>
  158. #include <sys/mman.h>
  159. #include <sys/mount.h>
  160. #include <sys/prctl.h>
  161. #include <sys/stat.h>
  162. #include <sys/types.h>
  163. #include <sys/time.h>
  164. #include <sys/signalfd.h>
  165. #include <sys/socket.h>
  166. #include <sys/xattr.h>
  167. #include <linux/bpf.h>
  168. #include <linux/capability.h>
  169. #include <linux/errqueue.h>
  170. #include <linux/if.h>
  171. #include <linux/if_alg.h>
  172. #include <linux/if_arp.h>
  173. #include <linux/if_ether.h>
  174. #include <linux/if_ppp.h>
  175. #include <linux/if_tun.h>
  176. #include <linux/if_packet.h>
  177. #include <linux/if_addr.h>
  178. #include <linux/falloc.h>
  179. #include <linux/fanotify.h>
  180. #include <linux/filter.h>
  181. #include <linux/fs.h>
  182. #include <linux/kexec.h>
  183. #include <linux/keyctl.h>
  184. #include <linux/loop.h>
  185. #include <linux/magic.h>
  186. #include <linux/memfd.h>
  187. #include <linux/module.h>
  188. #include <linux/netfilter/nfnetlink.h>
  189. #include <linux/netlink.h>
  190. #include <linux/net_namespace.h>
  191. #include <linux/nsfs.h>
  192. #include <linux/perf_event.h>
  193. #include <linux/random.h>
  194. #include <linux/reboot.h>
  195. #include <linux/rtnetlink.h>
  196. #include <linux/ptrace.h>
  197. #include <linux/sched.h>
  198. #include <linux/seccomp.h>
  199. #include <linux/sockios.h>
  200. #include <linux/wait.h>
  201. #include <linux/icmpv6.h>
  202. #include <linux/serial.h>
  203. #include <linux/can.h>
  204. #include <linux/vm_sockets.h>
  205. #include <linux/taskstats.h>
  206. #include <linux/genetlink.h>
  207. #include <linux/watchdog.h>
  208. #include <linux/hdreg.h>
  209. #include <linux/rtc.h>
  210. #include <linux/if_xdp.h>
  211. #include <linux/cryptouser.h>
  212. #include <mtd/ubi-user.h>
  213. #include <net/route.h>
  214. #if defined(__sparc__)
  215. // On sparc{,64}, the kernel defines struct termios2 itself which clashes with the
  216. // definition in glibc. As only the error constants are needed here, include the
  217. // generic termibits.h (which is included by termbits.h on sparc).
  218. #include <asm-generic/termbits.h>
  219. #else
  220. #include <asm/termbits.h>
  221. #endif
  222. #ifndef MSG_FASTOPEN
  223. #define MSG_FASTOPEN 0x20000000
  224. #endif
  225. #ifndef PTRACE_GETREGS
  226. #define PTRACE_GETREGS 0xc
  227. #endif
  228. #ifndef PTRACE_SETREGS
  229. #define PTRACE_SETREGS 0xd
  230. #endif
  231. #ifndef SOL_NETLINK
  232. #define SOL_NETLINK 270
  233. #endif
  234. #ifdef SOL_BLUETOOTH
  235. // SPARC includes this in /usr/include/sparc64-linux-gnu/bits/socket.h
  236. // but it is already in bluetooth_linux.go
  237. #undef SOL_BLUETOOTH
  238. #endif
  239. // Certain constants are missing from the fs/crypto UAPI
  240. #define FS_KEY_DESC_PREFIX "fscrypt:"
  241. #define FS_KEY_DESC_PREFIX_SIZE 8
  242. #define FS_MAX_KEY_SIZE 64
  243. '
  244. includes_NetBSD='
  245. #include <sys/types.h>
  246. #include <sys/param.h>
  247. #include <sys/event.h>
  248. #include <sys/extattr.h>
  249. #include <sys/mman.h>
  250. #include <sys/mount.h>
  251. #include <sys/socket.h>
  252. #include <sys/sockio.h>
  253. #include <sys/sysctl.h>
  254. #include <sys/termios.h>
  255. #include <sys/ttycom.h>
  256. #include <sys/wait.h>
  257. #include <net/bpf.h>
  258. #include <net/if.h>
  259. #include <net/if_types.h>
  260. #include <net/route.h>
  261. #include <netinet/in.h>
  262. #include <netinet/in_systm.h>
  263. #include <netinet/ip.h>
  264. #include <netinet/ip_mroute.h>
  265. #include <netinet/if_ether.h>
  266. // Needed since <sys/param.h> refers to it...
  267. #define schedppq 1
  268. '
  269. includes_OpenBSD='
  270. #include <sys/types.h>
  271. #include <sys/param.h>
  272. #include <sys/event.h>
  273. #include <sys/mman.h>
  274. #include <sys/mount.h>
  275. #include <sys/socket.h>
  276. #include <sys/sockio.h>
  277. #include <sys/stat.h>
  278. #include <sys/sysctl.h>
  279. #include <sys/termios.h>
  280. #include <sys/ttycom.h>
  281. #include <sys/unistd.h>
  282. #include <sys/wait.h>
  283. #include <net/bpf.h>
  284. #include <net/if.h>
  285. #include <net/if_types.h>
  286. #include <net/if_var.h>
  287. #include <net/route.h>
  288. #include <netinet/in.h>
  289. #include <netinet/in_systm.h>
  290. #include <netinet/ip.h>
  291. #include <netinet/ip_mroute.h>
  292. #include <netinet/if_ether.h>
  293. #include <net/if_bridge.h>
  294. // We keep some constants not supported in OpenBSD 5.5 and beyond for
  295. // the promise of compatibility.
  296. #define EMUL_ENABLED 0x1
  297. #define EMUL_NATIVE 0x2
  298. #define IPV6_FAITH 0x1d
  299. #define IPV6_OPTIONS 0x1
  300. #define IPV6_RTHDR_STRICT 0x1
  301. #define IPV6_SOCKOPT_RESERVED1 0x3
  302. #define SIOCGIFGENERIC 0xc020693a
  303. #define SIOCSIFGENERIC 0x80206939
  304. #define WALTSIG 0x4
  305. '
  306. includes_SunOS='
  307. #include <limits.h>
  308. #include <sys/types.h>
  309. #include <sys/socket.h>
  310. #include <sys/sockio.h>
  311. #include <sys/stat.h>
  312. #include <sys/mman.h>
  313. #include <sys/wait.h>
  314. #include <sys/ioctl.h>
  315. #include <sys/mkdev.h>
  316. #include <net/bpf.h>
  317. #include <net/if.h>
  318. #include <net/if_arp.h>
  319. #include <net/if_types.h>
  320. #include <net/route.h>
  321. #include <netinet/in.h>
  322. #include <termios.h>
  323. #include <netinet/ip.h>
  324. #include <netinet/ip_mroute.h>
  325. '
  326. includes='
  327. #include <sys/types.h>
  328. #include <sys/file.h>
  329. #include <fcntl.h>
  330. #include <dirent.h>
  331. #include <sys/socket.h>
  332. #include <netinet/in.h>
  333. #include <netinet/ip.h>
  334. #include <netinet/ip6.h>
  335. #include <netinet/tcp.h>
  336. #include <errno.h>
  337. #include <sys/signal.h>
  338. #include <signal.h>
  339. #include <sys/resource.h>
  340. #include <time.h>
  341. '
  342. ccflags="$@"
  343. # Write go tool cgo -godefs input.
  344. (
  345. echo package unix
  346. echo
  347. echo '/*'
  348. indirect="includes_$(uname)"
  349. echo "${!indirect} $includes"
  350. echo '*/'
  351. echo 'import "C"'
  352. echo 'import "syscall"'
  353. echo
  354. echo 'const ('
  355. # The gcc command line prints all the #defines
  356. # it encounters while processing the input
  357. echo "${!indirect} $includes" | $CC -x c - -E -dM $ccflags |
  358. awk '
  359. $1 != "#define" || $2 ~ /\(/ || $3 == "" {next}
  360. $2 ~ /^E([ABCD]X|[BIS]P|[SD]I|S|FL)$/ {next} # 386 registers
  361. $2 ~ /^(SIGEV_|SIGSTKSZ|SIGRT(MIN|MAX))/ {next}
  362. $2 ~ /^(SCM_SRCRT)$/ {next}
  363. $2 ~ /^(MAP_FAILED)$/ {next}
  364. $2 ~ /^ELF_.*$/ {next}# <asm/elf.h> contains ELF_ARCH, etc.
  365. $2 ~ /^EXTATTR_NAMESPACE_NAMES/ ||
  366. $2 ~ /^EXTATTR_NAMESPACE_[A-Z]+_STRING/ {next}
  367. $2 !~ /^ECCAPBITS/ &&
  368. $2 !~ /^ETH_/ &&
  369. $2 !~ /^EPROC_/ &&
  370. $2 !~ /^EQUIV_/ &&
  371. $2 !~ /^EXPR_/ &&
  372. $2 ~ /^E[A-Z0-9_]+$/ ||
  373. $2 ~ /^B[0-9_]+$/ ||
  374. $2 ~ /^(OLD|NEW)DEV$/ ||
  375. $2 == "BOTHER" ||
  376. $2 ~ /^CI?BAUD(EX)?$/ ||
  377. $2 == "IBSHIFT" ||
  378. $2 ~ /^V[A-Z0-9]+$/ ||
  379. $2 ~ /^CS[A-Z0-9]/ ||
  380. $2 ~ /^I(SIG|CANON|CRNL|UCLC|EXTEN|MAXBEL|STRIP|UTF8)$/ ||
  381. $2 ~ /^IGN/ ||
  382. $2 ~ /^IX(ON|ANY|OFF)$/ ||
  383. $2 ~ /^IN(LCR|PCK)$/ ||
  384. $2 !~ "X86_CR3_PCID_NOFLUSH" &&
  385. $2 ~ /(^FLU?SH)|(FLU?SH$)/ ||
  386. $2 ~ /^C(LOCAL|READ|MSPAR|RTSCTS)$/ ||
  387. $2 == "BRKINT" ||
  388. $2 == "HUPCL" ||
  389. $2 == "PENDIN" ||
  390. $2 == "TOSTOP" ||
  391. $2 == "XCASE" ||
  392. $2 == "ALTWERASE" ||
  393. $2 == "NOKERNINFO" ||
  394. $2 ~ /^PAR/ ||
  395. $2 ~ /^SIG[^_]/ ||
  396. $2 ~ /^O[CNPFPL][A-Z]+[^_][A-Z]+$/ ||
  397. $2 ~ /^(NL|CR|TAB|BS|VT|FF)DLY$/ ||
  398. $2 ~ /^(NL|CR|TAB|BS|VT|FF)[0-9]$/ ||
  399. $2 ~ /^O?XTABS$/ ||
  400. $2 ~ /^TC[IO](ON|OFF)$/ ||
  401. $2 ~ /^IN_/ ||
  402. $2 ~ /^LOCK_(SH|EX|NB|UN)$/ ||
  403. $2 ~ /^LO_(KEY|NAME)_SIZE$/ ||
  404. $2 ~ /^LOOP_(CLR|CTL|GET|SET)_/ ||
  405. $2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|ICMP6|TCP|MCAST|EVFILT|NOTE|EV|SHUT|PROT|MAP|MFD|T?PACKET|MSG|SCM|MCL|DT|MADV|PR)_/ ||
  406. $2 ~ /^TP_STATUS_/ ||
  407. $2 ~ /^FALLOC_/ ||
  408. $2 == "ICMPV6_FILTER" ||
  409. $2 == "SOMAXCONN" ||
  410. $2 == "NAME_MAX" ||
  411. $2 == "IFNAMSIZ" ||
  412. $2 ~ /^CTL_(HW|KERN|MAXNAME|NET|QUERY)$/ ||
  413. $2 ~ /^KERN_(HOSTNAME|OS(RELEASE|TYPE)|VERSION)$/ ||
  414. $2 ~ /^HW_MACHINE$/ ||
  415. $2 ~ /^SYSCTL_VERS/ ||
  416. $2 !~ "MNT_BITS" &&
  417. $2 ~ /^(MS|MNT|UMOUNT)_/ ||
  418. $2 ~ /^NS_GET_/ ||
  419. $2 ~ /^TUN(SET|GET|ATTACH|DETACH)/ ||
  420. $2 ~ /^(O|F|[ES]?FD|NAME|S|PTRACE|PT)_/ ||
  421. $2 ~ /^KEXEC_/ ||
  422. $2 ~ /^LINUX_REBOOT_CMD_/ ||
  423. $2 ~ /^LINUX_REBOOT_MAGIC[12]$/ ||
  424. $2 ~ /^MODULE_INIT_/ ||
  425. $2 !~ "NLA_TYPE_MASK" &&
  426. $2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTC|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P|NETNSA)_/ ||
  427. $2 ~ /^SIOC/ ||
  428. $2 ~ /^TIOC/ ||
  429. $2 ~ /^TCGET/ ||
  430. $2 ~ /^TCSET/ ||
  431. $2 ~ /^TC(FLSH|SBRKP?|XONC)$/ ||
  432. $2 !~ "RTF_BITS" &&
  433. $2 ~ /^(IFF|IFT|NET_RT|RTM|RTF|RTV|RTA|RTAX)_/ ||
  434. $2 ~ /^BIOC/ ||
  435. $2 ~ /^RUSAGE_(SELF|CHILDREN|THREAD)/ ||
  436. $2 ~ /^RLIMIT_(AS|CORE|CPU|DATA|FSIZE|LOCKS|MEMLOCK|MSGQUEUE|NICE|NOFILE|NPROC|RSS|RTPRIO|RTTIME|SIGPENDING|STACK)|RLIM_INFINITY/ ||
  437. $2 ~ /^PRIO_(PROCESS|PGRP|USER)/ ||
  438. $2 ~ /^CLONE_[A-Z_]+/ ||
  439. $2 !~ /^(BPF_TIMEVAL|BPF_FIB_LOOKUP_[A-Z]+)$/ &&
  440. $2 ~ /^(BPF|DLT)_/ ||
  441. $2 ~ /^(CLOCK|TIMER)_/ ||
  442. $2 ~ /^CAN_/ ||
  443. $2 ~ /^CAP_/ ||
  444. $2 ~ /^ALG_/ ||
  445. $2 ~ /^FS_(POLICY_FLAGS|KEY_DESC|ENCRYPTION_MODE|[A-Z0-9_]+_KEY_SIZE|IOC_(GET|SET)_ENCRYPTION)/ ||
  446. $2 ~ /^GRND_/ ||
  447. $2 ~ /^RND/ ||
  448. $2 ~ /^KEY_(SPEC|REQKEY_DEFL)_/ ||
  449. $2 ~ /^KEYCTL_/ ||
  450. $2 ~ /^PERF_EVENT_IOC_/ ||
  451. $2 ~ /^SECCOMP_MODE_/ ||
  452. $2 ~ /^SPLICE_/ ||
  453. $2 ~ /^SYNC_FILE_RANGE_/ ||
  454. $2 !~ /^AUDIT_RECORD_MAGIC/ &&
  455. $2 !~ /IOC_MAGIC/ &&
  456. $2 ~ /^[A-Z][A-Z0-9_]+_MAGIC2?$/ ||
  457. $2 ~ /^(VM|VMADDR)_/ ||
  458. $2 ~ /^IOCTL_VM_SOCKETS_/ ||
  459. $2 ~ /^(TASKSTATS|TS)_/ ||
  460. $2 ~ /^CGROUPSTATS_/ ||
  461. $2 ~ /^GENL_/ ||
  462. $2 ~ /^STATX_/ ||
  463. $2 ~ /^RENAME/ ||
  464. $2 ~ /^UBI_IOC[A-Z]/ ||
  465. $2 ~ /^UTIME_/ ||
  466. $2 ~ /^XATTR_(CREATE|REPLACE|NO(DEFAULT|FOLLOW|SECURITY)|SHOWCOMPRESSION)/ ||
  467. $2 ~ /^ATTR_(BIT_MAP_COUNT|(CMN|VOL|FILE)_)/ ||
  468. $2 ~ /^FSOPT_/ ||
  469. $2 ~ /^WDIOC_/ ||
  470. $2 ~ /^NFN/ ||
  471. $2 ~ /^XDP_/ ||
  472. $2 ~ /^(HDIO|WIN|SMART)_/ ||
  473. $2 ~ /^CRYPTO_/ ||
  474. $2 !~ "WMESGLEN" &&
  475. $2 ~ /^W[A-Z0-9]+$/ ||
  476. $2 ~/^PPPIOC/ ||
  477. $2 ~ /^FAN_|FANOTIFY_/ ||
  478. $2 ~ /^BLK[A-Z]*(GET$|SET$|BUF$|PART$|SIZE)/ {printf("\t%s = C.%s\n", $2, $2)}
  479. $2 ~ /^__WCOREFLAG$/ {next}
  480. $2 ~ /^__W[A-Z0-9]+$/ {printf("\t%s = C.%s\n", substr($2,3), $2)}
  481. {next}
  482. ' | sort
  483. echo ')'
  484. ) >_const.go
  485. # Pull out the error names for later.
  486. errors=$(
  487. echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
  488. awk '$1=="#define" && $2 ~ /^E[A-Z0-9_]+$/ { print $2 }' |
  489. sort
  490. )
  491. # Pull out the signal names for later.
  492. signals=$(
  493. echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
  494. awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' |
  495. egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' |
  496. sort
  497. )
  498. # Again, writing regexps to a file.
  499. echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
  500. awk '$1=="#define" && $2 ~ /^E[A-Z0-9_]+$/ { print "^\t" $2 "[ \t]*=" }' |
  501. sort >_error.grep
  502. echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
  503. awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' |
  504. egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' |
  505. sort >_signal.grep
  506. echo '// mkerrors.sh' "$@"
  507. echo '// Code generated by the command above; see README.md. DO NOT EDIT.'
  508. echo
  509. echo "// +build ${GOARCH},${GOOS}"
  510. echo
  511. go tool cgo -godefs -- "$@" _const.go >_error.out
  512. cat _error.out | grep -vf _error.grep | grep -vf _signal.grep
  513. echo
  514. echo '// Errors'
  515. echo 'const ('
  516. cat _error.out | grep -f _error.grep | sed 's/=\(.*\)/= syscall.Errno(\1)/'
  517. echo ')'
  518. echo
  519. echo '// Signals'
  520. echo 'const ('
  521. cat _error.out | grep -f _signal.grep | sed 's/=\(.*\)/= syscall.Signal(\1)/'
  522. echo ')'
  523. # Run C program to print error and syscall strings.
  524. (
  525. echo -E "
  526. #include <stdio.h>
  527. #include <stdlib.h>
  528. #include <errno.h>
  529. #include <ctype.h>
  530. #include <string.h>
  531. #include <signal.h>
  532. #define nelem(x) (sizeof(x)/sizeof((x)[0]))
  533. enum { A = 'A', Z = 'Z', a = 'a', z = 'z' }; // avoid need for single quotes below
  534. struct tuple {
  535. int num;
  536. const char *name;
  537. };
  538. struct tuple errors[] = {
  539. "
  540. for i in $errors
  541. do
  542. echo -E ' {'$i', "'$i'" },'
  543. done
  544. echo -E "
  545. };
  546. struct tuple signals[] = {
  547. "
  548. for i in $signals
  549. do
  550. echo -E ' {'$i', "'$i'" },'
  551. done
  552. # Use -E because on some systems bash builtin interprets \n itself.
  553. echo -E '
  554. };
  555. static int
  556. tuplecmp(const void *a, const void *b)
  557. {
  558. return ((struct tuple *)a)->num - ((struct tuple *)b)->num;
  559. }
  560. int
  561. main(void)
  562. {
  563. int i, e;
  564. char buf[1024], *p;
  565. printf("\n\n// Error table\n");
  566. printf("var errorList = [...]struct {\n");
  567. printf("\tnum syscall.Errno\n");
  568. printf("\tname string\n");
  569. printf("\tdesc string\n");
  570. printf("} {\n");
  571. qsort(errors, nelem(errors), sizeof errors[0], tuplecmp);
  572. for(i=0; i<nelem(errors); i++) {
  573. e = errors[i].num;
  574. if(i > 0 && errors[i-1].num == e)
  575. continue;
  576. strcpy(buf, strerror(e));
  577. // lowercase first letter: Bad -> bad, but STREAM -> STREAM.
  578. if(A <= buf[0] && buf[0] <= Z && a <= buf[1] && buf[1] <= z)
  579. buf[0] += a - A;
  580. printf("\t{ %d, \"%s\", \"%s\" },\n", e, errors[i].name, buf);
  581. }
  582. printf("}\n\n");
  583. printf("\n\n// Signal table\n");
  584. printf("var signalList = [...]struct {\n");
  585. printf("\tnum syscall.Signal\n");
  586. printf("\tname string\n");
  587. printf("\tdesc string\n");
  588. printf("} {\n");
  589. qsort(signals, nelem(signals), sizeof signals[0], tuplecmp);
  590. for(i=0; i<nelem(signals); i++) {
  591. e = signals[i].num;
  592. if(i > 0 && signals[i-1].num == e)
  593. continue;
  594. strcpy(buf, strsignal(e));
  595. // lowercase first letter: Bad -> bad, but STREAM -> STREAM.
  596. if(A <= buf[0] && buf[0] <= Z && a <= buf[1] && buf[1] <= z)
  597. buf[0] += a - A;
  598. // cut trailing : number.
  599. p = strrchr(buf, ":"[0]);
  600. if(p)
  601. *p = '\0';
  602. printf("\t{ %d, \"%s\", \"%s\" },\n", e, signals[i].name, buf);
  603. }
  604. printf("}\n\n");
  605. return 0;
  606. }
  607. '
  608. ) >_errors.c
  609. $CC $ccflags -o _errors _errors.c && $GORUN ./_errors && rm -f _errors.c _errors _const.go _error.grep _signal.grep _error.out