github.com/lianghucheng/zrddz@v0.0.0-20200923083010-c71f680932e2/src/golang.org/x/sys/unix/mkerrors.sh (about)

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