diff options
| author | Florian Weimer <fweimer@redhat.com> | 2021-07-19 07:55:27 +0200 |
|---|---|---|
| committer | Florian Weimer <fweimer@redhat.com> | 2021-07-19 07:56:21 +0200 |
| commit | 4e1d3db1e86804283cd21f3186e06d397284ac70 (patch) | |
| tree | e26a645bbb5e551980fc41cb5597397d92b939e9 | |
| parent | cff2c78c513ef8d51e69a6933f1c6aef8a24a6d6 (diff) | |
| download | glibc-4e1d3db1e86804283cd21f3186e06d397284ac70.tar.xz glibc-4e1d3db1e86804283cd21f3186e06d397284ac70.zip | |
resolv: Move ns_name_uncompress into its own file and into libc
And reformat to GNU style. Check for negative error returns
(instead of -1).
The symbol was moved using scripts/move-symbol-to-libc.py.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
69 files changed, 117 insertions, 57 deletions
diff --git a/include/arpa/nameser.h b/include/arpa/nameser.h index c4ec0aaf7a..dcceff823d 100644 --- a/include/arpa/nameser.h +++ b/include/arpa/nameser.h @@ -68,7 +68,6 @@ libresolv_hidden_proto (ns_parserr) libresolv_hidden_proto (ns_name_pton) libresolv_hidden_proto (ns_name_pack) libresolv_hidden_proto (ns_name_compress) -libresolv_hidden_proto (ns_name_uncompress) libresolv_hidden_proto (ns_sprintrr) libresolv_hidden_proto (ns_sprintrrf) libresolv_hidden_proto (ns_samedomain) @@ -80,6 +79,8 @@ extern __typeof (ns_name_ntop) __ns_name_ntop; libc_hidden_proto (__ns_name_ntop) extern __typeof (ns_name_skip) __ns_name_skip; libc_hidden_proto (__ns_name_skip) +extern __typeof (ns_name_uncompress) __ns_name_uncompress; +libc_hidden_proto (__ns_name_uncompress) extern __typeof (ns_name_unpack) __ns_name_unpack; libc_hidden_proto (__ns_name_unpack) diff --git a/resolv/Makefile b/resolv/Makefile index 91ce46a3b9..3145ddebb7 100644 --- a/resolv/Makefile +++ b/resolv/Makefile @@ -34,6 +34,7 @@ routines := \ inet_pton \ ns_name_ntop \ ns_name_skip \ + ns_name_uncompress \ ns_name_unpack \ nsap_addr \ res-close \ diff --git a/resolv/Versions b/resolv/Versions index b075881b24..9e8762f984 100644 --- a/resolv/Versions +++ b/resolv/Versions @@ -27,6 +27,7 @@ libc { GLIBC_2.9 { ns_name_ntop; ns_name_skip; + ns_name_uncompress; ns_name_unpack; } GLIBC_2.34 { @@ -38,6 +39,7 @@ libc { %endif ns_name_ntop; ns_name_skip; + ns_name_uncompress; ns_name_unpack; } GLIBC_PRIVATE { @@ -49,6 +51,7 @@ libc { __inet_pton_length; __ns_name_ntop; __ns_name_skip; + __ns_name_uncompress; __ns_name_unpack; __res_iclose; __resolv_context_get; @@ -152,7 +155,6 @@ libresolv { ns_name_pton; ns_name_rollback; ns_name_skip; - ns_name_uncompress; ns_parse_ttl; ns_parserr; ns_put16; diff --git a/resolv/ns_name.c b/resolv/ns_name.c index 58d6a60ce4..35e25cbd83 100644 --- a/resolv/ns_name.c +++ b/resolv/ns_name.c @@ -330,30 +330,6 @@ cleanup: libresolv_hidden_def (ns_name_pack) /*% - * Expand compressed domain name to presentation format. - * - * return: - *\li Number of bytes read out of `src', or -1 (with errno set). - * - * note: - *\li Root domain returns as "." not "". - */ -int -ns_name_uncompress(const u_char *msg, const u_char *eom, const u_char *src, - char *dst, size_t dstsiz) -{ - u_char tmp[NS_MAXCDNAME]; - int n; - - if ((n = ns_name_unpack(msg, eom, src, tmp, sizeof tmp)) == -1) - return (-1); - if (__ns_name_ntop (tmp, dst, dstsiz) == -1) - return (-1); - return (n); -} -libresolv_hidden_def (ns_name_uncompress) - -/*% * Compress a domain name into wire format, using compression pointers. * * return: diff --git a/resolv/ns_name_uncompress.c b/resolv/ns_name_uncompress.c new file mode 100644 index 0000000000..95ecbe315b --- /dev/null +++ b/resolv/ns_name_uncompress.c @@ -0,0 +1,45 @@ +/* Expand compressed domain name to presentation format. + * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 1996,1999 by Internet Software Consortium. |
