]> git.ipfire.org Git - thirdparty/squid.git/log
thirdparty/squid.git
11 years agoBug 3186, Bug 3628: Digest authentication always sending stale=false for nonce
Henrik Nordstrom [Wed, 5 Mar 2014 02:48:25 +0000 (19:48 -0700)] 
Bug 3186, Bug 3628: Digest authentication always sending stale=false for nonce

11 years agodynamic_cert_mem_cache_size option related fixes
Christos Tsantilas [Tue, 4 Mar 2014 10:14:42 +0000 (03:14 -0700)] 
dynamic_cert_mem_cache_size option related fixes

This patch fixes the following problems:

1) The dynamic_cert_mem_cache_size does not change on reconfigure

2) When dynamic_cert_mem_cache_size of http_port set to 0 then:

   a) The dynamic certs cache is grow unlimited.
      This patch just disables certificates caching when this option set to 0.

   b) Huge amount of memory appeared as free cache memory in  "Cached ssl
      certificates statistic" page of cache manager.
      This problem caused because of a signed to unsigned int conversion.

  This is a Measurement Factory project

11 years agoFix umask default on crash report generated email
Amos Jeffries [Tue, 4 Mar 2014 10:05:16 +0000 (03:05 -0700)] 
Fix umask default on crash report generated email

11 years agoFix pthread library detection on FreeBSD 10
Amos Jeffries [Tue, 18 Feb 2014 14:00:50 +0000 (07:00 -0700)] 
Fix pthread library detection on FreeBSD 10

We should not be using "cut -b1" anywhere to determine OS version
number. It drops digits out of the major version number.

11 years agoBug 4029: intercepted HTTPS requests bypass caching checks
Rajiv Desai [Tue, 18 Feb 2014 08:55:52 +0000 (01:55 -0700)] 
Bug 4029: intercepted HTTPS requests bypass caching checks

11 years agoBug 4026: SSL and adaptation_access does not handle aborted connections
Nathan Hoad [Tue, 18 Feb 2014 08:55:04 +0000 (01:55 -0700)] 
Bug 4026: SSL and adaptation_access does not handle aborted connections

11 years agoBug 4001: remove use of strsep()
Amos Jeffries [Tue, 18 Feb 2014 08:46:49 +0000 (01:46 -0700)] 
Bug 4001: remove use of strsep()

The strsep() function is not defined by POSIX. Additionally
auto-tools has been having some obscure issues detecting
or linking the provided implementation into libcompat on
Windows and Solaris respectively. Which are the two known
OS requiring it.

Investigation of its use in Squid revealed that it can be
replaced with strcspan() which is both portable and more
efficient since it also removes the need for several
strdup()/free() operations used to protect Squid from
strsep() memory fiddling.

11 years agoMove compat/unsafe.h protections from libcompat to source maintenance
Amos Jeffries [Tue, 18 Feb 2014 08:43:02 +0000 (01:43 -0700)] 
Move compat/unsafe.h protections from libcompat to source maintenance

It is sufficient to run a code scan from source-maintenance.sh for the
unsafe functions being used in Squid-specific code instead of
hard-coding compiler breakage on users.
This also "fixes" reporting of errors when cstdio pulls in use of the
unsafe functions by stdlib.

11 years agoBug 3969: user credentials cache lookup for Digest authentication broken
Frederic Bourgeois [Wed, 12 Feb 2014 09:31:39 +0000 (02:31 -0700)] 
Bug 3969: user credentials cache lookup for Digest authentication broken

Changes to the username credentials cache were made in Basic auth but
the matching changes were not duplicated to Digest auth. Since the
lookup is identical move it to generic Auth::Config.

Also fixes assertion auth_digest.cc:759:
    "(nonce->user == NULL) || (nonce->user == user)"

11 years agoVarious fixes to configure for FreeBSD 10
Dennis Glatting [Wed, 12 Feb 2014 08:54:42 +0000 (01:54 -0700)] 
Various fixes to configure for FreeBSD 10

* Detect cstdio file presence for libcompat, and restrict to C++

* Fix shell syntax in Heimdal Kerberos library detection

11 years agoRegression Bug 3769: client_netmask not evaluated since Comm redesign
Amos Jeffries [Wed, 12 Feb 2014 08:52:29 +0000 (01:52 -0700)] 
Regression Bug 3769: client_netmask not evaluated since Comm redesign

11 years agoUpdate CONTRIBUTORS SQUID_3_4_3
Amos Jeffries [Sun, 2 Feb 2014 08:25:25 +0000 (01:25 -0700)] 
Update CONTRIBUTORS

