#include <HttpRequest.h>

Inheritance diagram for HttpRequest:
Collaboration diagram for HttpRequest:

Public Types

typedef RefCount< HttpRequestPointer
 
enum  Sources {
  srcUnknown = 0 ,
  srcHttps = 1 << 0 ,
  srcFtps = 1 << 1 ,
  srcIcaps = 1 << 2 ,
  srcEcaps = 1 << 3 ,
  srcHttp = 1 << (16 + 0) ,
  srcFtp = 1 << (16 + 1) ,
  srcIcap = 1 << (16 + 2) ,
  srcEcap = 1 << (16 + 3) ,
  srcWhois = 1 << (16 + 15) ,
  srcUnsafe = 0xFFFF0000 ,
  srcSafe = 0x0000FFFF
}
 Who may have created or modified this message? More...
 
enum  ParseState {
  psReadyToParseStartLine = 0 ,
  psReadyToParseHeaders ,
  psParsed ,
  psError
}
 parse state of HttpReply or HttpRequest More...
 

Public Member Functions

 HttpRequest (const MasterXaction::Pointer &)
 
 HttpRequest (const HttpRequestMethod &aMethod, AnyP::ProtocolType aProtocol, const char *schemeImage, const char *aUrlpath, const MasterXaction::Pointer &)
 
 ~HttpRequest () override
 
void reset () override
 
void initHTTP (const HttpRequestMethod &aMethod, AnyP::ProtocolType aProtocol, const char *schemeImage, const char *aUrlpath)
 
HttpRequestclone () const override
 
bool maybeCacheable ()
 
bool conditional () const
 has at least one recognized If-* header More...
 
bool canHandle1xx () const
 whether the client is likely to be able to handle a 1xx reply More...
 
char * canonicalCleanUrl () const
 
Adaptation::History::Pointer adaptLogHistory () const
 Returns possibly nil history, creating it if adapt. logging is enabled. More...
 
Adaptation::History::Pointer adaptHistory (bool createIfNone=false) const
 Returns possibly nil history, creating it if requested. More...
 
void adaptHistoryImport (const HttpRequest &them)
 Makes their history ours, throwing on conflicts. More...
 
Adaptation::Icap::History::Pointer icapHistory () const
 Returns possibly nil history, creating it if icap logging is enabled. More...
 
void prepForPeering (const CachePeer &peer)
 get ready to be sent to the given cache_peer, including originserver More...
 
void prepForDirect ()
 get ready to be sent directly to an origin server, excluding originserver More...
 
void recordLookup (const Dns::LookupDetails &detail)
 
void detailError (const err_type c, const ErrorDetail::Pointer &d)
 sets error detail if no earlier detail was available More...
 
void clearError ()
 clear error details, useful for retries/repeats More...
 
void manager (const CbcPointer< ConnStateData > &aMgr, const AccessLogEntryPointer &al)
 associates the request with a from-client connection manager More...
 
const SBufeffectiveRequestUri () const
 RFC 7230 section 5.5 - Effective Request URI. More...
 
bool multipartRangeRequest () const
 
bool parseFirstLine (const char *start, const char *end) override
 
bool expectingBody (const HttpRequestMethod &unused, int64_t &) const override
 
bool bodyNibbled () const
 
int prefixLen () const
 
void swapOut (StoreEntry *e)
 
void pack (Packable *p) const
 
ConnStateDatapinnedConnection ()
 
const SBuf storeId ()
 
void ignoreRange (const char *reason)
 forgets about the cached Range header (for a reason) More...
 
int64_t getRangeOffsetLimit ()
 
NotePairs::Pointer notes ()
 
bool hasNotes () const
 
void configureContentLengthInterpreter (Http::ContentLengthInterpreter &) override
 configures the interpreter as needed More...
 
Http::StatusCode checkEntityFraming () const
 
bool parseHeader (Http1::Parser &hp)
 
bool parseHeader (const char *buffer, const size_t size)
 
void packInto (Packable *, bool full_uri) const
 produce a message copy, except for a few connection-specific settings More...
 
void setContentLength (int64_t)
 [re]sets Content-Length header and cached value More...
 
bool persistent () const
 
void putCc (const HttpHdrCc &)
 
bool parse (const char *buf, const size_t sz, bool eol, Http::StatusCode *error)
 
bool parseCharBuf (const char *buf, ssize_t end)
 
int httpMsgParseStep (const char *buf, int len, int atEnd)
 
virtual int httpMsgParseError ()
 
void firstLineBuf (MemBuf &)
 useful for debugging More...
 

Static Public Member Functions

static void httpRequestPack (void *obj, Packable *p)
 
