]> git.ipfire.org Git - thirdparty/squid.git/blob - src/log/FormatHttpdCommon.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / log / FormatHttpdCommon.cc
1 /*
2 * Copyright (C) 1996-2014 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 46 Access Log - Apache common format */
10
11 #include "squid.h"
12 #include "AccessLogEntry.h"
13 #include "format/Quoting.h"
14 #include "format/Token.h"
15 #include "globals.h"
16 #include "HttpRequest.h"
17 #include "log/File.h"
18 #include "log/Formats.h"
19 #include "SquidConfig.h"
20 #include "SquidTime.h"
21
22 void
23 Log::Format::HttpdCommon(const AccessLogEntry::Pointer &al, Logfile * logfile)
24 {
25 const char *user_auth = NULL;
26 #if USE_AUTH
27 if (al->request && al->request->auth_user_request != NULL)
28 user_auth = ::Format::QuoteUrlEncodeUsername(al->request->auth_user_request->username());
29 #endif
30 const char *user_ident = ::Format::QuoteUrlEncodeUsername(al->cache.rfc931);
31
32 char clientip[MAX_IPSTRLEN];
33 al->getLogClientIp(clientip, MAX_IPSTRLEN);
34
35 static SBuf method;
36 if (al->_private.method_str)
37 method.assign(al->_private.method_str);
38 else
39 method = al->http.method.image();
40
41 logfilePrintf(logfile, "%s %s %s [%s] \"" SQUIDSBUFPH " %s %s/%d.%d\" %d %" PRId64 " %s%s:%s%s",
42 clientip,
43 user_ident ? user_ident : dash_str,
44 user_auth ? user_auth : dash_str,
45 Time::FormatHttpd(squid_curtime),
46 SQUIDSBUFPRINT(method),
47 al->url,
48 AnyP::ProtocolType_str[al->http.version.protocol],
49 al->http.version.major, al->http.version.minor,
50 al->http.code,
51 al->http.clientReplySz.messageTotal(),
52 LogTags_str[al->cache.code],
53 al->http.statusSfx(),
54 hier_code_str[al->hier.code],
55 (Config.onoff.log_mime_hdrs?"":"\n"));
56
57 safe_free(user_auth);
58 safe_free(user_ident);
59
60 if (Config.onoff.log_mime_hdrs) {
61 char *ereq = ::Format::QuoteMimeBlob(al->headers.request);
62 char *erep = ::Format::QuoteMimeBlob(al->headers.reply);
63 logfilePrintf(logfile, " [%s] [%s]\n", ereq, erep);
64 safe_free(ereq);
65 safe_free(erep);
66 }
67 }
68