]> git.ipfire.org Git - thirdparty/squid.git/blob - src/errorpage.cc
merge from trunk (r12216 v3.2.0.18+)
[thirdparty/squid.git] / src / errorpage.cc
1 /*
2 * $Id$
3 *
4 * DEBUG: section 04 Error Generation
5 * AUTHOR: Duane Wessels
6 *
7 * SQUID Web Proxy Cache http://www.squid-cache.org/
8 * ----------------------------------------------------------
9 *
10 * Squid is the result of efforts by numerous individuals from
11 * the Internet community; see the CONTRIBUTORS file for full
12 * details. Many organizations have provided support for Squid's
13 * development; see the SPONSORS file for full details. Squid is
14 * Copyrighted (C) 2001 by the Regents of the University of
15 * California; see the COPYRIGHT file for full details. Squid
16 * incorporates software developed and/or copyrighted by other
17 * sources; see the CREDITS file for full details.
18 *
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
32 *
33 */
34 #include "squid.h"
35 #include "comm/Connection.h"
36 #include "comm/Write.h"
37 #include "errorpage.h"
38 #if USE_AUTH
39 #include "auth/UserRequest.h"
40 #endif
41 #include "SquidTime.h"
42 #if USE_SSL
43 #include "ssl/ErrorDetailManager.h"
44 #endif
45 #include "Store.h"
46 #include "html_quote.h"
47 #include "HttpReply.h"
48 #include "HttpRequest.h"
49 #include "MemObject.h"
50 #include "fde.h"
51 #include "MemBuf.h"
52 #include "rfc1738.h"
53 #include "URLScheme.h"
54 #include "wordlist.h"
55 #include "err_detail_type.h"
56
57 /**
58 \defgroup ErrorPageInternal Error Page Internals
59 \ingroup ErrorPageAPI
60 *
61 \section Abstract Abstract:
62 * These routines are used to generate error messages to be
63 * sent to clients. The error type is used to select between
64 * the various message formats. (formats are stored in the
65 * Config.errorDirectory)
66 */
67
68
69 #if !defined(DEFAULT_SQUID_ERROR_DIR)
70 /** Where to look for errors if config path fails.
71 \note Please use ./configure --datadir=/path instead of patching
72 */
73 #define DEFAULT_SQUID_ERROR_DIR DEFAULT_SQUID_DATA_DIR"/errors"
74 #endif
75
76 /// \ingroup ErrorPageInternal
77 CBDATA_CLASS_INIT(ErrorState);
78
79 /* local types */
80
81 /// \ingroup ErrorPageInternal
82 typedef struct {
83 int id;
84 char *page_name;
85 http_status page_redirect;
86 } ErrorDynamicPageInfo;
87
88 /* local constant and vars */
89
90 /**
91 \ingroup ErrorPageInternal
92 *
93 \note hard coded error messages are not appended with %S
94 * automagically to give you more control on the format
95 */
96 static const struct {
97 int type; /* and page_id */
98 const char *text;
99 }
100
101 error_hard_text[] = {
102
103 {
104 ERR_SQUID_SIGNATURE,
105 "\n<br>\n"
106 "<hr>\n"
107 "<div id=\"footer\">\n"
108 "Generated %T by %h (%s)\n"
109 "</div>\n"
110 "</body></html>\n"
111 },
112 {
113 TCP_RESET,
114 "reset"
115 }
116 };
117
118 /// \ingroup ErrorPageInternal
119 static Vector<ErrorDynamicPageInfo *> ErrorDynamicPages;
120
121 /* local prototypes */
122
123 /// \ingroup ErrorPageInternal
124 static const int error_hard_text_count = sizeof(error_hard_text) / sizeof(*error_hard_text);
125
126 /// \ingroup ErrorPageInternal
127 static char **error_text = NULL;
128
129 /// \ingroup ErrorPageInternal
130 static int error_page_count = 0;
131
132 /// \ingroup ErrorPageInternal
133 static MemBuf error_stylesheet;
134
135 static const char *errorFindHardText(err_type type);
136 static ErrorDynamicPageInfo *errorDynamicPageInfoCreate(int id, const char *page_name);
137 static void errorDynamicPageInfoDestroy(ErrorDynamicPageInfo * info);
138 static IOCB errorSendComplete;
139
140 /// \ingroup ErrorPageInternal
141 /// manages an error page template
142 class ErrorPageFile: public TemplateFile
143 {
144 public:
145 ErrorPageFile(const char *name, const err_type code): TemplateFile(name,code) { textBuf.init();}
146
147 /// The template text data read from disk
148 const char *text() { return textBuf.content(); }
149
150 private:
151 /// stores the data read from disk to a local buffer
152 virtual bool parse(const char *buf, int len, bool eof) {
153 if (len)
154 textBuf.append(buf, len);
155 return true;
156 }
157
158 MemBuf textBuf; ///< A buffer to store the error page
159 };
160
161 /// \ingroup ErrorPageInternal
162 err_type &operator++ (err_type &anErr)
163 {
164 int tmp = (int)anErr;
165 anErr = (err_type)(++tmp);
166 return anErr;
167 }
168
169 /// \ingroup ErrorPageInternal
170 int operator - (err_type const &anErr, err_type const &anErr2)
171 {
172 return (int)anErr - (int)anErr2;
173 }
174
175 void
176 errorInitialize(void)
177 {
178 err_type i;
179 const char *text;
180 error_page_count = ERR_MAX + ErrorDynamicPages.size();
181 error_text = static_cast<char **>(xcalloc(error_page_count, sizeof(char *)));
182
183 for (i = ERR_NONE, ++i; i < error_page_count; ++i) {
184 safe_free(error_text[i]);
185
186 if ((text = errorFindHardText(i))) {
187 /**\par
188 * Index any hard-coded error text into defaults.
189 */
190 error_text[i] = xstrdup(text);
191
192 } else if (i < ERR_MAX) {
193 /**\par
194 * Index precompiled fixed template files from one of two sources:
195 * (a) default language translation directory (error_default_language)
196 * (b) admin specified custom directory (error_directory)
197 */
198 ErrorPageFile errTmpl(err_type_str[i], i);
199 error_text[i] = errTmpl.loadDefault() ? xstrdup(errTmpl.text()) : NULL;
200 } else {
201 /** \par
202 * Index any unknown file names used by deny_info.
203 */
204 ErrorDynamicPageInfo *info = ErrorDynamicPages.items[i - ERR_MAX];
205 assert(info && info->id == i && info->page_name);
206
207 const char *pg = info->page_name;
208 if (info->page_redirect != HTTP_STATUS_NONE)
209 pg = info->page_name +4;
210
211 if (strchr(pg, ':') == NULL) {
212 /** But only if they are not redirection URL. */
213 ErrorPageFile errTmpl(pg, ERR_MAX);
214 error_text[i] = errTmpl.loadDefault() ? xstrdup(errTmpl.text()) : NULL;
215 }
216 }
217 }
218
219 error_stylesheet.reset();
220
221 // look for and load stylesheet into global MemBuf for it.
222 if (Config.errorStylesheet) {
223 ErrorPageFile tmpl("StylesSheet", ERR_MAX);
224 tmpl.loadFromFile(Config.errorStylesheet);
225 error_stylesheet.Printf("%s",tmpl.text());
226 }
227
228 #if USE_SSL
229 Ssl::errorDetailInitialize();
230 #endif
231 }
232
233 void
234 errorClean(void)
235 {
236 if (error_text) {
237 int i;
238
239 for (i = ERR_NONE + 1; i < error_page_count; i++)
240 safe_free(error_text[i]);
241
242 safe_free(error_text);
243 }
244
245 while (ErrorDynamicPages.size())
246 errorDynamicPageInfoDestroy(ErrorDynamicPages.pop_back());
247
248 error_page_count = 0;
249
250 #if USE_SSL
251 Ssl::errorDetailClean();
252 #endif
253 }
254
255 /// \ingroup ErrorPageInternal
256 static const char *
257 errorFindHardText(err_type type)
258 {
259 int i;
260
261 for (i = 0; i < error_hard_text_count; i++)
262 if (error_hard_text[i].type == type)
263 return error_hard_text[i].text;
264
265 return NULL;
266 }
267
268 TemplateFile::TemplateFile(const char *name, const err_type code): silent(false), wasLoaded(false), templateName(name), templateCode(code)
269 {
270 assert(name);
271 }
272
273 bool
274 TemplateFile::loadDefault()
275 {
276 if (loaded()) // already loaded?
277 return true;
278
279 /** test error_directory configured location */
280 if (Config.errorDirectory) {
281 char path[MAXPATHLEN];
282 snprintf(path, sizeof(path), "%s/%s", Config.errorDirectory, templateName.termedBuf());
283 loadFromFile(path);
284 }
285
286 #if USE_ERR_LOCALES
287 /** test error_default_language location */
288 if (!loaded() && Config.errorDefaultLanguage) {
289 if (!tryLoadTemplate(Config.errorDefaultLanguage)) {
290 debugs(1, (templateCode < TCP_RESET ? DBG_CRITICAL : 3), "Unable to load default error language files. Reset to backups.");
291 }
292 }
293 #endif
294
295 /* test default location if failed (templates == English translation base templates) */
296 if (!loaded()) {
297 tryLoadTemplate("templates");
298 }
299
300 /* giving up if failed */
301 if (!loaded()) {
302 debugs(1, (templateCode < TCP_RESET ? DBG_CRITICAL : 3), "WARNING: failed to find or read error text file " << templateName);
303 parse("Internal Error: Missing Template ", 33, '\0');
304 parse(templateName.termedBuf(), templateName.size(), '\0');
305 }
306
307 return true;
308 }
309
310 bool
311 TemplateFile::tryLoadTemplate(const char *lang)
312 {
313 assert(lang);
314
315 char path[MAXPATHLEN];
316 /* TODO: prep the directory path string to prevent snprintf ... */
317 snprintf(path, sizeof(path), "%s/%s/%s",
318 DEFAULT_SQUID_ERROR_DIR, lang, templateName.termedBuf());
319 path[MAXPATHLEN-1] = '\0';
320
321 if (loadFromFile(path))
322 return true;
323
324 #if HAVE_GLOB
325 if ( strlen(lang) == 2) {
326 /* TODO glob the error directory for sub-dirs matching: <tag> '-*' */
327 /* use first result. */
328 debugs(4,2, HERE << "wildcard fallback errors not coded yet.");
329 }
330 #endif
331
332 return false;
333 }
334
335 bool
336 TemplateFile::loadFromFile(const char *path)
337 {
338 int fd;
339 char buf[4096];
340 ssize_t len;
341
342 if (loaded()) // already loaded?
343 return true;
344
345 fd = file_open(path, O_RDONLY | O_TEXT);
346
347 if (fd < 0) {
348 /* with dynamic locale negotiation we may see some failures before a success. */
349 if (!silent && templateCode < TCP_RESET)
350 debugs(4, DBG_CRITICAL, HERE << "'" << path << "': " << xstrerror());
351 wasLoaded = false;
352 return wasLoaded;
353 }
354
355 while ((len = FD_READ_METHOD(fd, buf, sizeof(buf))) > 0) {
356 if (!parse(buf, len, false)) {
357 debugs(4, DBG_CRITICAL, HERE << " parse error while reading template file: " << path);
358 wasLoaded = false;
359 return wasLoaded;
360 }
361 }
362 parse(buf, 0, true);
363
364 if (len < 0) {
365 debugs(4, DBG_CRITICAL, HERE << "failed to fully read: '" << path << "': " << xstrerror());
366 }
367
368 file_close(fd);
369
370 wasLoaded = true;
371 return wasLoaded;
372 }
373
374 bool strHdrAcptLangGetItem(const String &hdr, char *lang, int langLen, size_t &pos)
375 {
376 while (pos < hdr.size()) {
377 char *dt = lang;
378
379 if (!pos) {
380 /* skip any initial whitespace. */
381 while (pos < hdr.size() && xisspace(hdr[pos])) pos++;
382 } else {
383 // IFF we terminated the tag on whitespace or ';' we need to skip to the next ',' or end of header.
384 while (pos < hdr.size() && hdr[pos] != ',') pos++;
385 if (hdr[pos] == ',') pos++;
386 }
387
388 /*
389 * Header value format:
390 * - sequence of whitespace delimited tags
391 * - each tag may suffix with ';'.* which we can ignore.
392 * - IFF a tag contains only two characters we can wildcard ANY translations matching: <it> '-'? .*
393 * with preference given to an exact match.
394 */
395 bool invalid_byte = false;
396 while (pos < hdr.size() && hdr[pos] != ';' && hdr[pos] != ',' && !xisspace(hdr[pos]) && dt < (lang + (langLen -1)) ) {
397 if (!invalid_byte) {
398 #if USE_HTTP_VIOLATIONS
399 // if accepting violations we may as well accept some broken browsers
400 // which may send us the right code, wrong ISO formatting.
401 if (hdr[pos] == '_')
402 *dt = '-';
403 else
404 #endif
405 *dt = xtolower(hdr[pos]);
406 // valid codes only contain A-Z, hyphen (-) and *
407 if (*dt != '-' && *dt != '*' && (*dt < 'a' || *dt > 'z') )
408 invalid_byte = true;
409 else
410 dt++; // move to next destination byte.
411 }
412 pos++;
413 }
414 *dt++ = '\0'; // nul-terminated the filename content string before system use.
415
416 debugs(4, 9, HERE << "STATE: dt='" << dt << "', lang='" << lang << "', pos=" << pos << ", buf='" << ((pos < hdr.size()) ? hdr.substr(pos,hdr.size()) : "") << "'");
417
418 /* if we found anything we might use, try it. */
419 if (*lang != '\0' && !invalid_byte)
420 return true;
421 }
422 return false;
423 }
424
425 bool
426 TemplateFile::loadFor(HttpRequest *request)
427 {
428 String hdr;
429
430 #if USE_ERR_LOCALES
431 if (loaded()) // already loaded?
432 return true;
433
434 if (!request || !request->header.getList(HDR_ACCEPT_LANGUAGE, &hdr) )
435 return false;
436
437 char lang[256];
438 size_t pos = 0; // current parsing position in header string
439
440 debugs(4, 6, HERE << "Testing Header: '" << hdr << "'");
441
442 while ( strHdrAcptLangGetItem(hdr, lang, 256, pos) ) {
443
444 /* wildcard uses the configured default language */
445 if (lang[0] == '*' && lang[1] == '\0') {
446 debugs(4, 6, HERE << "Found language '" << lang << "'. Using configured default.");
447 return false;
448 }
449
450 debugs(4, 6, HERE << "Found language '" << lang << "', testing for available template");
451
452 if (tryLoadTemplate(lang)) {
453 /* store the language we found for the Content-Language reply header */
454 errLanguage = lang;
455 break;
456 } else if (Config.errorLogMissingLanguages) {
457 debugs(4, DBG_IMPORTANT, "WARNING: Error Pages Missing Language: " << lang);
458 }
459 }
460 #endif
461
462 return loaded();
463 }
464
465 /// \ingroup ErrorPageInternal
466 static ErrorDynamicPageInfo *
467 errorDynamicPageInfoCreate(int id, const char *page_name)
468 {
469 ErrorDynamicPageInfo *info = new ErrorDynamicPageInfo;
470 info->id = id;
471 info->page_name = xstrdup(page_name);
472 info->page_redirect = static_cast<http_status>(atoi(page_name));
473
474 /* WARNING on redirection status:
475 * 2xx are permitted, but not documented officially.
476 * - might be useful for serving static files (PAC etc) in special cases
477 * 3xx require a URL suitable for Location: header.
478 * - the current design does not allow for a Location: URI as well as a local file template
479 * although this possibility is explicitly permitted in the specs.
480 * 4xx-5xx require a local file template.
481 * - sending Location: on these codes with no body is invalid by the specs.
482 * - current result is Squid crashing or XSS problems as dynamic deny_info load random disk files.
483 * - a future redesign of the file loading may result in loading remote objects sent inline as local body.
484 */
485 if (info->page_redirect == HTTP_STATUS_NONE)
486 ; // special case okay.
487 else if (info->page_redirect < 200 || info->page_redirect > 599) {
488 // out of range
489 debugs(0, DBG_CRITICAL, "FATAL: status " << info->page_redirect << " is not valid on '" << page_name << "'");
490 self_destruct();
491 } else if ( /* >= 200 && */ info->page_redirect < 300 && strchr(&(page_name[4]), ':')) {
492 // 2xx require a local template file
493 debugs(0, DBG_CRITICAL, "FATAL: status " << info->page_redirect << " requires a template on '" << page_name << "'");
494 self_destruct();
495 } else if (info->page_redirect >= 300 && info->page_redirect <= 399 && !strchr(&(page_name[4]), ':')) {
496 // 3xx require an absolute URL
497 debugs(0, DBG_CRITICAL, "FATAL: status " << info->page_redirect << " requires a URL on '" << page_name << "'");
498 self_destruct();
499 } else if (info->page_redirect >= 400 /* && <= 599 */ && strchr(&(page_name[4]), ':')) {
500 // 4xx/5xx require a local template file
501 debugs(0, DBG_CRITICAL, "FATAL: status " << info->page_redirect << " requires a template on '" << page_name << "'");
502 self_destruct();
503 }
504 // else okay.
505
506 return info;
507 }
508
509 /// \ingroup ErrorPageInternal
510 static void
511 errorDynamicPageInfoDestroy(ErrorDynamicPageInfo * info)
512 {
513 assert(info);
514 safe_free(info->page_name);
515 delete info;
516 }
517
518 /// \ingroup ErrorPageInternal
519 static int
520 errorPageId(const char *page_name)
521 {
522 for (int i = 0; i < ERR_MAX; i++) {
523 if (strcmp(err_type_str[i], page_name) == 0)
524 return i;
525 }
526
527 for (size_t j = 0; j < ErrorDynamicPages.size(); j++) {
528 if (strcmp(ErrorDynamicPages.items[j]->page_name, page_name) == 0)
529 return j + ERR_MAX;
530 }
531
532 return ERR_NONE;
533 }
534
535 err_type
536 errorReservePageId(const char *page_name)
537 {
538 ErrorDynamicPageInfo *info;
539 int id = errorPageId(page_name);
540
541 if (id == ERR_NONE) {
542 info = errorDynamicPageInfoCreate(ERR_MAX + ErrorDynamicPages.size(), page_name);
543 ErrorDynamicPages.push_back(info);
544 id = info->id;
545 }
546
547 return (err_type)id;
548 }
549
550 /// \ingroup ErrorPageInternal
551 const char *
552 errorPageName(int pageId)
553 {
554 if (pageId >= ERR_NONE && pageId < ERR_MAX) /* common case */
555 return err_type_str[pageId];
556
557 if (pageId >= ERR_MAX && pageId - ERR_MAX < (ssize_t)ErrorDynamicPages.size())
558 return ErrorDynamicPages.items[pageId - ERR_MAX]->page_name;
559
560 return "ERR_UNKNOWN"; /* should not happen */
561 }
562
563 ErrorState::ErrorState(err_type t, http_status status, HttpRequest * req) :
564 type(t),
565 page_id(t),
566 err_language(NULL),
567 httpStatus(status),
568 #if USE_AUTH
569 auth_user_request (NULL),
570 #endif
571 request(NULL),
572 url(NULL),
573 xerrno(0),
574 port(0),
575 dnsError(),
576 ttl(0),
577 src_addr(),
578 redirect_url(NULL),
579 callback(NULL),
580 callback_data(NULL),
581 request_hdrs(NULL),
582 err_msg(NULL),
583 #if USE_SSL
584 detail(NULL),
585 #endif
586 detailCode(ERR_DETAIL_NONE)
587 {
588 memset(&flags, 0, sizeof(flags));
589 memset(&ftp, 0, sizeof(ftp));
590
591 if (page_id >= ERR_MAX && ErrorDynamicPages.items[page_id - ERR_MAX]->page_redirect != HTTP_STATUS_NONE)
592 httpStatus = ErrorDynamicPages.items[page_id - ERR_MAX]->page_redirect;
593
594 if (req != NULL) {
595 request = HTTPMSGLOCK(req);
596 src_addr = req->client_addr;
597 }
598 }
599
600 void
601 errorAppendEntry(StoreEntry * entry, ErrorState * err)
602 {
603 assert(entry->mem_obj != NULL);
604 assert (entry->isEmpty());
605 debugs(4, 4, "Creating an error page for entry " << entry <<
606 " with errorstate " << err <<
607 " page id " << err->page_id);
608
609 if (entry->store_status != STORE_PENDING) {
610 debugs(4, 2, "Skipping error page due to store_status: " << entry->store_status);
611 /*
612 * If the entry is not STORE_PENDING, then no clients
613 * care about it, and we don't need to generate an
614 * error message
615 */
616 assert(EBIT_TEST(entry->flags, ENTRY_ABORTED));
617 assert(entry->mem_obj->nclients == 0);
618 delete err;
619 return;
620 }
621
622 if (err->page_id == TCP_RESET) {
623 if (err->request) {
624 debugs(4, 2, "RSTing this reply");
625 err->request->flags.setResetTCP();
626 }
627 }
628
629 entry->lock();
630 entry->buffer();
631 entry->replaceHttpReply( err->BuildHttpReply() );
632 EBIT_CLR(entry->flags, ENTRY_FWD_HDR_WAIT);
633 entry->flush();
634 entry->complete();
635 entry->negativeCache();
636 entry->releaseRequest();
637 entry->unlock();
638 delete err;
639 }
640
641 void
642 errorSend(const Comm::ConnectionPointer &conn, ErrorState * err)
643 {
644 HttpReply *rep;
645 debugs(4, 3, HERE << conn << ", err=" << err);
646 assert(Comm::IsConnOpen(conn));
647
648 /* moved in front of errorBuildBuf @?@ */
649 err->flags.flag_cbdata = 1;
650
651 rep = err->BuildHttpReply();
652
653 MemBuf *mb = rep->pack();
654 AsyncCall::Pointer call = commCbCall(78, 5, "errorSendComplete",
655 CommIoCbPtrFun(&errorSendComplete, err));
656 Comm::Write(conn, mb, call);
657 delete mb;
658
659 delete rep;
660 }
661
662 /**
663 \ingroup ErrorPageAPI
664 *
665 * Called by commHandleWrite() after data has been written
666 * to the client socket.
667 *
668 \note If there is a callback, the callback is responsible for
669 * closing the FD, otherwise we do it ourselves.
670 */
671 static void
672 errorSendComplete(const Comm::ConnectionPointer &conn, char *bufnotused, size_t size, comm_err_t errflag, int xerrno, void *data)
673 {
674 ErrorState *err = static_cast<ErrorState *>(data);
675 debugs(4, 3, HERE << conn << ", size=" << size);
676
677 if (errflag != COMM_ERR_CLOSING) {
678 if (err->callback) {
679 debugs(4, 3, "errorSendComplete: callback");
680 err->callback(conn->fd, err->callback_data, size);
681 } else {
682 debugs(4, 3, "errorSendComplete: comm_close");
683 conn->close();
684 }
685 }
686
687 delete err;
688 }
689
690 ErrorState::~ErrorState()
691 {
692 HTTPMSGUNLOCK(request);
693 safe_free(redirect_url);
694 safe_free(url);
695 safe_free(request_hdrs);
696 wordlistDestroy(&ftp.server_msg);
697 safe_free(ftp.request);
698 safe_free(ftp.reply);
699 #if USE_AUTH
700 auth_user_request = NULL;
701 #endif
702 safe_free(err_msg);
703 #if USE_ERR_LOCALES
704 if (err_language != Config.errorDefaultLanguage)
705 #endif
706 safe_free(err_language);
707 #if USE_SSL
708 delete detail;
709 #endif
710 }
711
712 int
713 ErrorState::Dump(MemBuf * mb)
714 {
715 MemBuf str;
716 char ntoabuf[MAX_IPSTRLEN];
717
718 str.reset();
719 /* email subject line */
720 str.Printf("CacheErrorInfo - %s", errorPageName(type));
721 mb->Printf("?subject=%s", rfc1738_escape_part(str.buf));
722 str.reset();
723 /* email body */
724 str.Printf("CacheHost: %s\r\n", getMyHostname());
725 /* - Err Msgs */
726 str.Printf("ErrPage: %s\r\n", errorPageName(type));
727
728 if (xerrno) {
729 str.Printf("Err: (%d) %s\r\n", xerrno, strerror(xerrno));
730 } else {
731 str.Printf("Err: [none]\r\n");
732 }
733 #if USE_AUTH
734 if (auth_user_request->denyMessage())
735 str.Printf("Auth ErrMsg: %s\r\n", auth_user_request->denyMessage());
736 #endif
737 if (dnsError.size() > 0)
738 str.Printf("DNS ErrMsg: %s\r\n", dnsError.termedBuf());
739
740 /* - TimeStamp */
741 str.Printf("TimeStamp: %s\r\n\r\n", mkrfc1123(squid_curtime));
742
743 /* - IP stuff */
744 str.Printf("ClientIP: %s\r\n", src_addr.NtoA(ntoabuf,MAX_IPSTRLEN));
745
746 if (request && request->hier.host[0] != '\0') {
747 str.Printf("ServerIP: %s\r\n", request->hier.host);
748 }
749
750 str.Printf("\r\n");
751 /* - HTTP stuff */
752 str.Printf("HTTP Request:\r\n");
753
754 if (NULL != request) {
755 Packer pck;
756 String urlpath_or_slash;
757
758 if (request->urlpath.size() != 0)
759 urlpath_or_slash = request->urlpath;
760 else
761 urlpath_or_slash = "/";
762
763 str.Printf("%s " SQUIDSTRINGPH " %s/%d.%d\n",
764 RequestMethodStr(request->method),
765 SQUIDSTRINGPRINT(urlpath_or_slash),
766 AnyP::ProtocolType_str[request->http_ver.protocol],
767 request->http_ver.major, request->http_ver.minor);
768 packerToMemInit(&pck, &str);
769 request->header.packInto(&pck);
770 packerClean(&pck);
771 }
772
773 str.Printf("\r\n");
774 /* - FTP stuff */
775
776 if (ftp.request) {
777 str.Printf("FTP Request: %s\r\n", ftp.request);
778 str.Printf("FTP Reply: %s\r\n", (ftp.reply? ftp.reply:"[none]"));
779 str.Printf("FTP Msg: ");
780 wordlistCat(ftp.server_msg, &str);
781 str.Printf("\r\n");
782 }
783
784 str.Printf("\r\n");
785 mb->Printf("&body=%s", rfc1738_escape_part(str.buf));
786 str.clean();
787 return 0;
788 }
789
790 /// \ingroup ErrorPageInternal
791 #define CVT_BUF_SZ 512
792
793 const char *
794 ErrorState::Convert(char token, bool building_deny_info_url, bool allowRecursion)
795 {
796 static MemBuf mb;
797 const char *p = NULL; /* takes priority over mb if set */
798 int do_quote = 1;
799 int no_urlescape = 0; /* if true then item is NOT to be further URL-encoded */
800 char ntoabuf[MAX_IPSTRLEN];
801
802 mb.reset();
803
804 switch (token) {
805
806 case 'a':
807 #if USE_AUTH
808 if (request && request->auth_user_request != NULL)
809 p = request->auth_user_request->username();
810 if (!p)
811 #endif
812 p = "-";
813 break;
814
815 case 'b':
816 mb.Printf("%d", getMyPort());
817 break;
818
819 case 'B':
820 if (building_deny_info_url) break;
821 p = request ? ftpUrlWith2f(request) : "[no URL]";
822 break;
823
824 case 'c':
825 if (building_deny_info_url) break;
826 p = errorPageName(type);
827 break;
828
829 case 'D':
830 if (!allowRecursion)
831 p = "%D"; // if recursion is not allowed, do not convert
832 #if USE_SSL
833 // currently only SSL error details implemented
834 else if (detail) {
835 detail->useRequest(request);
836 const String &errDetail = detail->toString();
837 if (errDetail.defined()) {
838 MemBuf *detail_mb = ConvertText(errDetail.termedBuf(), false);
839 mb.append(detail_mb->content(), detail_mb->contentSize());
840 delete detail_mb;
841 do_quote = 0;
842 }
843 }
844 #endif
845 if (!mb.contentSize())
846 mb.Printf("[No Error Detail]");
847 break;
848
849 case 'e':
850 mb.Printf("%d", xerrno);
851 break;
852
853 case 'E':
854 if (xerrno)
855 mb.Printf("(%d) %s", xerrno, strerror(xerrno));
856 else
857 mb.Printf("[No Error]");
858 break;
859
860 case 'f':
861 if (building_deny_info_url) break;
862 /* FTP REQUEST LINE */
863 if (ftp.request)
864 p = ftp.request;
865 else
866 p = "nothing";
867 break;
868
869 case 'F':
870 if (building_deny_info_url) break;
871 /* FTP REPLY LINE */
872 if (ftp.reply)
873 p = ftp.reply;
874 else
875 p = "nothing";
876 break;
877
878 case 'g':
879 if (building_deny_info_url) break;
880 /* FTP SERVER RESPONSE */
881 if (ftp.listing) {
882 mb.append(ftp.listing->content(), ftp.listing->contentSize());
883 do_quote = 0;
884 } else if (ftp.server_msg) {
885 wordlistCat(ftp.server_msg, &mb);
886 }
887 break;
888
889 case 'h':
890 mb.Printf("%s", getMyHostname());
891 break;
892
893 case 'H':
894 if (request) {
895 if (request->hier.host[0] != '\0') // if non-empty string.
896 p = request->hier.host;
897 else
898 p = request->GetHost();
899 } else if (!building_deny_info_url)
900 p = "[unknown host]";
901 break;
902
903 case 'i':
904 mb.Printf("%s", src_addr.NtoA(ntoabuf,MAX_IPSTRLEN));
905 break;
906
907 case 'I':
908 if (request && request->hier.tcpServer != NULL)
909 p = request->hier.tcpServer->remote.NtoA(ntoabuf,MAX_IPSTRLEN);
910 else if (!building_deny_info_url)
911 p = "[unknown]";
912 break;
913
914 case 'l':
915 if (building_deny_info_url) break;
916 mb.append(error_stylesheet.content(), error_stylesheet.contentSize());
917 do_quote = 0;
918 break;
919
920 case 'L':
921 if (building_deny_info_url) break;
922 if (Config.errHtmlText) {
923 mb.Printf("%s", Config.errHtmlText);
924 do_quote = 0;
925 } else
926 p = "[not available]";
927 break;
928
929 case 'm':
930 if (building_deny_info_url) break;
931 #if USE_AUTH
932 p = auth_user_request->denyMessage("[not available]");
933 #else
934 p = "-";
935 #endif
936 break;
937
938 case 'M':
939 if (request)
940 p = RequestMethodStr(request->method);
941 else if (!building_deny_info_url)
942 p= "[unknown method]";
943 break;
944
945 case 'o':
946 p = request ? request->extacl_message.termedBuf() : external_acl_message;
947 if (!p && !building_deny_info_url)
948 p = "[not available]";
949 break;
950
951 case 'p':
952 if (request) {
953 mb.Printf("%d", (int) request->port);
954 } else if (!building_deny_info_url) {
955 p = "[unknown port]";
956 }
957 break;
958
959 case 'P':
960 if (request) {
961 p = AnyP::ProtocolType_str[request->protocol];
962 } else if (!building_deny_info_url) {
963 p = "[unknown protocol]";
964 }
965 break;
966
967 case 'R':
968 if (building_deny_info_url) {
969 p = (request->urlpath.size() != 0 ? request->urlpath.termedBuf() : "/");
970 no_urlescape = 1;
971 break;
972 }
973 if (NULL != request) {
974 Packer pck;
975 String urlpath_or_slash;
976
977 if (request->urlpath.size() != 0)
978 urlpath_or_slash = request->urlpath;
979 else
980 urlpath_or_slash = "/";
981
982 mb.Printf("%s " SQUIDSTRINGPH " %s/%d.%d\n",
983 RequestMethodStr(request->method),
984 SQUIDSTRINGPRINT(urlpath_or_slash),
985 AnyP::ProtocolType_str[request->http_ver.protocol],
986 request->http_ver.major, request->http_ver.minor);
987 packerToMemInit(&pck, &mb);
988 request->header.packInto(&pck, true); //hide authorization data
989 packerClean(&pck);
990 } else if (request_hdrs) {
991 p = request_hdrs;
992 } else {
993 p = "[no request]";
994 }
995 break;
996
997 case 's':
998 /* for backward compat we make %s show the full URL. Drop this in some future release. */
999 if (building_deny_info_url) {
1000 p = request ? urlCanonical(request) : url;
1001 debugs(0,0, "WARNING: deny_info now accepts coded tags. Use %u to get the full URL instead of %s");
1002 } else
1003 p = visible_appname_string;
1004 break;
1005
1006 case 'S':
1007 if (building_deny_info_url) {
1008 p = visible_appname_string;
1009 break;
1010 }
1011 /* signature may contain %-escapes, recursion */
1012 if (page_id != ERR_SQUID_SIGNATURE) {
1013 const int saved_id = page_id;
1014 page_id = ERR_SQUID_SIGNATURE;
1015 MemBuf *sign_mb = BuildContent();
1016 mb.Printf("%s", sign_mb->content());
1017 sign_mb->clean();
1018 delete sign_mb;
1019 page_id = saved_id;
1020 do_quote = 0;
1021 } else {
1022 /* wow, somebody put %S into ERR_SIGNATURE, stop recursion */
1023 p = "[%S]";
1024 }
1025 break;
1026
1027 case 't':
1028 mb.Printf("%s", Time::FormatHttpd(squid_curtime));
1029 break;
1030
1031 case 'T':
1032 mb.Printf("%s", mkrfc1123(squid_curtime));
1033 break;
1034
1035 case 'U':
1036 /* Using the fake-https version of canonical so error pages see https:// */
1037 /* even when the url-path cannot be shown as more than '*' */
1038 if (request)
1039 p = urlCanonicalFakeHttps(request);
1040 else if (url)
1041 p = url;
1042 else if (!building_deny_info_url)
1043 p = "[no URL]";
1044 break;
1045
1046 case 'u':
1047 if (request)
1048 p = urlCanonical(request);
1049 else if (url)
1050 p = url;
1051 else if (!building_deny_info_url)
1052 p = "[no URL]";
1053 break;
1054
1055 case 'w':
1056 if (Config.adminEmail)
1057 mb.Printf("%s", Config.adminEmail);
1058 else if (!building_deny_info_url)
1059 p = "[unknown]";
1060 break;
1061
1062 case 'W':
1063 if (building_deny_info_url) break;
1064 if (Config.adminEmail && Config.onoff.emailErrData)
1065 Dump(&mb);
1066 no_urlescape = 1;
1067 break;
1068
1069 case 'x':
1070 #if USE_SSL
1071 if (detail)
1072 mb.Printf("%s", detail->errorName());
1073 else
1074 #endif
1075 if (!building_deny_info_url)
1076 p = "[Unknown Error Code]";
1077 break;
1078
1079 case 'z':
1080 if (building_deny_info_url) break;
1081 if (dnsError.size() > 0)
1082 p = dnsError.termedBuf();
1083 else if (ftp.cwd_msg)
1084 p = ftp.cwd_msg;
1085 else
1086 p = "[unknown]";
1087 break;
1088
1089 case 'Z':
1090 if (building_deny_info_url) break;
1091 if (err_msg)
1092 p = err_msg;
1093 else
1094 p = "[unknown]";
1095 break;
1096
1097 case '%':
1098 p = "%";
1099 break;
1100
1101 default:
1102 mb.Printf("%%%c", token);
1103 do_quote = 0;
1104 break;
1105 }
1106
1107 if (!p)
1108 p = mb.buf; /* do not use mb after this assignment! */
1109
1110 assert(p);
1111
1112 debugs(4, 3, "errorConvert: %%" << token << " --> '" << p << "'" );
1113
1114 if (do_quote)
1115 p = html_quote(p);
1116
1117 if (building_deny_info_url && !no_urlescape)
1118 p = rfc1738_escape_part(p);
1119
1120 return p;
1121 }
1122
1123 void
1124 ErrorState::DenyInfoLocation(const char *name, HttpRequest *aRequest, MemBuf &result)
1125 {
1126 char const *m = name;
1127 char const *p = m;
1128 char const *t;
1129
1130 if (m[0] == '3')
1131 m += 4; // skip "3xx:"
1132
1133 while ((p = strchr(m, '%'))) {
1134 result.append(m, p - m); /* copy */
1135 t = Convert(*++p, true, true); /* convert */
1136 result.Printf("%s", t); /* copy */
1137 m = p + 1; /* advance */
1138 }
1139
1140 if (*m)
1141 result.Printf("%s", m); /* copy tail */
1142
1143 assert((size_t)result.contentSize() == strlen(result.content()));
1144 }
1145
1146 HttpReply *
1147 ErrorState::BuildHttpReply()
1148 {
1149 HttpReply *rep = new HttpReply;
1150 const char *name = errorPageName(page_id);
1151 /* no LMT for error pages; error pages expire immediately */
1152
1153 if (name[0] == '3' || (name[0] != '2' && name[0] != '4' && name[0] != '5' && strchr(name, ':'))) {
1154 /* Redirection */
1155 http_status status = HTTP_MOVED_TEMPORARILY;
1156 // Use configured 3xx reply status if set.
1157 if (name[0] == '3')
1158 status = httpStatus;
1159 else {
1160 // Use 307 for HTTP/1.1 non-GET/HEAD requests.
1161 if (request->method != METHOD_GET && request->method != METHOD_HEAD && request->http_ver >= HttpVersion(1,1))
1162 status = HTTP_TEMPORARY_REDIRECT;
1163 }
1164
1165 rep->setHeaders(status, NULL, "text/html", 0, 0, -1);
1166
1167 if (request) {
1168 MemBuf redirect_location;
1169 redirect_location.init();
1170 DenyInfoLocation(name, request, redirect_location);
1171 httpHeaderPutStrf(&rep->header, HDR_LOCATION, "%s", redirect_location.content() );
1172 }
1173
1174 httpHeaderPutStrf(&rep->header, HDR_X_SQUID_ERROR, "%d %s", httpStatus, "Access Denied");
1175 } else {
1176 MemBuf *content = BuildContent();
1177 rep->setHeaders(httpStatus, NULL, "text/html", content->contentSize(), 0, -1);
1178 /*
1179 * include some information for downstream caches. Implicit
1180 * replaceable content. This isn't quite sufficient. xerrno is not
1181 * necessarily meaningful to another system, so we really should
1182 * expand it. Additionally, we should identify ourselves. Someone
1183 * might want to know. Someone _will_ want to know OTOH, the first
1184 * X-CACHE-MISS entry should tell us who.
1185 */
1186 httpHeaderPutStrf(&rep->header, HDR_X_SQUID_ERROR, "%s %d", name, xerrno);
1187
1188 #if USE_ERR_LOCALES
1189 /*
1190 * If error page auto-negotiate is enabled in any way, send the Vary.
1191 * RFC 2616 section 13.6 and 14.44 says MAY and SHOULD do this.
1192 * We have even better reasons though:
1193 * see http://wiki.squid-cache.org/KnowledgeBase/VaryNotCaching
1194 */
1195 if (!Config.errorDirectory) {
1196 /* We 'negotiated' this ONLY from the Accept-Language. */
1197 rep->header.delById(HDR_VARY);
1198 rep->header.putStr(HDR_VARY, "Accept-Language");
1199 }
1200
1201 /* add the Content-Language header according to RFC section 14.12 */
1202 if (err_language) {
1203 rep->header.putStr(HDR_CONTENT_LANGUAGE, err_language);
1204 } else
1205 #endif /* USE_ERROR_LOCALES */
1206 {
1207 /* default templates are in English */
1208 /* language is known unless error_directory override used */
1209 if (!Config.errorDirectory)
1210 rep->header.putStr(HDR_CONTENT_LANGUAGE, "en");
1211 }
1212
1213 rep->body.setMb(content);
1214 /* do not memBufClean() or delete the content, it was absorbed by httpBody */
1215 }
1216
1217 // Make sure error codes get back to the client side for logging and
1218 // error tracking.
1219 if (request) {
1220 int edc = ERR_DETAIL_NONE; // error detail code
1221 #if USE_SSL
1222 if (detail)
1223 edc = detail->errorNo();
1224 else
1225 #endif
1226 if (detailCode)
1227 edc = detailCode;
1228 else
1229 edc = xerrno;
1230 request->detailError(type, edc);
1231 }
1232
1233 return rep;
1234 }
1235
1236 MemBuf *
1237 ErrorState::BuildContent()
1238 {
1239 const char *m = NULL;
1240
1241 assert(page_id > ERR_NONE && page_id < error_page_count);
1242
1243 #if USE_ERR_LOCALES
1244 ErrorPageFile *localeTmpl = NULL;
1245
1246 /** error_directory option in squid.conf overrides translations.
1247 * Custom errors are always found either in error_directory or the templates directory.
1248 * Otherwise locate the Accept-Language header
1249 */
1250 if (!Config.errorDirectory && page_id < ERR_MAX) {
1251 if (err_language && err_language != Config.errorDefaultLanguage)
1252 safe_free(err_language);
1253
1254 localeTmpl = new ErrorPageFile(err_type_str[page_id], static_cast<err_type>(page_id));
1255 if (localeTmpl->loadFor(request)) {
1256 m = localeTmpl->text();
1257 assert(localeTmpl->language());
1258 err_language = xstrdup(localeTmpl->language());
1259 }
1260 }
1261 #endif /* USE_ERR_LOCALES */
1262
1263 /** \par
1264 * If client-specific error templates are not enabled or available.
1265 * fall back to the old style squid.conf settings.
1266 */
1267 if (!m) {
1268 m = error_text[page_id];
1269 #if USE_ERR_LOCALES
1270 if (!Config.errorDirectory)
1271 err_language = Config.errorDefaultLanguage;
1272 #endif
1273 debugs(4, 2, HERE << "No existing error page language negotiated for " << errorPageName(page_id) << ". Using default error file.");
1274 }
1275
1276 MemBuf *result = ConvertText(m, true);
1277 #if USE_ERR_LOCALES
1278 if (localeTmpl)
1279 delete localeTmpl;
1280 #endif
1281 return result;
1282 }
1283
1284 MemBuf *ErrorState::ConvertText(const char *text, bool allowRecursion)
1285 {
1286 MemBuf *content = new MemBuf;
1287 const char *p;
1288 const char *m = text;
1289 assert(m);
1290 content->init();
1291
1292 while ((p = strchr(m, '%'))) {
1293 content->append(m, p - m); /* copy */
1294 const char *t = Convert(*++p, false, allowRecursion); /* convert */
1295 content->Printf("%s", t); /* copy */
1296 m = p + 1; /* advance */
1297 }
1298
1299 if (*m)
1300 content->Printf("%s", m); /* copy tail */
1301
1302 assert((size_t)content->contentSize() == strlen(content->content()));
1303
1304 return content;
1305 }