]> git.ipfire.org Git - thirdparty/squid.git/log
thirdparty/squid.git
12 years agoCleanup: update several CBDATA classes part 2
Amos Jeffries [Thu, 27 Jun 2013 15:58:46 +0000 (09:58 -0600)] 
Cleanup: update several CBDATA classes part 2

Removes several cbdataAlloc/cbdataFree by updating classes to use
CBDATA_CLASS2 macro..

12 years agoFTP gateway: fix segfault during large file download.
Dmitry Kurochkin [Wed, 26 Jun 2013 00:37:49 +0000 (04:37 +0400)] 
FTP gateway: fix segfault during large file download.

12 years agoFTP gateway: fix upload freezing for large files.
Dmitry Kurochkin [Wed, 26 Jun 2013 00:35:39 +0000 (04:35 +0400)] 
FTP gateway: fix upload freezing for large files.

12 years agoFTP gateway: upload support.
Dmitry Kurochkin [Tue, 25 Jun 2013 23:33:35 +0000 (03:33 +0400)] 
FTP gateway: upload support.

The patch adds support for FTP upload commands: STOR, APPE and STOU.

12 years agoDo not broadcast changes if there are no remote readers.
Alex Rousskov [Tue, 25 Jun 2013 19:19:28 +0000 (13:19 -0600)] 
Do not broadcast changes if there are no remote readers.

New/future readers should anchor themselves to the cache in order to get the
earlier updates they missed.

12 years agoAvoid "STORE_DISK_CLIENT == getType()" assertions for ENTRY_ABORTED clients
Alex Rousskov [Tue, 25 Jun 2013 17:51:30 +0000 (11:51 -0600)] 
Avoid "STORE_DISK_CLIENT == getType()" assertions for ENTRY_ABORTED clients
and no disk cache configured.

StoreEntry::abort() makes entry STORE_OK, which makes
storeClientNoMoreToSend() return false for entries with unknown objectLen(),
triggering a disk read for some of them (when store_client::doCopy() cannot
schedule a memory read). If the entry is not really on disk, we hit an
assertion in store_client::scheduleDiskRead().

12 years agoVarious fixes related to overlapping and collapsed entry caching.
Alex Rousskov [Tue, 25 Jun 2013 16:06:37 +0000 (10:06 -0600)] 
Various fixes related to overlapping and collapsed entry caching.

Wrote Transients description, replacing an irrelevant copy-pasted comment.
Maintain proper transient entry locks, distinguishing reading and writing
cases.

Fixed transients synchronization logic. Store::get() must not return
incomplete from-cache entries, except for local or transient ones. Otherwise,
the returned entry will not be updated when its remote writer makes changes.

Marked entries fully loaded from the shared memory cache as STORE_OK.

Avoid caching ENTRY_SPECIAL in the shared memory cache for now. This is not
strictly necessary, I think, but it simplifies shared caching log when
triaging start-test-analyze test cases. The restriction can be removed
when ENTRY_SPECIAL generation code becomes shared cache-aware, for example.

Fixed copy-paste error in Transients::disconnect().

Changed CollapsedForwarding::Broadcast() profile in preparation for excluding
broadcasts for entries without remote readers.

Do not purge entire cache entries just because we have to trim their RAM
footprint. The old code assumed that non-swappable entries may not have any
other stored content (which is no longer correct because they may still reside
in the shared memory cache) so it almost made sense to purge them, but it is
possible for clients to use partial in-RAM data when serving range requests,
so we should not be purging unless there are other reasons to do that. This
may expose client-side bugs if the hit validation code is not checking for RAM
entries being incomplete.

Allow MemObject::trimUnSwappable() to be called when there is nothing to trim.
This used to be a special case in StoreEntry::trimMemory(), but we do not need
it anymore after the above change.

Added transient and shared memory indexes to StoreEntry debugging summaries.

12 years agoMark client streams that sent everything as STREAM_COMPLETE.
Alex Rousskov [Tue, 25 Jun 2013 15:39:10 +0000 (09:39 -0600)] 
Mark client streams that sent everything as STREAM_COMPLETE.

The old code used STREAM_UNPLANNED_COMPLETE if the completed stream was
associated with a non-persistent connection, which did not make sense to me
and, IIRC, led to store entry aborts even though the entries were not damaged
in any way.

This change may expose other subtle bugs, but none are known at this time.

See also:
  http://www.squid-cache.org/mail-archive/squid-dev/200702/0017.html
  http://www.squid-cache.org/mail-archive/squid-dev/201102/0210.html

12 years agoRemoved StoreEntry::hidden_mem_obj.
Alex Rousskov [Mon, 24 Jun 2013 17:05:13 +0000 (11:05 -0600)] 
Removed StoreEntry::hidden_mem_obj.
Replaced MemObject::url with MemObject::urlXXX() and storeId().

* Replace StoreEntry::hidden_mem_obj hack with explicit MemObject::setUris().
We need MemObject to tie Store::get() results to locked memory cache entries
and such but Store::get() does not know the entry URIs so we had to use fake
"TBD" URIs instead.  The hidden_mem_obj hack was added to minimize chances
that those temporary "TBD" URIs are going to be logged or forwarded.