static HttpRequestFromUrl (const SBuf &url, const MasterXaction::Pointer &, const HttpRequestMethod &method=Http::METHOD_GET)
 
static HttpRequestFromUrlXXX (const char *url, const MasterXaction::Pointer &, const HttpRequestMethod &method=Http::METHOD_GET)
 

Public Attributes

HttpRequestMethod method
 
AnyP::Uri url
 the request URI More...
 
Auth::UserRequest::Pointer auth_user_request
 
String store_id
 
RequestFlags flags
 
HttpHdrRangerange
 
time_t ims
 
int imslen
 
Ip::Address client_addr
 
Ip::Address indirect_client_addr
 
Ip::Address my_addr
 
HierarchyLogEntry hier
 
int dnsWait
 sum of DNS lookup delays in milliseconds, for dt More...
 
Error error
 the first transaction problem encountered (or falsy) More...
 
char * peer_login
 
char * peer_host
 
time_t lastmod
 
SBuf vary_headers
 The variant second-stage cache key. Generated from Vary header pattern for this request. More...
 
char * peer_domain
 
String myportname
 
String tag
 
String extacl_user
 
String extacl_passwd
 
String extacl_log
 
String extacl_message
 
String x_forwarded_for_iterator
 
String etag
 A strong etag of the cached entry. Used for refreshing that entry. More...
 
bool forcedBodyContinuation
 whether we have responded with HTTP 100 or FTP 150 already More...
 
CbcPointer< ConnStateDataclientConnectionManager
 
CbcPointer< Downloaderdownloader
 The Downloader object which initiated the HTTP request if any. More...
 
MasterXaction::Pointer masterXaction
 the master transaction this request belongs to. Never nil. More...
 
AnyP::ProtocolVersion http_ver
 
HttpHeader header
 
HttpHdrCccache_control = nullptr
 
int hdr_sz = 0
 
int64_t content_length = 0
 
ParseState pstate = Http::Message::psReadyToParseStartLine
 the current parsing state More...
 
BodyPipe::Pointer body_pipe
 optional pipeline to receive message body More...
 
uint32_t sources = 0
 The message sources. More...
 

Protected Member Functions

void clean ()
 
void init ()
 
void packFirstLineInto (Packable *p, bool full_uri) const override
 
bool sanityCheckStartLine (const char *buf, const size_t hdr_len, Http::StatusCode *error) override
 
void hdrCacheInit () override
 
bool inheritProperties (const Http::Message *) override
 
bool parseHeader (Http1::Parser &, Http::ContentLengthInterpreter &)
 

Private Member Functions

 MEMPROXY_CLASS (HttpRequest)
 

Private Attributes

Adaptation::History::Pointer adaptHistory_
 per-HTTP transaction info More...
 
Adaptation::Icap::History::Pointer icapHistory_
 per-HTTP transaction info More...
 
int64_t rangeOffsetLimit
 
NotePairs::Pointer theNotes
 

Detailed Description

Definition at line 48 of file HttpRequest.h.

Member Typedef Documentation

◆ Pointer

Definition at line 53 of file HttpRequest.h.

Member Enumeration Documentation

◆ ParseState

enum Http::Message::ParseState
inherited
Enumerator
psReadyToParseStartLine 
psReadyToParseHeaders 
psParsed 
psError 

Definition at line 86 of file Message.h.

◆ Sources

enum Http::Message::Sources
inherited
Enumerator
srcUnknown 
srcHttps 

https_port or bumped http_port tunnel; HTTPS server

srcFtps 

ftps_port or SFTP server; currently unused

srcIcaps 

Secure ICAP service.

srcEcaps 

eCAP service that is considered secure; currently unused

srcHttp 

http_port or HTTP server

srcFtp 

ftp_port or FTP server

srcIcap 

traditional ICAP service without encryption

srcEcap 

eCAP service that uses insecure libraries/daemons

srcWhois 

Whois server.

srcUnsafe 

Unsafe sources mask.

srcSafe 

Safe sources mask.

Definition at line 29 of file Message.h.

Constructor & Destructor Documentation

◆ HttpRequest() [1/2]

HttpRequest::HttpRequest ( const MasterXaction::Pointer mx)

Definition at line 42 of file HttpRequest.cc.

References assert, and init().

Referenced by clone(), and FromUrl().

◆ HttpRequest() [2/2]

HttpRequest::HttpRequest ( const HttpRequestMethod aMethod,
AnyP::ProtocolType  aProtocol,
const char *  schemeImage,
const char *  aUrlpath,
const MasterXaction::Pointer mx 
)

Definition at line 50 of file HttpRequest.cc.

