14 /* log session to file stuff ... */
\r
17 enum { L_CLOSED, L_OPENING, L_OPEN, L_ERROR } state;
\r
19 Filename *currlogfilename;
\r
22 int logtype; /* cached out of conf */
\r
25 static Filename *xlatlognam(Filename *s, char *hostname, struct tm *tm);
\r
28 * Internal wrapper function which must be called for _all_ output
\r
29 * to the log file. It takes care of opening the log file if it
\r
30 * isn't open, buffering data if it's in the process of being
\r
31 * opened asynchronously, etc.
\r
33 static void logwrite(struct LogContext *ctx, void *data, int len)
\r
36 * In state L_CLOSED, we call logfopen, which will set the state
\r
37 * to one of L_OPENING, L_OPEN or L_ERROR. Hence we process all of
\r
38 * those three _after_ processing L_CLOSED.
\r
40 if (ctx->state == L_CLOSED)
\r
43 if (ctx->state == L_OPENING) {
\r
44 bufchain_add(&ctx->queue, data, len);
\r
45 } else if (ctx->state == L_OPEN) {
\r
47 if (fwrite(data, 1, len, ctx->lgfp) < (size_t)len) {
\r
49 ctx->state = L_ERROR;
\r
50 /* Log state is L_ERROR so this won't cause a loop */
\r
51 logevent(ctx->frontend,
\r
52 "Disabled writing session log due to error while writing");
\r
54 } /* else L_ERROR, so ignore the write */
\r
58 * Convenience wrapper on logwrite() which printf-formats the
\r
61 static void logprintf(struct LogContext *ctx, const char *fmt, ...)
\r
67 data = dupvprintf(fmt, ap);
\r
70 logwrite(ctx, data, strlen(data));
\r
75 * Flush any open log file.
\r
77 void logflush(void *handle) {
\r
78 struct LogContext *ctx = (struct LogContext *)handle;
\r
79 if (ctx->logtype > 0)
\r
80 if (ctx->state == L_OPEN)
\r
84 static void logfopen_callback(void *handle, int mode)
\r
86 struct LogContext *ctx = (struct LogContext *)handle;
\r
87 char buf[256], *event;
\r
92 ctx->state = L_ERROR; /* disable logging */
\r
94 fmode = (mode == 1 ? "ab" : "wb");
\r
95 ctx->lgfp = f_open(ctx->currlogfilename, fmode, FALSE);
\r
97 ctx->state = L_OPEN;
\r
99 ctx->state = L_ERROR;
\r
102 if (ctx->state == L_OPEN) {
\r
103 /* Write header line into log file. */
\r
105 strftime(buf, 24, "%Y.%m.%d %H:%M:%S", &tm);
\r
106 logprintf(ctx, "=~=~=~=~=~=~=~=~=~=~=~= PuTTY log %s"
\r
107 " =~=~=~=~=~=~=~=~=~=~=~=\r\n", buf);
\r
110 event = dupprintf("%s session log (%s mode) to file: %s",
\r
111 ctx->state == L_ERROR ?
\r
112 (mode == 0 ? "Disabled writing" : "Error writing") :
\r
113 (mode == 1 ? "Appending" : "Writing new"),
\r
114 (ctx->logtype == LGTYP_ASCII ? "ASCII" :
\r
115 ctx->logtype == LGTYP_DEBUG ? "raw" :
\r
116 ctx->logtype == LGTYP_PACKETS ? "SSH packets" :
\r
117 ctx->logtype == LGTYP_SSHRAW ? "SSH raw data" :
\r
119 filename_to_str(ctx->currlogfilename));
\r
120 logevent(ctx->frontend, event);
\r
124 * Having either succeeded or failed in opening the log file,
\r
125 * we should write any queued data out.
\r
127 assert(ctx->state != L_OPENING); /* make _sure_ it won't be requeued */
\r
128 while (bufchain_size(&ctx->queue)) {
\r
131 bufchain_prefix(&ctx->queue, &data, &len);
\r
132 logwrite(ctx, data, len);
\r
133 bufchain_consume(&ctx->queue, len);
\r
138 * Open the log file. Takes care of detecting an already-existing
\r
139 * file and asking the user whether they want to append, overwrite
\r
140 * or cancel logging.
\r
142 void logfopen(void *handle)
\r
144 struct LogContext *ctx = (struct LogContext *)handle;
\r
148 /* Prevent repeat calls */
\r
149 if (ctx->state != L_CLOSED)
\r
157 /* substitute special codes in file name */
\r
158 if (ctx->currlogfilename)
\r
159 filename_free(ctx->currlogfilename);
\r
160 ctx->currlogfilename =
\r
161 xlatlognam(conf_get_filename(ctx->conf, CONF_logfilename),
\r
162 conf_get_str(ctx->conf, CONF_host), &tm);
\r
164 ctx->lgfp = f_open(ctx->currlogfilename, "r", FALSE); /* file already present? */
\r
166 int logxfovr = conf_get_int(ctx->conf, CONF_logxfovr);
\r
168 if (logxfovr != LGXF_ASK) {
\r
169 mode = ((logxfovr == LGXF_OVR) ? 2 : 1);
\r
171 mode = askappend(ctx->frontend, ctx->currlogfilename,
\r
172 logfopen_callback, ctx);
\r
174 mode = 2; /* create == overwrite */
\r
177 ctx->state = L_OPENING;
\r
179 logfopen_callback(ctx, mode); /* open the file */
\r
182 void logfclose(void *handle)
\r
184 struct LogContext *ctx = (struct LogContext *)handle;
\r
189 ctx->state = L_CLOSED;
\r
193 * Log session traffic.
\r
195 void logtraffic(void *handle, unsigned char c, int logmode)
\r
197 struct LogContext *ctx = (struct LogContext *)handle;
\r
198 if (ctx->logtype > 0) {
\r
199 if (ctx->logtype == logmode)
\r
200 logwrite(ctx, &c, 1);
\r
205 * Log an Event Log entry. Used in SSH packet logging mode; this is
\r
206 * also as convenient a place as any to put the output of Event Log
\r
207 * entries to stderr when a command-line tool is in verbose mode.
\r
208 * (In particular, this is a better place to put it than in the
\r
209 * front ends, because it only has to be done once for all
\r
210 * platforms. Platforms which don't have a meaningful stderr can
\r
211 * just avoid defining FLAG_STDERR.
\r
213 void log_eventlog(void *handle, const char *event)
\r
215 struct LogContext *ctx = (struct LogContext *)handle;
\r
216 if ((flags & FLAG_STDERR) && (flags & FLAG_VERBOSE)) {
\r
217 fprintf(stderr, "%s\n", event);
\r
220 /* If we don't have a context yet (eg winnet.c init) then skip entirely */
\r
223 if (ctx->logtype != LGTYP_PACKETS &&
\r
224 ctx->logtype != LGTYP_SSHRAW)
\r
226 logprintf(ctx, "Event Log: %s\r\n", event);
\r
231 * Log an SSH packet.
\r
232 * If n_blanks != 0, blank or omit some parts.
\r
233 * Set of blanking areas must be in increasing order.
\r
235 void log_packet(void *handle, int direction, int type,
\r
236 char *texttype, const void *data, int len,
\r
237 int n_blanks, const struct logblank_t *blanks,
\r
238 const unsigned long *seq,
\r
239 unsigned downstream_id, const char *additional_log_text)
\r
241 struct LogContext *ctx = (struct LogContext *)handle;
\r
242 char dumpdata[80], smalldata[5];
\r
243 int p = 0, b = 0, omitted = 0;
\r
244 int output_pos = 0; /* NZ if pending output in dumpdata */
\r
246 if (!(ctx->logtype == LGTYP_SSHRAW ||
\r
247 (ctx->logtype == LGTYP_PACKETS && texttype)))
\r
250 /* Packet header. */
\r
252 logprintf(ctx, "%s packet ",
\r
253 direction == PKT_INCOMING ? "Incoming" : "Outgoing");
\r
256 logprintf(ctx, "#0x%lx, ", *seq);
\r
258 logprintf(ctx, "type %d / 0x%02x (%s)", type, type, texttype);
\r
260 if (downstream_id) {
\r
261 logprintf(ctx, " on behalf of downstream #%u", downstream_id);
\r
262 if (additional_log_text)
\r
263 logprintf(ctx, " (%s)", additional_log_text);
\r
266 logprintf(ctx, "\r\n");
\r
269 * Raw data is logged with a timestamp, so that it's possible
\r
270 * to determine whether a mysterious delay occurred at the
\r
271 * client or server end. (Timestamping the raw data avoids
\r
272 * cluttering the normal case of only logging decrypted SSH
\r
273 * messages, and also adds conceptual rigour in the case where
\r
274 * an SSH message arrives in several pieces.)
\r
279 strftime(buf, 24, "%Y-%m-%d %H:%M:%S", &tm);
\r
280 logprintf(ctx, "%s raw data at %s\r\n",
\r
281 direction == PKT_INCOMING ? "Incoming" : "Outgoing",
\r
286 * Output a hex/ASCII dump of the packet body, blanking/omitting
\r
287 * parts as specified.
\r
292 /* Move to a current entry in the blanking array. */
\r
293 while ((b < n_blanks) &&
\r
294 (p >= blanks[b].offset + blanks[b].len))
\r
296 /* Work out what type of blanking to apply to
\r
298 blktype = PKTLOG_EMIT; /* default */
\r
299 if ((b < n_blanks) &&
\r
300 (p >= blanks[b].offset) &&
\r
301 (p < blanks[b].offset + blanks[b].len))
\r
302 blktype = blanks[b].type;
\r
304 /* If we're about to stop omitting, it's time to say how
\r
305 * much we omitted. */
\r
306 if ((blktype != PKTLOG_OMIT) && omitted) {
\r
307 logprintf(ctx, " (%d byte%s omitted)\r\n",
\r
308 omitted, (omitted==1?"":"s"));
\r
312 /* (Re-)initialise dumpdata as necessary
\r
313 * (start of row, or if we've just stopped omitting) */
\r
314 if (!output_pos && !omitted)
\r
315 sprintf(dumpdata, " %08x%*s\r\n", p-(p%16), 1+3*16+2+16, "");
\r
317 /* Deal with the current byte. */
\r
318 if (blktype == PKTLOG_OMIT) {
\r
322 if (blktype == PKTLOG_BLANK) {
\r
324 sprintf(smalldata, "XX");
\r
325 } else { /* PKTLOG_EMIT */
\r
326 c = ((unsigned char *)data)[p];
\r
327 sprintf(smalldata, "%02x", c);
\r
329 dumpdata[10+2+3*(p%16)] = smalldata[0];
\r
330 dumpdata[10+2+3*(p%16)+1] = smalldata[1];
\r
331 dumpdata[10+1+3*16+2+(p%16)] = (isprint(c) ? c : '.');
\r
332 output_pos = (p%16) + 1;
\r
337 /* Flush row if necessary */
\r
338 if (((p % 16) == 0) || (p == len) || omitted) {
\r
340 strcpy(dumpdata + 10+1+3*16+2+output_pos, "\r\n");
\r
341 logwrite(ctx, dumpdata, strlen(dumpdata));
\r
350 logprintf(ctx, " (%d byte%s omitted)\r\n",
\r
351 omitted, (omitted==1?"":"s"));
\r
355 void *log_init(void *frontend, Conf *conf)
\r
357 struct LogContext *ctx = snew(struct LogContext);
\r
359 ctx->state = L_CLOSED;
\r
360 ctx->frontend = frontend;
\r
361 ctx->conf = conf_copy(conf);
\r
362 ctx->logtype = conf_get_int(ctx->conf, CONF_logtype);
\r
363 ctx->currlogfilename = NULL;
\r
364 bufchain_init(&ctx->queue);
\r
368 void log_free(void *handle)
\r
370 struct LogContext *ctx = (struct LogContext *)handle;
\r
373 bufchain_clear(&ctx->queue);
\r
374 if (ctx->currlogfilename)
\r
375 filename_free(ctx->currlogfilename);
\r
376 conf_free(ctx->conf);
\r
380 void log_reconfig(void *handle, Conf *conf)
\r
382 struct LogContext *ctx = (struct LogContext *)handle;
\r
385 if (!filename_equal(conf_get_filename(ctx->conf, CONF_logfilename),
\r
386 conf_get_filename(conf, CONF_logfilename)) ||
\r
387 conf_get_int(ctx->conf, CONF_logtype) !=
\r
388 conf_get_int(conf, CONF_logtype))
\r
389 reset_logging = TRUE;
\r
391 reset_logging = FALSE;
\r
396 conf_free(ctx->conf);
\r
397 ctx->conf = conf_copy(conf);
\r
399 ctx->logtype = conf_get_int(ctx->conf, CONF_logtype);
\r
406 * translate format codes into time/date strings
\r
407 * and insert them into log file name
\r
409 * "&Y":YYYY "&m":MM "&d":DD "&T":hhmmss "&h":<hostname> "&&":&
\r
411 static Filename *xlatlognam(Filename *src, char *hostname, struct tm *tm)
\r
413 char buf[10], *bufp;
\r
416 int buflen, bufsize;
\r
420 bufsize = FILENAME_MAX;
\r
421 buffer = snewn(bufsize, char);
\r
423 s = filename_to_str(src);
\r
426 /* Let (bufp, len) be the string to append. */
\r
427 bufp = buf; /* don't usually override this */
\r
432 if (*s) switch (c = *s++, tolower((unsigned char)c)) {
\r
434 size = strftime(buf, sizeof(buf), "%Y", tm);
\r
437 size = strftime(buf, sizeof(buf), "%m", tm);
\r
440 size = strftime(buf, sizeof(buf), "%d", tm);
\r
443 size = strftime(buf, sizeof(buf), "%H%M%S", tm);
\r
447 size = strlen(bufp);
\r
459 if (bufsize <= buflen + size) {
\r
460 bufsize = (buflen + size) * 5 / 4 + 512;
\r
461 buffer = sresize(buffer, bufsize, char);
\r
463 memcpy(buffer + buflen, bufp, size);
\r
466 buffer[buflen] = '\0';
\r
468 ret = filename_from_str(buffer);
\r