11 years ago3.4.3
Amos Jeffries [Sun, 2 Feb 2014 08:24:10 +0000 (01:24 -0700)] 
3.4.3

11 years agoFix peerSelectDnsResults() IP address cycling
Amos Jeffries [Sun, 2 Feb 2014 02:47:38 +0000 (19:47 -0700)] 
Fix peerSelectDnsResults() IP address cycling

The local ip variable is the index of the IP address to be used.
Loop counter n is only used to prevent cycling indefinitely and should
not be used to access the array indexes.

11 years agoComm job callbacks need job's cbdata pointer, not a job pointer.
Alex Rousskov [Sun, 2 Feb 2014 02:47:05 +0000 (19:47 -0700)] 
Comm job callbacks need job's cbdata pointer, not a job pointer.

Otherwise, in complex inheritance hierarchies, some [inner] classes will
hit cbdata cookie assertions when scheduling Comm calls with callbacks.

11 years agoBug 3975: atomic detection cross-compilation failure
Stefano Cordibella [Sun, 2 Feb 2014 02:46:03 +0000 (19:46 -0700)] 
Bug 3975: atomic detection cross-compilation failure

11 years agoBug 3954: compile failure in CpuAffinity.cc
Unknown FreeBSD Contributor [Sun, 2 Feb 2014 02:44:37 +0000 (19:44 -0700)] 
Bug 3954: compile failure in CpuAffinity.cc

Patch written by 'dim [1]' contributor to FreeBSD and imported to Squid
under FreeBSD license. see
http://svnweb.freebsd.org/ports/head/www/squid33/files/patch-include__Array.h

11 years agoBug 3971: "cannot aggregate mgr:client_list: cmd->profile != NULL" in SMP mode
Nathan Hoad [Sun, 2 Feb 2014 02:41:49 +0000 (19:41 -0700)] 
Bug 3971: "cannot aggregate mgr:client_list: cmd->profile != NULL" in SMP mode

When running Squid in SMP mode, the 'client_list' command cannot be used as the
coordinator doesn't call clientdbInit(), and thus doesn't have the client_list
action registered.

This patch uses RegisteredRunner to initialize clientdb and register the
'client_list' command

11 years agoInitialize asyncLoopDepth_ in constructor
Amos Jeffries [Sun, 2 Feb 2014 02:38:51 +0000 (19:38 -0700)] 
Initialize asyncLoopDepth_ in constructor

  Detected by Coverity Scan. Issue 740529.

11 years agoFix external_acl_type async loop failures
Amos Jeffries [Wed, 22 Jan 2014 03:29:15 +0000 (20:29 -0700)] 
Fix external_acl_type async loop failures

When external_acl_type uses %LOGIN and is required to trigger async
authentication lookups it returns and hits the async loop prevention
check when starting to trigger its own external helper lookup. This
results in a DUNNO output from the helper as final status instead of
the real helper lookup result.

Avoid these by allowing async helpers to loop several times before
aborting the lookups.

Also, extend debug message to indicate loop count.

Thanks to Peter Benko for tracking down the issue and testing solutions.

11 years agoBug 4008: HttpHeader warnOnError should be an int not a bool
Will Roberts [Wed, 22 Jan 2014 03:18:56 +0000 (20:18 -0700)] 
Bug 4008: HttpHeader warnOnError should be an int not a bool

11 years agoFix memory leak in peer cache Digest exchange
Amos Jeffries [Wed, 22 Jan 2014 03:17:25 +0000 (20:17 -0700)] 
Fix memory leak in peer cache Digest exchange

 Detected by Coverity Scan. Issue 1094115.

11 years agoBug 3927: tests/testRock fatal.cc required
Amos Jeffries [Mon, 13 Jan 2014 23:50:22 +0000 (16:50 -0700)] 
Bug 3927: tests/testRock fatal.cc required

11 years agoBug 4002: clang 3.4 unable to compile
Francesco Chemolli [Mon, 13 Jan 2014 11:40:52 +0000 (04:40 -0700)] 
Bug 4002: clang 3.4 unable to compile

part 3: Fix coding ambiguity in store_repl_heap.cc and heap.h

11 years agoDocument and enforce invariant on Format::Token.divisor
Francesco Chemolli [Sun, 12 Jan 2014 02:14:21 +0000 (19:14 -0700)] 
Document and enforce invariant on Format::Token.divisor

11 years agoBug 4002: clang 3.4 unable to compile
Francesco Chemolli [Sun, 12 Jan 2014 02:12:13 +0000 (19:12 -0700)] 
Bug 4002: clang 3.4 unable to compile

part 2: fix new/delete operator overloading by not defining on clang