References assert, debugs, init(), and initHTTP().

◆ ~HttpRequest()

HttpRequest::~HttpRequest ( )
override

Definition at line 61 of file HttpRequest.cc.

References clean(), and debugs.

Member Function Documentation

◆ adaptHistory()

◆ adaptHistoryImport()

void HttpRequest::adaptHistoryImport ( const HttpRequest them)

Definition at line 421 of file HttpRequest.cc.

References adaptHistory_, and Must.

◆ adaptLogHistory()

◆ bodyNibbled()

bool HttpRequest::bodyNibbled ( ) const

Definition at line 440 of file HttpRequest.cc.

References Http::Message::body_pipe, and BodyPipe::consumedSize().

Referenced by FwdState::checkRetry(), and FwdState::reforward().

◆ canHandle1xx()

bool HttpRequest::canHandle1xx ( ) const

◆ canonicalCleanUrl()

char * HttpRequest::canonicalCleanUrl ( ) const
Returns
a pointer to a local static buffer containing request URI that honors strip_query_terms and %-encodes unsafe URI characters

Definition at line 814 of file HttpRequest.cc.

References effectiveRequestUri(), AnyP::Uri::getScheme(), method, url, and urlCanonicalCleanWithoutRequest().

Referenced by ClientHttpRequest::setLogUriToRequestUri(), and urlCanonicalFakeHttps().

◆ checkEntityFraming()

◆ clean()

◆ clearError()

void HttpRequest::clearError ( )

◆ clone()

◆ conditional()

bool HttpRequest::conditional ( ) const

◆ configureContentLengthInterpreter()

void HttpRequest::configureContentLengthInterpreter ( Http::ContentLengthInterpreter )
inlineoverridevirtual

Implements Http::Message.

Definition at line 249 of file HttpRequest.h.

◆ detailError()

◆ effectiveRequestUri()

◆ expectingBody()

bool HttpRequest::expectingBody ( const HttpRequestMethod unused,
int64_t &  theSize 
) const
overridevirtual

◆ firstLineBuf()

void Http::Message::firstLineBuf ( MemBuf mb)
inherited

Definition at line 270 of file Message.cc.

◆ FromUrl()

HttpRequest * HttpRequest::FromUrl ( const SBuf url,
const MasterXaction::Pointer mx,
const HttpRequestMethod method = Http::METHOD_GET 
)
static

◆ FromUrlXXX()

◆ getRangeOffsetLimit()

◆ hasNotes()

bool HttpRequest::hasNotes ( ) const
inline

Definition at line 247 of file HttpRequest.h.

References NotePairs::empty(), and theNotes.

Referenced by Http::One::Server::buildHttpRequest().

◆ hdrCacheInit()

void HttpRequest::hdrCacheInit ( )
overrideprotectedvirtual

Reimplemented from Http::Message.

Definition at line 379 of file HttpRequest.cc.

References assert, HttpHeader::getRange(), Http::Message::hdrCacheInit(), Http::Message::header, and range.

Referenced by clone().

◆ httpMsgParseError()

int Http::Message::httpMsgParseError ( )
virtualinherited

Reimplemented in HttpReply.

Definition at line 221 of file Message.cc.

Referenced by HttpReply::httpMsgParseError().

◆ httpMsgParseStep()

int Http::Message::httpMsgParseStep ( const char *  buf,
int  len,
int  atEnd 
)
inherited

parses a 0-terminated buffer into Http::Message.

Return values
1success
0need more data (partial parse)
-1parse error

Definition at line 151 of file Message.cc.

References assert, httpMsgIsolateStart(), Http::Message::psParsed, Http::Message::psReadyToParseHeaders, and Http::Message::psReadyToParseStartLine.

◆ httpRequestPack()

static void HttpRequest::httpRequestPack ( void *  obj,
Packable p 
)
static

◆ icapHistory()

◆ ignoreRange()

◆ inheritProperties()

◆ init()

◆ initHTTP()

void HttpRequest::initHTTP ( const HttpRequestMethod aMethod,
AnyP::ProtocolType  aProtocol,
const char *  schemeImage,
const char *  aUrlpath 
)

Definition at line 68 of file HttpRequest.cc.

References method, AnyP::Uri::path(), AnyP::Uri::setScheme(), and url.

Referenced by HttpRequest().

◆ manager()

◆ maybeCacheable()

bool HttpRequest::maybeCacheable ( )

Whether response to this request is potentially cachable

Return values
falseNot cacheable.
truePossibly cacheable. Response factors will determine.

Are responses to this request possible cacheable ? If false then no matter what the response must not be cached.

Definition at line 538 of file HttpRequest.cc.