However, new code uses MemObject cache ties a lot more, and it became too
cumbersome and error prone to always check whether there is a hidden object
holding indexes of locked StoreMap entries. It should be easier to ensure
that true URIs are set after Store::get() instead.

* Provide accessors for MemObject::url (which is actually a store ID these
days) and MemObject::log_url (which is usually the same as the url so we now
do not allocated it when it is the same). These accessors allow us to verify
that the caller is not going to use an undefined URI or Store ID because some
code forgot to set them explicitly.

* Add urlXXX() to mark old callers that appear to assume that MemObject::url
still holds a URI (instead of StoreID). Fixing those callers is outside this
project scope, but this was a good opportunity to identify/mark them because
we needed to hide raw Store ID field name ("url") anyway.

12 years agoFix Ip::Address::operator =(sockaddr_storage)
Alexis Robert [Mon, 24 Jun 2013 07:42:35 +0000 (01:42 -0600)] 
Fix Ip::Address::operator =(sockaddr_storage)

The memcpy() for AF_INET6 is using a length of sizeof(sockaddr_in) instead
of sizeof(sockaddr_in6), so squid was trying to connect to truncatured IPv6
addresses with strange ports.

12 years agoVarious shared memory-based collapsed forwarding improvements and fixes.
Alex Rousskov [Sat, 22 Jun 2013 15:24:34 +0000 (09:24 -0600)] 
Various shared memory-based collapsed forwarding improvements and fixes.

Lock transient entries while in use. Transient entry presence is used
used to detect collapsed entry aborts for not-yet-cached entries.

Store current transient locks and memory cache entry state in MemObject. Why
not in StoreEntry like the disk cache does?  To avoid penalizing those Stores
that keep idle StoreEntries in RAM.

Mark collapsing entries specially (in MemObject) so that we can stop updating
(un-tie) local entries that tried to collapse but did not like the collapsed
hit object that they started to get from another worker. When this happens,
the client side creates a new StoreEntry, but without a flag Store cannot tell
whether that entry needs to be kept in sync with the collapsed writer because
both the old entry and the new one have the same key. We may eventually find
a better way to distinguish the two cases.

Do not require MemObjects to be disassociated from various caches during
shutdown because Squid is currently incapable of maintaining Store::Root()
during shutdown.

Support incremental shared memory caching. Maintain and honor the
ENTRY_FWD_HDR_WAIT flag. Maintain shared memory cache reading/writing states.

Better updates of collapsed entries. Detect aborted entries. Do not release
entries that are not yet cached anywhere at the update time.

Polished entry debugging.

Bug 3480 fix.

Added XXXs to mark new problems and old bugs.

12 years agoThe path member can remain private.
Alex Rousskov [Sat, 22 Jun 2013 15:20:12 +0000 (09:20 -0600)] 
The path member can remain private.

12 years agoProperly reinitialize reused acnhor.start and slice.size.
Alex Rousskov [Sat, 22 Jun 2013 15:11:30 +0000 (09:11 -0600)] 
Properly reinitialize reused acnhor.start and slice.size.

Since we allowed readers and [appending] writers to share an entry, it is
no longer possible to implement abortIo(). The caller must either close
the reading entry or abort the writing one, depending on the caller's lock.

12 years agoDo not clear ENTRY_FWD_HDR_WAIT twice. It is cleared by replaceHttpReply().
Alex Rousskov [Sat, 22 Jun 2013 15:07:46 +0000 (09:07 -0600)] 
Do not clear ENTRY_FWD_HDR_WAIT twice. It is cleared by replaceHttpReply().

12 years agoMarked one spot where newly allocated Store::get*() entries are forgotten and
Alex Rousskov [Sat, 22 Jun 2013 15:01:40 +0000 (09:01 -0600)] 
Marked one spot where newly allocated Store::get*() entries are forgotten and
probably leaking.

12 years agoAdded debugging to allow automated store entry tracking during CF notifications.
Alex Rousskov [Fri, 21 Jun 2013 23:19:44 +0000 (17:19 -0600)] 
Added debugging to allow automated store entry tracking during CF notifications.

Polished "queue overflow" error reporting.

12 years agoMake !lock.readers and !lock.writers assertions safe.
Alex Rousskov [Fri, 21 Jun 2013 22:04:04 +0000 (16:04 -0600)] 
Make !lock.readers and !lock.writers assertions safe.

The lock class used readers level counter to count both attempts to read and
current readers. The attempts part made assertions declaring that there should
be no readers unsafe because even a writing entry may have a reading attempt.
Same for writers counter: A reading entry may have a writing attempt.

We now segragate the attempts level, which is internal information required
for shared lock to work, from counting the number of successful attempts
(i.e., actual readers and writers), which is public information useful for
assertions, stats, etc.

12 years agoFixed ipc/Queue notification race leading to stuck, overflowing queues.
Alex Rousskov [Fri, 21 Jun 2013 00:50:35 +0000 (18:50 -0600)] 
Fixed ipc/Queue notification race leading to stuck, overflowing queues.