11 years agoBug 4002: clang 3.4 unable to compile
Francesco Chemolli [Sun, 12 Jan 2014 02:11:06 +0000 (19:11 -0700)] 
Bug 4002: clang 3.4 unable to compile

part 1: fix header guards on include files.

11 years agoBug 3996: Malformed DNS reply leads to crash
Susant Sahani [Sun, 12 Jan 2014 02:09:32 +0000 (19:09 -0700)] 
Bug 3996: Malformed DNS reply leads to crash

11 years agoDisable error page translation by default in builds
Amos Jeffries [Sun, 12 Jan 2014 02:07:51 +0000 (19:07 -0700)] 
Disable error page translation by default in builds

There is no need for every build from VCS to have fresh translations.

Enable explicitly for snapshot and release scripts instead so that
translated template files are still available online and pre-translated
in the distributed packages.

11 years agoBug 3995: compile error on CentOS 5 with GCC 4.1.2
Reinhard Sojka [Sun, 12 Jan 2014 02:03:10 +0000 (19:03 -0700)] 
Bug 3995: compile error on CentOS 5 with GCC 4.1.2

11 years agoCentrally destroy all ACLs to avoid destruction segfaults
Alex Rousskov [Sun, 12 Jan 2014 01:49:08 +0000 (18:49 -0700)] 
Centrally destroy all ACLs to avoid destruction segfaults

 ... during reconfiguration.

Group ACLs created later may use other ACLs created earlier and vice
versa, a group ACL created earlier may use other ACLs created later.
The latter is possible when an ACL (e.g., A2 below) is declared when the
group already exists:

  acl A1 src 127.0.0.1
  acl Group all-of A1
  acl A2 src 127.0.0.2
  acl Group all-of A2

Thus, the group (i.e., InnerNode) ACL destructor may access already
deleted children regardless of the global ACL deletion order (FIFO or
LIFO with respect to ACL creation). Instead of relying on the deletion
order to protect InnerNode, we remove the InnerNode ACL destructor
completely and rely on a global set of registered ACLs to destroy all
ACLs.

The old code was destroying all explicit ACLs in the same centralized
fashion. We now add implicit ACLs (commonly used by InnerNodes) to the
centralized destruction sequence. We added a new destruction-dedicated
container to avoid messing with the by-name ACL search that
Config.aclList global is used for.
This new container will become unnecessary once we start refcounting
ACLs.

11 years ago3.4.2 SQUID_3_4_2
Amos Jeffries [Mon, 30 Dec 2013 11:06:13 +0000 (04:06 -0700)] 
3.4.2

11 years agoAdded missing header in client_side_reply.cc for clang
Francesco Chemolli [Mon, 30 Dec 2013 10:56:07 +0000 (03:56 -0700)] 
Added missing header in client_side_reply.cc for clang

11 years agoBug 3498: FTP PUT assertion Server.cc:246: 'r->body_pipe != NULL'
Alex Rousskov [Mon, 30 Dec 2013 04:02:38 +0000 (21:02 -0700)] 
Bug 3498: FTP PUT assertion Server.cc:246: 'r->body_pipe != NULL'

11 years agoBug 3985: 60s limit introduced by balance_on_multiple_ip breaks bad IP recovery
Jakob Bohm [Wed, 25 Dec 2013 21:36:07 +0000 (14:36 -0700)] 
Bug 3985: 60s limit introduced by balance_on_multiple_ip breaks bad IP recovery

Alternative fix if necessary would be to calculate a dynamic timeout
value based on number and timeouts for connections and forwarding.

However, as noted in the bug report the address markings are reset every
TTL when the stored RR are replaced. This meets the criteria for
periodic
retries of marked-BAD IPs. Also if all IPs are marked BAD they all get
un-marked and retried. So for now just remove the TTL hack.

11 years agoFix \-unescaping in quoted strings from helpers
Amos Jeffries [Wed, 25 Dec 2013 21:35:15 +0000 (14:35 -0700)] 
Fix \-unescaping in quoted strings from helpers

strwordtok() was unescaping '\' values in unquoted tokens. This causes
problems with NTLM helper response user\DOMAIN values which are sent as
a un-quoted un-escaped value.

Restrict un-escaping of '\' to only occur when inside "quoted" words.

11 years agoWCCPv2: fix assertion 'Cannot convert non-IPv4 to IPv4' on FreeBSD
Amos Jeffries [Wed, 25 Dec 2013 21:34:33 +0000 (14:34 -0700)] 
WCCPv2: fix assertion 'Cannot convert non-IPv4 to IPv4' on FreeBSD

FreeBSD does not set the from-address on recv() if there was an error
reading the packet. This can result in Ip::Address assertion if the
error is not checked for before the IP address is mapped into Squid
internal format.