References Http::Message::cache_control, flags, AnyP::Uri::getScheme(), HttpHdrCc::hasNoStore(), RequestFlags::hostVerified, RequestFlags::ignoreCc, RequestFlags::intercepted, RequestFlags::interceptTproxy, method, AnyP::PROTO_HTTP, AnyP::PROTO_HTTPS, HttpRequestMethod::respMaybeCacheable(), and url.

Referenced by clientInterpretRequestHeaders().

◆ MEMPROXY_CLASS()

HttpRequest::MEMPROXY_CLASS ( HttpRequest  )
private

◆ multipartRangeRequest()

bool HttpRequest::multipartRangeRequest ( ) const

◆ notes()

NotePairs::Pointer HttpRequest::notes ( )
Returns
existing non-empty transaction annotations, creates and returns empty annotations otherwise

Definition at line 752 of file HttpRequest.cc.

References theNotes.

Referenced by Http::One::Server::buildHttpRequest(), ClientHttpRequest::initRequest(), ClientHttpRequest::logRequest(), AccessLogEntry::syncNotes(), and UpdateRequestNotes().

◆ pack()

◆ packFirstLineInto()

void HttpRequest::packFirstLineInto ( Packable p,
bool  full_uri 
) const
overrideprotectedvirtual

◆ packInto()

void Http::Message::packInto ( Packable p,
bool  full_uri 
) const
inherited

Definition at line 253 of file Message.cc.

References Packable::append().

◆ parse()

bool Http::Message::parse ( const char *  buf,
const size_t  sz,
bool  eol,
Http::StatusCode error 
)
inherited

◆ parseCharBuf()

bool Http::Message::parseCharBuf ( const char *  buf,
ssize_t  end 
)
inherited

parseCharBuf() takes character buffer of HTTP headers (buf), which may not be NULL-terminated, and fills in an Http::Message structure. The parameter 'end' specifies the offset to the end of the reply headers. The caller may know where the end is, but is unable to NULL-terminate the buffer. This function returns true on success.

Definition at line 129 of file Message.cc.

References MemBuf::append(), MemBuf::buf, MemBuf::clean(), MemBuf::init(), MemBuf::size, and MemBuf::terminate().

◆ parseFirstLine()

bool HttpRequest::parseFirstLine ( const char *  start,
const char *  end 
)
overridevirtual

◆ parseHeader() [1/3]

bool HttpRequest::parseHeader ( const char *  buffer,
const size_t  size 
)

Parses request header from the buffer. Use it in contexts where the Parser object not available.

Definition at line 718 of file HttpRequest.cc.

References Http::Message::header, HttpHeader::parse(), and size.

◆ parseHeader() [2/3]

◆ parseHeader() [3/3]

bool HttpRequest::parseHeader ( Http1::Parser hp)

Parses request header using Parser. Use it in contexts where the Parser object is available.

Definition at line 711 of file HttpRequest.cc.

Referenced by Http::One::Server::buildHttpRequest(), htcpSpecifier::checkHit(), and htcpClrStore().

◆ persistent()

bool Http::Message::persistent ( ) const
inherited
Return values
truethe message sender asks to keep the connection open.
falsethe message sender will close the connection.

Factors other than the headers may result in connection closure.

Definition at line 236 of file Message.cc.

References httpHeaderHasConnDir(), and Http::ProtocolVersion().

Referenced by clientReplyContext::buildReplyHeader(), clientSetKeepaliveFlag(), HttpReply::hdrCacheInit(), and HttpStateData::sendRequest().

◆ pinnedConnection()

◆ prefixLen()

◆ prepForDirect()

void HttpRequest::prepForDirect ( )

◆ prepForPeering()

◆ putCc()

void Http::Message::putCc ( const HttpHdrCc otherCc)
inherited

copies Cache-Control header to this message, overwriting existing Cache-Control header(s), if any

Definition at line 33 of file Message.cc.

Referenced by HttpReply::make304(), and CacheManager::PutCommonResponseHeaders().

◆ recordLookup()

◆ reset()

void HttpRequest::reset ( )
overridevirtual

Implements Http::Message.

Definition at line 168 of file HttpRequest.cc.

References clean(), and init().

◆ sanityCheckStartLine()

bool HttpRequest::sanityCheckStartLine ( const char *  buf,
const size_t  hdr_len,
Http::StatusCode scode 
)
overrideprotectedvirtual

Checks the first line of an HTTP request is valid currently just checks the request method is present.

NP: Other errors are left for detection later in the parse.

Implements Http::Message.

Definition at line 268 of file HttpRequest.cc.

