]> git.ipfire.org Git - thirdparty/squid.git/blame - src/log/FormatHttpdCombined.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / log / FormatHttpdCombined.cc
CommitLineData
20efa1c2 1/*
5b74111a 2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
20efa1c2 3 *
bbc27441
AJ
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.
20efa1c2
AJ
7 */
8
bbc27441
AJ
9/* DEBUG: section 46 Access Log - Apache combined format */
10
f7f3304a 11#include "squid.h"
20efa1c2 12#include "AccessLogEntry.h"
38e16f92 13#include "format/Quoting.h"
602d9612 14#include "format/Token.h"
582c2af2 15#include "globals.h"
20efa1c2
AJ
16#include "HttpRequest.h"
17#include "log/File.h"
18#include "log/Formats.h"
4d5904f7 19#include "SquidConfig.h"
20efa1c2
AJ
20#include "SquidTime.h"
21
22void
41ebd397 23Log::Format::HttpdCombined(const AccessLogEntry::Pointer &al, Logfile * logfile)
20efa1c2 24{
e3bf07f5 25 const char *user_ident = ::Format::QuoteUrlEncodeUsername(al->getClientIdent());
c0e8c76f 26 const char *user_auth = NULL;
773003d3
AJ
27 const char *referer = NULL;
28 const char *agent = NULL;
29
41ebd397 30 if (al->request) {
c0e8c76f
AJ
31#if USE_AUTH
32 if (al->request->auth_user_request != NULL)
33 user_auth = ::Format::QuoteUrlEncodeUsername(al->request->auth_user_request->username());
34#endif
789217a2
FC
35 referer = al->request->header.getStr(Http::HdrType::REFERER);
36 agent = al->request->header.getStr(Http::HdrType::USER_AGENT);
773003d3
AJ
37 }
38
20efa1c2
AJ
39 if (!referer || *referer == '\0')
40 referer = "-";
41
20efa1c2
AJ
42 if (!agent || *agent == '\0')
43 agent = "-";
44
d4204018
AJ
45 char clientip[MAX_IPSTRLEN];
46 al->getLogClientIp(clientip, MAX_IPSTRLEN);
47
58b148e1 48 const SBuf method(al->getLogMethod());
7f06a3d8 49
f57ae909 50 logfilePrintf(logfile, "%s %s %s [%s] \"" SQUIDSBUFPH " " SQUIDSBUFPH " %s/%d.%d\" %d %" PRId64 " \"%s\" \"%s\" %s:%s%s",
d4204018 51 clientip,
20efa1c2
AJ
52 user_ident ? user_ident : dash_str,
53 user_auth ? user_auth : dash_str,
54 Time::FormatHttpd(squid_curtime),
7f06a3d8 55 SQUIDSBUFPRINT(method),
f57ae909 56 SQUIDSBUFPRINT(al->url),
c9fd01b4 57 AnyP::ProtocolType_str[al->http.version.protocol],
20efa1c2
AJ
58 al->http.version.major, al->http.version.minor,
59 al->http.code,
cc0ca3b9 60 al->http.clientReplySz.messageTotal(),
20efa1c2
AJ
61 referer,
62 agent,
91369933 63 al->cache.code.c_str(),
20efa1c2
AJ
64 hier_code_str[al->hier.code],
65 (Config.onoff.log_mime_hdrs?"":"\n"));
66
67 safe_free(user_ident);
68 safe_free(user_auth);
69
70 if (Config.onoff.log_mime_hdrs) {
38e16f92
AJ
71 char *ereq = ::Format::QuoteMimeBlob(al->headers.request);
72 char *erep = ::Format::QuoteMimeBlob(al->headers.reply);
20efa1c2
AJ
73 logfilePrintf(logfile, " [%s] [%s]\n", ereq, erep);
74 safe_free(ereq);
75 safe_free(erep);
76 }
77}
f53969cc 78