11 years agoFix missing cast in rev.13162
Amos Jeffries [Wed, 25 Dec 2013 21:33:50 +0000 (14:33 -0700)] 
Fix missing cast in rev.13162

11 years agoBug 3980: FATAL ERROR due to max_user_ip -s option
Christos Tsantilas [Thu, 19 Dec 2013 09:04:49 +0000 (02:04 -0700)] 
Bug 3980: FATAL ERROR due to max_user_ip -s option

NP: unit test for -s option temporarily removed and replaced with manual
testing due to 3.4 series parser flags handlign being done at the ACL
module level instead of ACl test.

11 years agoFix linker errors "relocation R_X86_64_32 against .rodata"
Amos Jeffries [Thu, 19 Dec 2013 07:55:03 +0000 (00:55 -0700)] 
Fix linker errors "relocation R_X86_64_32 against .rodata"

... "can not be used when making a shared object; recompile with -fPIC"

Caused by some libraries built without libtool in certain environments.
NP: there are other libraries in Squid built without libtool but they
    appear not to be having these linker issues at this time.

Also, fixes "undefined symbol eui64_aton" uncovered by these changes.

11 years agoRegression in URL helper API
Amos Jeffries [Sun, 15 Dec 2013 05:33:33 +0000 (22:33 -0700)] 
Regression in URL helper API

The backward compatibility logics in redirect.cc are not working as
intended on redirection URLs due to the presence of '=' in the URL and
how the key=value name parsing is performed.

A typical redirection URL looks like:
  http://example.com/?url=http://www.example.net/

and 3.4 has a parser that splits tokens at '=' unconditionally and then
passes the bits as a key and value to the redirector logics which
complains that it does not understand the answer of the URL redirector.
Or treats is an an unknown key=value with no redirection URL.

Either case is handled as a no-redirection result from the helper.

This limits the key names to alphanumeric, hyphen and underscore
characters. Valid URL responses contain characters outside this set and
should no longer be interpreted as keys regardless of the '=' character.

11 years agoBug 3806: Caching responses with Vary header
Alex Rousskov [Sun, 15 Dec 2013 05:18:46 +0000 (22:18 -0700)] 
Bug 3806: Caching responses with Vary header

11 years agoSet sslcrtvalidator_children concurrency option default value to 1
Christos Tsantilas [Sun, 15 Dec 2013 05:06:25 +0000 (22:06 -0700)] 
Set sslcrtvalidator_children concurrency option default value to 1

11 years agoRelease notes: update HTML version
Amos Jeffries [Mon, 9 Dec 2013 03:03:16 +0000 (20:03 -0700)] 
Release notes: update HTML version

11 years ago3.4.1 SQUID_3_4_1
Amos Jeffries [Mon, 9 Dec 2013 01:20:11 +0000 (18:20 -0700)] 
3.4.1

11 years agoBug 3589: intercepted and ICAP modified request using a cache_peer
Amos Jeffries [Mon, 9 Dec 2013 01:04:23 +0000 (18:04 -0700)] 
Bug 3589: intercepted and ICAP modified request using a cache_peer

11 years agoOpenBSD portability fix in DiskThreads
Francesco Chemolli [Mon, 9 Dec 2013 01:02:29 +0000 (18:02 -0700)] 
OpenBSD portability fix in DiskThreads

11 years agoBug 3935: Invalid pointer dereference when peeking at origin server certificate
Christos Tsantilas [Fri, 6 Dec 2013 12:19:41 +0000 (05:19 -0700)] 
Bug 3935: Invalid pointer dereference when peeking at origin server certificate

We must check request->clientConnectionManager pointer for validity before
dereferencing it.

This is a Measurement Factory project

11 years agoDestroy ACLs in the reverse order of creation to avoid destruction segfaults
Alex Rousskov [Fri, 6 Dec 2013 12:18:19 +0000 (05:18 -0700)] 
Destroy ACLs in the reverse order of creation to avoid destruction segfaults
during reconfiguration.

Group ACLs created later may use other ACLs created earlier. A group ACL must
be deleted first so that its AclDeleter can safely access registration status
(and avoid double deletion) of the ACLs it uses. Since ACLs are remembered (in
Config.aclList) using a singly-linked list, it is difficult to change their
deletion order.  Instead, we change their listing order from FIFO to LIFO.

11 years agoPortability: sleep() is sometimes a macro
Amos Jeffries [Fri, 6 Dec 2013 12:16:22 +0000 (05:16 -0700)] 
Portability: sleep() is sometimes a macro

sleep() is sometimes defined as a macro. Such as in Squid compat library.
Use another name for the sleep starting method in class Ipc::UdsOp

  This is an iCelero Project

