#include <HttpReply.h>

Inheritance diagram for HttpReply:
Collaboration diagram for HttpReply:

Public Types

typedef RefCount< HttpReplyPointer
 
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

 HttpReply ()
 
 ~HttpReply () override
 
void reset () override
 
bool sanityCheckStartLine (const char *buf, const size_t hdr_len, Http::StatusCode *error) override
 
const HttpHdrContRangecontentRange () const
 
int httpMsgParseError () override
 
bool expectingBody (const HttpRequestMethod &, int64_t &) const override
 
bool inheritProperties (const Http::Message *) override
 
Pointer recreateOnNotModified (const HttpReply &reply304) const
 
void setHeaders (Http::StatusCode status, const char *reason, const char *ctype, int64_t clen, time_t lmt, time_t expires)
 
MemBufpack () const
 
HttpReplyPointer make304 () const
 
void redirect (Http::StatusCode, const char *)
 
int64_t bodySize (const HttpRequestMethod &) const
 
bool receivedBodyTooLarge (HttpRequest &, int64_t receivedBodySize)
 
bool expectedBodyTooLarge (HttpRequest &request)
 
int validatorsMatch (HttpReply const *other) const
 
void packHeadersUsingFastPacker (Packable &p) const
 
void packHeadersUsingSlowPacker (Packable &p) const
 same as packHeadersUsingFastPacker() but assumes that p cannot quickly process small additions More...
 
HttpReplyclone () const override
 
void hdrCacheInit () override
 
bool olderThan (const HttpReply *them) const
 
void removeIrrelevantContentLength ()
 Some response status codes prohibit sending Content-Length (RFC 7230 section 3.3.2). More...
 
void configureContentLengthInterpreter (Http::ContentLengthInterpreter &) override
 configures the interpreter as needed More...
 
bool parseHeader (Http1::Parser &hp)
 parses reply header using Parser More...
 
size_t parseTerminatedPrefix (const char *, size_t)
 
size_t prefixLen () const
 
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)
 
void firstLineBuf (MemBuf &)
 useful for debugging More...
 

Static Public Member Functions

static HttpReplyPointer MakeConnectionEstablished ()
 construct and return an HTTP/200 (Connection Established) response More...
 

Public Attributes

time_t date
 
time_t last_modified
 
time_t expires
 
String content_type
 
HttpHdrScsurrogate_control
 
short int keep_alive
 
Http::StatusLine sline
 
HttpBody body
 
String protoPrefix
 
bool do_clean
 
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 packFirstLineInto (Packable *p, bool) const override
 
bool parseFirstLine (const char *start, const char *end) override
 
bool parseHeader (Http1::Parser &, Http::ContentLengthInterpreter &)
 

Private Member Functions

 MEMPROXY_CLASS (HttpReply)
 
void init ()
 
void clean ()
 
void hdrCacheClean ()
 
void packInto (MemBuf &) const
 
MemBufpacked304Reply () const
 
time_t hdrExpirationTime ()
 
void calcMaxBodySize (HttpRequest &request) const
 

Private Attributes

int64_t bodySizeMax
 
HttpHdrContRangecontent_range
 parsed Content-Range; nil for non-206 responses! More...
 

Detailed Description

Definition at line 24 of file HttpReply.h.

Member Typedef Documentation

◆ Pointer

Definition at line 29 of file HttpReply.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

◆ HttpReply()

HttpReply::HttpReply ( )

Definition at line 30 of file HttpReply.cc.

References init().

Referenced by clone().

◆ ~HttpReply()

HttpReply::~HttpReply ( )
override

Definition at line 44 of file HttpReply.cc.

References clean(), and do_clean.

Member Function Documentation

◆ bodySize()

◆ calcMaxBodySize()

void HttpReply::calcMaxBodySize ( HttpRequest request) const
private

◆ clean()

void HttpReply::clean ( )
private

◆ clone()

HttpReply * HttpReply::clone ( ) const
overridevirtual

Clone this reply. Could be done as a copy-contructor but we do not want to accidentally copy a HttpReply..

Implements Http::Message.

Definition at line 613 of file HttpReply.cc.

References HttpReply(), HttpHeader::append(), Http::Message::body_pipe, Http::Message::hdr_sz, hdrCacheInit(), Http::Message::header, Http::Message::http_ver, Http::Message::pstate, and sline.

Referenced by clientReplyContext::cloneReply(), and recreateOnNotModified().

◆ configureContentLengthInterpreter()

void HttpReply::configureContentLengthInterpreter ( Http::ContentLengthInterpreter )
overridevirtual

◆ contentRange()

const HttpHdrContRange * HttpReply::contentRange ( ) const
Returns
parsed Content-Range for a 206 response and nil for others

Definition at line 345 of file HttpReply.cc.

References assert, content_range, Http::scPartialContent, sline, and Http::StatusLine::status().

Referenced by Http::Stream::buildRangeHeader(), HttpHdrRange::canonize(), and Client::haveParsedReplyHeaders().

◆ expectedBodyTooLarge()

bool HttpReply::expectedBodyTooLarge ( HttpRequest request)

