]> git.ipfire.org Git - thirdparty/squid.git/log
thirdparty/squid.git
13 years agoPolicy: use USE_* from code wrappers and ENABLE_* for conditionals.
Amos Jeffries [Sat, 27 Nov 2010 06:44:33 +0000 (23:44 -0700)] 
Policy: use USE_* from code wrappers and ENABLE_* for conditionals.

Makes a few more of the build conditionals match our naming policy.
http://wiki.squid-cache.org/Squid3CodingGuidelines

Updates two code wrapper macros:
* CBDATA_DEBUG becomes USE_CBDATA_DEBUG
* DELAY_POOLS becomes USE_DELAY_POOLS

Updates USE_DELAY_POOLS automake conditional to ENABLE_DELAY_POOLS

TODO: There are more of these wrappers to be updated.

13 years agoRemove useless namespace semi-colons
Amos Jeffries [Sat, 27 Nov 2010 01:58:38 +0000 (18:58 -0700)] 
Remove useless namespace semi-colons

13 years agoSourceLayout: Comm Write cleanups
Amos Jeffries [Sat, 27 Nov 2010 01:46:22 +0000 (18:46 -0700)] 
SourceLayout: Comm Write cleanups

* creates namespace Comm.

* The comm_write() functions are moved into that scope as Comm::Write()
  and only accept AsyncCall now. Old wrapper functions are removed.

* commio_* functions are all moved to methods of a new Comm::IoCallback
  object. Which represents either a read or a write callback event
  waiting to happen. Old wrapper functions have been removed.

* The fdc_table of pending read and write callbacks has been moved into
  the Comm scope with (the name iocb_table) and should be considered private.
  For now the COMMIO_*_CB() macros are retained to produce a pointer to
  a callback object in this table.

* libcomm-listener.la has been renamed to libcomm.la

13 years agoSend HTTP/1.1 on CONNECT responses
Amos Jeffries [Fri, 26 Nov 2010 10:09:52 +0000 (23:09 +1300)] 
Send HTTP/1.1 on CONNECT responses

CONNECT seems to have been missed somehow in the 1.1 conversion.
This corrects the omission so the hard-coded CONNECT reply strings send
1.1 as well.

13 years agoAdded missing namespace to the std::find() call to make Sun's compiler happier.
Alex Rousskov [Fri, 26 Nov 2010 04:51:23 +0000 (21:51 -0700)] 
Added missing namespace to the std::find() call to make Sun's compiler happier.

13 years agoDo not hide Mgr::Forwarder::params name, avoid compiler warnings and confusion.
Alex Rousskov [Fri, 26 Nov 2010 00:13:51 +0000 (17:13 -0700)] 
Do not hide Mgr::Forwarder::params name, avoid compiler warnings and confusion.

13 years agoUse compile-time constant for the array size, to make more compilers happy.
Alex Rousskov [Thu, 25 Nov 2010 22:04:30 +0000 (15:04 -0700)] 
Use compile-time constant for the array size, to make more compilers happy.

13 years agoAuthor: Various Translators
Amos Jeffries [Wed, 24 Nov 2010 11:00:56 +0000 (00:00 +1300)] 
Author: Various Translators
Translations Update auto-save

13 years agoBug 3110: reply_body_max_size none dont work with x-forwarded-for
Amos Jeffries [Tue, 23 Nov 2010 00:32:53 +0000 (13:32 +1300)] 
Bug 3110: reply_body_max_size none dont work with x-forwarded-for

13 years agoUpdate release notes to list %err_code and %err_detail in new logformat codes
Christos Tsantilas [Mon, 22 Nov 2010 11:19:17 +0000 (13:19 +0200)] 
Update release notes to list %err_code and %err_detail in new logformat codes

13 years agoUpdate release notes to include the "Dynamic SSL Certificate Generation" feature
Christos Tsantilas [Mon, 22 Nov 2010 10:55:24 +0000 (12:55 +0200)] 
Update release notes to include the "Dynamic SSL Certificate Generation" feature

13 years agoBug 3059: Crash on digest auth headers with unknown nonce
Amos Jeffries [Mon, 22 Nov 2010 09:52:34 +0000 (22:52 +1300)] 
Bug 3059: Crash on digest auth headers with unknown nonce

13 years agofailure_notify is C++-only
Amos Jeffries [Sun, 21 Nov 2010 11:03:56 +0000 (00:03 +1300)] 
failure_notify is C++-only

The global function failure_notify is tightly type dependent.

This makes sure all code which uses it is C++ and wraps it away from any
situations where the symbol may be re-defined with a C definition.

As a side-effect the malloc tracing code is shuffled into its own file.

