]> git.ipfire.org Git - thirdparty/squid.git/blame - src/AccessLogEntry.h
Add pt-bz (Belize Portuguee) dialect to translations
[thirdparty/squid.git] / src / AccessLogEntry.h
CommitLineData
450e0c10 1/*
450e0c10 2 * SQUID Web Proxy Cache http://www.squid-cache.org/
3 * ----------------------------------------------------------
4 *
5 * Squid is the result of efforts by numerous individuals from
6 * the Internet community; see the CONTRIBUTORS file for full
7 * details. Many organizations have provided support for Squid's
8 * development; see the SPONSORS file for full details. Squid is
9 * Copyrighted (C) 2001 by the Regents of the University of
10 * California; see the COPYRIGHT file for full details. Squid
11 * incorporates software developed and/or copyrighted by other
12 * sources; see the CREDITS file for full details.
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
26ac0430 18 *
450e0c10 19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
26ac0430 23 *
450e0c10 24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
27 *
28 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
29 */
450e0c10 30#ifndef SQUID_HTTPACCESSLOGENTRY_H
31#define SQUID_HTTPACCESSLOGENTRY_H
32
65d448bc 33#include "anyp/PortCfg.h"
8bf217bd 34#include "base/RefCount.h"
a14f38d0 35#include "comm/Connection.h"
d7f4a0b7 36#include "HttpHeader.h"
526ed14e 37#include "http/ProtocolVersion.h"
75cb38cb 38#include "HttpRequestMethod.h"
b24880fe 39#include "HierarchyLogEntry.h"
c8f1812b 40#include "icp_opcode.h"
96d89ea0 41#include "ip/Address.h"
02c8dde5
AJ
42#include "LogTags.h"
43#include "Notes.h"
3ff65596
AR
44#if ICAP_CLIENT
45#include "adaptation/icap/Elements.h"
46#endif
f4698e0b
CT
47#if USE_SSL
48#include "ssl/gadgets.h"
49#endif
450e0c10 50
62ee09ca 51/* forward decls */
e1f7507e
AJ
52class HttpReply;
53class HttpRequest;
613924ee 54class CustomLog;
62ee09ca 55
41ebd397 56class AccessLogEntry: public RefCountable
450e0c10 57{
58
59public:
41ebd397
CT
60 typedef RefCount<AccessLogEntry> Pointer;
61
a14f38d0 62 AccessLogEntry() : url(NULL), tcpClient(), reply(NULL), request(NULL),
105d1937 63 adapted_request(NULL) {}
41ebd397 64 ~AccessLogEntry();
450e0c10 65
d4204018
AJ
66 /// Fetch the client IP log string into the given buffer.
67 /// Knows about several alternate locations of the IP
68 /// including indirect forwarded-for IP if configured to log that
69 void getLogClientIp(char *buf, size_t bufsz) const;
70
450e0c10 71 const char *url;
72
a14f38d0
AJ
73 /// TCP/IP level details about the client connection
74 Comm::ConnectionPointer tcpClient;
75 // TCP/IP level details about the server or peer connection
76 // are stored in hier.tcpServer
77
4e26d606
AJ
78 /** \brief This subclass holds log info for HTTP protocol
79 * \todo Inner class declarations should be moved outside
80 * \todo details of HTTP held in the parent class need moving into here.
81 */
450e0c10 82 class HttpDetails
83 {
84
85 public:
c2a7cefd 86 HttpDetails() : method(Http::METHOD_NONE), code(0), content_type(NULL),
307b696e 87 timedout(false), aborted(false) {}
450e0c10 88
60745f24 89 HttpRequestMethod method;
450e0c10 90 int code;
91 const char *content_type;
526ed14e 92 Http::ProtocolVersion version;
f692498b
AJ
93 bool timedout; ///< terminated due to a lifetime or I/O timeout
94 bool aborted; ///< other abnormal termination (e.g., I/O error)
95
96 /// compute suffix for the status access.log field
97 const char *statusSfx() const {
98 return timedout ? "_TIMEDOUT" : (aborted ? "_ABORTED" : "");
99 }
2fadd50d 100 } http;
450e0c10 101
4e26d606
AJ
102 /** \brief This subclass holds log info for ICP protocol
103 * \todo Inner class declarations should be moved outside
104 */
105 class IcpDetails
450e0c10 106 {
107
108 public:
4e26d606 109 IcpDetails() : opcode(ICP_INVALID) {}
450e0c10 110
111 icp_opcode opcode;
2fadd50d 112 } icp;
450e0c10 113
4e26d606
AJ
114 /** \brief This subclass holds log info for HTCP protocol
115 * \todo Inner class declarations should be moved outside
116 */
04f7fd38
AJ
117 class HtcpDetails
118 {
a8b1cdf6
AJ
119 public:
120 HtcpDetails() : opcode(NULL) {};
121
122 const char *opcode;
123 } htcp;
124
08097970
AR
125#if USE_SSL
126 /// logging information specific to the SSL protocol
87f237a9
A
127 class SslDetails
128 {
08097970 129 public:
71cae389 130 SslDetails();
08097970
AR
131
132 const char *user; ///< emailAddress from the SSL client certificate
133 int bumpMode; ///< whether and how the request was SslBumped
134 } ssl;
135#endif
136
4e26d606
AJ
137 /** \brief This subclass holds log info for Squid internal stats
138 * \todo Inner class declarations should be moved outside
139 * \todo some details relevant to particular protocols need shuffling to other sub-classes
140 * \todo this object field need renaming to 'squid' or something.
141 */
450e0c10 142 class CacheDetails
143 {
144
145 public:
cc192b50 146 CacheDetails() : caddr(),
1a86db31
AJ
147 requestSize(0),
148 replySize(0),
3ff65596
AR
149 requestHeadersSize(0),
150 replyHeadersSize(0),
450e0c10 151 highOffset(0),
152 objectSize(0),
153 code (LOG_TAG_NONE),
154 msec(0),
155 rfc931 (NULL),
41ebd397 156 extuser(NULL),
450e0c10 157#if USE_SSL
41ebd397 158 ssluser(NULL),
450e0c10 159#endif
999aa5d2
A
160 port(NULL) {
161 ;
450e0c10 162 }
163
b7ac5457 164 Ip::Address caddr;
1a86db31
AJ
165 int64_t requestSize;
166 int64_t replySize;
3ff65596
AR
167 int requestHeadersSize; ///< received, including request line
168 int replyHeadersSize; ///< sent, including status line
47f6e231 169 int64_t highOffset;
170 int64_t objectSize;
02c8dde5 171 LogTags code;
450e0c10 172 int msec;
173 const char *rfc931;
661ef4eb 174 const char *extuser;
450e0c10 175#if USE_SSL
176
177 const char *ssluser;
f4698e0b 178 Ssl::X509_Pointer sslClientCert; ///< cert received from the client
450e0c10 179#endif
65d448bc 180 AnyP::PortCfg *port;
450e0c10 181
2fadd50d 182 } cache;
450e0c10 183
4e26d606
AJ
184 /** \brief This subclass holds log info for various headers in raw format
185 * \todo shuffle this to the relevant protocol section.
186 */
450e0c10 187 class Headers
188 {
189
190 public:
3ff65596 191 Headers() : request(NULL),
105d1937 192 adapted_request(NULL),
e1381638 193 reply(NULL) {}
450e0c10 194
6fca33e0
CT
195 char *request; //< virgin HTTP request headers
196
105d1937 197 char *adapted_request; //< HTTP request headers after adaptation and redirection
6fca33e0 198
99690f32
AR
199 char *reply;
200 } headers;
3ff65596 201
5038f9d8 202#if USE_ADAPTATION
99690f32
AR
203 /** \brief This subclass holds general adaptation log info.
204 * \todo Inner class declarations should be moved outside.
205 */
206 class AdaptationDetails
207 {
208
209 public:
210 AdaptationDetails(): last_meta(NULL) {}
5038f9d8 211
99690f32
AR
212 /// image of the last ICAP response header or eCAP meta received
213 char *last_meta;
214 } adapt;
3ff65596 215#endif
450e0c10 216
e1f7507e
AJ
217 // Why is this a sub-class and not a set of real "private:" fields?
218 // It looks like its duplicating HTTPRequestMethod anyway!
4e26d606 219 // TODO: shuffle this to the relevant protocol section OR replace with request->method
450e0c10 220 class Private
221 {
222
223 public:
224 Private() : method_str(NULL) {}
225
226 const char *method_str;
2fadd50d 227 } _private;
450e0c10 228 HierarchyLogEntry hier;
229 HttpReply *reply;
105d1937 230 HttpRequest *request; //< virgin HTTP request
6fca33e0 231 HttpRequest *adapted_request; //< HTTP request after adaptation and redirection
d06e17ea 232
cf9f0261
CT
233 // TODO: merge configNotes and helperNotes
234 /// key:value pairs set by note.
235 NotePairs::Pointer configNotes;
236 /// key=value pairs returned from URL rewrite/redirect helper
237 NotePairs::Pointer helperNotes;
6fca33e0 238
3ff65596
AR
239#if ICAP_CLIENT
240 /** \brief This subclass holds log info for ICAP part of request
241 * \todo Inner class declarations should be moved outside
242 */
e1381638
AJ
243 class IcapLogEntry
244 {
3ff65596 245 public:
f5d0906a 246 IcapLogEntry() : reqMethod(Adaptation::methodNone), bytesSent(0), bytesRead(0),
99c1b994
A
247 bodyBytesRead(-1), request(NULL), reply(NULL),
248 outcome(Adaptation::Icap::xoUnknown), trTime(0),
955394ce 249 ioTime(0), resStatus(Http::scNone), processingTime(0) {}
3ff65596 250
b7ac5457 251 Ip::Address hostAddr; ///< ICAP server IP address
3ff65596
AR
252 String serviceName; ///< ICAP service name
253 String reqUri; ///< ICAP Request-URI
254 Adaptation::Icap::ICAP::Method reqMethod; ///< ICAP request method
255 int64_t bytesSent; ///< number of bytes sent to ICAP server so far
256 int64_t bytesRead; ///< number of bytes read from ICAP server so far
bae917ac 257 /**
dcaab393 258 * number of ICAP body bytes read from ICAP server or -1 for no encapsulated
bae917ac
CT
259 * message data in ICAP reply (eg 204 responses)
260 */
261 int64_t bodyBytesRead;
3ff65596
AR
262 HttpRequest* request; ///< ICAP request
263 HttpReply* reply; ///< ICAP reply
264
265 Adaptation::Icap::XactOutcome outcome; ///< final transaction status
266 /** \brief Transaction response time.
267 * The timer starts when the ICAP transaction
268 * is created and stops when the result of the transaction is logged
269 */
270 int trTime;
271 /** \brief Transaction I/O time.
272 * The timer starts when the first ICAP request
e1381638 273 * byte is scheduled for sending and stops when the lastbyte of the
3ff65596
AR
274 * ICAP response is received.
275 */
276 int ioTime;
955394ce 277 Http::StatusCode resStatus; ///< ICAP response status code
3ff65596
AR
278 int processingTime; ///< total ICAP processing time in milliseconds
279 }
280 icap;
281#endif
450e0c10 282};
283
e1f7507e
AJ
284class ACLChecklist;
285class StoreEntry;
e1f7507e 286
450e0c10 287/* Should be in 'AccessLog.h' as the driver */
8a648e8d
FC
288void accessLogLogTo(CustomLog* log, AccessLogEntry::Pointer &al, ACLChecklist* checklist = NULL);
289void accessLogLog(AccessLogEntry::Pointer &, ACLChecklist * checklist);
290void accessLogRotate(void);
291void accessLogClose(void);
292void accessLogInit(void);
293const char *accessLogTime(time_t);
450e0c10 294
295#endif /* SQUID_HTTPACCESSLOGENTRY_H */