mkerrors.sh 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657
  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/errqueue.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. #if defined(__sparc__)
  209. // On sparc{,64}, the kernel defines struct termios2 itself which clashes with the
  210. // definition in glibc. As only the error constants are needed here, include the
  211. // generic termibits.h (which is included by termbits.h on sparc).
  212. #include <asm-generic/termbits.h>
  213. #else
  214. #include <asm/termbits.h>
  215. #endif
  216. #ifndef MSG_FASTOPEN
  217. #define MSG_FASTOPEN 0x20000000
  218. #endif
  219. #ifndef PTRACE_GETREGS
  220. #define PTRACE_GETREGS 0xc
  221. #endif
  222. #ifndef PTRACE_SETREGS
  223. #define PTRACE_SETREGS 0xd
  224. #endif
  225. #ifndef SOL_NETLINK
  226. #define SOL_NETLINK 270
  227. #endif
  228. #ifdef SOL_BLUETOOTH
  229. // SPARC includes this in /usr/include/sparc64-linux-gnu/bits/socket.h
  230. // but it is already in bluetooth_linux.go
  231. #undef SOL_BLUETOOTH
  232. #endif
  233. // Certain constants are missing from the fs/crypto UAPI
  234. #define FS_KEY_DESC_PREFIX "fscrypt:"
  235. #define FS_KEY_DESC_PREFIX_SIZE 8
  236. #define FS_MAX_KEY_SIZE 64
  237. '
  238. includes_NetBSD='
  239. #include <sys/types.h>
  240. #include <sys/param.h>
  241. #include <sys/event.h>
  242. #include <sys/extattr.h>
  243. #include <sys/mman.h>
  244. #include <sys/mount.h>
  245. #include <sys/socket.h>
  246. #include <sys/sockio.h>
  247. #include <sys/sysctl.h>
  248. #include <sys/termios.h>
  249. #include <sys/ttycom.h>
  250. #include <sys/wait.h>
  251. #include <net/bpf.h>
  252. #include <net/if.h>
  253. #include <net/if_types.h>
  254. #include <net/route.h>
  255. #include <netinet/in.h>
  256. #include <netinet/in_systm.h>
  257. #include <netinet/ip.h>
  258. #include <netinet/ip_mroute.h>
  259. #include <netinet/if_ether.h>
  260. // Needed since <sys/param.h> refers to it...
  261. #define schedppq 1
  262. '
  263. includes_OpenBSD='
  264. #include <sys/types.h>
  265. #include <sys/param.h>
  266. #include <sys/event.h>
  267. #include <sys/mman.h>
  268. #include <sys/mount.h>
  269. #include <sys/socket.h>
  270. #include <sys/sockio.h>
  271. #include <sys/stat.h>
  272. #include <sys/sysctl.h>
  273. #include <sys/termios.h>
  274. #include <sys/ttycom.h>
  275. #include <sys/unistd.h>
  276. #include <sys/wait.h>
  277. #include <net/bpf.h>
  278. #include <net/if.h>
  279. #include <net/if_types.h>
  280. #include <net/if_var.h>
  281. #include <net/route.h>
  282. #include <netinet/in.h>
  283. #include <netinet/in_systm.h>
  284. #include <netinet/ip.h>
  285. #include <netinet/ip_mroute.h>
  286. #include <netinet/if_ether.h>
  287. #include <net/if_bridge.h>
  288. // We keep some constants not supported in OpenBSD 5.5 and beyond for
  289. // the promise of compatibility.
  290. #define EMUL_ENABLED 0x1
  291. #define EMUL_NATIVE 0x2
  292. #define IPV6_FAITH 0x1d
  293. #define IPV6_OPTIONS 0x1
  294. #define IPV6_RTHDR_STRICT 0x1
  295. #define IPV6_SOCKOPT_RESERVED1 0x3
  296. #define SIOCGIFGENERIC 0xc020693a
  297. #define SIOCSIFGENERIC 0x80206939
  298. #define WALTSIG 0x4
  299. '
  300. includes_SunOS='
  301. #include <limits.h>
  302. #include <sys/types.h>
  303. #include <sys/socket.h>
  304. #include <sys/sockio.h>
  305. #include <sys/stat.h>
  306. #include <sys/mman.h>
  307. #include <sys/wait.h>
  308. #include <sys/ioctl.h>
  309. #include <sys/mkdev.h>
  310. #include <net/bpf.h>
  311. #include <net/if.h>
  312. #include <net/if_arp.h>
  313. #include <net/if_types.h>
  314. #include <net/route.h>
  315. #include <netinet/in.h>
  316. #include <termios.h>
  317. #include <netinet/ip.h>
  318. #include <netinet/ip_mroute.h>
  319. '
  320. includes='
  321. #include <sys/types.h>
  322. #include <sys/file.h>
  323. #include <fcntl.h>
  324. #include <dirent.h>
  325. #include <sys/socket.h>
  326. #include <netinet/in.h>
  327. #include <netinet/ip.h>
  328. #include <netinet/ip6.h>
  329. #include <netinet/tcp.h>
  330. #include <errno.h>
  331. #include <sys/signal.h>
  332. #include <signal.h>
  333. #include <sys/resource.h>
  334. #include <time.h>
  335. '
  336. ccflags="$@"
  337. # Write go tool cgo -godefs input.
  338. (
  339. echo package unix
  340. echo
  341. echo '/*'
  342. indirect="includes_$(uname)"
  343. echo "${!indirect} $includes"
  344. echo '*/'
  345. echo 'import "C"'
  346. echo 'import "syscall"'
  347. echo
  348. echo 'const ('
  349. # The gcc command line prints all the #defines
  350. # it encounters while processing the input
  351. echo "${!indirect} $includes" | $CC -x c - -E -dM $ccflags |
  352. awk '
  353. $1 != "#define" || $2 ~ /\(/ || $3 == "" {next}
  354. $2 ~ /^E([ABCD]X|[BIS]P|[SD]I|S|FL)$/ {next} # 386 registers
  355. $2 ~ /^(SIGEV_|SIGSTKSZ|SIGRT(MIN|MAX))/ {next}
  356. $2 ~ /^(SCM_SRCRT)$/ {next}
  357. $2 ~ /^(MAP_FAILED)$/ {next}
  358. $2 ~ /^ELF_.*$/ {next}# <asm/elf.h> contains ELF_ARCH, etc.
  359. $2 ~ /^EXTATTR_NAMESPACE_NAMES/ ||
  360. $2 ~ /^EXTATTR_NAMESPACE_[A-Z]+_STRING/ {next}
  361. $2 !~ /^ECCAPBITS/ &&
  362. $2 !~ /^ETH_/ &&
  363. $2 !~ /^EPROC_/ &&
  364. $2 !~ /^EQUIV_/ &&
  365. $2 !~ /^EXPR_/ &&
  366. $2 ~ /^E[A-Z0-9_]+$/ ||
  367. $2 ~ /^B[0-9_]+$/ ||
  368. $2 ~ /^(OLD|NEW)DEV$/ ||
  369. $2 == "BOTHER" ||
  370. $2 ~ /^CI?BAUD(EX)?$/ ||
  371. $2 == "IBSHIFT" ||
  372. $2 ~ /^V[A-Z0-9]+$/ ||
  373. $2 ~ /^CS[A-Z0-9]/ ||
  374. $2 ~ /^I(SIG|CANON|CRNL|UCLC|EXTEN|MAXBEL|STRIP|UTF8)$/ ||
  375. $2 ~ /^IGN/ ||
  376. $2 ~ /^IX(ON|ANY|OFF)$/ ||
  377. $2 ~ /^IN(LCR|PCK)$/ ||
  378. $2 !~ "X86_CR3_PCID_NOFLUSH" &&
  379. $2 ~ /(^FLU?SH)|(FLU?SH$)/ ||
  380. $2 ~ /^C(LOCAL|READ|MSPAR|RTSCTS)$/ ||
  381. $2 == "BRKINT" ||
  382. $2 == "HUPCL" ||
  383. $2 == "PENDIN" ||
  384. $2 == "TOSTOP" ||
  385. $2 == "XCASE" ||
  386. $2 == "ALTWERASE" ||
  387. $2 == "NOKERNINFO" ||
  388. $2 ~ /^PAR/ ||
  389. $2 ~ /^SIG[^_]/ ||
  390. $2 ~ /^O[CNPFPL][A-Z]+[^_][A-Z]+$/ ||
  391. $2 ~ /^(NL|CR|TAB|BS|VT|FF)DLY$/ ||
  392. $2 ~ /^(NL|CR|TAB|BS|VT|FF)[0-9]$/ ||
  393. $2 ~ /^O?XTABS$/ ||
  394. $2 ~ /^TC[IO](ON|OFF)$/ ||
  395. $2 ~ /^IN_/ ||
  396. $2 ~ /^LOCK_(SH|EX|NB|UN)$/ ||
  397. $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)_/ ||
  398. $2 ~ /^TP_STATUS_/ ||
  399. $2 ~ /^FALLOC_/ ||
  400. $2 == "ICMPV6_FILTER" ||
  401. $2 == "SOMAXCONN" ||
  402. $2 == "NAME_MAX" ||
  403. $2 == "IFNAMSIZ" ||
  404. $2 ~ /^CTL_(HW|KERN|MAXNAME|NET|QUERY)$/ ||
  405. $2 ~ /^KERN_(HOSTNAME|OS(RELEASE|TYPE)|VERSION)$/ ||
  406. $2 ~ /^HW_MACHINE$/ ||
  407. $2 ~ /^SYSCTL_VERS/ ||
  408. $2 !~ "MNT_BITS" &&
  409. $2 ~ /^(MS|MNT|UMOUNT)_/ ||
  410. $2 ~ /^TUN(SET|GET|ATTACH|DETACH)/ ||
  411. $2 ~ /^(O|F|[ES]?FD|NAME|S|PTRACE|PT)_/ ||
  412. $2 ~ /^KEXEC_/ ||
  413. $2 ~ /^LINUX_REBOOT_CMD_/ ||
  414. $2 ~ /^LINUX_REBOOT_MAGIC[12]$/ ||
  415. $2 ~ /^MODULE_INIT_/ ||
  416. $2 !~ "NLA_TYPE_MASK" &&
  417. $2 ~ /^(NETLINK|NLM|NLMSG|NLA|IFA|IFAN|RT|RTC|RTCF|RTN|RTPROT|RTNH|ARPHRD|ETH_P|NETNSA)_/ ||
  418. $2 ~ /^SIOC/ ||
  419. $2 ~ /^TIOC/ ||
  420. $2 ~ /^TCGET/ ||
  421. $2 ~ /^TCSET/ ||
  422. $2 ~ /^TC(FLSH|SBRKP?|XONC)$/ ||
  423. $2 !~ "RTF_BITS" &&
  424. $2 ~ /^(IFF|IFT|NET_RT|RTM|RTF|RTV|RTA|RTAX)_/ ||
  425. $2 ~ /^BIOC/ ||
  426. $2 ~ /^RUSAGE_(SELF|CHILDREN|THREAD)/ ||
  427. $2 ~ /^RLIMIT_(AS|CORE|CPU|DATA|FSIZE|LOCKS|MEMLOCK|MSGQUEUE|NICE|NOFILE|NPROC|RSS|RTPRIO|RTTIME|SIGPENDING|STACK)|RLIM_INFINITY/ ||
  428. $2 ~ /^PRIO_(PROCESS|PGRP|USER)/ ||
  429. $2 ~ /^CLONE_[A-Z_]+/ ||
  430. $2 !~ /^(BPF_TIMEVAL)$/ &&
  431. $2 ~ /^(BPF|DLT)_/ ||
  432. $2 ~ /^(CLOCK|TIMER)_/ ||
  433. $2 ~ /^CAN_/ ||
  434. $2 ~ /^CAP_/ ||
  435. $2 ~ /^ALG_/ ||
  436. $2 ~ /^FS_(POLICY_FLAGS|KEY_DESC|ENCRYPTION_MODE|[A-Z0-9_]+_KEY_SIZE|IOC_(GET|SET)_ENCRYPTION)/ ||
  437. $2 ~ /^GRND_/ ||
  438. $2 ~ /^RND/ ||
  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