References debugs, HttpRequestMethod::HttpRequestMethodXXX(), Http::METHOD_NONE, and Http::scInvalidHeader.

Referenced by PrivateHttpRequest::doSanityCheckStartLine().

◆ setContentLength()

void Http::Message::setContentLength ( int64_t  clen)
inherited

Definition at line 228 of file Message.cc.

References Http::CONTENT_LENGTH.

◆ storeId()

const SBuf HttpRequest::storeId ( )

Returns the current StoreID for the request as a nul-terminated char*. Always returns the current id for the request (either the effective request URI or modified ID by the helper).

Definition at line 733 of file HttpRequest.cc.

References debugs, effectiveRequestUri(), String::size(), store_id, and StringToSBuf().

Referenced by clientReplyContext::cacheHit(), ClientHttpRequest::doCallouts(), and storeKeyPublicByRequestMethod().

◆ swapOut()

void HttpRequest::swapOut ( StoreEntry e)

Definition at line 334 of file HttpRequest.cc.

References assert, StoreEntry::buffer(), StoreEntry::flush(), and pack().

Referenced by clientReplyContext::traceReply().

Member Data Documentation

◆ adaptHistory_

Adaptation::History::Pointer HttpRequest::adaptHistory_
mutableprivate

Definition at line 119 of file HttpRequest.h.

Referenced by adaptHistory(), adaptHistoryImport(), clean(), inheritProperties(), and init().

◆ auth_user_request

◆ body_pipe

◆ cache_control

◆ client_addr

◆ clientConnectionManager

◆ content_length

◆ dnsWait

int HttpRequest::dnsWait

◆ downloader

CbcPointer<Downloader> HttpRequest::downloader

Definition at line 235 of file HttpRequest.h.

Referenced by inheritProperties().

◆ error

◆ etag

◆ extacl_log

String HttpRequest::extacl_log

Definition at line 182 of file HttpRequest.h.

Referenced by Format::Format::assemble(), clean(), clone(), copyResultsFromEntry(), and init().

◆ extacl_message

String HttpRequest::extacl_message

◆ extacl_passwd

◆ extacl_user

◆ flags

RequestFlags HttpRequest::flags

Definition at line 141 of file HttpRequest.h.

Referenced by HttpStateData::HttpStateData(), Ssl::ServerBump::ServerBump(), StoreEntry::adjustVary(), clientReplyContext::blockedHit(), clientReplyContext::buildReplyHeader(), HttpStateData::buildRequestPrefix(), clientReplyContext::cacheHit(), ClientHttpRequest::checkForInternalAccess(), ClientRequestContext::checkNoCacheDone(), CheckQuickAbortIsReasonable(), FwdState::checkRetry(), clientReplyContext::checkTransferDone(), ClientRequestContext::clientAccessCheck(), ClientRequestContext::clientAccessCheckDone(), clientBeginRequest(), clientCheckPinning(), TunnelStateData::clientExpectsConnectResponse(), clientFollowXForwardedForCheck(), clientHierarchical(), clientInterpretRequestHeaders(), clientProcessRequest(), clientProcessRequestFinished(), clientSetKeepaliveFlag(), FwdState::completed(), conditional(), HttpStateData::continueAfterParsingHeader(), copyOneHeaderFromClientsideRequestToUpstreamRequest(), HttpStateData::decideIfWeDoRanges(), FwdState::dispatch(), ClientHttpRequest::doCallouts(), errorAppendEntry(), FindGoodListeningPortAddress(), getOutgoingAddress(), ClientHttpRequest::handleAdaptedHeader(), clientReplyContext::handleIMSReply(), Http::One::Server::handleReply(), StoreEntry::hasIfNoneMatchEtag(), ClientRequestContext::hostHeaderIpVerify(), ClientRequestContext::hostHeaderVerify(), ClientRequestContext::hostHeaderVerifyFailed(), HttpStateData::httpBuildRequestHeader(), httpFixupAuthentication(), httpMaybeRemovePublic(), clientReplyContext::identifyFoundObject(), clientReplyContext::identifyStoreObject(), inheritProperties(), init(), ConnStateData::initiateTunneledRequest(), internalStart(), HappyConnOpener::makeError(), manager(), ACLDestinationIP::match(), ACLProxyAuth::matchProxyAuth(), maybeCacheable(), neighborsDigestSelect(), netdbExchangeStart(), ErrorState::NewForwarding(), FwdState::noteConnection(), PeerSelector::noteIp(), CacheManager::ParseHeaders(), peerAllowedToUse(), peerDigestRequest(), peerSelectIcpPing(), HttpStateData::peerSupportsConnectionPinning(), peerWouldBePinged(), ConnStateData::pinConnection(), FwdState::pinnedCanRetry(), prepForDirect(), prepForPeering(), clientReplyContext::processConditional(), clientReplyContext::processExpired(), clientReplyContext::processMiss(), HttpStateData::processReplyBody(), HttpStateData::processReplyHeader(), ClientHttpRequest::processRequest(), HttpStateData::processSurrogateControl(), ConnStateData::quitAfterError(), FwdState::reforward(), refreshCheck(), refreshCheckHTTP(), clientReplyContext::replyStatus(), ClientHttpRequest::resetRequestXXX(), PeerSelector::resolveSelected(), HttpStateData::reusableReply(), FwdState::secureConnectionToPeer(), FwdState::secureConnectionToPeerIfNeeded(), PeerSelector::selectMore(), clientReplyContext::sendNotModified(), HttpStateData::sendRequest(), clientReplyContext::sendStreamError(), clientReplyContext::setReplyToError(), ClientRequestContext::sslBumpAccessCheck(), ClientHttpRequest::sslBumpStart(), FwdState::Start(), FwdState::start(), HappyConnOpener::startConnecting(), FwdState::usePinned(), and TunnelStateData::usePinned().