13 years agoPolicy enforcement: Remove config.h from .h and .cci files
Amos Jeffries [Sun, 21 Nov 2010 04:40:05 +0000 (21:40 -0700)] 
Policy enforcement: Remove config.h from .h and .cci files

13 years agoPolicy: Include config.h first in all .cc
Amos Jeffries [Sat, 20 Nov 2010 11:31:38 +0000 (04:31 -0700)] 
Policy: Include config.h first in all .cc

Also fixes a few unsafe function uses hidden by earlier lack of these
includes safety checks.

13 years agoSourceFormat Enforcement
Automatic source maintenance [Sat, 20 Nov 2010 01:12:28 +0000 (18:12 -0700)] 
SourceFormat Enforcement

13 years agoFix cachemgr http_port config report hiding options
Amos Jeffries [Fri, 19 Nov 2010 12:04:58 +0000 (01:04 +1300)] 
Fix cachemgr http_port config report hiding options

13 years agotestHttpReply requires hash containers
Amos Jeffries [Fri, 19 Nov 2010 11:18:54 +0000 (00:18 +1300)] 
testHttpReply requires hash containers

13 years agoHTTP Compliance: do not forward TRACE with Max-Forwards: 0 after REQMOD
Alex Rousskov [Fri, 19 Nov 2010 02:10:21 +0000 (19:10 -0700)] 
HTTP Compliance: do not forward TRACE with Max-Forwards: 0 after REQMOD

Before the change, Max-Forwards request value was cached in
HttpRequest::max_forwards member. It was set once in
clientProcessRequest() function. This works fine as long as no request
adaptation is performed. Otherwise original HTTP request may be
replaced with adopted one in ClientHttpRequest::noteAdaptationAnswer()
method and max_forwards value is lost.

This change removes HttpRequest::max_forwards member and gets the value
directly from HttpHeader when needed. This adds another string-to-int
conversion for TRACE and OPTIONS requests, but those are rare, and we
save a little in the other, far more common cases by removing the
HttpRequest::max_forwards member.

Removed assertion from clientReplyContext::traceReply() since it is
called from a single place and the condition is checked right before
the call.

Co-Advisors test cases:
    test_case/rfc2616/maxForwardsZero-TRACE-asterisk
    test_case/rfc2616/maxForwardsZero-TRACE-absolute

13 years agoSourceFormat Enforcement
Automatic source maintenance [Fri, 19 Nov 2010 01:12:35 +0000 (18:12 -0700)] 
SourceFormat Enforcement

13 years agoMinor changes to allow squid compile with ssl enabled but ssl_crtd disabled
Christos Tsantilas [Thu, 18 Nov 2010 08:37:39 +0000 (10:37 +0200)] 
Minor changes to allow squid compile with ssl enabled but ssl_crtd disabled

13 years agorename ssl/ssl_support.cc -> ssl/support.cc and ssl/ssl_support.h to ssl/support.h
Christos Tsantilas [Thu, 18 Nov 2010 08:16:57 +0000 (10:16 +0200)] 
rename ssl/ssl_support.cc -> ssl/support.cc  and ssl/ssl_support.h to ssl/support.h

13 years agoAuthor: Alex Rousskov, Andrew Balabohin, Christos Tsantilas
Christos Tsantilas [Thu, 18 Nov 2010 08:01:53 +0000 (10:01 +0200)] 
Author: Alex Rousskov, Andrew Balabohin, Christos Tsantilas
Dynamic SSL certificate generartion

This patch implements dynamic SSL certificate generartion in Squid.When
used with SSL Bump, the feature allows Squid to dynamically
generate (using a configurable CA certificate) and cache SSL
certificates for the proxied hosts.

A description for this feature can be found at:
   http://wiki.squid-cache.org/Features/DynamicSslCert

A first version of the patch posted by Alex, some months before:
  http://www.squid-cache.org/mail-archive/squid-dev/201003/0201.html

Some words about the patch:

  * ssl related source files moved under the src/ssl directory

  * Introduce the TidyPointer class similar to std::auto_ptr, which implements
    a  pointer that deletes the object it points to when the pointer's owner
    or context is gone. It  is designed to avoid memory leaks  in the presence
    of exceptions and processing short cuts.

  * Implements ssl context cache to use with generated ssl contexts. The
    Ssl::LocalContextStorage class stores the hostname/ssl context pairs for
    a local listening address/port. The  Ssl::GlobalContextStorage class used
    to store Ssl::LocalContextStorages per local listening address and handles
    squid shutdown/configure/reconfigure

  * Ssl::Helper class implements the squid part of the ssl_crtd helpers.

  * The ssl_crtd helper implemented in ssl_crtd.cc and certificate_db.* files

  * The Ssl::CertificateDb class (certificate_db.* files)  implements  a
    database of certificates on disk files. It is used by ssl_crtd helper to
    manipulate generated certificates.

  * The ssl related files included in the libraries libsslutil.a which
    contains common classes and functions and the libsquidssl.a which has
    squid related ssl objects and functions

  * Use the Ssl namespace for new ssl code

