Squid Web Cache master
Loading...
Searching...
No Matches
errorpage.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2025 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9/* DEBUG: section 04 Error Generation */
10
11#ifndef SQUID_SRC_ERRORPAGE_H
12#define SQUID_SRC_ERRORPAGE_H
13
14#include "cbdata.h"
15#include "comm/forward.h"
16#include "error/Detail.h"
17#include "error/forward.h"
18#include "http/forward.h"
19#include "http/StatusCode.h"
20#include "ip/Address.h"
21#include "log/forward.h"
22#include "sbuf/SBuf.h"
23#include "SquidString.h"
24/* auth/UserRequest.h is empty unless USE_AUTH is defined */
25#include "auth/UserRequest.h"
26
27#include <optional>
28
30typedef void ERCB(int fd, void *, size_t);
31
77class MemBuf;
78class StoreEntry;
79class wordlist;
80
81namespace ErrorPage {
82
83class Build;
84
85} // namespace ErrorPage
86
89{
91
92public:
95 ErrorState() = delete; // not implemented.
96
99
100 ~ErrorState();
101
104
109
111 void detailError(const ErrorDetail::Pointer &dCode) { detail = dCode; }
112
114 void validate();
115
118
119private:
121
124
126 SBuf buildBody();
127
131 SBuf compileBody(const char *text, bool allowRecursion);
132
134 void compileLegacyCode(Build &build);
135
137 void compileLogformatCode(Build &build);
138
144 SBuf compile(const char *input, bool building_deny_info_url, bool allowRecursion);
145
149 void noteBuildError(const char *const msg, const char * const errorLocation) {
150 noteBuildError_(msg, errorLocation, false);
151 }
152
158 void bypassBuildErrorXXX(const char *const msg, const char * const errorLocation) {
159 noteBuildError_(msg, errorLocation, true);
160 }
161
167 int Dump(MemBuf * mb);
168
169public:
172 char *err_language = nullptr;
174#if USE_AUTH
176#endif
178 char *url = nullptr;
179 int xerrno = 0;
180 std::optional<SBuf> dnsError;
181 time_t ttl = 0;
182
184 char *redirect_url = nullptr;
186 void *callback_data = nullptr;
187
188 struct {
190 char *request = nullptr;
191 char *reply = nullptr;
192 char *cwd_msg = nullptr;
193 MemBuf *listing = nullptr;
195
196 char *err_msg = nullptr; /* Preformatted error message from the cache */
197
199
200 // TODO: Replace type, xerrno and detail with Error while adding a virtual
201 // Error::Detail::sysError() method to extract errno in detailError().
205
207
208private:
209 void noteBuildError_(const char *msg, const char *errorLocation, bool forceBypass);
210
211 static const SBuf LogformatMagic;
212};
213
223void errorInitialize(void);
224
226void errorClean(void);
227
248void errorSend(const Comm::ConnectionPointer &conn, ErrorState *err);
249
266void errorAppendEntry(StoreEntry *entry, ErrorState *err);
267
269err_type errorReservePageId(const char *page_name, const SBuf &cfgLocation);
270
271const char *errorPageName(int pageId);
272
280{
281public:
282 TemplateFile(const char *name, const err_type code);
283 virtual ~TemplateFile() {}
284
286 bool loaded() const {return wasLoaded;}
287
295 void loadDefault();
296
303 bool loadFor(const HttpRequest *request);
304
309 bool loadFromFile(const char *path);
310
312 const char *language() {return errLanguage.termedBuf();}
313
315
316 bool silent;
317
318protected:
320 virtual bool parse() { return true; }
321
323 virtual void setDefault() {}
324
330 bool tryLoadTemplate(const char *lang);
331
337};
338
352bool strHdrAcptLangGetItem(const String &hdr, char *lang, int langLen, size_t &pos);
353
354std::ostream &operator <<(std::ostream &, const ErrorState *);
355
356#endif /* SQUID_SRC_ERRORPAGE_H */
357
#define CBDATA_CLASS(type)
Definition cbdata.h:289
state and parameters shared by several ErrorState::compile*() methods
Definition errorpage.cc:107
static ErrorState * NewForwarding(err_type, HttpRequestPointer &, const AccessLogEntryPointer &)
Creates a general request forwarding error with the right http_status.
Definition errorpage.cc:691
SBuf compile(const char *input, bool building_deny_info_url, bool allowRecursion)
char * redirect_url
Definition errorpage.h:184
char * err_msg
Definition errorpage.h:196
void validate()
ensures that a future BuildHttpReply() is likely to succeed
err_type type
Definition errorpage.h:170
void compileLegacyCode(Build &build)
compile a single-letter code like D
Definition errorpage.cc:949
void noteBuildError_(const char *msg, const char *errorLocation, bool forceBypass)
MemBuf * listing
Definition errorpage.h:193
AccessLogEntryPointer ale
transaction details (or nil)
Definition errorpage.h:198
ERCB * callback
Definition errorpage.h:185
std::optional< SBuf > dnsError
DNS lookup error message.
Definition errorpage.h:180
void bypassBuildErrorXXX(const char *const msg, const char *const errorLocation)
Definition errorpage.h:158
int Dump(MemBuf *mb)
Definition errorpage.cc:852
ErrorDetail::Pointer detail
Definition errorpage.h:204
char * reply
Definition errorpage.h:191
char * err_language
Definition errorpage.h:172
char * cwd_msg
Definition errorpage.h:192
void detailError(const ErrorDetail::Pointer &dCode)
set error type-specific detail code
Definition errorpage.h:111
void compileLogformatCode(Build &build)
compile @Squid{code} sequence containing a single logformat code
Definition errorpage.cc:913
wordlist * server_msg
Definition errorpage.h:189
char * url
Definition errorpage.h:178
Auth::UserRequest::Pointer auth_user_request
Definition errorpage.h:175
SBuf inputLocation
the source of the error template (for reporting purposes)
Definition errorpage.h:117
Ip::Address src_addr
Definition errorpage.h:183
static const SBuf LogformatMagic
marks each embedded logformat entry
Definition errorpage.h:211
HttpRequestPointer request
Definition errorpage.h:177
SBuf compileBody(const char *text, bool allowRecursion)
HttpReply * BuildHttpReply(void)
struct ErrorState::@47 ftp
void * callback_data
Definition errorpage.h:186
SBuf buildBody()
locates the right error page template for this error and compiles it
HttpReplyPointer response_
Definition errorpage.h:206
ErrorState()=delete
Http::StatusCode httpStatus
Definition errorpage.h:173
time_t ttl
Definition errorpage.h:181
ErrorPage::Build Build
Definition errorpage.h:120
void noteBuildError(const char *const msg, const char *const errorLocation)
Definition errorpage.h:149
Definition SBuf.h:94
char const * termedBuf() const
Definition SquidString.h:93
virtual void setDefault()
recover from loadDefault() failure to load or parse() a template
Definition errorpage.h:323
bool loadFromFile(const char *path)
Definition errorpage.cc:424
SBuf template_
raw template contents
Definition errorpage.h:332
SBuf filename
where the template was loaded from
Definition errorpage.h:314
bool loaded() const
return true if the data loaded from disk without any problem
Definition errorpage.h:286
bool wasLoaded
True if the template data read from disk without any problem.
Definition errorpage.h:333
bool tryLoadTemplate(const char *lang)
Definition errorpage.cc:399
String templateName
The name of the template.
Definition errorpage.h:335
void loadDefault()
Definition errorpage.cc:363
const char * language()
The language used for the template.
Definition errorpage.h:312
virtual bool parse()
post-process the loaded template
Definition errorpage.h:320
virtual ~TemplateFile()
Definition errorpage.h:283
err_type templateCode
The internal code for this template.
Definition errorpage.h:336
String errLanguage
The error language of the template.
Definition errorpage.h:334
bool silent
Whether to print error messages on cache.log file or not. It is user defined.
Definition errorpage.h:316
bool loadFor(const HttpRequest *request)
Definition errorpage.cc:526
err_type
Definition forward.h:14
@ ERR_NONE
Definition forward.h:15
void ERCB(int fd, void *, size_t)
error page callback
Definition errorpage.h:30
err_type errorReservePageId(const char *page_name, const SBuf &cfgLocation)
allocates a new slot for the error page
Definition errorpage.cc:654
std::ostream & operator<<(std::ostream &, const ErrorState *)
bool strHdrAcptLangGetItem(const String &hdr, char *lang, int langLen, size_t &pos)
Definition errorpage.cc:472
void errorInitialize(void)
Definition errorpage.cc:261
void errorSend(const Comm::ConnectionPointer &conn, ErrorState *err)
Definition errorpage.cc:792
void errorClean(void)
Definition errorpage.cc:323
void errorAppendEntry(StoreEntry *entry, ErrorState *err)
Definition errorpage.cc:738
const char * errorPageName(int pageId)
error ID to string
Definition errorpage.cc:669
StatusCode
Definition StatusCode.h:20
@ scNone
Definition StatusCode.h:21
SBuf text("GET http://resource.com/path HTTP/1.1\r\n" "Host: resource.com\r\n" "Cookie: laijkpk3422r j1noin \r\n" "\r\n")