]> git.ipfire.org Git - thirdparty/squid.git/blob - src/log/FormatHttpdCombined.cc
Merge fixes for some issues reported by Coverity
[thirdparty/squid.git] / src / log / FormatHttpdCombined.cc
1 /*
2 * Copyright (C) 1996-2015 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 combined 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::HttpdCombined(const AccessLogEntry::Pointer &al, Logfile * logfile)
24 {
25 const char *user_ident = ::Format::QuoteUrlEncodeUsername(al->cache.rfc931);
26 const char *user_auth = NULL;
27 const char *referer = NULL;
28 const char *agent = NULL;
29
30 if (al->request) {
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
35 referer = al->request->header.getStr(HDR_REFERER);
36 agent = al->request->header.getStr(HDR_USER_AGENT);
37 }
38
39 if (!referer || *referer == '\0')
40 referer = "-";
41
42 if (!agent || *agent == '\0')
43 agent = "-";
44
45 char clientip[MAX_IPSTRLEN];
46 al->getLogClientIp(clientip, MAX_IPSTRLEN);
47
48 static SBuf method;
49 if (al->_private.method_str)
50 method.assign(al->_private.method_str);
51 else
52 method = al->http.method.image();
53
54 logfilePrintf(logfile, "%s %s %s [%s] \"" SQUIDSBUFPH " %s %s/%d.%d\" %d %" PRId64 " \"%s\" \"%s\" %s:%s%s",
55 clientip,
56 user_ident ? user_ident : dash_str,
57 user_auth ? user_auth : dash_str,
58 Time::FormatHttpd(squid_curtime),
59 SQUIDSBUFPRINT(method),
60 al->url,
61 AnyP::ProtocolType_str[al->http.version.protocol],
62 al->http.version.major, al->http.version.minor,
63 al->http.code,
64 al->http.clientReplySz.messageTotal(),
65 referer,
66 agent,
67 al->cache.code.c_str(),
68 hier_code_str[al->hier.code],
69 (Config.onoff.log_mime_hdrs?"":"\n"));
70
71 safe_free(user_ident);
72 safe_free(user_auth);
73
74 if (Config.onoff.log_mime_hdrs) {
75 char *ereq = ::Format::QuoteMimeBlob(al->headers.request);
76 char *erep = ::Format::QuoteMimeBlob(al->headers.reply);
77 logfilePrintf(logfile, " [%s] [%s]\n", ereq, erep);
78 safe_free(ereq);
79 safe_free(erep);
80 }
81 }
82