Checks whether expected body exceeds known maximum size. Requires a prior call to calcMaxBodySize().

Definition at line 565 of file HttpReply.cc.

References bodySizeMax, calcMaxBodySize(), debugs, expectingBody(), and HttpRequest::method.

Referenced by clientReplyContext::processReplyAccess().

◆ expectingBody()

bool HttpReply::expectingBody ( const HttpRequestMethod req_method,
int64_t &  theSize 
) const
overridevirtual

◆ firstLineBuf()

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

Definition at line 270 of file Message.cc.

◆ hdrCacheClean()

void HttpReply::hdrCacheClean ( )
private

◆ hdrCacheInit()

◆ hdrExpirationTime()

◆ httpMsgParseError()

int HttpReply::httpMsgParseError ( )
overridevirtual

◆ 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.

◆ inheritProperties()

bool HttpReply::inheritProperties ( const Http::Message aMsg)
overridevirtual

Implements Http::Message.

Definition at line 629 of file HttpReply.cc.

References keep_alive, and Http::Message::sources.

◆ init()

void HttpReply::init ( void  )
private

◆ make304()

◆ MakeConnectionEstablished()

HttpReplyPointer HttpReply::MakeConnectionEstablished ( )
static

◆ MEMPROXY_CLASS()

HttpReply::MEMPROXY_CLASS ( HttpReply  )
private

◆ olderThan()

bool HttpReply::olderThan ( const HttpReply them) const

whether our Date header value is smaller than theirs

Returns
false if any information is missing

Definition at line 640 of file HttpReply.cc.

References date.

Referenced by HttpStateData::haveParsedReplyHeaders().

◆ pack()

MemBuf * HttpReply::pack ( ) const

◆ packed304Reply()

MemBuf * HttpReply::packed304Reply ( ) const
private
Returns
construct 304 reply and pack it into a MemBuf

Definition at line 159 of file HttpReply.cc.

References make304().

◆ packFirstLineInto()

void HttpReply::packFirstLineInto ( Packable p,
bool   
) const
inlineoverrideprotectedvirtual

Implements Http::Message.

Definition at line 166 of file HttpReply.h.

References Http::StatusLine::packInto(), and sline.

◆ packHeadersUsingFastPacker()

void HttpReply::packHeadersUsingFastPacker ( Packable p) const

adds status line and header to the given Packable assumes that p can quickly process small additions

Definition at line 87 of file HttpReply.cc.

References Packable::append(), Http::Message::header, Http::StatusLine::packInto(), HttpHeader::packInto(), and sline.

Referenced by packHeadersUsingSlowPacker(), packInto(), and AccessLogEntry::packReplyHeaders().

◆ packHeadersUsingSlowPacker()

void HttpReply::packHeadersUsingSlowPacker ( Packable p) const

◆ packInto() [1/2]

void HttpReply::packInto ( MemBuf buf) const
private

Definition at line 104 of file HttpReply.cc.

References body, packHeadersUsingFastPacker(), and HttpBody::packInto().

Referenced by pack().

◆ packInto() [2/2]

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 HttpReply::parseFirstLine ( const char *  start,
const char *  end 
)
overrideprotectedvirtual

Implements Http::Message.

Definition at line 457 of file HttpReply.cc.

References Http::StatusLine::parse(), protoPrefix, and sline.

◆ parseHeader() [1/2]

◆ parseHeader() [2/2]

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

◆ parseTerminatedPrefix()

size_t HttpReply::parseTerminatedPrefix ( const char *  terminatedBuf,
size_t  bufSize 
)

Parses response status line and headers at the start of the given NUL-terminated buffer of the given size. Respects reply_header_max_size. Assures pstate becomes Http::Message::psParsed on (and only on) success.

Returns
the number of bytes in a successfully parsed prefix (or zero)
Return values
0implies that more data is needed to parse the response prefix

Definition at line 463 of file HttpReply.cc.

References Assure, Config, debugs, error(), Debug::Extra(), Http::Message::hdr_sz, Here, Less(), SquidConfig::maxReplyHeaderSize, Http::Message::parse(), Http::Message::psParsed, Http::Message::pstate, Http::scNone, and ToSBuf().

◆ 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(), hdrCacheInit(), and HttpStateData::sendRequest().

◆ prefixLen()

size_t HttpReply::prefixLen ( ) const

approximate size of a "status-line CRLF headers CRLF" sequence

See also
HttpRequest::prefixLen()

Definition at line 495 of file HttpReply.cc.

References Http::Message::header, HttpHeader::len, Http::StatusLine::packedLength(), and sline.

◆ 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 make304(), and CacheManager::PutCommonResponseHeaders().

◆ receivedBodyTooLarge()

bool HttpReply::receivedBodyTooLarge ( HttpRequest request,
int64_t  receivedBodySize 
)

Checks whether received body exceeds known maximum size. Requires a prior call to calcMaxBodySize().

Definition at line 557 of file HttpReply.cc.

References bodySizeMax, calcMaxBodySize(), and debugs.

Referenced by clientReplyContext::replyStatus().

◆ recreateOnNotModified()