This is a Measurement Factory Project.

13 years agoAuthor: Various Translators
Amos Jeffries [Wed, 17 Nov 2010 23:01:38 +0000 (12:01 +1300)] 
Author: Various Translators
Translations Update auto-save

13 years agoPolish logformat documentation
Amos Jeffries [Wed, 17 Nov 2010 04:45:35 +0000 (17:45 +1300)] 
Polish logformat documentation

13 years agoConfig documentation typos
Amos Jeffries [Tue, 16 Nov 2010 12:44:13 +0000 (05:44 -0700)] 
Config documentation typos

13 years agoPolish loadable modules startup message.
Amos Jeffries [Tue, 16 Nov 2010 10:49:23 +0000 (03:49 -0700)] 
Polish loadable modules startup message.

13 years agoObsolete log_fqdn directive
Amos Jeffries [Tue, 16 Nov 2010 05:54:47 +0000 (18:54 +1300)] 
Obsolete log_fqdn directive

It has been informally deprecated for a while now, the %>A logformat
equivalent turns the global config setting on automatically on sight.

13 years agoReduce debug level on bodypipe re-write change
Amos Jeffries [Tue, 16 Nov 2010 05:43:47 +0000 (18:43 +1300)] 
Reduce debug level on bodypipe re-write change

- the original reason for adding is unknown
- it is an annoyance for some
- there have been no big problems tracked down to this bodypipe change
  over the last few years. It appears relatively harmless.

13 years agoDocumentation gramar:
Amos Jeffries [Mon, 15 Nov 2010 22:58:59 +0000 (11:58 +1300)] 
Documentation gramar:

13 years agoAuthor: Markus Moeller <huaraz@moeller.plus.com>
Amos Jeffries [Mon, 15 Nov 2010 09:40:48 +0000 (22:40 +1300)] 
Author: Markus Moeller <huaraz@moeller.plus.com>
Fix 'declaration of 'dup' shadows a global' errors.

13 years agoAuthor: Various Translators
Amos Jeffries [Thu, 11 Nov 2010 17:01:49 +0000 (06:01 +1300)] 
Author: Various Translators
Translations Update auto-save

13 years agoAdded missing status phrase to some 304 (Not Modified) replies.
Alex Rousskov [Thu, 11 Nov 2010 15:46:07 +0000 (08:46 -0700)] 
Added missing status phrase to some 304 (Not Modified) replies.

The bug affected 304 hits, at least.

13 years agoext_edirectory_acl: min() template requires identical type. cast to size_t
Amos Jeffries [Wed, 10 Nov 2010 11:49:28 +0000 (00:49 +1300)] 
ext_edirectory_acl: min() template requires identical type. cast to size_t

13 years agoPolicy: detect config.h and squid.h include problems
Amos Jeffries [Wed, 10 Nov 2010 09:50:38 +0000 (22:50 +1300)] 
Policy: detect config.h and squid.h include problems

We currently have a policy that config.h MUST be included first so as to
pull in the portability definitions early. It MAY be included via the
legacy squid.h at present.

This alteration to the source maintenance script validates that each .c
and .cc file in the sources includes config.h or squid.h first in its
include order. Also that each .h and .cci do not include config.h which
is a double include with enforced .c/.cc requirement.

 * an ERROR: line is produces for each violating file
 * as yet the maintenance run is not blocked so as to catch as many
   errors as possible in one run
 * detection only, as yet no code alterations are performed by this script
 * FORMAT: informative lines are silenced to make ERROR: more visible

13 years agoDist missing opensolaris portability header
Amos Jeffries [Tue, 9 Nov 2010 20:38:04 +0000 (09:38 +1300)] 
Dist missing opensolaris portability header

13 years agoPartial revert r11017 (incorrect strncpy changes)
Amos Jeffries [Tue, 9 Nov 2010 05:24:53 +0000 (22:24 -0700)] 
Partial revert r11017 (incorrect strncpy changes)

Also a few other strncpy overflows and some memset() incorrect use.

13 years agoChangeLog update
Amos Jeffries [Sun, 7 Nov 2010 07:10:11 +0000 (01:10 -0600)] 
ChangeLog update

13 years agoSolaris: base system lacks paths.h system definitions
Amos Jeffries [Sun, 7 Nov 2010 05:26:48 +0000 (23:26 -0600)] 
Solaris: base system lacks paths.h system definitions

13 years agoBug 3091 fix: Bypassed ICAP errors are not counted as service failures.
Alex Rousskov [Sun, 7 Nov 2010 03:07:29 +0000 (21:07 -0600)] 
Bug 3091 fix: Bypassed ICAP errors are not counted as service failures.

