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