11 years agoWindows: fix compile errors in WinSvc.cc
Amos Jeffries [Fri, 6 Dec 2013 12:15:54 +0000 (05:15 -0700)] 
Windows: fix compile errors in WinSvc.cc

Fix defined by unused symbol errors in WinSvc.cc

Also, set the service error mode to prevent Windows Error Reporting
dialog boxes appearing.

  This is an iCelero Project

11 years agoPortability: std::string:npos is not always appropriate for String::npos
Amos Jeffries [Fri, 6 Dec 2013 12:15:11 +0000 (05:15 -0700)] 
Portability: std::string:npos is not always appropriate for String::npos

On some systems such as Windows MinGW the signed/unsigned property of
std::string::npos does not match up with the Squdi String class size_type
signed/unsigned property. Resulting in compiler signed vs unsigned
mismatch errors when compiling.

  This is an iCelero project.

11 years agoPortability: refresh_pattern requires regex
Amos Jeffries [Fri, 6 Dec 2013 12:14:34 +0000 (05:14 -0700)] 
Portability: refresh_pattern requires regex

The GnuRegex portability wrapper is required explicitly by
RefreshPattern.h on some systems which do not include regex.h implicitly
via other paths.

  This is an iCelero project

11 years agolibrfcnb: portability fixes
Amos Jeffries [Fri, 6 Dec 2013 12:13:36 +0000 (05:13 -0700)] 
librfcnb: portability fixes

Add #include wrapper protection for headers missing on Windows MinGW.

  This is an iCelero Project

11 years ago3.4.0.3 SQUID_3_4_0_3
Amos Jeffries [Sat, 30 Nov 2013 13:19:32 +0000 (06:19 -0700)] 
3.4.0.3

11 years agoPrep for 3.3.11 and 3.4.0.3
Amos Jeffries [Sat, 30 Nov 2013 13:18:50 +0000 (06:18 -0700)] 
Prep for 3.3.11 and 3.4.0.3

11 years agoProtect aclIsProxyAuth() debugging from NULL names (via NULL AclMatchedName).
Nathan Hoad [Sat, 30 Nov 2013 09:18:21 +0000 (02:18 -0700)] 
Protect aclIsProxyAuth() debugging from NULL names (via NULL AclMatchedName).

Related to Bug 3972 fix in r13156.

11 years agoBug 3972: Segfault when getting the deny info page ID after a reconfigure
Nathan Hoad [Sat, 30 Nov 2013 09:16:25 +0000 (02:16 -0700)] 
Bug 3972: Segfault when getting the deny info page ID after a reconfigure

Older ACL code was using a stale AclMatchedName value. More recent code resets
the AclMatchedName global to NULL to avoid leaking the stale value, but that
may crash strcmp() in aclGetDenyInfoPage(). Long-term, the global should be
removed, of course.

11 years agoReceive annotations from authentication and external ACL helpers
Amos Jeffries [Fri, 29 Nov 2013 10:55:53 +0000 (03:55 -0700)] 
Receive annotations from authentication and external ACL helpers

This saves the kv-pair from authentication and ACL helper responses as
annotations on the HttpRequest and pass on from there to logging.

Added a method appendNewOnly() to ensure duplicate-free addition
to a NotePairs list.

Also, fixes a bug in hasPair() accessor which was returning true
if either the key OR the value matched.
ie. hasPair("a","1") would match true for notes "a=2 b=1"

11 years agoBug 3782: Digest authentication not obeying nonce_max_count
Frederic Bourgeois [Fri, 29 Nov 2013 04:24:51 +0000 (21:24 -0700)] 
Bug 3782: Digest authentication not obeying nonce_max_count

11 years agoBug 3970: max_filedescriptors disabled due to missing setrlimit
Amos Jeffries [Fri, 29 Nov 2013 04:22:04 +0000 (21:22 -0700)] 
Bug 3970: max_filedescriptors disabled due to missing setrlimit

11 years agoBug 3967: ipc/Kid.cc compilation failure: 'time' was not declared in this scope
Thomas De Schampheleire [Fri, 29 Nov 2013 04:15:06 +0000 (21:15 -0700)] 
Bug 3967: ipc/Kid.cc compilation failure: 'time' was not declared in this scope

Function time() comes from <time.h>, so add the necessary #include.

11 years agoAdd missing part of rev.13033 backport
Amos Jeffries [Wed, 20 Nov 2013 00:13:59 +0000 (17:13 -0700)] 
Add missing part of rev.13033 backport

11 years agoRe-compute Range response content offset after an FTP response was adapted.
Alex Rousskov [Tue, 19 Nov 2013 22:51:46 +0000 (15:51 -0700)] 
Re-compute Range response content offset after an FTP response was adapted.