Notify ICAP service about the failure even if we can bypass it. Otherwise,
a failing service may continue to stay "up", preventing Squid from using a
healthy backup alternative in a service_set (or bypassing ICAP completeley).

13 years agoext_edirectory_userip_acl: fix uninitialized pointer free
Amos Jeffries [Sun, 7 Nov 2010 01:01:54 +0000 (19:01 -0600)] 
ext_edirectory_userip_acl: fix uninitialized pointer free

13 years agoCheck for ldap_start_tls_s
Amos Jeffries [Sat, 6 Nov 2010 23:34:12 +0000 (17:34 -0600)] 
Check for ldap_start_tls_s

13 years agoFix tabbing and WS indentation of src/Makefile
Amos Jeffries [Sat, 6 Nov 2010 14:58:44 +0000 (08:58 -0600)] 
Fix tabbing and WS indentation of src/Makefile

13 years agoPortability fixes for ext_edirectory_userip_acl Solaris builds
Amos Jeffries [Sat, 6 Nov 2010 04:28:11 +0000 (17:28 +1300)] 
Portability fixes for ext_edirectory_userip_acl Solaris builds

 - bcmp() function is obsolete. use memcmp() instead
 - Kerberos is not supported by LDAP_AUTH_*

13 years agoPrep for 3.2.0.3
Amos Jeffries [Sat, 6 Nov 2010 02:43:02 +0000 (15:43 +1300)] 
Prep for 3.2.0.3

13 years agoSourceFormat Enforcement
Automatic source maintenance [Sat, 6 Nov 2010 00:12:25 +0000 (18:12 -0600)] 
SourceFormat Enforcement

13 years agoUpdate translation files
Amos Jeffries [Fri, 5 Nov 2010 14:34:43 +0000 (03:34 +1300)] 
Update translation files

13 years agoAvoid a lot of bufer overruns in ext_edirectory_userip_acl
Amos Jeffries [Fri, 5 Nov 2010 12:47:05 +0000 (01:47 +1300)] 
Avoid a lot of bufer overruns in ext_edirectory_userip_acl

13 years agoSourceFormat Enforcement
Automatic source maintenance [Thu, 4 Nov 2010 00:12:17 +0000 (18:12 -0600)] 
SourceFormat Enforcement

13 years agoFixed DNS query leaks and increased defense against DNS cache poisoning.
Christos Tsantilas [Wed, 3 Nov 2010 16:32:59 +0000 (18:32 +0200)] 
Fixed DNS query leaks and increased defense against DNS cache poisoning.

We were leaking (i.e. forgetting about) DNS queries under several conditions.
The most realistic leak case would go like this:

  - We send UDP query1.
    No response.

  - We send UDP query2.
    The response for query1 comes, with TC bit.

  - We try to connect over TCP, sending TCP query3.
    The response for query2 comes, with TC bit, matching TCP query3 ID.
    Since we are waiting a response over TCP, we drop the UDP response,
    and delete the query from the queue. We leak.

This change avoids forgetting the query under the above scenario.

Moreover, the above steps are hiding another problem: we are accepting responses
to timed out queries, making DNS cache poisoning easier. This change avoids
that by using unique query ID for each sent query. We have also added an
instance ID so that we still can track/identify a single "transaction" from
Squid point of view, even when that transaction involves many DNS query
messages.

When we forget about a DNS query, the caller may get stuck, holding a cbdata
lock. This is typical for ACLs that require domain name resolution, for example.
On a busy server with a long ACL list, the lock counter keeps growing due to
forgotten requests and may overflow, causing a "c->locks < 65535" assertion.
This change fixes the assertion unless there are more DNS leaks or different
lock leaks present.

This is a Measurement Factory project.

13 years agoThe cbdataReference/cbdataReferenceDone of ClientInfo::quotaQueue member
Christos Tsantilas [Wed, 3 Nov 2010 16:28:34 +0000 (18:28 +0200)] 
The cbdataReference/cbdataReferenceDone of ClientInfo::quotaQueue member
does not required for ClientInfo class internal use

Related squid-dev discussion:
      http://www.mail-archive.com/squid-dev@squid-cache.org/msg14280.html

13 years agoAdded debugging to the "client-max-age = 0 and ignore-reload" freshness check.
Alex Rousskov [Wed, 3 Nov 2010 16:10:13 +0000 (10:10 -0600)] 
Added debugging to the "client-max-age = 0 and ignore-reload" freshness check.

13 years agoHTTP Compliance: entry is stale if request has max-age=0.
Alex Rousskov [Tue, 2 Nov 2010 21:58:24 +0000 (15:58 -0600)] 
HTTP Compliance: entry is stale if request has max-age=0.

