mkerrors.sh 16 KB

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