The writer calling OneToOneUniQueue::push() must tell readers if it places the
first item into a previously empty queue. We used to determine emptiness prior
to incrementing queue size. That created a window between wasEmpty calculation
and queuing the new item (by incrementing the queue size). During that window,
the readers could pop() all previously queued items (resulting in an empty
queue) but since that happened after wasEmpty was computed to be false, the
writer would not notify them about the new item it just placed, and they will
get stuck, eventually resulting in queue overflow errors.

The fix attempts to increment the queue size and extract the previous size
value atomically.

12 years agoRedirector helpers related changes
Christos Tsantilas [Thu, 20 Jun 2013 19:21:02 +0000 (22:21 +0300)] 
Redirector helpers related changes

- The redirectStateData handlers requires the HelperReply::Okay helper reply
  result code else will drop the helper reply, but we are always pass to them
  the HelperReply::Unknown reply result code

- The NotePairs are not support "=" operator. This patch replaces a such command
  using the NotePairs::append member, and also adds unimplemented private
  = operator and copy constructor to prevent developers from using it.

12 years agoIntegrate libTrie into squid build process
Francesco Chemolli [Thu, 20 Jun 2013 10:01:48 +0000 (12:01 +0200)] 
Integrate libTrie into squid build process

12 years agoMerged from trunk
Francesco Chemolli [Thu, 20 Jun 2013 09:56:11 +0000 (11:56 +0200)] 
Merged from trunk

12 years agoCleanup: update several CBDATA classes
Amos Jeffries [Wed, 19 Jun 2013 04:59:56 +0000 (22:59 -0600)] 
Cleanup: update several CBDATA classes

Removes several cbdataAlloc/cbdataFree by updating classes to use
CBDATA_CLASS2 macro..

12 years agoAdd Master Transaction class
Amos Jeffries [Tue, 18 Jun 2013 23:26:17 +0000 (17:26 -0600)] 
Add Master Transaction class

... to store and propigate the shared state used end-to-end through Squid
for logging or server-side component input. This excludes Job and Call
pointers, but does include any 'factual' data regarding the traansaction.

12 years agoMake sure %<tt includes all [failed] connection attempts.
Alex Rousskov [Tue, 18 Jun 2013 22:30:39 +0000 (16:30 -0600)] 
Make sure %<tt includes all [failed] connection attempts.

The old code was using zero n_tries to detect the first connection attempt,
but n_tries is not incremented when we are opening a new connection rather
than reusing an old one. Perhaps n_tries should be updated differently as
well, but this change simply makes %<tt (hier.total_response_time) management
independent from that [complex] counter.

12 years agoSending root certificate for validation
Christos Tsantilas [Tue, 18 Jun 2013 10:23:41 +0000 (13:23 +0300)] 
Sending root certificate for validation

This patch modify squid cert validation subsystem to sent to cert validator
helper the complete certificates chain, not only the certificates sent by
web server. This is may not be possible in all cases, for example  in cases
where the root certificate is not stored localy.

Also this patch includes a small optimization, it checks for domain mismatch
error only when the checked (current) certificate is the server certificate.

This is a Measurement Factory project

12 years agoDeprecate log_icap and log_access configuration directives
Christos Tsantilas [Tue, 18 Jun 2013 06:22:13 +0000 (09:22 +0300)] 
Deprecate log_icap and log_access configuration directives

The log_icap and log_access are not really needed to control requests logging.
Someone can use acls  with access_log and icap_log configuration directives
for this purpose.
Also currently the requests denied for logging using the log_access access list
will not be accounted for in performance counters.

This patch:
 - removes log_icap and log_access options from configuration file.
 - adds the "stats_collection" access list to control performane counters
   accounting.

This is a Measurement Factory project

12 years agoSourceLayout: Add anyp/forward.h predefinition
Amos Jeffries [Thu, 13 Jun 2013 11:08:58 +0000 (05:08 -0600)] 
SourceLayout: Add anyp/forward.h predefinition

Provide the AnyP:: namespace predefines to reduce dependencies.

12 years agoRemoved useless include compiler flags
Francesco Chemolli [Tue, 11 Jun 2013 15:16:07 +0000 (17:16 +0200)] 
Removed useless include compiler flags

12 years agoMerged from trunk
Francesco Chemolli [Tue, 11 Jun 2013 13:15:01 +0000 (15:15 +0200)] 
Merged from trunk

12 years agoLibTrie refactro: remove sub-configure invocation
Francesco Chemolli [Tue, 11 Jun 2013 13:13:23 +0000 (15:13 +0200)] 
LibTrie refactro: remove sub-configure invocation

12 years agoFix icap_log and log_icap acls checking
Christos Tsantilas [Tue, 11 Jun 2013 10:04:48 +0000 (13:04 +0300)] 
Fix icap_log and log_icap acls checking

The HTTP reply related acls does not check for icap_log

12 years agoFix request headers logging for icap_log
Christos Tsantilas [Tue, 11 Jun 2013 09:55:05 +0000 (12:55 +0300)] 
Fix request headers logging for icap_log