We should always do validation for requests with Cache-Control max-age=0,
even when entry age is also zero. In our case, RFC 2616 says:

    freshness_lifetime = max_age_value
    response_is_fresh = (freshness_lifetime > current_age)

and response_is_fresh is always false if freshness_lifetime is zero.

The check code was introduced in r5998 with a "Import of fix-ranges
branch" message. The code was commented out at the time of that
commit, for reasons unknown.

Test case:
    test_case/rfc2616/noSrv-hit-stale-max-age-req

13 years agoC++ fixes for ext_edirectory_userip_acl
Amos Jeffries [Tue, 2 Nov 2010 12:16:02 +0000 (01:16 +1300)] 
C++ fixes for ext_edirectory_userip_acl

13 years agoAuthor: Various Translators
Amos Jeffries [Tue, 2 Nov 2010 11:01:37 +0000 (00:01 +1300)] 
Author: Various Translators
Translations Update auto-save

13 years agoBug 3092: basic_sasl_auth needs libmiscencoding
Amos Jeffries [Tue, 2 Nov 2010 02:47:34 +0000 (20:47 -0600)] 
Bug 3092: basic_sasl_auth needs libmiscencoding

13 years agoCorrect ESI processing condition. Need to look for parsed header, not the header...
Henrik Nordstrom [Tue, 2 Nov 2010 01:03:15 +0000 (02:03 +0100)] 
Correct ESI processing condition. Need to look for parsed header, not the header mask (filtered)

13 years agoFix Surrogate-Control header parser of name=value tags.
Henrik Nordstrom [Tue, 2 Nov 2010 00:49:51 +0000 (01:49 +0100)] 
Fix Surrogate-Control header parser of name=value tags.

13 years agoSourceFormat Enforcement
Automatic source maintenance [Tue, 2 Nov 2010 00:12:43 +0000 (18:12 -0600)] 
SourceFormat Enforcement

13 years agobasic_smb_auth needs libmiscencoding.la
Henrik Nordstrom [Mon, 1 Nov 2010 23:54:02 +0000 (00:54 +0100)] 
basic_smb_auth needs libmiscencoding.la

13 years agoReverted r11002 after r11003 added a more general safe_free() fix.
Alex Rousskov [Mon, 1 Nov 2010 20:55:47 +0000 (14:55 -0600)] 
Reverted r11002 after r11003 added a more general safe_free() fix.

13 years agoChanged safe_free() definition to eliminate multiple "ambiguous else" warnings.
Alex Rousskov [Mon, 1 Nov 2010 20:45:08 +0000 (14:45 -0600)] 
Changed safe_free() definition to eliminate multiple "ambiguous else" warnings.

13 years agoAdded explicit braces to avoid "ambiguous else" warning with GCC v4.4.1.
Alex Rousskov [Mon, 1 Nov 2010 20:23:56 +0000 (14:23 -0600)] 
Added explicit braces to avoid "ambiguous else" warning with GCC v4.4.1.

13 years agoCompile fixes from CentOS
Amos Jeffries [Mon, 1 Nov 2010 10:13:56 +0000 (04:13 -0600)] 
Compile fixes from CentOS

13 years agoBug 3038: Detatch libmisc from libcompat
Amos Jeffries [Mon, 1 Nov 2010 05:44:28 +0000 (23:44 -0600)] 
Bug 3038: Detatch libmisc from libcompat

* Migrates many of the remaining libmisc portability wrappers into
  libcompat.

* Splits libmisc into:
   libprofiler - Squid internal profiler (developer-only)
   libmiscencoding - Various binary encoding / crypto algorithms
   libmisccontainers - Various data container algorithms

* Makes all binaries which need to link the libmisc* pieces directly instead
  of via $(COMPAT_LIB) which now only links the libcompat and internal
  profiler due to profiling being used on some libcompat functions.

* Adds a stub_debug for binaries needing the Debug.h API without squid
  timers and globals.

Some effort has been made to identify binaries whose dependencies can be
reduced. More of this dependency removal can be done in future.

13 years agoSupport RFC 2965 Set-Cookie2 / Cookie2 headers
Amos Jeffries [Mon, 1 Nov 2010 00:52:59 +0000 (18:52 -0600)] 
Support RFC 2965 Set-Cookie2 / Cookie2 headers

13 years agoHarden quoted-string parser to RFC requirements
Amos Jeffries [Mon, 1 Nov 2010 00:21:57 +0000 (18:21 -0600)] 
Harden quoted-string parser to RFC requirements

Fix RFC 2616 section 2.2 quote-string handling.

 * Restrict the parser to the known length of the value string to prevent
   buffer over-reads from specially crafted inputs.
 * Drop quoted-string values containing CTL octets.