◆ forcedBodyContinuation

bool HttpRequest::forcedBodyContinuation

◆ hdr_sz

◆ header

HttpHeader Http::Message::header
inherited

Definition at line 74 of file Message.h.

Referenced by StoreEntry::adjustVary(), Ftp::Gateway::appendSuccessHeader(), Format::Format::assemble(), assembleVaryKey(), Auth::UserRequest::authenticate(), HttpStateData::blockSwitchingProtocols(), ConnStateData::buildFakeRequest(), ErrorState::BuildHttpReply(), Http::One::Server::buildHttpRequest(), Http::Stream::buildRangeHeader(), clientReplyContext::buildReplyHeader(), ESIVarState::buildVary(), canHandle1xx(), checkEntityFraming(), HttpReply::clean(), clean(), ClientRequestContext::clientAccessCheck(), clientBeginRequest(), clientCheckPinning(), clientGetMoreData(), clientIfRangeMatch(), clientInterpretRequestHeaders(), clientPackRangeHdr(), clientProcessRequest(), Adaptation::Ecap::MessageRep::clone(), HttpReply::clone(), clone(), ErrorState::compileLegacyCode(), conditional(), Adaptation::Icap::Options::configure(), Ftp::Relay::createHttpReply(), ErrorState::Dump(), Adaptation::Icap::ModXact::encapsulateHead(), ESIContextNew(), Adaptation::Icap::ModXact::estimateVirginBody(), HttpReply::expectingBody(), expectingBody(), Ssl::ErrorDetailsManager::findDetail(), HttpStateData::forwardUpgrade(), Ftp::Gateway::ftpAuthRequired(), ftpSendStor(), Ftp::Server::handleFeatReply(), Ftp::Server::handleRequest(), StoreEntry::hasIfMatchEtag(), StoreEntry::hasIfNoneMatchEtag(), StoreEntry::hasOneOfEtags(), HttpStateData::haveParsedReplyHeaders(), HttpReply::hdrCacheInit(), hdrCacheInit(), HttpReply::hdrExpirationTime(), ClientRequestContext::hostHeaderVerify(), ClientRequestContext::hostHeaderVerifyFailed(), HttpStateData::httpBuildRequestHeader(), Log::Format::HttpdCombined(), httpMakeVaryMark(), Ftp::HttpReplyWrapper(), Auth::SchemeConfig::isCP1251EncodingAllowed(), MimeIcon::load(), TemplateFile::loadFor(), Ftp::Gateway::loginFailed(), HttpReply::make304(), Adaptation::Icap::ModXact::makeRequestHeaders(), pack(), HttpReply::packHeadersUsingFastPacker(), parseHeader(), CacheManager::ParseHeaders(), Adaptation::Icap::OptXact::parseResponse(), peerDigestRequest(), HttpReply::prefixLen(), prefixLen(), prepareLogWithRequestDetails(), Adaptation::Icap::ModXact::prepEchoing(), Ftp::PrintReply(), clientReplyContext::processConditional(), clientReplyContext::processExpired(), Http::One::Server::processParsedRequest(), HttpStateData::processReplyHeader(), purgeEntriesByHeader(), CacheManager::PutCommonResponseHeaders(), HttpReply::recreateOnNotModified(), HttpReply::redirect(), HttpReply::removeIrrelevantContentLength(), HttpStateData::reusableReply(), Ftp::Server::setDataCommand(), HttpReply::setHeaders(), UrnState::setUriResFromRequest(), Log::Format::SquidReferer(), Log::Format::SquidUserAgent(), CacheManager::start(), HttpStateData::statusIfComplete(), urlCheckRequest(), Adaptation::Ecap::XactionRep::useAdapted(), Adaptation::Ecap::XactionRep::useVirgin(), HttpReply::validatorsMatch(), varyEvaluateMatch(), Http::One::Server::writeControlMsgAndCall(), Ftp::Server::writeCustomReply(), Ftp::Server::writeErrorReply(), Ftp::Server::writeForwardedReply(), and Ftp::Server::writeForwardedReplyAndCall().