The %http::>h does not print the original request headers but the adapted
request headers. Also the %http::>ha does not print adapted headers.

12 years agoFix wrong check inside Format::Format::assemble
Christos Tsantilas [Tue, 11 Jun 2013 09:25:07 +0000 (12:25 +0300)] 
Fix wrong check inside Format::Format::assemble

We are checking for al->request but we are using al->adapted_request. This is
may cause crashes if the al->adapted_request is NULL.

12 years agoMinor fix for cert validator helper messages parsing
Christos Tsantilas [Tue, 11 Jun 2013 09:22:45 +0000 (12:22 +0300)] 
Minor fix for cert validator helper messages parsing

Allow "host=" cert validation message parameter exist anywhere in the message.
Currently supposed to be always the first parameter of the message.

12 years agoSourceFormat Enforcement
Automatic source maintenance [Tue, 11 Jun 2013 08:11:30 +0000 (02:11 -0600)] 
SourceFormat Enforcement

12 years agoSupport forwarding intercepted but not bumped connections to cache_peers.
Alex Rousskov [Mon, 10 Jun 2013 20:46:08 +0000 (14:46 -0600)] 
Support forwarding intercepted but not bumped connections to cache_peers.

When talking to a cache_peer (i.e., sending a CONNECT request before tunneling
the transaction), tunnel code is using a clever hack: Squid does not parse
the CONNECT response from peer but blindly forwards it to the client. This
works great and simplifies code a lot, except when the client connection
was intercepted and, hence, the client did not send a CONNECT request and
is not expecting a CONNECT response.

In those situations, we now accumulate, parse, and strip the peer CONNECT
response (or close connection on errors).

The existing tunnel I/O code is too simple to accommodate that task -- it
cannot accumulate read data (its I/O buffers work in lockstep fashion, writing
everything it reads before reading again). Instead of rewriting the entire
tunnel code to use more complex buffers, I added a temporary accumulation
buffer for the CONNECT response. That buffer is not allocated unless it is
needed and does not grow beyond SQUID_TCP_SO_RCVBUF size, just like the
simple buffers.

12 years agoBug 3722: Invalid markup in Armenian hy ERR_ONLY_IF_CACHED_MISS
Richard Wall [Mon, 10 Jun 2013 11:04:53 +0000 (23:04 +1200)] 
Bug 3722: Invalid markup in Armenian hy ERR_ONLY_IF_CACHED_MISS

12 years agoInstruct clang not to treat unused command line arguments as errors
Francesco Chemolli [Sun, 9 Jun 2013 20:35:58 +0000 (22:35 +0200)] 
Instruct clang not to treat unused command line arguments as errors

12 years agoRelease Notes: fix typo
Amos Jeffries [Sun, 9 Jun 2013 12:36:06 +0000 (06:36 -0600)] 
Release Notes: fix typo

12 years agoFix detection of concurrent ACLChecklist checks, avoiding !accessList asserts.
Alex Rousskov [Sat, 8 Jun 2013 23:21:23 +0000 (17:21 -0600)] 
Fix detection of concurrent ACLChecklist checks, avoiding !accessList asserts.

Concurrent checks are not supported, but it is possible for the same
ACLChecklist to be used for a sequence of checks, alternating fastCheck(void)
and fastCheck(list) calls. We needed a different/dedicated mechanism to detect
check concurrency (added ACLChecklist::occupied_), and we needed to preserve
(and then restore) pre-set accessList during fastCheck(list) checks.

12 years agoSimplified MemObject::write() API.
Alex Rousskov [Sat, 8 Jun 2013 00:56:36 +0000 (18:56 -0600)] 
Simplified MemObject::write() API.

The API required a callback, but the call was always synchronous and the
required callback mechanism could not reliably support an async call anyway.

The method adjusted the buffer offset to become relative to headers rather
than body. While the intent to separate headers from body is noble, none of
the existing caches support that separation, and a different API will be
needed to support it correctly anyway. For now, let's reduce the number of
special cases and offset manipulations.

12 years agoSupport "appending" read/write lock state that can be shared by readers
Alex Rousskov [Fri, 7 Jun 2013 23:34:36 +0000 (17:34 -0600)] 
Support "appending" read/write lock state that can be shared by readers
and writer. Writer promises not to update key metadata (except growing
object size and next pointers) and readers promise to be careful when
reading growing slices.

Support copying of partially cached entries from the shared memory cache to
local RAM. This is required for collapsed shared memory hits to receive new
data during broadcasted updates.

Properly unlock objects in the shared memory cache when their entries are
abandoned by a worker. This was not necessary before because we never locked
memory cache entries for more than a single method call. Now, with partially
cached entries support, the locks may persist much longer.

Properly delete objects from the shared memory cache when they are purged by a
worker. Before this change, locally purged objects may have stayed in the
shared memory cache.

Update disk cache index _after_ the changes are written to disk. Another
worker may be using that index and will expect to find the indexed slices on
disk. Disk queues are not FIFOs across workers.

Made CollapsedForwarding work better in non-SMP mode.

