]> git.ipfire.org Git - thirdparty/squid.git/blob - src/log/FormatSquidNative.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / log / FormatSquidNative.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 - Squid 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::SquidNative(const AccessLogEntry::Pointer &al, Logfile * logfile)
24 {
25 char hierHost[MAX_IPSTRLEN];
26
27 const char *user = NULL;
28
29 #if USE_AUTH
30 if (al->request && al->request->auth_user_request != NULL)
31 user = ::Format::QuoteUrlEncodeUsername(al->request->auth_user_request->username());
32 #endif
33
34 if (!user)
35 user = ::Format::QuoteUrlEncodeUsername(al->cache.extuser);
36
37 #if USE_OPENSSL
38 if (!user)
39 user = ::Format::QuoteUrlEncodeUsername(al->cache.ssluser);
40 #endif
41
42 if (!user)
43 user = ::Format::QuoteUrlEncodeUsername(al->cache.rfc931);
44
45 if (user && !*user)
46 safe_free(user);
47
48 char clientip[MAX_IPSTRLEN];
49 al->getLogClientIp(clientip, MAX_IPSTRLEN);
50
51 static SBuf method;
52 if (al->_private.method_str)
53 method.assign(al->_private.method_str);
54 else
55 method = al->http.method.image();
56
57 logfilePrintf(logfile, "%9ld.%03d %6ld %s %s%s/%03d %" PRId64 " " SQUIDSBUFPH " %s %s %s%s/%s %s%s",
58 (long int) current_time.tv_sec,
59 (int) current_time.tv_usec / 1000,
60 tvToMsec(al->cache.trTime),
61 clientip,
62 LogTags_str[al->cache.code],
63 al->http.statusSfx(),
64 al->http.code,
65 al->http.clientReplySz.messageTotal(),
66 SQUIDSBUFPRINT(method),
67 al->url,
68 user ? user : dash_str,
69 al->hier.ping.timedout ? "TIMEOUT_" : "",
70 hier_code_str[al->hier.code],
71 al->hier.tcpServer != NULL ? al->hier.tcpServer->remote.toStr(hierHost, sizeof(hierHost)) : "-",
72 al->http.content_type,
73 (Config.onoff.log_mime_hdrs?"":"\n"));
74
75 safe_free(user);
76
77 if (Config.onoff.log_mime_hdrs) {
78 char *ereq = ::Format::QuoteMimeBlob(al->headers.request);
79 char *erep = ::Format::QuoteMimeBlob(al->headers.reply);
80 logfilePrintf(logfile, " [%s] [%s]\n", ereq, erep);
81 safe_free(ereq);
82 safe_free(erep);
83 }
84 }
85