Moved HTTP-only offset calculation code to the general ServerStateData code so
that [converted-to-HTTP] FTP responses can use it. FTP code computes the range
offset on its own earlier, but we must REcalculate in case the response is
adapted into a response with a different (or no) content range.

11 years agoBug 3960: Dead Peers Are Not Revived
Amos Jeffries [Tue, 19 Nov 2013 22:50:29 +0000 (15:50 -0700)] 
Bug 3960: Dead Peers Are Not Revived

11 years agoWindows: Fix aclocal "is already registered" errors
Amos Jeffries [Tue, 19 Nov 2013 22:49:14 +0000 (15:49 -0700)] 
Windows: Fix aclocal "is already registered" errors

aclocal on Windows cannot handle line-wrapping \ characters and leaves
them present in the output m4 code. in side AC_CONFIG_FILES macro this
results in a mystery file '\\r' being 'registered'.

The list of Makefiles does not even need ths line-wrap indicator as
demonstrated by the tools/Makefile missing its one for some time without
problems.

 This is an iCelero Inc sponsored fix.

11 years agoWindows: Ensure array index is an integer in C code
Amos Jeffries [Tue, 19 Nov 2013 22:47:21 +0000 (15:47 -0700)] 
Windows: Ensure array index is an integer in C code

MSVC compiler does not accet non-integer types for array indexes so we
must cast these CHAR index values to int before use.

 This is an iCelero Inc sponsored fix.

11 years agoBug 3956: xstrndup: tried to dup a NULL pointer
Frederic Bourgeois [Tue, 19 Nov 2013 22:46:53 +0000 (15:46 -0700)] 
Bug 3956: xstrndup: tried to dup a NULL pointer

11 years agoDocs: update mention of URL-rewrit helper result codes
Amos Jeffries [Tue, 19 Nov 2013 22:45:48 +0000 (15:45 -0700)] 
Docs: update mention of URL-rewrit helper result codes

- OK action when no redirect/rewrite kv-pairs was not mentioned
- BH message= kv-pair was not mentioned.

11 years agoMake HTTP header parser obey relaxed_header_parser
Amos Jeffries [Tue, 19 Nov 2013 22:45:02 +0000 (15:45 -0700)] 
Make HTTP header parser obey relaxed_header_parser

Some unimportant warnings were not obeying the directives silent/loud
setting values.
This abstracts the condition to simplify code and make all the
non-critical warnings depend on the directive for their display level.

11 years agoSource Maintenance: re-add snapshot script to branch
Amos Jeffries [Mon, 18 Nov 2013 11:29:19 +0000 (04:29 -0700)] 
Source Maintenance: re-add snapshot script to branch

11 years agoSourceFormat Enforcement
Automatic source maintenance [Mon, 11 Nov 2013 02:49:21 +0000 (19:49 -0700)] 
SourceFormat Enforcement

11 years agoReplace blocking sleep(3) and close UDS socket on failures.
Alex Rousskov [Sun, 10 Nov 2013 23:01:35 +0000 (16:01 -0700)] 
Replace blocking sleep(3) and close UDS socket on failures.

The two addressed XXX were not causing any known serious bugs on their own,
but the blocking sleep was ugly and possibly in the way of further
kid registration fixes/improvements.

11 years agoBug 3936: error-details.txt parse error
Christos Tsantilas [Sun, 10 Nov 2013 22:55:16 +0000 (15:55 -0700)] 
Bug 3936: error-details.txt parse error

Squid fails parsing error-details.txt template when one or more listed
OpenSSL errors are not supported on running platform.
This patch add a hardcoded list of OpenSSL errors wich can be optional.

This is a Measurement Factory project

11 years agoBug 3906: Filedescriptor leaks in SNMP
Christos Tsantilas [Sun, 10 Nov 2013 22:53:07 +0000 (15:53 -0700)] 
Bug 3906: Filedescriptor leaks in SNMP

Coordinator should not send SNMP client FD to strands when broadcasting SNMP
requests. Strands do not need the descriptor and were forgetting to close it,
causing one FD leak on every SNMP query in SMP mode.

Enhance Ipc::TypedMsgHdr to be able to tell whether the message has a FD.

This is a Measurement Factory project

11 years agoPrep for 3.3.10
Amos Jeffries [Sun, 3 Nov 2013 08:53:29 +0000 (01:53 -0700)] 
Prep for 3.3.10

11 years agokerberos_ldap_group: fix LDAP string duplication
Markus Moeller [Fri, 1 Nov 2013 01:26:24 +0000 (19:26 -0600)] 
kerberos_ldap_group: fix LDAP string duplication