Polished broadcasting code. We need to broadcast entry key because the entry
may not have any other information (it may no longer be cached by the sender,
for example).

Implemented "anchoring" in-transit entries when the writer caches the
corresponding object. This allows the reader's entry object to reflect its
cached status and, hence, be able to ask for cached data during broadcasted
entry updates. Still need to handle the case where the writer does not cache
the object (by aborting collapsed hit).

12 years agoKill some old unused & unmaintained code for sending an error response
Henrik Nordstrom [Fri, 7 Jun 2013 08:49:36 +0000 (20:49 +1200)] 
Kill some old unused & unmaintained code for sending an error response

... on timeout before seeing a request

Ported from 2.7 rev.11516

12 years agoSourceLayout: shuffle forward.h/cc to FwdState.h/cc
Amos Jeffries [Fri, 7 Jun 2013 04:35:25 +0000 (22:35 -0600)] 
SourceLayout: shuffle forward.h/cc to FwdState.h/cc

Our convenience libraries are using the filename forward.h for forward
declarations of symbols. This clashes with the old deprecated naming
of src/forward.h at times.

Rename the src/forward.* files to FwdState.* inline with current coding
guidelines and add a source maintenance check to avoid this problem in
future.

12 years agoFix configure with --disable-internal-dns compile error
Zhanpeng Chen [Fri, 7 Jun 2013 02:32:36 +0000 (20:32 -0600)] 
Fix configure with --disable-internal-dns compile error

dns.cc: In function variable_list* snmp_netDnsFn(variable_list*,s=nint*):
dns.cc:150:5: error: snmpDebugOid was not declared in this scope

12 years agoSourceFormat Enforcement
Automatic source maintenance [Fri, 7 Jun 2013 00:18:11 +0000 (18:18 -0600)] 
SourceFormat Enforcement

12 years agoDo not log bogus ERRORs when url_rewrite_access bypasses url_rewriter.
Alex Rousskov [Thu, 6 Jun 2013 16:43:29 +0000 (10:43 -0600)] 
Do not log bogus ERRORs when url_rewrite_access bypasses url_rewriter.

The code uses HelperReply() object as a fake reply when url_rewrite_access
ACLs did not match. That fake reply had Unknown result code, which made Squid
log ERRORs to cache.log. We now use Error result code, just like
store_id_access does.

TODO: Bypass the overheads of creating and processing a fake reply by moving
all post-processing actions and checks into a new dedicated method and calling
that method when url_rewrite_access does not match. Do the same to the StoreID
code.

12 years agobasic_sasl_auth: Fix helper auto-detection
Amos Jeffries [Thu, 6 Jun 2013 15:39:53 +0000 (03:39 +1200)] 
basic_sasl_auth: Fix helper auto-detection

The helpers update in rev.12782 revealed SASL detection errors in the
use of ./configure script variables. This fixes the SASL library checks
and updates them to use the configure variable naming scheme.

12 years agoPolished icap_service and ecap_service documentation.
Alex Rousskov [Thu, 6 Jun 2013 14:21:25 +0000 (08:21 -0600)] 
Polished icap_service and ecap_service documentation.

12 years agoTying validation errors to certificates
Christos Tsantilas [Thu, 6 Jun 2013 13:53:16 +0000 (16:53 +0300)] 
Tying validation errors to certificates

When Squid sends errors to the certificate validation daemon, the daemon cannot
tell which certificate caused which error. This is especially bad because the
validator has to return that same information in the response (the response
format requires the validator to match the error to the certificate).
This patch adjust the validation request format to provide that information
using a set of the following key=value pairs:

    error_name_N=the name of the certificate error number N
    error_cert_N=the ID of the certificate which caused error_name_N

where N is non-negative integer. N values start from zero and increase
sequentially.

This is a Measurement Factory project

12 years agoRedo r12887 (bug 2066 fix) which introduced several related bugs:
Alex Rousskov [Wed, 5 Jun 2013 15:38:09 +0000 (09:38 -0600)] 
Redo r12887 (bug 2066 fix) which introduced several related bugs:

  - fatal() if chroot is given
  - no chdir to / after chroot if coredump_dir is given
  - wrong detection of "none" coredump_dir
  - chdir to uninitialized pathbuf if no chroot is given

This emergency fix helps Squid start better but may need more testing/work.

12 years agoFixed r12859 (Boolean ACLs) bugs related to ACL parsing and dumping:
Christos Tsantilas [Wed, 5 Jun 2013 15:02:11 +0000 (09:02 -0600)] 
Fixed r12859 (Boolean ACLs) bugs related to ACL parsing and dumping:

- BoolOps.cc:94: "false" assertion when parsing ssl_bump directive.

- Infinite loop with RAM growth in dump_wordlist when dumping Squid
  configuration for cache manager.

- Segfault on not configured (nil) access lists in dump_acl_access.

12 years agoSourceFormat Enforcement
Automatic source maintenance [Wed, 5 Jun 2013 00:13:22 +0000 (18:13 -0600)] 
SourceFormat Enforcement