13 years agoMove client delay pools release notes to 3.2
Amos Jeffries [Fri, 29 Oct 2010 03:26:33 +0000 (21:26 -0600)] 
Move client delay pools release notes to 3.2

13 years agoSourceFormat Enforcement
Automatic source maintenance [Fri, 29 Oct 2010 00:12:28 +0000 (18:12 -0600)] 
SourceFormat Enforcement

13 years agoUse the new Cache Manager registration API for the newly added /dev/poll code.
Alex Rousskov [Thu, 28 Oct 2010 20:01:27 +0000 (14:01 -0600)] 
Use the new Cache Manager registration API for the newly added /dev/poll code.

13 years agoSMP Cache Manager, Phase2 implementation.
Alex Rousskov [Thu, 28 Oct 2010 18:52:59 +0000 (12:52 -0600)] 
SMP Cache Manager, Phase2 implementation.

Cache Manager actions are forwarded to Coordinator. Coordinator iterates over
Kids, aggregating their stats if possible and/or allowing each kid to dump
non-aggregatable output directly into response if needed. Non-aggregated
output is wrapped in "by kidN { ... } by kidN" markup to ease auto-processing.

Regressions and small output formatting changes are probably unavoidable
because stats are aggregated and passed around as doubles instead of integers
(no more overflows though!) and because many stats collection and formatting
lines had to be touched. These are steps in the right direction though, IMO.

Old code both computed and dumped stats to Store at the same time. To avoid
computing code duplication, we now collect stats in primitive Stats objects
and then either dump those to Store or send them to Coordinator for
aggregation and, eventual Store dump. What stats to collect, when to
aggregate, and when to dump is decided by action-specific Mgr::Action classes.

The Cache Manager menu now consists of ActionProfile objects. ActionProfile
maintains hard-coded information about specific actions. It uses ActionCreator
member to create Action objects when a cache manager request is received.

Added Mgr::ActionParams class to maintain action parameters, including HTTP
request details necessary for Store entry creation (in another strand) and
action-specific parameters (currently just credentials). In Phase3, this class
can be extended to supply more parameters such as kid IDs to which the action
should apply.

Added Mgr::Command that combines hard-coded ActionProfile details with
user-specified ActionParams. This simplifies many interfaces because we no
longer need to supply a long list of parameters, covering various parts of
action config.

Moved Cache Manager registration to Mgr::RegisterAction() globals to reduce
dependency on the CacheManager class, which is a singleton anyway, and which
is unused by most of the registration callers.  On the other hand, without
this change, no legacy (function-based actions) code would have been changed!

Enhanced TypedMsgHdr class to simplify storing and loading non-POD classes.
The caller can now easily handle a non-POD class as a series of put/get calls,
one for each POD member. This was necessary to send Mgr::ActionParams to
Coordinator and back. Will probably be useful for sending other complex
structures as well.

Reconfigure, shutdown, and other "basic" actions have been moved to
src/mgr/BasicActions.cc. Mgr::RegisterBasics() registers them.

Most of the Cache Manager code is now in src/mgr/.

Many more polishing touches.

More polishing left for future projects: Move CacheManager to Mgr namespace
and src/mgr/ directory. Use SBuf instead of String for ActionParams and
TypedMsgHdr. Rename Ipc::TypedMsgHdr to Ipc::Msg, Ipc::SocketMsg, or similar
because it maintains more than just msghdr struct. More stats aggregation,
and Phase3 changes.

13 years agoPortability fix: u_int*_t types are deprecated, replaced with uint*_t
Francesco Chemolli [Thu, 28 Oct 2010 15:50:51 +0000 (17:50 +0200)] 
Portability fix: u_int*_t types are deprecated, replaced with uint*_t

13 years agoAdded ERR_PRECONDITION_FAILED template that I missed in r10990 commit.
Alex Rousskov [Thu, 28 Oct 2010 14:20:39 +0000 (08:20 -0600)] 
Added ERR_PRECONDITION_FAILED template that I missed in r10990 commit.

13 years agoSourceFormat Enforcement
Automatic source maintenance [Thu, 28 Oct 2010 00:17:18 +0000 (18:17 -0600)] 
SourceFormat Enforcement

13 years agoHTTP Compliance: Support If-Match and If-None-Match requests.
Alex Rousskov [Wed, 27 Oct 2010 23:29:55 +0000 (17:29 -0600)] 
HTTP Compliance: Support If-Match and If-None-Match requests.

Add support for If-Match and If-None-Match headers as described in RFC 2616
(sections 14.24 and 14.26 in particular).

Moved IMS handling from clientReplyContext::cacheHit() to
clientReplyContext::processConditional() while preserving the original IMS
logic, except for the case when a request has both IMS and If-None-Match.