11 years agoAvoid "hot idle": A series of rapid select() calls with zero timeout.
Alex Rousskov [Fri, 1 Nov 2013 01:25:17 +0000 (19:25 -0600)] 
Avoid "hot idle": A series of rapid select() calls with zero timeout.

Squid uses "infinite" precision when it comes to deciding whether the next
timed event is ready but uses millisecond (1e-3) precision when deciding how
long to wait before the next event will be ready. This inconsistency results
in the EventScheduler engine telling the main loop that it has 0 milliseconds
to poll pending I/O, but when asked again (after the I/O is quickly polled),
the EventScheduler engine often does not schedule the promised event and tells
the main loop to poll for another 0 milliseconds again. This cycling may
happen many times in a row (until enough time is wasted for the next event to
become ready using higher precision).

The fixed code adds a minimum 1ms delay for not-yet-ready events. It also
places both decisions into one method (EventScheduler::timeRemaining), and
tries to polish/document decision logic (which is more complex than it may
seem) because the code has to avoid both inconsistent decisions and hot idle
loops while maintaining the traditional "no event is fired before it is due"
guarantee.

TODO: Idle Squid still runs hotter than it should because the maximum waiting
time is artificially capped outside the event queue to EVENT_LOOP_TIMEOUT=1s.
This causes at most one extra loop iteration per second.

11 years agoBug 3887: tcp_outgoing_tos not working for IPv6
Amos Jeffries [Fri, 1 Nov 2013 01:24:12 +0000 (19:24 -0600)] 
Bug 3887: tcp_outgoing_tos not working for IPv6

11 years agoFix cbdata 'error: expression result unused' errors
Amos Jeffries [Fri, 1 Nov 2013 01:23:11 +0000 (19:23 -0600)] 
Fix cbdata 'error: expression result unused' errors

Detected by Clang.

11 years agoRevert -march-native experiment that snuck into rev.13048
Amos Jeffries [Fri, 1 Nov 2013 01:22:23 +0000 (19:22 -0600)] 
Revert -march-native experiment that snuck into rev.13048

11 years agoHave testRock use cachemgr stubs
Francesco Chemolli [Thu, 24 Oct 2013 15:11:49 +0000 (09:11 -0600)] 
Have testRock use cachemgr stubs

11 years agobasic_nis_auth: Improved portability
Francesco Chemolli [Thu, 24 Oct 2013 15:11:16 +0000 (09:11 -0600)] 
basic_nis_auth: Improved portability

11 years agoBug 3836: Fix issues with automake 1.13 and later and make check
Francesco Chemolli [Thu, 24 Oct 2013 15:09:12 +0000 (09:09 -0600)] 
Bug 3836: Fix issues with automake 1.13 and later and make check

11 years agoAppend Connection:close to OPTIONS requests when icap_persistent_connections is off.
Nathan Hoad [Thu, 24 Oct 2013 15:07:27 +0000 (09:07 -0600)] 
Append Connection:close to OPTIONS requests when icap_persistent_connections is off.

This brings OPTIONS requests behavior inline with REQMOD and RESPMOD.

11 years agoBug 3941: Release notes typo
Amos Jeffries [Wed, 23 Oct 2013 05:12:15 +0000 (23:12 -0600)] 
Bug 3941: Release notes typo

11 years agoAdd cache_miss_revalidate
Amos Jeffries [Wed, 23 Oct 2013 05:11:22 +0000 (23:11 -0600)] 
Add cache_miss_revalidate

Port of 2.7 ignore_ims_on_miss directive by Henrik Nordstrom.

This on/off switch enables Squid to convert conditional requests from
clients to non-conditional fetches that can fill the cache faster under
cold-start conditions.

11 years agoBug 3480: StoreEntry::kickProducer() segfaults in store_client::copy()
Alex Rousskov [Wed, 23 Oct 2013 05:10:17 +0000 (23:10 -0600)] 
Bug 3480: StoreEntry::kickProducer() segfaults in store_client::copy()
context

Short-term fix: Lock StoreEntry object so that it is not freed by
storeClientCopy2() callbacks. Also lock StoreEntry in storeUnregister()
context because an aborting entry may be deleted there unless it is
double-locked.

See bug 3480 comment #27 for detailed call stack analysis. Additional
cases
include rejected copied HIT due to Var mismatch and hits blocked by
reply_from_cache directive (under development; see bug 3937).

Long-term, we need to make store copying asynchronous and revise
StoreEntry
locking approach.

11 years agoFix CBDATA_CLASS2 macro definition
Amos Jeffries [Sun, 13 Oct 2013 13:41:55 +0000 (07:41 -0600)] 
Fix CBDATA_CLASS2 macro definition