12 years agoDrop Ip::Address(Ip::Address *) constructor entirely
Amos Jeffries [Tue, 4 Jun 2013 05:12:39 +0000 (23:12 -0600)] 
Drop Ip::Address(Ip::Address *) constructor entirely

Has been deprecated for a while and appears to no longer be required by
any of the current code. The reference& copy-constructor can easily be
used in its place.

12 years agoFix NULL-dereference added in rev.12779
Amos Jeffries [Tue, 4 Jun 2013 04:21:48 +0000 (22:21 -0600)] 
Fix NULL-dereference added in rev.12779

With the change of helper responses from Notes to NotePairs the errNote
in NTLM ERR/NA responses was altered to a potentially NULL char*, and
allowed to be printed in debugs() level 4.

This updated NTLM and Negotiate halpers to print the helper response as
"Result: ..." in identical fashion.

  Detected by Coverity Scan. Issue 1020655.

12 years agoBug 2066: squid does not do chdir() after chroot()
Amos Jeffries [Tue, 4 Jun 2013 04:09:31 +0000 (22:09 -0600)] 
Bug 2066: squid does not do chdir() after chroot()

The earlier workaround applied only fixed 1 of the 3 places performing
chroot().
 This makes chroot and chdir integral parts of setting up Squids running
directory and alters teh chroot() calls to be mainSetCwnd() calls. Which
fixes several potential problems with core dumps from squid -z or -k
executions ending up in unexpected locations, regardless of whether
chroot() and coredump_dir are configured.

 Detected by Coverity Scan. Issue 740335.

12 years agoFix assert unsigned-vs-0 comparison
Amos Jeffries [Tue, 4 Jun 2013 03:55:55 +0000 (21:55 -0600)] 
Fix assert unsigned-vs-0 comparison

Nodes::size_type is unsigned and cannot be <0.

 Detected by Coverity Scan. Issue 1026516.

12 years agoFix string termination in snmplib
Amos Jeffries [Tue, 4 Jun 2013 02:59:47 +0000 (20:59 -0600)] 
Fix string termination in snmplib

strncpy() does not null-terminate if the source string is larger or equal
to the destination buffer length.

 Detected by Coverity Scan. Issue 1025738.

12 years agoFix typo-omission in rev.12882
Amos Jeffries [Mon, 3 Jun 2013 15:37:00 +0000 (09:37 -0600)] 
Fix typo-omission in rev.12882

12 years agoFix basic_pam_auth helper detection
Amos Jeffries [Mon, 3 Jun 2013 14:38:26 +0000 (08:38 -0600)] 
Fix basic_pam_auth helper detection

The m4_include() for this helpers test script was omitted from rev.12782.
Add that in, and shuffle the PAM-specific configure tests into the helper
required.m4 script.

12 years agoPolish: update Ip::Address to follow Squid coding guidelines
Amos Jeffries [Mon, 3 Jun 2013 14:05:16 +0000 (08:05 -0600)] 
Polish: update Ip::Address to follow Squid coding guidelines

* lower-case initial word for camelCase method names
* _ suffix for private variables.
* upper-case for static methods
* InitAddrInfo() and FreeAddrInfo() are static, do not use as methods

Not all methods are camelCased due to meaning irregularities and there
are other guidelines not being followed which also need to be fixed.

12 years agoMerge from trunk
Amos Jeffries [Sun, 2 Jun 2013 15:43:09 +0000 (09:43 -0600)] 
Merge from trunk

12 years agoPrepare external_acl_type format codes for libformat upgrade
Amos Jeffries [Sun, 2 Jun 2013 15:17:28 +0000 (03:17 +1200)] 
Prepare external_acl_type format codes for libformat upgrade

Add upgrade warnings for the %> and %< header codes which will change
radically in a future version when libformat is integrated.

Also, while we are at it support the other logformat codes which map 1:1
but silently for now and only on parse.

12 years agoFix incorrect external_acl_type codes
Amos Jeffries [Sun, 2 Jun 2013 14:32:18 +0000 (02:32 +1200)] 
Fix incorrect external_acl_type codes

Documentation describes %USER_CA_CERT_* codes for outputing the CA cert
attributes. However the directive parser and internals were all
referencing it as %CA_CERT_*.

This updates the internals to match documentation, and adds an upgrade
notice for any installations using the old token name.

12 years agoAdd unit-test for char* copy-constructor
Amos Jeffries [Sun, 2 Jun 2013 12:55:22 +0000 (06:55 -0600)] 
Add unit-test for char* copy-constructor

12 years agoSupport multicast DNS
Amos Jeffries [Sun, 2 Jun 2013 11:47:05 +0000 (05:47 -0600)] 
Support multicast DNS

Resolve .local domain names using mDNS one-shot queries ahead of regular
recursive DNS qeuries.

* adds the mDNS multicast group IPs as always-present entries in the
  nameservers list.

* filters each request. ".local" lookups are permitted to both the mDNS
  resolvers and the recursive resolvers, other requests are only
  permitted to the regular recursive resolvers.

