1 # awk script to generate errlist-compat.c
2 # Copyright (C) 2002-2013 Free Software Foundation, Inc.
3 # This file is part of the GNU C Library.
5 # The GNU C Library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
10 # The GNU C Library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with the GNU C Library; if not, see
17 # <http://www.gnu.org/licenses/>.
20 # This script takes the Versions file as input and looks for #errlist-compat
21 # magic comments, which have the form:
23 # where NNN is the number of elements in the sys_errlist for that version set.
24 # We need the awk variable `maxerr' defined to the current size of sys_errlist.
26 # If there is no magic comment matching the current size, we barf.
27 # Otherwise we generate code (errlist-compat.c) to define all the
28 # necessary compatibility symbols for older, smaller versions of sys_errlist.
31 # These two rules catch the Versions file contents.
32 NF ==
2 && $
2 ==
"{" { last_version = $
1; next }
33 $
1 ==
"#errlist-compat" {
34 # Don't process any further Versions files
38 print "*** this line seems bogus:", $
0 > "/dev/stderr";
41 version
[pos
+ 0] = cnt SUBSEP last_version
;
44 printf "*** %s #errlist-compat counts are not sorted\n", ARGV[ARGIND];
49 highest_version = last_version
;
54 if (! highest_version
) {
55 print "/* No sys_errlist/sys_nerr symbols defined on this platform. */";
61 if (highest
< count
) {
62 printf "*** errlist.c count %d vs Versions sys_errlist@%s count %d\n", \
63 count
, highest_version
, highest
> "/dev/stderr";
68 for (n =
0; n
< pos
; ++n
) {
69 split(version
[n
], t
, SUBSEP
)
71 gsub(/[^A
-Z0
-9_
]/, "_", v
);
78 print "/* This file was generated by errlist-compat.awk; DO NOT EDIT! */\n";
79 print "#include <shlib-compat.h>\n";
81 if (highest
> count
) {
82 printf "*** errlist.c count %d inflated to %s count %d (old errno.h?)\n", \
83 count
, highest_version
, highest
> "/dev/stderr";
84 printf "#define ERR_MAX %d\n\n", highest
- 1;
87 # same regardless of awk's ordering of the associative array.
88 num_compat_elems = asorti
(compat
, compat_indices
)
89 for (i =
1; i
<= num_compat_elems
; i
++) {
90 old = compat_indices
[i
]
93 printf "#if SHLIB_COMPAT (libc, %s, %s)\n", old
, new
;
94 printf "# include <bits/wordsize.h>\n";
95 printf "extern const char *const __sys_errlist_%s[NERR];\n", old
;
96 printf "const int __sys_nerr_%s = %d;\n", old
, n
;
97 printf "declare_symbol_alias (__sys_errlist_%s, _sys_errlist_internal,", \
99 printf " object, __WORDSIZE/8*%d)\n", n
;
100 printf "compat_symbol (libc, __sys_errlist_%s, sys_errlist, %s);\n", \
102 printf "compat_symbol (libc, __sys_nerr_%s, sys_nerr, %s);\n", old
, old
;
104 printf "extern const char *const ___sys_errlist_%s[NERR];\n", old
;
105 printf "extern const int __sys_nerr_%s;\n", old
;
106 printf "declare_symbol_alias (___sys_errlist_%s, _sys_errlist_internal,", \
108 printf " object, __WORDSIZE/8*%d)\n", n
;
109 printf "strong_alias (__sys_nerr_%s, ___sys_nerr_%s)\n", old
, old
;
110 printf "compat_symbol (libc, ___sys_errlist_%s, _sys_errlist, %s);\n", \
112 printf "compat_symbol (libc, ___sys_nerr_%s, _sys_nerr, %s);\n", old
, old
;
117 extern const char *const __sys_errlist_internal[NERR];\n\
118 extern const int __sys_nerr_internal;\n\
119 strong_alias (_sys_errlist_internal, __sys_errlist_internal)\n\
120 strong_alias (_sys_nerr_internal, __sys_nerr_internal)\n\
121 extern const char *const sys_errlist[NERR];\n\
122 versioned_symbol (libc, _sys_errlist_internal, sys_errlist, %s);\n\
123 versioned_symbol (libc, __sys_errlist_internal, _sys_errlist, %s);\n\
124 versioned_symbol (libc, _sys_nerr_internal, sys_nerr, %s);\n\
125 versioned_symbol (libc, __sys_nerr_internal, _sys_nerr, %s);\n", \
126 lastv
, lastv
, lastv
, lastv
;
129 link_warning (sys_errlist, \"\
130 `sys_errlist' is deprecated; use `strerror' or `strerror_r' instead\")\n\
131 link_warning (sys_nerr, \"\
132 `sys_nerr' is deprecated; use `strerror' or `strerror_r' instead\")";