mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-26 01:32:25 +00:00
The logging module now contains a local copy of cfg too.
[originally from svn r2566]
This commit is contained in:
parent
ac2367bc72
commit
2d469ba497
48
logging.c
48
logging.c
@ -12,6 +12,7 @@ struct LogContext {
|
|||||||
FILE *lgfp;
|
FILE *lgfp;
|
||||||
char currlogfilename[FILENAME_MAX];
|
char currlogfilename[FILENAME_MAX];
|
||||||
void *frontend;
|
void *frontend;
|
||||||
|
Config cfg;
|
||||||
};
|
};
|
||||||
|
|
||||||
static void xlatlognam(char *d, char *s, char *hostname, struct tm *tm);
|
static void xlatlognam(char *d, char *s, char *hostname, struct tm *tm);
|
||||||
@ -22,8 +23,8 @@ static void xlatlognam(char *d, char *s, char *hostname, struct tm *tm);
|
|||||||
void logtraffic(void *handle, unsigned char c, int logmode)
|
void logtraffic(void *handle, unsigned char c, int logmode)
|
||||||
{
|
{
|
||||||
struct LogContext *ctx = (struct LogContext *)handle;
|
struct LogContext *ctx = (struct LogContext *)handle;
|
||||||
if (cfg.logtype > 0) {
|
if (ctx->cfg.logtype > 0) {
|
||||||
if (cfg.logtype == logmode) {
|
if (ctx->cfg.logtype == logmode) {
|
||||||
/* deferred open file from pgm start? */
|
/* deferred open file from pgm start? */
|
||||||
if (!ctx->lgfp)
|
if (!ctx->lgfp)
|
||||||
logfopen(ctx);
|
logfopen(ctx);
|
||||||
@ -49,7 +50,7 @@ void log_eventlog(void *handle, char *event)
|
|||||||
fprintf(stderr, "%s\n", event);
|
fprintf(stderr, "%s\n", event);
|
||||||
fflush(stderr);
|
fflush(stderr);
|
||||||
}
|
}
|
||||||
if (cfg.logtype != LGTYP_PACKETS)
|
if (ctx->cfg.logtype != LGTYP_PACKETS)
|
||||||
return;
|
return;
|
||||||
if (!ctx->lgfp)
|
if (!ctx->lgfp)
|
||||||
logfopen(ctx);
|
logfopen(ctx);
|
||||||
@ -67,7 +68,7 @@ void log_packet(void *handle, int direction, int type,
|
|||||||
int i, j;
|
int i, j;
|
||||||
char dumpdata[80], smalldata[5];
|
char dumpdata[80], smalldata[5];
|
||||||
|
|
||||||
if (cfg.logtype != LGTYP_PACKETS)
|
if (ctx->cfg.logtype != LGTYP_PACKETS)
|
||||||
return;
|
return;
|
||||||
if (!ctx->lgfp)
|
if (!ctx->lgfp)
|
||||||
logfopen(ctx);
|
logfopen(ctx);
|
||||||
@ -104,7 +105,7 @@ void logfopen(void *handle)
|
|||||||
if (ctx->lgfp)
|
if (ctx->lgfp)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (!cfg.logtype)
|
if (!ctx->cfg.logtype)
|
||||||
return;
|
return;
|
||||||
sprintf(writemod, "wb"); /* default to rewrite */
|
sprintf(writemod, "wb"); /* default to rewrite */
|
||||||
|
|
||||||
@ -112,21 +113,21 @@ void logfopen(void *handle)
|
|||||||
tm = *localtime(&t);
|
tm = *localtime(&t);
|
||||||
|
|
||||||
/* substitute special codes in file name */
|
/* substitute special codes in file name */
|
||||||
xlatlognam(ctx->currlogfilename, cfg.logfilename,cfg.host, &tm);
|
xlatlognam(ctx->currlogfilename, ctx->cfg.logfilename,ctx->cfg.host, &tm);
|
||||||
|
|
||||||
ctx->lgfp = fopen(ctx->currlogfilename, "r"); /* file already present? */
|
ctx->lgfp = fopen(ctx->currlogfilename, "r"); /* file already present? */
|
||||||
if (ctx->lgfp) {
|
if (ctx->lgfp) {
|
||||||
int i;
|
int i;
|
||||||
fclose(ctx->lgfp);
|
fclose(ctx->lgfp);
|
||||||
if (cfg.logxfovr != LGXF_ASK) {
|
if (ctx->cfg.logxfovr != LGXF_ASK) {
|
||||||
i = ((cfg.logxfovr == LGXF_OVR) ? 2 : 1);
|
i = ((ctx->cfg.logxfovr == LGXF_OVR) ? 2 : 1);
|
||||||
} else
|
} else
|
||||||
i = askappend(ctx->frontend, ctx->currlogfilename);
|
i = askappend(ctx->frontend, ctx->currlogfilename);
|
||||||
if (i == 1)
|
if (i == 1)
|
||||||
writemod[0] = 'a'; /* set append mode */
|
writemod[0] = 'a'; /* set append mode */
|
||||||
else if (i == 0) { /* cancelled */
|
else if (i == 0) { /* cancelled */
|
||||||
ctx->lgfp = NULL;
|
ctx->lgfp = NULL;
|
||||||
cfg.logtype = 0; /* disable logging */
|
ctx->cfg.logtype = 0; /* disable logging */
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -141,9 +142,9 @@ void logfopen(void *handle)
|
|||||||
|
|
||||||
sprintf(buf, "%s session log (%s mode) to file: ",
|
sprintf(buf, "%s session log (%s mode) to file: ",
|
||||||
(writemod[0] == 'a') ? "Appending" : "Writing new",
|
(writemod[0] == 'a') ? "Appending" : "Writing new",
|
||||||
(cfg.logtype == LGTYP_ASCII ? "ASCII" :
|
(ctx->cfg.logtype == LGTYP_ASCII ? "ASCII" :
|
||||||
cfg.logtype == LGTYP_DEBUG ? "raw" :
|
ctx->cfg.logtype == LGTYP_DEBUG ? "raw" :
|
||||||
cfg.logtype == LGTYP_PACKETS ? "SSH packets" : "<ukwn>"));
|
ctx->cfg.logtype == LGTYP_PACKETS ? "SSH packets" : "<ukwn>"));
|
||||||
/* Make sure we do not exceed the output buffer size */
|
/* Make sure we do not exceed the output buffer size */
|
||||||
strncat(buf, ctx->currlogfilename, 128);
|
strncat(buf, ctx->currlogfilename, 128);
|
||||||
buf[strlen(buf)] = '\0';
|
buf[strlen(buf)] = '\0';
|
||||||
@ -160,14 +161,35 @@ void logfclose(void *handle)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void *log_init(void *frontend)
|
void *log_init(void *frontend, Config *cfg)
|
||||||
{
|
{
|
||||||
struct LogContext *ctx = smalloc(sizeof(struct LogContext));
|
struct LogContext *ctx = smalloc(sizeof(struct LogContext));
|
||||||
ctx->lgfp = NULL;
|
ctx->lgfp = NULL;
|
||||||
ctx->frontend = frontend;
|
ctx->frontend = frontend;
|
||||||
|
ctx->cfg = *cfg; /* STRUCTURE COPY */
|
||||||
return ctx;
|
return ctx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void log_reconfig(void *handle, Config *cfg)
|
||||||
|
{
|
||||||
|
struct LogContext *ctx = (struct LogContext *)handle;
|
||||||
|
int reset_logging;
|
||||||
|
|
||||||
|
if (strcmp(ctx->cfg.logfilename, cfg->logfilename) ||
|
||||||
|
ctx->cfg.logtype != cfg->logtype)
|
||||||
|
reset_logging = TRUE;
|
||||||
|
else
|
||||||
|
reset_logging = FALSE;
|
||||||
|
|
||||||
|
if (reset_logging)
|
||||||
|
logfclose(logctx);
|
||||||
|
|
||||||
|
ctx->cfg = *cfg; /* STRUCTURE COPY */
|
||||||
|
|
||||||
|
if (reset_logging)
|
||||||
|
logfopen(logctx);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* translate format codes into time/date strings
|
* translate format codes into time/date strings
|
||||||
* and insert them into log file name
|
* and insert them into log file name
|
||||||
|
2
plink.c
2
plink.c
@ -545,7 +545,7 @@ int main(int argc, char **argv)
|
|||||||
fprintf(stderr, "Unable to open connection:\n%s", error);
|
fprintf(stderr, "Unable to open connection:\n%s", error);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
logctx = log_init(NULL);
|
logctx = log_init(NULL, &cfg);
|
||||||
back->provide_logctx(backhandle, logctx);
|
back->provide_logctx(backhandle, logctx);
|
||||||
sfree(realhost);
|
sfree(realhost);
|
||||||
}
|
}
|
||||||
|
2
psftp.c
2
psftp.c
@ -1833,7 +1833,7 @@ static int psftp_connect(char *userhost, char *user, int portnumber)
|
|||||||
fprintf(stderr, "ssh_init: %s\n", err);
|
fprintf(stderr, "ssh_init: %s\n", err);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
logctx = log_init(NULL);
|
logctx = log_init(NULL, &cfg);
|
||||||
back->provide_logctx(backhandle, logctx);
|
back->provide_logctx(backhandle, logctx);
|
||||||
ssh_sftp_init();
|
ssh_sftp_init();
|
||||||
if (verbose && realhost != NULL)
|
if (verbose && realhost != NULL)
|
||||||
|
3
putty.h
3
putty.h
@ -529,7 +529,8 @@ void term_provide_logctx(Terminal *term, void *logctx);
|
|||||||
/*
|
/*
|
||||||
* Exports from logging.c.
|
* Exports from logging.c.
|
||||||
*/
|
*/
|
||||||
void *log_init(void *frontend);
|
void *log_init(void *frontend, Config *cfg);
|
||||||
|
void log_reconfig(void *logctx, Config *cfg);
|
||||||
void logfopen(void *logctx);
|
void logfopen(void *logctx);
|
||||||
void logfclose(void *logctx);
|
void logfclose(void *logctx);
|
||||||
void logtraffic(void *logctx, unsigned char c, int logmode);
|
void logtraffic(void *logctx, unsigned char c, int logmode);
|
||||||
|
2
scp.c
2
scp.c
@ -577,7 +577,7 @@ static void do_cmd(char *host, char *user, char *cmd)
|
|||||||
err = back->init(NULL, &backhandle, &cfg, cfg.host, cfg.port, &realhost,0);
|
err = back->init(NULL, &backhandle, &cfg, cfg.host, cfg.port, &realhost,0);
|
||||||
if (err != NULL)
|
if (err != NULL)
|
||||||
bump("ssh_init: %s", err);
|
bump("ssh_init: %s", err);
|
||||||
logctx = log_init(NULL);
|
logctx = log_init(NULL, &cfg);
|
||||||
back->provide_logctx(backhandle, logctx);
|
back->provide_logctx(backhandle, logctx);
|
||||||
ssh_scp_init();
|
ssh_scp_init();
|
||||||
if (verbose && realhost != NULL)
|
if (verbose && realhost != NULL)
|
||||||
|
@ -2407,7 +2407,7 @@ int main(int argc, char **argv)
|
|||||||
show_mouseptr(inst, 1);
|
show_mouseptr(inst, 1);
|
||||||
|
|
||||||
inst->term = term_init(&cfg, inst);
|
inst->term = term_init(&cfg, inst);
|
||||||
inst->logctx = log_init(inst);
|
inst->logctx = log_init(inst, &cfg);
|
||||||
term_provide_logctx(inst->term, inst->logctx);
|
term_provide_logctx(inst->term, inst->logctx);
|
||||||
|
|
||||||
inst->back = &pty_backend;
|
inst->back = &pty_backend;
|
||||||
|
@ -544,7 +544,7 @@ int main(int argc, char **argv)
|
|||||||
/*
|
/*
|
||||||
* Start up the connection.
|
* Start up the connection.
|
||||||
*/
|
*/
|
||||||
logctx = log_init(NULL);
|
logctx = log_init(NULL, &cfg);
|
||||||
{
|
{
|
||||||
char *error;
|
char *error;
|
||||||
char *realhost;
|
char *realhost;
|
||||||
|
9
window.c
9
window.c
@ -507,7 +507,7 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show)
|
|||||||
hwnd = NULL;
|
hwnd = NULL;
|
||||||
|
|
||||||
term = term_init(&cfg, NULL);
|
term = term_init(&cfg, NULL);
|
||||||
logctx = log_init(NULL);
|
logctx = log_init(NULL, &cfg);
|
||||||
term_provide_logctx(term, logctx);
|
term_provide_logctx(term, logctx);
|
||||||
|
|
||||||
cfgtopalette();
|
cfgtopalette();
|
||||||
@ -1760,11 +1760,8 @@ static LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(prev_cfg.logfilename, cfg.logfilename) ||
|
/* Pass new config data to the logging module */
|
||||||
prev_cfg.logtype != cfg.logtype) {
|
log_reconfig(logctx, &cfg);
|
||||||
logfclose(logctx); /* reset logging */
|
|
||||||
logfopen(logctx);
|
|
||||||
}
|
|
||||||
|
|
||||||
sfree(logpal);
|
sfree(logpal);
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user