CBDATA_UNKNOWN was being used in place of a void no-op statement.
This was incorrect and useless. Now that the value definition is fixed
it is being picked up by the stricter compilers.
Replace the trinary conditional with an if-statement.

11 years agolibntlmauth: Fix string field truncation
Elmar Vonlanthen [Sun, 13 Oct 2013 13:33:55 +0000 (07:33 -0600)] 
libntlmauth: Fix string field truncation

Count of field bytes must begin at 0. Otherwise the decoder truncates
1 byte from the string due to lstring initial state values.

Also drop the lstring_zero(s) macro. It is only used in one place and
calling it 'zero' obscures that length is non-zero for invalid state.

11 years agontlm_fake_auth: pass DOMAIN data to Squid in original case
Elmar Vonlanthen [Sun, 13 Oct 2013 13:32:49 +0000 (07:32 -0600)] 
ntlm_fake_auth: pass DOMAIN data to Squid in original case

Lower-casing the domain field can cause base ACL match results if the
ACL is checking for case-sensitive or upper-case domain label.

The helper should be emitting the standard UPPER case domain and many
administrators will be expecting taht when they write ACLs.

11 years agoFix SQUID_CC_CHECK_ARGUMENT autoconf macro
Francesco Chemolli [Mon, 7 Oct 2013 12:35:02 +0000 (06:35 -0600)] 
Fix SQUID_CC_CHECK_ARGUMENT autoconf macro

11 years ago3.4.0.2 SQUID_3_4_0_2
Amos Jeffries [Thu, 3 Oct 2013 12:32:14 +0000 (06:32 -0600)] 
3.4.0.2

11 years agoAdd --disable-arch-native build option
Amos Jeffries [Thu, 3 Oct 2013 11:12:31 +0000 (05:12 -0600)] 
Add --disable-arch-native build option

The -march-native option is required by Clang 3.2 on some CPU
and produces better optimization in binaries by GCC.
But building inside a virtual machine environment has been found to
cause random Illegal Instruction errors due to mis-detection of CPU.

This option is added to permit selective disabling of teh preferred
default (which is to use the compiler flag when available).

11 years agoPolish: better WARNING when workers directive is ignore on reconfigure.
Amos Jeffries [Thu, 3 Oct 2013 11:11:37 +0000 (05:11 -0600)] 
Polish: better WARNING when workers directive is ignore on reconfigure.

Changing the workers directive requires a proxy restart, not just a
reconfigure. State this clearly in the warning message.

11 years agoFix various header build issues in librfcnb
Amos Jeffries [Thu, 3 Oct 2013 11:10:43 +0000 (05:10 -0600)] 
Fix various header build issues in librfcnb

Highlighted when the #include sorting was applied to lib/rfcnb/ files
several of the headers were using order-dependent definitions and were
not wrapped with sfety macros.

11 years agoPortability: cleanup includes for sys/time.h and sys/resource.h
Amos Jeffries [Thu, 3 Oct 2013 11:02:34 +0000 (05:02 -0600)] 
Portability: cleanup includes for sys/time.h and sys/resource.h

These two include files are order-dependent on several operating systems
and as such are provided by Squid libcompat headers. There is no need for
code to include them specially and several HAVE_SYS_TIME_H macros were
missing which breaks the build on systems where the file is missing.

11 years agonegotiate_kerberos_auth: upgrade to present group= keys
Markus Moeller [Thu, 3 Oct 2013 10:47:40 +0000 (04:47 -0600)] 
negotiate_kerberos_auth: upgrade to present group= keys

Use the new kv-pair protocol extensions for emitting group details
directly at the time of authentication. group=X key-value pair is
used to emit the Kerberos SIDS values presented by MS Active
Directory environments.

Also, update the Hiemdal library support for recent library versions.

Also, polish the Kerberos and LDAP Group related code to avoid memory
leaks and improve C++ coding style.

11 years agoUse IPv6 localhost nameserver on DNS configuration errors
Amos Jeffries [Thu, 3 Oct 2013 10:38:31 +0000 (04:38 -0600)] 
Use IPv6 localhost nameserver on DNS configuration errors

When DNS configuration fails to locate a set of nameservers "localhost"
is used as the default but has previously only been setting 127.0.0.1
IPv4 address for localhost. This enables the failover to work as
designed
on IPv6-only networks.

11 years agoBug 3914: partial: make squidclient tool build cleanly with -Wconversion
Amos Jeffries [Sun, 29 Sep 2013 14:50:25 +0000 (08:50 -0600)] 
Bug 3914: partial: make squidclient tool build cleanly with -Wconversion