1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
|
/** @file
A brief file description
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/****************************************************************************
HttpCacheSM.cc
Description:
****************************************************************************/
#include "HttpCacheSM.h"
#include "HttpSM.h"
#include "HttpDebugNames.h"
#define SM_REMEMBER(sm, e, r) \
{ \
sm->history.push_back(MakeSourceLocation(), e, r); \
}
#define STATE_ENTER(state_name, event) \
{ \
SM_REMEMBER(master_sm, event, NO_REENTRANT); \
Debug("http_cache", "[%" PRId64 "] [%s, %s]", master_sm->sm_id, #state_name, HttpDebugNames::get_event_name(event)); \
}
HttpCacheAction::HttpCacheAction() {}
void
HttpCacheAction::cancel(Continuation *c)
{
ink_assert(c == nullptr || c == sm->master_sm);
ink_assert(this->cancelled == 0);
this->cancelled = 1;
if (sm->pending_action) {
sm->pending_action->cancel();
}
}
HttpCacheSM::HttpCacheSM()
: Continuation(nullptr),
captive_action()
{
}
//////////////////////////////////////////////////////////////////////////
//
// HttpCacheSM::state_cache_open_read()
//
// State the cache calls back the state machine into on a open_read
// call. The set of allowed events (from the cache) are:
// - CACHE_EVENT_OPEN_READ
// - document matching request is in the cache
// - CACHE_EVENT_OPEN_READ_FAILED
// if (data != ECACHEDOCBUSY)
// - document matching request is not in the cache
// if (data == ECACHEDOCBUSY)
// - document with same URL as request is in the cache
// but is being currently updated by another state
// machine. Keep in mind that the document may NOT
// match any of the request headers - it just matches
// the URL. In other words, the document that is being
// written to by another state machine may be an
// alternate of the document the request wants.
// - EVENT_INTERVAL
// - a previous open_read returned "failed_in_progress". we
// decided to retry the open read. we scheduled the event
// processor to call us back after n msecs so that we can
// reissue the open_read. this is the call from the event
// processor.
//
//////////////////////////////////////////////////////////////////////////
int
HttpCacheSM::state_cache_open_read(int event, void *data)
{
STATE_ENTER(&HttpCacheSM::state_cache_open_read, event);
ink_assert(captive_action.cancelled == 0);
pending_action = nullptr;
switch (event) {
case CACHE_EVENT_OPEN_READ:
HTTP_INCREMENT_DYN_STAT(http_current_cache_connections_stat);
ink_assert((cache_read_vc == nullptr) || master_sm->t_state.redirect_info.redirect_in_process);
if (cache_read_vc) {
// redirect follow in progress, close the previous cache_read_vc
close_read();
}
open_read_cb = true;
cache_read_vc = static_cast<CacheVConnection *>(data);
master_sm->handleEvent(event, data);
break;
case CACHE_EVENT_OPEN_READ_FAILED:
if ((intptr_t)data == -ECACHE_DOC_BUSY) {
// Somebody else is writing the object
if (open_read_tries <= master_sm->t_state.txn_conf->max_cache_open_read_retries) {
// Retry to read; maybe the update finishes in time
open_read_cb = false;
do_schedule_in();
} else {
// Give up; the update didn't finish in time
// HttpSM will inform HttpTransact to 'proxy-only'
open_read_cb = true;
master_sm->handleEvent(event, data);
}
} else {
// Simple miss in the cache.
open_read_cb = true;
master_sm->handleEvent(event, data);
}
break;
case EVENT_INTERVAL:
// Retry the cache open read if the number retries is less
// than or equal to the max number of open read retries,
// else treat as a cache miss.
ink_assert(open_read_tries <= master_sm->t_state.txn_conf->max_cache_open_read_retries || write_locked);
Debug("http_cache",
"[%" PRId64 "] [state_cache_open_read] cache open read failure %d. "
"retrying cache open read...",
master_sm->sm_id, open_read_tries);
do_cache_open_read(cache_key);
break;
default:
ink_assert(0);
}
return VC_EVENT_CONT;
}
int
HttpCacheSM::state_cache_open_write(int event, void *data)
{
STATE_ENTER(&HttpCacheSM::state_cache_open_write, event);
ink_assert(captive_action.cancelled == 0);
pending_action = nullptr;
bool read_retry_on_write_fail = false;
switch (event) {
case CACHE_EVENT_OPEN_WRITE:
HTTP_INCREMENT_DYN_STAT(http_current_cache_connections_stat);
ink_assert(cache_write_vc == nullptr);
cache_write_vc = static_cast<CacheVConnection *>(data);
open_write_cb = true;
master_sm->handleEvent(event, data);
break;
case CACHE_EVENT_OPEN_WRITE_FAILED:
if (master_sm->t_state.txn_conf->cache_open_write_fail_action == CACHE_WL_FAIL_ACTION_READ_RETRY) {
// fall back to open_read_tries
// Note that when CACHE_WL_FAIL_ACTION_READ_RETRY is configured, max_cache_open_write_retries
// is automatically ignored. Make sure to not disable max_cache_open_read_retries
// with CACHE_WL_FAIL_ACTION_READ_RETRY as this results in proxy'ing to origin
// without write retries in both a cache miss or a cache refresh scenario.
if (open_write_tries <= master_sm->t_state.txn_conf->max_cache_open_write_retries) {
Debug("http_cache", "[%" PRId64 "] [state_cache_open_write] cache open write failure %d. read retry triggered",
master_sm->sm_id, open_write_tries);
if (master_sm->t_state.txn_conf->max_cache_open_read_retries <= 0) {
Debug("http_cache",
"[%" PRId64 "] [state_cache_open_write] invalid config, cache write fail set to"
" read retry, but, max_cache_open_read_retries is not enabled",
master_sm->sm_id);
}
open_read_tries = 0;
read_retry_on_write_fail = true;
// make sure it doesn't loop indefinitely
open_write_tries = master_sm->t_state.txn_conf->max_cache_open_write_retries + 1;
}
}
if (read_retry_on_write_fail || open_write_tries <= master_sm->t_state.txn_conf->max_cache_open_write_retries) {
// Retry open write;
open_write_cb = false;
// reset captive_action since HttpSM cancelled it
captive_action.cancelled = 0;
do_schedule_in();
} else {
// The cache is hosed or full or something.
// Forward the failure to the main sm
Debug("http_cache",
"[%" PRId64 "] [state_cache_open_write] cache open write failure %d. "
"done retrying...",
master_sm->sm_id, open_write_tries);
open_write_cb = true;
master_sm->handleEvent(event, data);
}
break;
case EVENT_INTERVAL:
if (master_sm->t_state.txn_conf->cache_open_write_fail_action == CACHE_WL_FAIL_ACTION_READ_RETRY) {
Debug("http_cache",
"[%" PRId64 "] [state_cache_open_write] cache open write failure %d. "
"falling back to read retry...",
master_sm->sm_id, open_write_tries);
open_read_cb = false;
master_sm->handleEvent(CACHE_EVENT_OPEN_READ, data);
} else {
Debug("http_cache",
"[%" PRId64 "] [state_cache_open_write] cache open write failure %d. "
"retrying cache open write...",
master_sm->sm_id, open_write_tries);
// Retry the cache open write if the number retries is less
// than or equal to the max number of open write retries
ink_assert(open_write_tries <= master_sm->t_state.txn_conf->max_cache_open_write_retries);
open_write(&cache_key, lookup_url, read_request_hdr, master_sm->t_state.cache_info.object_read,
static_cast<time_t>(
(master_sm->t_state.cache_control.pin_in_cache_for < 0) ? 0 : master_sm->t_state.cache_control.pin_in_cache_for),
retry_write, false);
}
break;
default:
ink_release_assert(0);
}
return VC_EVENT_CONT;
}
void
HttpCacheSM::do_schedule_in()
{
ink_assert(pending_action == nullptr);
Action *action_handle =
mutex->thread_holding->schedule_in(this, HRTIME_MSECONDS(master_sm->t_state.txn_conf->cache_open_read_retry_time));
if (action_handle != ACTION_RESULT_DONE) {
pending_action = action_handle;
}
return;
}
Action *
HttpCacheSM::do_cache_open_read(const HttpCacheKey &key)
{
open_read_tries++;
ink_assert(pending_action == nullptr);
if (write_locked) {
open_read_cb = false;
} else {
ink_assert(open_read_cb == false);
}
// reset captive_action since HttpSM cancelled it during open read retry
captive_action.cancelled = 0;
// Initialising read-while-write-inprogress flag
this->readwhilewrite_inprogress = false;
Action *action_handle = cacheProcessor.open_read(this, &key, this->read_request_hdr, this->http_params, this->read_pin_in_cache);
if (action_handle != ACTION_RESULT_DONE) {
pending_action = action_handle;
}
// Check to see if we've already called the user back
// If we have then it's ACTION_RESULT_DONE, other wise
// return our captive action and ensure that we are actually
// doing something useful
if (open_read_cb == true) {
return ACTION_RESULT_DONE;
} else {
ink_assert(pending_action != nullptr || write_locked == true);
return &captive_action;
}
}
Action *
HttpCacheSM::open_read(const HttpCacheKey *key, URL *url, HTTPHdr *hdr, const OverridableHttpConfigParams *params,
time_t pin_in_cache)
{
Action *act_return;
cache_key = *key;
lookup_url = url;
read_request_hdr = hdr;
http_params = params;
read_pin_in_cache = pin_in_cache;
ink_assert(pending_action == nullptr);
SET_HANDLER(&HttpCacheSM::state_cache_open_read);
lookup_max_recursive++;
current_lookup_level++;
open_read_cb = false;
act_return = do_cache_open_read(cache_key);
// the following logic is based on the assumption that the second
// lookup won't happen if the HttpSM hasn't been called back for the
// first lookup
if (current_lookup_level == lookup_max_recursive) {
current_lookup_level--;
ink_assert(current_lookup_level >= 0);
if (current_lookup_level == 0) {
lookup_max_recursive = 0;
}
return act_return;
} else {
ink_assert(current_lookup_level < lookup_max_recursive);
current_lookup_level--;
if (current_lookup_level == 0) {
lookup_max_recursive = 0;
}
return ACTION_RESULT_DONE;
}
}
Action *
HttpCacheSM::open_write(const HttpCacheKey *key, URL *url, HTTPHdr *request, CacheHTTPInfo *old_info, time_t pin_in_cache,
bool retry, bool allow_multiple)
{
SET_HANDLER(&HttpCacheSM::state_cache_open_write);
ink_assert(pending_action == nullptr);
ink_assert((cache_write_vc == nullptr) || master_sm->t_state.redirect_info.redirect_in_process);
// INKqa12119
open_write_cb = false;
open_write_tries++;
this->retry_write = retry;
// We should be writing the same document we did
// a lookup on
// this is no longer true for multiple cache lookup
// ink_assert(url == lookup_url || lookup_url == NULL);
ink_assert(request == read_request_hdr || read_request_hdr == nullptr);
this->lookup_url = url;
this->read_request_hdr = request;
cache_key = *key;
// Make sure we are not stuck in a loop where the write
// fails but the retry read succeeds causing to issue
// a new write (could happen on a very busy document
// that must be revalidated every time)
// Changed by YTS Team, yamsat Plugin
// two criteria, either write retries over the amount OR timeout
if (open_write_tries > master_sm->redirection_tries &&
open_write_tries > master_sm->t_state.txn_conf->max_cache_open_write_retries) {
master_sm->handleEvent(CACHE_EVENT_OPEN_WRITE_FAILED, (void *)-ECACHE_DOC_BUSY);
return ACTION_RESULT_DONE;
}
Action *action_handle =
cacheProcessor.open_write(this, 0, key, request,
// INKqa11166
allow_multiple ? (CacheHTTPInfo *)CACHE_ALLOW_MULTIPLE_WRITES : old_info, pin_in_cache);
if (action_handle != ACTION_RESULT_DONE) {
pending_action = action_handle;
}
// Check to see if we've already called the user back
// If we have then it's ACTION_RESULT_DONE, other wise
// return our captive action and ensure that we are actually
// doing something useful
if (open_write_cb == true) {
return ACTION_RESULT_DONE;
} else {
ink_assert(pending_action != nullptr);
return &captive_action;
}
}
|