12 years agoCleanup: remove several HTTPMSGLOCK/HTTPMSGUNLOCK
Amos Jeffries [Sat, 1 Jun 2013 15:20:56 +0000 (09:20 -0600)] 
Cleanup: remove several HTTPMSGLOCK/HTTPMSGUNLOCK

Convert the TunnelStateData and UrnStateData HttpRequest* to Pointer.

12 years agoRelease Notes: initial details for Store-ID and Annotations
Amos Jeffries [Sat, 1 Jun 2013 13:28:13 +0000 (07:28 -0600)] 
Release Notes: initial details for Store-ID and Annotations

12 years agoBug 3854: pt3: redo pt2 fix and revert rev.12587
Amos Jeffries [Sat, 1 Jun 2013 13:05:38 +0000 (07:05 -0600)] 
Bug 3854: pt3: redo pt2 fix and revert rev.12587

The fix in rev.12857 works for Unix and Linux systems. But BSD based
systems it results in TextException errors via sub-includes from the stub

12 years agoFix typo in rev.12859
Amos Jeffries [Sat, 1 Jun 2013 10:01:13 +0000 (04:01 -0600)] 
Fix typo in rev.12859

cbdataReference() is a macro with a design which means it requires usage
in the form of an assignment. ie a = cbdataReference(B); , or as a
parameter in equivalent to a variable.

Not using it in either of those manners results in syntax errors about a
',' from any strict compiler, and many older versions of GCC.

12 years agoPolish: more debug info from squidclient
Amos Jeffries [Fri, 31 May 2013 09:29:21 +0000 (03:29 -0600)] 
Polish: more debug info from squidclient

12 years agoAdd some missing includes
Amos Jeffries [Fri, 31 May 2013 06:42:09 +0000 (00:42 -0600)] 
Add some missing includes

12 years agoCleanup: remove useless includes
Amos Jeffries [Thu, 30 May 2013 14:58:49 +0000 (08:58 -0600)] 
Cleanup: remove useless includes

12 years agoAdd missing include dlink.h for mem.cc
Amos Jeffries [Thu, 30 May 2013 14:58:11 +0000 (08:58 -0600)] 
Add missing include dlink.h for mem.cc

12 years agoCleanup: remove useless includes
Amos Jeffries [Thu, 30 May 2013 10:42:01 +0000 (04:42 -0600)] 
Cleanup: remove useless includes

12 years agoRemove useless includes
Amos Jeffries [Thu, 30 May 2013 10:14:55 +0000 (04:14 -0600)] 
Remove useless includes

12 years agoRemove useless includes
Amos Jeffries [Thu, 30 May 2013 10:10:29 +0000 (04:10 -0600)] 
Remove useless includes

12 years agoRemove useless includes
Amos Jeffries [Thu, 30 May 2013 09:57:42 +0000 (03:57 -0600)] 
Remove useless includes

12 years agoRemove useless include
Amos Jeffries [Thu, 30 May 2013 09:51:25 +0000 (03:51 -0600)] 
Remove useless include

12 years agoMade some of the Rock collapsing behavior dependent on collapsed_forwarding.
Alex Rousskov [Wed, 29 May 2013 16:24:49 +0000 (10:24 -0600)] 
Made some of the Rock collapsing behavior dependent on collapsed_forwarding.

Do not write empty rock I/O buffer to disk.

Added more comments and polished.

12 years agoAdded BaseMultiQueue class, a common base of the old FewToFewBiQueue class and
Dmitry Kurochkin [Wed, 29 May 2013 16:04:40 +0000 (10:04 -0600)] 
Added BaseMultiQueue class, a common base of the old FewToFewBiQueue class and
the new MultiQueue class.

Added MultiQueue, a lockless fixed-capacity bidirectional queue for a limited
number processes. Any process may send data to and receive from any other
process (including itself). Used for collapsed forwarding notifications.

Added CollapsedForwarding class to send and handle received collapsed
forwarding notifications using MultiQueue.

Write partial Rock pages to disk in order to propagate data from the hit
writer to the collapsed hit readers. Send collapsed forwarding notification
after data was written to disk.

Missing code to share locked StoreMap entries, kick collapsed hit readers, and
to disable notifications in no-daemon mode.

12 years agoMake GCC on CentOS 5.3 happier by removing an unused static function
Alex Rousskov [Wed, 29 May 2013 00:55:39 +0000 (18:55 -0600)] 
Make GCC on CentOS 5.3 happier by removing an unused static function

parse_acl_access was unused when USE_HTTP_VIOLATIONS was not defined.

12 years agoSourceFormat Enforcement
Automatic source maintenance [Wed, 29 May 2013 00:13:21 +0000 (18:13 -0600)] 
SourceFormat Enforcement

12 years agoMake GCC on CentOS 5.3 happier by explicitly #including <sstream>
Alex Rousskov [Tue, 28 May 2013 23:28:39 +0000 (17:28 -0600)] 
Make GCC on CentOS 5.3 happier by explicitly #including <sstream>
(used by aclParseAclList() template) in acl/Gadgets.h.

12 years agoMake GCC on CentOS 5.3 happier by explicitly #including <sstream>
Alex Rousskov [Tue, 28 May 2013 22:38:54 +0000 (16:38 -0600)] 
Make GCC on CentOS 5.3 happier by explicitly #including <sstream>
used by aclParseAclList() template.