HttpReply::Pointer HttpReply::recreateOnNotModified ( const HttpReply reply304) const
Returns
nil (if no updates are necessary)
a new reply combining this reply with 304 updates (otherwise)

Definition at line 265 of file HttpReply.cc.

References clone(), HttpHeader::compact(), hdrCacheClean(), hdrCacheInit(), Http::Message::header, HttpHeader::needUpdate(), and HttpHeader::update().

Referenced by StoreEntry::updateOnNotModified().

◆ redirect()

◆ removeIrrelevantContentLength()

◆ reset()

void HttpReply::reset ( )
overridevirtual

Implements Http::Message.

Definition at line 59 of file HttpReply.cc.

References clean(), init(), and protoPrefix.

Referenced by MemObject::reset(), and TestHttpReply::testSanityCheckFirstLine().

◆ sanityCheckStartLine()

bool HttpReply::sanityCheckStartLine ( const char *  buf,
const size_t  hdr_len,
Http::StatusCode error 
)
overridevirtual

Checks the first line of an HTTP Reply is valid. currently only checks "HTTP/" exists.

NP: not all error cases are detected yet. Some are left for detection later in parse.

Implements Http::Message.

Definition at line 402 of file HttpReply.cc.

References String::cmp(), debugs, error(), protoPrefix, String::psize(), Http::scInvalidHeader, String::size(), and xisdigit.

Referenced by TestHttpReply::testSanityCheckFirstLine().

◆ setContentLength()

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

Definition at line 228 of file Message.cc.

References Http::CONTENT_LENGTH.

◆ setHeaders()

◆ validatorsMatch()

int HttpReply::validatorsMatch ( HttpReply const *  other) const

Member Data Documentation

◆ body

HttpBody HttpReply::body

for small constant memory-resident text bodies only

Definition at line 58 of file HttpReply.h.

Referenced by ErrorState::BuildHttpReply(), clean(), ESIContext::fail(), packInto(), and CacheManager::start().

◆ body_pipe

◆ bodySizeMax

int64_t HttpReply::bodySizeMax
mutableprivate

cached result of calcMaxBodySize

Definition at line 161 of file HttpReply.h.

Referenced by calcMaxBodySize(), clean(), expectedBodyTooLarge(), and receivedBodyTooLarge().

◆ cache_control

◆ content_length

◆ content_range

HttpHdrContRange* HttpReply::content_range
private

Definition at line 163 of file HttpReply.h.

Referenced by contentRange(), hdrCacheClean(), and hdrCacheInit().

◆ content_type

String HttpReply::content_type

◆ date

time_t HttpReply::date

◆ do_clean

bool HttpReply::do_clean

Definition at line 62 of file HttpReply.h.

Referenced by ~HttpReply(), and init().

◆ expires

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

◆ http_ver

◆ keep_alive

◆ last_modified

time_t HttpReply::last_modified

Definition at line 42 of file HttpReply.h.

Referenced by hdrCacheInit(), make304(), setHeaders(), storeLog(), and validatorsMatch().

◆ protoPrefix

◆ pstate

◆ sline

Http::StatusLine HttpReply::sline
public, writable, but use httpReply* interfaces when possible

Definition at line 56 of file HttpReply.h.

Referenced by ErrorState::ErrorState(), Auth::UserRequest::AddReplyAuthHeader(), asHandleReply(), bodySize(), Http::Stream::buildRangeHeader(), clientReplyContext::buildReplyHeader(), Adaptation::Icap::Launcher::canRepeat(), clean(), clone(), clientReplyContext::cloneReply(), FwdState::complete(), Adaptation::Icap::Options::configure(), configureContentLengthInterpreter(), contentRange(), Adaptation::Icap::ModXact::encapsulateHead(), esiBufferRecipient(), ESIContextNew(), expectingBody(), Adaptation::Icap::ModXact::finalizeLogInfo(), HttpStateData::handle1xx(), Ftp::Server::handleDataReply(), clientReplyContext::handleIMSReply(), Http::Tunneler::handleResponse(), HttpStateData::haveParsedReplyHeaders(), hdrCacheInit(), httpMsgParseError(), Ftp::HttpReplyWrapper(), init(), make304(), MakeConnectionEstablished(), Client::maybePurgeOthers(), netdbExchangeHandleReply(), packFirstLineInto(), packHeadersUsingFastPacker(), parseFirstLine(), peerDigestFetchReply(), prefixLen(), clientReplyContext::processConditional(), Http::One::Server::processParsedRequest(), clientReplyContext::processReplyAccess(), clientReplyContext::processReplyAccessResult(), HttpStateData::processReplyHeader(), redirect(), FwdState::reforward(), removeIrrelevantContentLength(), HttpStateData::reusableReply(), setHeaders(), clientReplyContext::setReplyToReply(), CacheManager::start(), storeLog(), Http::One::Server::writeControlMsgAndCall(), and Ftp::Server::writeErrorReply().

◆ sources

◆ surrogate_control

HttpHdrSc* HttpReply::surrogate_control

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

 

Introduction

Documentation

Support

Miscellaneous

Web Site Translations

Mirrors