8597553
commit 26bf5a1029434c98db85947eed11ce3090b2f5db
8597553
Author: Florian Weimer <fweimer@redhat.com>
8597553
Date:   Mon Jun 19 13:17:03 2017 +0200
8597553
8597553
    resolv: Move res_randomid to its own file
8597553
8597553
diff --git a/resolv/Makefile b/resolv/Makefile
8597553
index 0ebb2af795c6fb7b..c2a8a3a631f6bb2e 100644
8597553
--- a/resolv/Makefile
8597553
+++ b/resolv/Makefile
8597553
@@ -28,7 +28,7 @@ headers	:= resolv.h \
8597553
 	   sys/bitypes.h
8597553
 
8597553
 routines := herror inet_addr inet_ntop inet_pton nsap_addr res_init \
8597553
-	    res_hconf res_libc res-state
8597553
+	    res_hconf res_libc res-state res_randomid
8597553
 
8597553
 tests = tst-aton tst-leaks tst-inet_ntop
8597553
 xtests = tst-leaks2
8597553
diff --git a/resolv/res_init.c b/resolv/res_init.c
8597553
index 57223b470af9ba4d..ef2e7c0db465dba6 100644
8597553
--- a/resolv/res_init.c
8597553
+++ b/resolv/res_init.c
8597553
@@ -479,13 +479,6 @@ net_mask (struct in_addr in)
8597553
 	return (htonl(IN_CLASSC_NET));
8597553
 }
8597553
 
8597553
-u_int
8597553
-res_randomid(void) {
8597553
-	return 0xffff & __getpid();
8597553
-}
8597553
-libc_hidden_def (__res_randomid)
8597553
-
8597553
-
8597553
 /*
8597553
  * This routine is for closing the socket if a virtual circuit is used and
8597553
  * the program wants to close it.  This provides support for endhostent()
8597553
diff --git a/resolv/res_randomid.c b/resolv/res_randomid.c
8597553
new file mode 100644
8597553
index 0000000000000000..e0dbe4c8ff259527
8597553
--- /dev/null
8597553
+++ b/resolv/res_randomid.c
8597553
@@ -0,0 +1,92 @@
8597553
+/* Legacy libresolv random number generator.
8597553
+   Copyright (C) 1995-2017 Free Software Foundation, Inc.
8597553
+   This file is part of the GNU C Library.
8597553
+
8597553
+   The GNU C Library is free software; you can redistribute it and/or
8597553
+   modify it under the terms of the GNU Lesser General Public
8597553
+   License as published by the Free Software Foundation; either
8597553
+   version 2.1 of the License, or (at your option) any later version.
8597553
+
8597553
+   The GNU C Library is distributed in the hope that it will be useful,
8597553
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
8597553
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
8597553
+   Lesser General Public License for more details.
8597553
+
8597553
+   You should have received a copy of the GNU Lesser General Public
8597553
+   License along with the GNU C Library; if not, see
8597553
+   <http://www.gnu.org/licenses/>.  */
8597553
+
8597553
+/*
8597553
+ * Copyright (c) 1985, 1989, 1993
8597553
+ *    The Regents of the University of California.  All rights reserved.
8597553
+ *
8597553
+ * Redistribution and use in source and binary forms, with or without
8597553
+ * modification, are permitted provided that the following conditions
8597553
+ * are met:
8597553
+ * 1. Redistributions of source code must retain the above copyright
8597553
+ *    notice, this list of conditions and the following disclaimer.
8597553
+ * 2. Redistributions in binary form must reproduce the above copyright
8597553
+ *    notice, this list of conditions and the following disclaimer in the
8597553
+ *    documentation and/or other materials provided with the distribution.
8597553
+ * 4. Neither the name of the University nor the names of its contributors
8597553
+ *    may be used to endorse or promote products derived from this software
8597553
+ *    without specific prior written permission.
8597553
+ *
8597553
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
8597553
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
8597553
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
8597553
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
8597553
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
8597553
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
8597553
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
8597553
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
8597553
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
8597553
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
8597553
+ * SUCH DAMAGE.
8597553
+ */
8597553
+
8597553
+/*
8597553
+ * Portions Copyright (c) 1993 by Digital Equipment Corporation.
8597553
+ *
8597553
+ * Permission to use, copy, modify, and distribute this software for any
8597553
+ * purpose with or without fee is hereby granted, provided that the above
8597553
+ * copyright notice and this permission notice appear in all copies, and that
8597553
+ * the name of Digital Equipment Corporation not be used in advertising or
8597553
+ * publicity pertaining to distribution of the document or software without
8597553
+ * specific, written prior permission.
8597553
+ *
8597553
+ * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
8597553
+ * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
8597553
+ * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
8597553
+ * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
8597553
+ * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
8597553
+ * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
8597553
+ * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
8597553
+ * SOFTWARE.
8597553
+ */
8597553
+
8597553
+/*
8597553
+ * Portions Copyright (c) 1996-1999 by Internet Software Consortium.
8597553
+ *
8597553
+ * Permission to use, copy, modify, and distribute this software for any
8597553
+ * purpose with or without fee is hereby granted, provided that the above
8597553
+ * copyright notice and this permission notice appear in all copies.
8597553
+ *
8597553
+ * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
8597553
+ * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
8597553
+ * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
8597553
+ * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
8597553
+ * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
8597553
+ * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
8597553
+ * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
8597553
+ * SOFTWARE.
8597553
+ */
8597553
+
8597553
+#include <resolv.h>
8597553
+#include <unistd.h>
8597553
+
8597553
+unsigned int
8597553
+res_randomid (void) {
8597553
+  return 0xffff & __getpid ();
8597553
+}
8597553
+libc_hidden_def (__res_randomid)