Co-Advisors test cases:
    test_clause/rfc2616/ifMatch-mismatch-strong
    test_clause/rfc2616/ifMatch-mismatch-weak
    test_clause/rfc2616/ifNoneMatch-match-imsNone
    and many more

13 years agoFirst part of StringNg merge: MemBlob.
Francesco Chemolli [Wed, 27 Oct 2010 21:26:26 +0000 (23:26 +0200)] 
First part of StringNg merge: MemBlob.

13 years agoAuthor: Hank Hampel <hh@nr-city.net>
Amos Jeffries [Wed, 27 Oct 2010 14:00:08 +0000 (08:00 -0600)] 
Author: Hank Hampel <hh@nr-city.net>
Bug 3028: Permit wbinfo_group.pl to authenticate Kerberos users with NT domain.

13 years agoautoconf: changed shell indirect variable quotation to make it more Bourne shell...
Francesco Chemolli [Tue, 26 Oct 2010 23:31:45 +0000 (01:31 +0200)] 
autoconf: changed shell indirect variable quotation to make it more Bourne shell friendly.

13 years agoAuthor: Various Translators
Amos Jeffries [Tue, 26 Oct 2010 23:01:30 +0000 (12:01 +1300)] 
Author: Various Translators
Translations Update auto-save

13 years agoAuthor: Various Translators
Amos Jeffries [Tue, 26 Oct 2010 17:01:56 +0000 (06:01 +1300)] 
Author: Various Translators
Translations Update auto-save

13 years agoFixed DEFAULT_PID_FILE typo to fix "var/run" creation during "make install".
Alex Rousskov [Tue, 26 Oct 2010 14:29:39 +0000 (08:29 -0600)] 
Fixed DEFAULT_PID_FILE typo to fix "var/run" creation during "make install".

13 years agoSourceFormat Enforcement
Automatic source maintenance [Tue, 26 Oct 2010 00:17:17 +0000 (18:17 -0600)] 
SourceFormat Enforcement

13 years agoClient-side bandwidth limit (a.k.a., quota or delay pool) implementation.
Christos Tsantilas [Mon, 25 Oct 2010 21:49:58 +0000 (00:49 +0300)] 
Client-side bandwidth limit (a.k.a., quota or delay pool) implementation.

Put fde::clientInfo initialization inside an "#if DELAY_POOLS/#endif" to allow
squid compile when delay pools are disabled

13 years agoAlex Rousskov <rousskov@measurement-factory.com>
Christos Tsantilas [Mon, 25 Oct 2010 20:30:14 +0000 (23:30 +0300)] 
Alex Rousskov <rousskov@measurement-factory.com>
Client-side bandwidth limit (a.k.a., quota or delay pool) implementation.

Add forgoten ClientDelayConfig.h and ClientDelayConfig.cc files. These
files should be submitted with the  r10980 patch

13 years agoAuthor: Alex Rousskov <rousskov@measurement-factory.com>
Christos Tsantilas [Mon, 25 Oct 2010 18:25:19 +0000 (21:25 +0300)] 
Author: Alex Rousskov <rousskov@measurement-factory.com>
Client-side bandwidth limit (a.k.a., quota or delay pool) implementation.

In mobile environments, Squid may need to limit Squid-to-client bandwidth
available to individual users, identified by their IP addresses. The IP
address pool can be as large as a /10 IPv4 network (4 million unique IP
addresses) and even larger in IPv6 environments. On the other hand, the code
should support thousands of connections coming from a single IP (e.g., a child
proxy).

The implementation is based on storing bandwidth-related "bucket" information
in the existing "client database" hash (client_db.cc). The old code already
assigned each client IP a single ClientInfo object, which satisfies the
client-side IP-based bandwidth pooling requirements. The old hash size is
increased to support up to 32K concurrent clients if needed.

Client-side pools are configured similarly to server-side ones, but there is
only one pool class. See client_delay_pools,
client_delay_initial_bucket_level, client_delay_parameters, and
client_delay_access in squid.conf. The client_delay_access matches the client
with delay parameters. It does not pool clients from different IP addresses
together.

Special care is taken to provide fair distribution of bandwidth among clients
sharing the same bucket (i.e., clients coming from the same IP address).
Multiple same-IP clients competing for bandwidth are queued using FIFO
algorithm. If a bucket becomes empty, the first client among those sharing the
bucket is delayed by 1 second before it can attempt to receive more response
data from Squid.  This delay may need to be lowered in high-bandwidth
environments.

This feature has been documented at
http://wiki.squid-cache.org/Features/ClientBandwidthLimit

13 years agoPrep for 3.1.9
Amos Jeffries [Mon, 25 Oct 2010 07:31:39 +0000 (01:31 -0600)] 
Prep for 3.1.9