12 years agoCleanup: Removed unused #include.
Alex Rousskov [Tue, 28 May 2013 22:33:15 +0000 (16:33 -0600)] 
Cleanup: Removed unused #include.

12 years agoCleanup: Removed unused #include.
Alex Rousskov [Tue, 28 May 2013 22:31:57 +0000 (16:31 -0600)] 
Cleanup: Removed unused #include.

12 years agoImprove ACL handling. Support all-of and any-of ACL types.
Alex Rousskov [Tue, 28 May 2013 16:29:39 +0000 (10:29 -0600)] 
Improve ACL handling. Support all-of and any-of ACL types.

This commit encapsulated many significant ACL changes, including:

* Expressiveness: Two new boolean ACLs (all-of and any-of) that allow
admins to group ACLs as needed, to express complex conditions more
naturally, with fewer squid.conf lines. Conditions such as "(a or b) and
(c or d)" are easily expressed now. Explicit groups of ACLs of different
types can now be configured, named, and used in any ACL expression.

* Correctness and performance: When a slow ACL (that has suspended
checks to wait for an async lookup) is ready to resume checking, Squid
resumes checking from that ACL, instead of rechecking all ACLs for the
same action (or the same squid.conf directive) again.

* Internals: Store ACL-related configurations as an expression tree,
streamlining the code and clearing the way for future math-style/natural
ACL conditions support. The usual boolean operators (and, or, and not)
form intermediate nodes while good old configurable ACLs become tree
leaves. The new all-of and any-of ACLs use the boolean operators (and
also become intermediate nodes, of course).

12 years agoAddressed a few code styling XXXs.
Alex Rousskov [Tue, 28 May 2013 15:05:58 +0000 (09:05 -0600)] 
Addressed a few code styling XXXs.

12 years agoSimplified prepNonBlocking() to address an XXX: Moved finished() check to
Alex Rousskov [Tue, 28 May 2013 14:45:02 +0000 (08:45 -0600)] 
Simplified prepNonBlocking() to address an XXX: Moved finished() check to
resumeNonBlockingCheck().

12 years agoMerged from trunk (r12858).
Alex Rousskov [Tue, 28 May 2013 14:31:59 +0000 (08:31 -0600)] 
Merged from trunk (r12858).

12 years agoSourceFormat
Alex Rousskov [Tue, 28 May 2013 14:28:15 +0000 (08:28 -0600)] 
SourceFormat

12 years agoFix build on Intel's compiler suite.
Francesco Chemolli [Tue, 28 May 2013 13:24:54 +0000 (15:24 +0200)] 
Fix build on Intel's compiler suite.

Forcing 64-bit file operations on 64-bit systems exposes
an issue in stdlibc++, which is covered by gcc but not by
icc in non-gcc mode. This patch prevents forcing 64-bit
file operations on systems where long int is 64-bit or more.
It also properly protects a couple of gcc-specific #pragma.

12 years agoBug 3854: pt2: link stub_fd with squidclient
Amos Jeffries [Mon, 27 May 2013 13:19:53 +0000 (07:19 -0600)] 
Bug 3854: pt2: link stub_fd with squidclient

AIX and possibly other systems still require fde:: symbols pulled in by
ip/libip. Link the stub since the symbols are actually in dead code.

12 years agoBug 3854: pt1: compile errors on AIX
Amos Jeffries [Mon, 27 May 2013 03:47:21 +0000 (21:47 -0600)] 
Bug 3854: pt1: compile errors on AIX

12 years agoSourceFormat Enforcement
Automatic source maintenance [Mon, 27 May 2013 00:13:12 +0000 (18:13 -0600)] 
SourceFormat Enforcement

12 years agoAdd IPC kid type for helper child processes
Amos Jeffries [Sun, 26 May 2013 04:12:20 +0000 (22:12 -0600)] 
Add IPC kid type for helper child processes

12 years agoEnable length configuration for pipeline_prefetch queue
Amos Jeffries [Sun, 26 May 2013 01:57:47 +0000 (19:57 -0600)] 
Enable length configuration for pipeline_prefetch queue

Updates the queue length magic numbers (2) by making pipeline_prefetch a
numeric queus length instead of aon/off toggle.

Also, adds configuration file consistency check for pipeline enabled
when client prsistent connections disable.

12 years agoMerged from trunk (r12852).
Alex Rousskov [Sun, 26 May 2013 01:08:42 +0000 (19:08 -0600)] 
Merged from trunk (r12852).

12 years agoWindows: include 'functional' before defining stdlib API wrapper functions
Amos Jeffries [Sat, 25 May 2013 09:02:59 +0000 (03:02 -0600)] 
Windows: include 'functional' before defining stdlib API wrapper functions

We currently use of #define to replace functions in the stdlib API with
versions which use the Windows API and error reporting.
Some of these result in precompiler replacement of systen internal
symbols. In this case member functions called bind() in templates of
<functional> API get replaced by Squid::bind() symbol.