◆ hier

◆ http_ver

◆ icapHistory_

Adaptation::Icap::History::Pointer HttpRequest::icapHistory_
mutableprivate

Definition at line 122 of file HttpRequest.h.

Referenced by clean(), icapHistory(), inheritProperties(), and init().

◆ ims

◆ imslen

◆ indirect_client_addr

◆ lastmod

◆ masterXaction

◆ method

HttpRequestMethod HttpRequest::method

Definition at line 114 of file HttpRequest.h.

Referenced by Ftp::Gateway::Gateway(), Ssl::ServerBump::ServerBump(), StoreEntry::adjustVary(), asnCacheStart(), Format::Format::assemble(), ConnStateData::buildFakeRequest(), ErrorState::BuildHttpReply(), clientReplyContext::buildReplyHeader(), HttpStateData::buildRequestPrefix(), clientReplyContext::cacheHit(), canonicalCleanUrl(), checkEntityFraming(), FwdState::checkRetriable(), ClientRequestContext::clientAccessCheckDone(), clientGetMoreData(), clientHierarchical(), clientInterpretRequestHeaders(), clientProcessRequest(), ClientRequestContext::clientRedirectDone(), clientSetKeepaliveFlag(), clone(), ErrorState::compileLegacyCode(), copyOneHeaderFromClientsideRequestToUpstreamRequest(), FwdState::dispatch(), ClientHttpRequest::doCallouts(), clientReplyContext::doGetMoreData(), ErrorState::Dump(), effectiveRequestUri(), Adaptation::Icap::ModXact::encapsulateHead(), HttpReply::expectedBodyTooLarge(), FromUrl(), FromUrlXXX(), ftpSendPassive(), ClientHttpRequest::gotEnough(), ClientHttpRequest::handleAdaptedHeader(), Ftp::Server::handleRequest(), StoreEntry::hasIfNoneMatchEtag(), ClientRequestContext::hostHeaderVerify(), ClientRequestContext::hostHeaderVerifyFailed(), htcpClear(), htcpQuery(), httpStart(), init(), initHTTP(), HttpStateData::keepaliveAccounting(), maybeCacheable(), Client::maybePurgeOthers(), FwdState::noteConnection(), pack(), packFirstLineInto(), parseFirstLine(), CacheManager::ParseHeaders(), peerAllowedToUse(), peerDigestRequest(), peerSelect(), HttpStateData::persistentConnStatus(), prefixLen(), prepareLogWithRequestDetails(), clientReplyContext::processExpired(), clientReplyContext::processMiss(), clientReplyContext::processOnlyIfCachedMiss(), clientReplyContext::processReplyAccessResult(), ClientHttpRequest::processRequest(), clientReplyContext::purgeDoPurge(), purgeEntriesByHeader(), clientReplyContext::replyStatus(), FwdState::secureConnectionToPeerIfNeeded(), PeerSelector::selectMore(), PeerSelector::selectSomeParent(), clientReplyContext::sendNotModified(), clientReplyContext::sendNotModifiedOrPreconditionFailedError(), ConnStateData::serveDelayedError(), Ftp::Server::setReply(), clientReplyContext::setReplyToError(), clientReplyContext::setReplyToReply(), ClientRequestContext::sslBumpAccessCheck(), Client::startAdaptation(), clientReplyContext::startError(), HttpStateData::statusIfComplete(), storeGetPublicByRequest(), storeKeyPublicByRequest(), switchToTunnel(), TestHttpRequest::testCreateFromUrl(), TestHttpRequest::testIPv6HostColonBug(), clientReplyContext::traceReply(), HttpStateData::truncateVirginBody(), tunnelStart(), urlCanonicalFakeHttps(), urlCheckRequest(), urnHandleReply(), and HttpStateData::writeReplyBody().

◆ my_addr

◆ myportname

String HttpRequest::myportname

◆ peer_domain

◆ peer_host

char* HttpRequest::peer_host

◆ peer_login

◆ pstate

◆ range

◆ rangeOffsetLimit