13 years agoAuthor: Marcin Wisnicki <mwisnicki@gmail.com>
Amos Jeffries [Mon, 25 Oct 2010 04:14:50 +0000 (22:14 -0600)] 
Author: Marcin Wisnicki <mwisnicki@gmail.com>
Bug 3088: dnsserver is segfaulting

13 years agoAuthor: Various Translators
Amos Jeffries [Sun, 24 Oct 2010 23:01:08 +0000 (12:01 +1300)] 
Author: Various Translators
Translations Update auto-save

13 years agoAuthor: Various Translators
Amos Jeffries [Sun, 24 Oct 2010 17:01:17 +0000 (06:01 +1300)] 
Author: Various Translators
Translations Update auto-save

13 years agoAuthor: Various Translators
Amos Jeffries [Sun, 24 Oct 2010 11:02:19 +0000 (00:02 +1300)] 
Author: Various Translators
Translations Update auto-save

13 years agoBug 2808: getRoundRobinParent not handling weights correctly
Amos Jeffries [Sun, 24 Oct 2010 07:08:13 +0000 (01:08 -0600)] 
Bug 2808: getRoundRobinParent not handling weights correctly

Suspected fix. Has not been able to be replicated before the change.

13 years agoBug 2793: memory statistics sometimes display wrong
Amos Jeffries [Sun, 24 Oct 2010 06:47:31 +0000 (00:47 -0600)] 
Bug 2793: memory statistics sometimes display wrong

13 years agoAuthor: Various Translators
Amos Jeffries [Sat, 23 Oct 2010 23:01:06 +0000 (12:01 +1300)] 
Author: Various Translators
Translations Update auto-save

13 years agoGet url_rewrite_concurrency upgrade parse right
Amos Jeffries [Sat, 23 Oct 2010 12:42:05 +0000 (06:42 -0600)] 
Get url_rewrite_concurrency upgrade parse right

13 years agoUpgrade process for obsolete options
Amos Jeffries [Sat, 23 Oct 2010 08:50:56 +0000 (02:50 -0600)] 
Upgrade process for obsolete options

One problem we currently have with upgrades is leaving the parser able
to avoid its bungled/unknown option message for directives which have
been fully removed or massively syntax altered.

We are able to handle this for flags and option syntax easily but the
parser has been particularly dense and strict on the directives (first
word of each line).

This patch updates the cf_* and cfgman code to allow a special directive
type "obsolete" which causes these directives to be handled specially
without causing the directives to remain in the publicly visible
squid.conf documentation.

It allows DOC_START / DOC_END comments to be written in cf.data.pre
describing the upgrade actions that need to be taken. This text is
dumped to cache.log verbatim when the configuration option is sighted.

If "-k parse" is used the text is displayed at debug level 0, otherwise
displayed at debug level 1. One line indicating a generic "directive X
is obsolete" is always displayed at level 0 for backwards compatibility
with admin expectations of a high level "bungled" message.

After all this text display, parse_obsolete(char*) is called with the
directive name. This function exists in cache_cf.cc and can be coded to
selectivey do more complex handling of the directive. ie for upgrade
actions deeper than removal.

 * cf.data.pre has entries added for all the 2.6-3.1 directives I could
   find that were removed up to 3.HEAD

13 years agoAuthor: Various Translators
Amos Jeffries [Fri, 22 Oct 2010 17:02:20 +0000 (06:02 +1300)] 
Author: Various Translators
Translations Update auto-save

13 years agoFixed autoconf SQUID_STATE_ROLLBACK improper shell variable expansion.
Francesco Chemolli [Fri, 22 Oct 2010 14:57:27 +0000 (16:57 +0200)] 
Fixed autoconf SQUID_STATE_ROLLBACK improper shell variable expansion.
Fixed out-of-order SQUID_CXXFLAGS autoconf substitution

13 years agoBug 3084: IPv6 without Host: header in request causes connection to hang
Amos Jeffries [Fri, 22 Oct 2010 13:23:09 +0000 (07:23 -0600)] 
Bug 3084: IPv6 without Host: header in request causes connection to hang

accel and intercept mode URL re-generation used NtoA instead of ToHostname.
This results in the URL incorrectly wrapping the raw-IPv6 and problems
connecting to non-existent addresses in some cases.

13 years agoBuild failed in Hudson for opensolaris and debian sid
Christos Tsantilas [Fri, 22 Oct 2010 09:26:09 +0000 (12:26 +0300)] 
Build failed in Hudson for opensolaris and debian sid

Build failed for opensolaris and debian sid with a linker message that
the TextException::FileNameHash(char const*) is undefined.
This patch trying to resolve the problem

13 years agoLangpack Serbian compatibility alias update
Amos Jeffries [Fri, 22 Oct 2010 06:45:07 +0000 (00:45 -0600)] 
Langpack Serbian compatibility alias update