Accepting request 141620 from server:proxy
Fix build with glibc 2.17 (forwarded request 141616 from a_jaeger) OBS-URL: https://build.opensuse.org/request/show/141620 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/squid?expand=0&rev=2
This commit is contained in:
commit
cb730cec77
49
squid-glibc217.patch
Normal file
49
squid-glibc217.patch
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
Index: squid-3.2.3/src/icmp/pinger.cc
|
||||||
|
===================================================================
|
||||||
|
--- squid-3.2.3.orig/src/icmp/pinger.cc
|
||||||
|
+++ squid-3.2.3/src/icmp/pinger.cc
|
||||||
|
@@ -180,8 +180,18 @@ main(int argc, char *argv[])
|
||||||
|
}
|
||||||
|
max_fd = max(max_fd, squid_link);
|
||||||
|
|
||||||
|
- setgid(getgid());
|
||||||
|
- setuid(getuid());
|
||||||
|
+ if (setgid(getgid()) < 0) {
|
||||||
|
+ debugs(42, 0, "FATAL: pinger: setgid failed.");
|
||||||
|
+ icmp4.Close();
|
||||||
|
+ icmp6.Close();
|
||||||
|
+ exit (1);
|
||||||
|
+ }
|
||||||
|
+ if (setuid(getuid()) < 0) {
|
||||||
|
+ debugs(42, 0, "FATAL: pinger: setuid failed.");
|
||||||
|
+ icmp4.Close();
|
||||||
|
+ icmp6.Close();
|
||||||
|
+ exit (1);
|
||||||
|
+ }
|
||||||
|
|
||||||
|
last_check_time = squid_curtime;
|
||||||
|
|
||||||
|
Index: squid-3.2.3/src/tools.cc
|
||||||
|
===================================================================
|
||||||
|
--- squid-3.2.3.orig/src/tools.cc
|
||||||
|
+++ squid-3.2.3/src/tools.cc
|
||||||
|
@@ -757,7 +757,8 @@ enter_suid(void)
|
||||||
|
debugs(21, 3, "enter_suid: PID " << getpid() << " taking root priveleges");
|
||||||
|
#if HAVE_SETRESUID
|
||||||
|
|
||||||
|
- setresuid((uid_t)-1, 0, (uid_t)-1);
|
||||||
|
+ if (setresuid((uid_t)-1, 0, (uid_t)-1) < 0)
|
||||||
|
+ debugs (21, 3, "enter_suid: setresuid failed" << xstrerror ());
|
||||||
|
#else
|
||||||
|
|
||||||
|
setuid(0);
|
||||||
|
@@ -782,7 +783,8 @@ no_suid(void)
|
||||||
|
uid = geteuid();
|
||||||
|
debugs(21, 3, "no_suid: PID " << getpid() << " giving up root priveleges forever");
|
||||||
|
|
||||||
|
- setuid(0);
|
||||||
|
+ if (setuid(0) < 0)
|
||||||
|
+ debugs(50, 1, "no_suid: setuid (0): " << xstrerror());
|
||||||
|
|
||||||
|
if (setuid(uid) < 0)
|
||||||
|
debugs(50, 1, "no_suid: setuid: " << xstrerror());
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Nov 17 09:38:19 UTC 2012 - aj@suse.de
|
||||||
|
|
||||||
|
- Fix build with glibc 2.17 (add patch squid-glibc217.patch).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Oct 21 14:30:21 UTC 2012 - chris@computersalat.de
|
Sun Oct 21 14:30:21 UTC 2012 - chris@computersalat.de
|
||||||
|
|
||||||
|
@ -60,7 +60,8 @@ Patch101: %{name}-nobuilddates.patch
|
|||||||
## File is compiled without RPM_OPT_FLAGS
|
## File is compiled without RPM_OPT_FLAGS
|
||||||
# squid3 no-rpm-opt-flags <cmdline>:./cf_gen.cc
|
# squid3 no-rpm-opt-flags <cmdline>:./cf_gen.cc
|
||||||
Patch102: %{name}-compiled_without_RPM_OPT_FLAGS.patch
|
Patch102: %{name}-compiled_without_RPM_OPT_FLAGS.patch
|
||||||
|
# Handle setuid/setgid failure
|
||||||
|
Patch103: squid-glibc217.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
PreReq: %fillup_prereq
|
PreReq: %fillup_prereq
|
||||||
PreReq: %insserv_prereq
|
PreReq: %insserv_prereq
|
||||||
@ -149,6 +150,7 @@ perl -p -i -e 's|/usr/local/bin/perl|/usr/bin/perl|' `find -name "*.pl"`
|
|||||||
chmod a-x CREDITS
|
chmod a-x CREDITS
|
||||||
%patch101
|
%patch101
|
||||||
%patch102
|
%patch102
|
||||||
|
%patch103 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%{optflags} -fPIE -fPIC -DOPENSSL_LOAD_CONF"
|
export CFLAGS="%{optflags} -fPIE -fPIC -DOPENSSL_LOAD_CONF"
|
||||||
|
Loading…
Reference in New Issue
Block a user