]> git.ipfire.org Git - thirdparty/squid.git/blame - src/stmem.cc
Updates for running on squid-cache.org
[thirdparty/squid.git] / src / stmem.cc
CommitLineData
df92bd2a 1
30a4f2a8 2/*
2415e202 3 * $Id: stmem.cc,v 1.93 2007/12/27 01:58:19 hno Exp $
30a4f2a8 4 *
6f6f0853 5 * DEBUG: section 19 Store Memory Primitives
30a4f2a8 6 * AUTHOR: Harvest Derived
7 *
2b6662ba 8 * SQUID Web Proxy Cache http://www.squid-cache.org/
e25c139f 9 * ----------------------------------------------------------
30a4f2a8 10 *
2b6662ba 11 * Squid is the result of efforts by numerous individuals from
12 * the Internet community; see the CONTRIBUTORS file for full
13 * details. Many organizations have provided support for Squid's
14 * development; see the SPONSORS file for full details. Squid is
15 * Copyrighted (C) 2001 by the Regents of the University of
16 * California; see the COPYRIGHT file for full details. Squid
17 * incorporates software developed and/or copyrighted by other
18 * sources; see the CREDITS file for full details.
30a4f2a8 19 *
20 * This program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; either version 2 of the License, or
23 * (at your option) any later version.
24 *
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software
cbdec147 32 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
e25c139f 33 *
42a503bd 34 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
019dd986 35 */
ed43818f 36
44a47c6e 37#include "squid.h"
528b2c61 38#include "stmem.h"
39#include "mem_node.h"
40#include "MemObject.h"
b8bad68c 41#include "Generic.h"
528b2c61 42
12d74f96 43/*
44 * NodeGet() is called to get the data buffer to pass to storeIOWrite().
45 * By setting the write_pending flag here we are assuming that there
46 * will be no other users of NodeGet(). The storeIOWrite() callback
47 * is memNodeWriteComplete(), which, for whatever reason, lives in
48 * mem_node.cc.
49 */
d06925a4 50char *
51mem_hdr::NodeGet(mem_node * aNode)
52{
12d74f96 53 assert(!aNode->write_pending);
54 aNode->write_pending = 1;
d06925a4 55 return aNode->data;
56}
57
47f6e231 58int64_t
528b2c61 59mem_hdr::lowestOffset () const
60{
42a503bd 61 const SplayNode<mem_node *> *theStart = nodes.start();
62
63 if (theStart)
64 return theStart->data->nodeBuffer.offset;
62e76326 65
528b2c61 66 return 0;
67}
68
47f6e231 69int64_t
528b2c61 70mem_hdr::endOffset () const
71{
47f6e231 72 int64_t result = 0;
b8bad68c 73 const SplayNode<mem_node *> *theEnd = nodes.finish();
62e76326 74
42a503bd 75 if (theEnd)
76 result = theEnd->data->dataRange().end;
62e76326 77
528b2c61 78 assert (result == inmem_hi);
62e76326 79
528b2c61 80 return result;
81}
090089c4 82
d89d1fb6 83void
528b2c61 84mem_hdr::freeContent()
85{
42a503bd 86 nodes.destroy(SplayNode<mem_node *>::DefaultFree);
528b2c61 87 inmem_hi = 0;
88}
89
12d74f96 90bool
42a503bd 91mem_hdr::unlink(mem_node *aNode)
528b2c61 92{
12d74f96 93 if (aNode->write_pending) {
bf8fe701 94 debugs(0, 0, "cannot unlink mem_node " << aNode << " while write_pending");
12d74f96 95 return false;
96 }
d06925a4 97
12d74f96 98 nodes.remove (aNode, NodeCompare);
99 delete aNode;
100 return true;
090089c4 101}
102
47f6e231 103int64_t
104mem_hdr::freeDataUpto(int64_t target_offset)
528b2c61 105{
106 /* keep the last one to avoid change to other part of code */
62e76326 107
42a503bd 108 SplayNode<mem_node*> const * theStart = nodes.start();
109
12d74f96 110 while ((theStart = nodes.start())) {
111 if (theStart == nodes.finish())
112 break;
113
47f6e231 114 if (theStart->data->end() > target_offset )
12d74f96 115 break;
116
117 if (!unlink(theStart->data))
118 break;
42a503bd 119 }
62e76326 120
528b2c61 121 assert (lowestOffset () <= target_offset);
62e76326 122
528b2c61 123 return lowestOffset ();
124}
125
62e76326 126int
528b2c61 127mem_hdr::appendToNode(mem_node *aNode, const char *data, int maxLength)
128{
129 size_t result = writeAvailable (aNode, aNode->nodeBuffer.offset + aNode->nodeBuffer.length ,maxLength, data);
130 return result;
131}
132
133size_t
47f6e231 134mem_hdr::writeAvailable(mem_node *aNode, int64_t location, size_t amount, char const *source)
528b2c61 135{
136 /* if we attempt to overwrite existing data or leave a gap within a node */
ed013b6c 137 assert (location == aNode->nodeBuffer.offset + (int64_t)aNode->nodeBuffer.length);
528b2c61 138 /* And we are not at the end of the node */
139 assert (aNode->canAccept (location));
62e76326 140
528b2c61 141 /* these two can go I think */
ed013b6c 142 assert (location - aNode->nodeBuffer.offset == (int64_t)aNode->nodeBuffer.length);
528b2c61 143 size_t copyLen = XMIN (amount, aNode->space());
144
145 xmemcpy(aNode->nodeBuffer.data + aNode->nodeBuffer.length, source, copyLen);
146
47f6e231 147 if (inmem_hi <= location)
62e76326 148 inmem_hi = location + copyLen;
149
528b2c61 150 /* Adjust the ptr and len according to what was deposited in the page */
151 aNode->nodeBuffer.length += copyLen;
62e76326 152
528b2c61 153 return copyLen;
154}
155
156void
157mem_hdr::appendNode (mem_node *aNode)
158{
42a503bd 159 nodes.insert (aNode, NodeCompare);
090089c4 160}
161
e6e5d90d 162void
528b2c61 163mem_hdr::makeAppendSpace()
164{
42a503bd 165 if (!nodes.size()) {
166 appendNode (new mem_node (0));
62e76326 167 return;
090089c4 168 }
62e76326 169
b8bad68c 170 if (!nodes.finish()->data->space())
62e76326 171 appendNode (new mem_node (endOffset()));
172
b8bad68c 173 assert (nodes.finish()->data->space());
528b2c61 174}
175
176void
177mem_hdr::internalAppend(const char *data, int len)
178{
90703668 179 debugs(19, 6, "memInternalAppend: len " << len);
62e76326 180
090089c4 181 while (len > 0) {
62e76326 182 makeAppendSpace();
b8bad68c 183 int copied = appendToNode (nodes.finish()->data, data, len);
62e76326 184 assert (copied);
185
186 len -= copied;
187 data += copied;
090089c4 188 }
090089c4 189}
190
528b2c61 191/* returns a mem_node that contains location..
192 * If no node contains the start, it returns NULL.
193 */
194mem_node *
47f6e231 195mem_hdr::getBlockContainingLocation (int64_t location) const
528b2c61 196{
42a503bd 197 mem_node target (location);
198 target.nodeBuffer.length = 1;
199 mem_node *const *result = nodes.find (&target, NodeCompare);
62e76326 200
42a503bd 201 if (result)
202 return *result;
62e76326 203
42a503bd 204 return NULL;
528b2c61 205}
206
207size_t
47f6e231 208mem_hdr::copyAvailable(mem_node *aNode, int64_t location, size_t amount, char *target) const
528b2c61 209{
47f6e231 210 if (aNode->nodeBuffer.offset > location)
62e76326 211 return 0;
212
47f6e231 213 assert (aNode->nodeBuffer.offset <= location);
62e76326 214
528b2c61 215 assert (aNode->end() > location);
62e76326 216
528b2c61 217 size_t copyOffset = location - aNode->nodeBuffer.offset;
62e76326 218
528b2c61 219 size_t copyLen = XMIN (amount, aNode->nodeBuffer.length - copyOffset);
220
221 xmemcpy(target, aNode->nodeBuffer.data + copyOffset, copyLen);
62e76326 222
528b2c61 223 return copyLen;
224}
225
b8bad68c 226void
227mem_hdr::debugDump() const
228{
db7778f1 229 debugs (19, 0, "mem_hdr::debugDump: lowest offset: " << lowestOffset() << " highest offset + 1: " << endOffset() << ".");
b8bad68c 230 std::ostringstream result;
231 PointerPrinter<mem_node *> foo(result, " - ");
232 for_each (getNodes().begin(), getNodes().end(), foo);
db7778f1 233 debugs (19, 0, "mem_hdr::debugDump: Current available data is: " << result.str() << ".");
b8bad68c 234}
235
62e76326 236/* FIXME: how do we deal with sparse results -
528b2c61 237 * where we have (say)
238 * 0-500 and 1000-1500, but are asked for
239 * 0-2000
240 * Partial answer:
241 * we supply 0-500 and stop.
242 */
02be0294 243ssize_t
90703668 244mem_hdr::copy(StoreIOBuffer const &target) const
090089c4 245{
528b2c61 246
47f6e231 247 assert(target.range().end > target.range().start);
90703668 248 debugs(19, 6, "memCopy: " << target.range());
62e76326 249
b8bad68c 250 /* we shouldn't ever ask for absent offsets */
251
42a503bd 252 if (nodes.size() == 0) {
b8bad68c 253 debugs(19, 1, "mem_hdr::copy: No data to read");
254 debugDump();
42a503bd 255 assert (0);
62e76326 256 return 0;
42a503bd 257 }
62e76326 258
528b2c61 259 /* RC: the next assert is nearly useless */
90703668 260 assert(target.length > 0);
528b2c61 261
090089c4 262 /* Seek our way into store */
47f6e231 263 mem_node *p = getBlockContainingLocation(target.offset);
62e76326 264
528b2c61 265 if (!p) {
90703668 266 debugs(19, 1, "memCopy: could not find start of " << target.range() <<
e4049756 267 " in memory.");
b8bad68c 268 debugDump();
17d97ab3 269 fatal("Squid has attempted to read data from memory that is not present. This is an indication of of (pre-3.0) code that hasn't been updated to deal with sparse objects in memory. Squid should coredump.allowing to review the cause. Immediately preceeding this message is a dump of the available data in the format [start,end). The [ means from the value, the ) means up to the value. I.e. [1,5) means that there are 4 bytes of data, at offsets 1,2,3,4.\n");
62e76326 270 return 0;
090089c4 271 }
62e76326 272
90703668 273 size_t bytes_to_go = target.length;
274 char *ptr_to_buf = target.data;
47f6e231 275 int64_t location = target.offset;
62e76326 276
090089c4 277 /* Start copying begining with this block until
278 * we're satiated */
528b2c61 279
090089c4 280 while (p && bytes_to_go > 0) {
62e76326 281 size_t bytes_to_copy = copyAvailable (p,
282 location, bytes_to_go, ptr_to_buf);
283
284 /* hit a sparse patch */
285
286 if (bytes_to_copy == 0)
90703668 287 return target.length - bytes_to_go;
62e76326 288
289 location += bytes_to_copy;
290
291 ptr_to_buf += bytes_to_copy;
292
293 bytes_to_go -= bytes_to_copy;
294
42a503bd 295 p = getBlockContainingLocation(location);
090089c4 296 }
62e76326 297
90703668 298 return target.length - bytes_to_go;
090089c4 299}
528b2c61 300
301bool
47f6e231 302mem_hdr::hasContigousContentRange(Range<int64_t> const & range) const
528b2c61 303{
47f6e231 304 int64_t currentStart = range.start;
62e76326 305
528b2c61 306 while (mem_node *curr = getBlockContainingLocation(currentStart)) {
62e76326 307 currentStart = curr->end();
308
4c50505b 309 if (currentStart >= range.end)
62e76326 310 return true;
528b2c61 311 }
62e76326 312
528b2c61 313 return false;
314}
315
316bool
317mem_hdr::unionNotEmpty(StoreIOBuffer const &candidate)
318{
528b2c61 319 assert (candidate.offset >= 0);
42a503bd 320 mem_node target(candidate.offset);
321 target.nodeBuffer.length = candidate.length;
322 return nodes.find (&target, NodeCompare);
528b2c61 323}
324
325mem_node *
47f6e231 326mem_hdr::nodeToRecieve(int64_t offset)
528b2c61 327{
328 /* case 1: Nothing in memory */
62e76326 329
42a503bd 330 if (!nodes.size()) {
62e76326 331 appendNode (new mem_node(offset));
42a503bd 332 return nodes.start()->data;
528b2c61 333 }
334
42a503bd 335 mem_node *candidate = NULL;
528b2c61 336 /* case 2: location fits within an extant node */
62e76326 337
42a503bd 338 if (offset > 0) {
339 mem_node search (offset - 1);
340 search.nodeBuffer.length = 1;
341 mem_node *const *leadup = nodes.find (&search, NodeCompare);
342
343 if (leadup)
344 candidate = *leadup;
528b2c61 345 }
346
42a503bd 347 if (candidate && candidate->canAccept(offset))
62e76326 348 return candidate;
528b2c61 349
350 /* candidate can't accept, so we need a new node */
351 candidate = new mem_node(offset);
62e76326 352
528b2c61 353 appendNode (candidate);
62e76326 354
528b2c61 355 /* simpler to write than a indented if */
356 return candidate;
357}
358
359
360bool
361mem_hdr::write (StoreIOBuffer const &writeBuffer)
362{
1d5161bd 363 PROF_start(mem_hdr_write);
90703668 364 debugs(19, 6, "mem_hdr::write: " << writeBuffer.range() << " object end " << endOffset());
528b2c61 365
366 if (unionNotEmpty(writeBuffer)) {
97545f5e 367 debugs(19,0,"mem_hdr::write: writeBuffer: " << writeBuffer.range());
db7778f1 368 debugDump();
369 fatal("Attempt to overwrite already in-memory data. Preceeding this there should be a mem_hdr::write output that lists the attempted write, and the currently present data. Please get a 'backtrace full' from this error - using the generated core, and file a bug report with the squid developers including the last 10 lines of cache.log and the backtrace.\n");
1d5161bd 370 PROF_stop(mem_hdr_write);
62e76326 371 return false;
528b2c61 372 }
373
374 assert (writeBuffer.offset >= 0);
375
376 mem_node *target;
47f6e231 377 int64_t currentOffset = writeBuffer.offset;
528b2c61 378 char *currentSource = writeBuffer.data;
379 size_t len = writeBuffer.length;
62e76326 380
528b2c61 381 while (len && (target = nodeToRecieve(currentOffset))) {
62e76326 382 size_t wrote = writeAvailable(target, currentOffset, len, currentSource);
383 assert (wrote);
384 len -= wrote;
385 currentOffset += wrote;
386 currentSource += wrote;
528b2c61 387 }
388
1d5161bd 389 PROF_stop(mem_hdr_write);
528b2c61 390 return true;
391}
4c50505b 392
42a503bd 393mem_hdr::mem_hdr() : inmem_hi(0)
4c50505b 394{}
395
396mem_hdr::~mem_hdr()
397{
398 freeContent();
399}
42a503bd 400
401/* splay of mem nodes:
402 * conditions:
403 * a = b if a.intersection(b).size > 0;
404 * a < b if a < b
405 */
406int
407mem_hdr::NodeCompare(mem_node * const &left, mem_node * const &right)
408{
409 // possibly Range can help us at some point.
410
411 if (left->dataRange().intersection(right->dataRange()).size() > 0)
412 return 0;
413
414 return *left < *right ? -1 : 1;
415}
416
417void
418mem_hdr::dump() const
419{
90703668 420 debugs(20, 1, "mem_hdr: " << (void *)this << " nodes.start() " << nodes.start());
421 debugs(20, 1, "mem_hdr: " << (void *)this << " nodes.finish() " << nodes.finish());
42a503bd 422}
423
424size_t
425mem_hdr::size() const
426{
427 return nodes.size();
428}
429
430mem_node const *
431mem_hdr::start() const
432{
433 const SplayNode<mem_node *> * result = nodes.start();
434
435 if (result)
436 return result->data;
437
438 return NULL;
439}
b8bad68c 440
441const Splay<mem_node *> &
442mem_hdr::getNodes() const
443{
444 return nodes;
445}