int64_t HttpRequest::rangeOffsetLimit
mutableprivate

Definition at line 263 of file HttpRequest.h.

Referenced by getRangeOffsetLimit(), and init().

◆ sources

◆ store_id

String HttpRequest::store_id

If defined, store_id_program mapped the request URL to this ID. Store uses this ID (and not the URL) to find and store entries, avoiding caching duplicate entries when different URLs point to "essentially the same" cachable resource.

Definition at line 139 of file HttpRequest.h.

Referenced by ClientRequestContext::clientStoreIdDone(), and storeId().

◆ tag

String HttpRequest::tag

◆ theNotes

NotePairs::Pointer HttpRequest::theNotes
private

annotations added by the note directive and helpers and(or) by annotate_transaction/annotate_client ACLs.

Definition at line 267 of file HttpRequest.h.

Referenced by clean(), hasNotes(), inheritProperties(), and notes().

◆ url

AnyP::Uri HttpRequest::url

Definition at line 115 of file HttpRequest.h.

Referenced by Ssl::ServerBump::ServerBump(), Http::Tunneler::Tunneler(), asnCacheStart(), Format::Format::assemble(), ConnStateData::borrowPinnedConnection(), ConnStateData::buildFakeRequest(), Http::One::Server::buildHttpRequest(), HttpStateData::buildRequestPrefix(), clientReplyContext::cacheHit(), canonicalCleanUrl(), carpSelectParent(), HttpStateData::checkDateSkew(), DestinationIPLookup::checkForAsync(), ClientHttpRequest::checkForInternalAccess(), PeerSelector::checkNetdbDirect(), clean(), clientHierarchical(), clientInterpretRequestHeaders(), ClientRequestContext::clientRedirectDone(), clone(), ErrorState::compileLegacyCode(), TunnelStateData::connectDone(), FwdState::connectStart(), HttpStateData::continueAfterParsingHeader(), copyOneHeaderFromClientsideRequestToUpstreamRequest(), FwdState::dispatch(), doV2Query(), ErrorState::Dump(), effectiveRequestUri(), Adaptation::Icap::ModXact::encapsulateHead(), findUsableParentAtHostname(), FromUrl(), FromUrlXXX(), ftpFail(), ftpReadType(), ftpSendType(), ftpSendUser(), ftpTrySlashHack(), getDefaultParent(), getFirstUpParent(), TunnelStateData::getHost(), getRoundRobinParent(), getWeightedRoundRobinParent(), PeerSelector::handleHtcpParentMiss(), PeerSelector::handleIcpParentMiss(), ClientRequestContext::hostHeaderVerify(), htcpTstReply(), HttpStateData::httpBuildRequestHeader(), clientReplyContext::identifyFoundObject(), init(), initHTTP(), ConnStateData::initiateTunneledRequest(), internalStart(), ACLDestinationIP::match(), maybeCacheable(), neighborsHtcpReply(), neighborsUdpAck(), neighborsUdpPing(), netdbClosestParent(), netdbExchangeStart(), FwdState::noteConnection(), TunnelStateData::noteConnection(), PeerSelector::noteIp(), PeerSelector::noteIps(), operator<<(), pack(), packFirstLineInto(), parseFirstLine(), peerAllowedToUse(), peerDigestRequest(), ConnStateData::pinConnection(), ConnStateData::postHttpsAccept(), prefixLen(), HttpStateData::processReplyBody(), HttpStateData::processReplyHeader(), purgeEntriesByHeader(), clientReplyContext::purgeRequest(), PeerSelector::resolveSelected(), FwdState::secureConnectionToPeerIfNeeded(), PeerSelector::selectAllParents(), PeerSelector::selectMore(), PeerSelector::selectSomeDirect(), PeerSelector::selectSomeNeighbor(), PeerSelector::selectSomeParent(), HttpStateData::sendRequest(), ConnStateData::serveDelayedError(), UrnState::setUriResFromRequest(), PeerPoolMgr::start(), CacheManager::start(), FwdState::Start(), TunnelStateData::startConnecting(), FwdState::successfullyConnectedToPeer(), TestHttpRequest::testCreateFromUrl(), TestHttpRequest::testIPv6HostColonBug(), urlCanonicalFakeHttps(), urlCheckRequest(), Ftp::UrlWith2f(), FwdState::usePinned(), TunnelStateData::usePinned(), Adaptation::Service::wants(), and whoisStart().

◆ vary_headers

◆ x_forwarded_for_iterator

String HttpRequest::x_forwarded_for_iterator

The documentation for this class was generated from the following files:

 

Introduction

Documentation

Support

Miscellaneous

Web Site Translations

Mirrors