# HG changeset patch # User Matt Johnston # Date 1154958076 0 # Node ID dba106bf6b347abe3689f62fcf6208c877de4429 # Parent 03f65e461915a940939e4cc689fc89721ffc40de Add (disabled by default) LOG_COMMANDS option to log the commands executed by clients. diff -r 03f65e461915 -r dba106bf6b34 options.h --- a/options.h Sat Mar 11 14:59:34 2006 +0000 +++ b/options.h Mon Aug 07 13:41:16 2006 +0000 @@ -199,8 +199,10 @@ * not using the Dropbear client, you'll need to change it */ #define _PATH_SSH_PROGRAM "/usr/bin/dbclient" -/* Multi-purpose binary configuration has now moved. Look at the top - * of the Makefile for instructions, or INSTALL */ +/* Whether to log commands executed by a client. This only logs the + * (single) command sent to the server, not what a user did in a + * shell/sftp session etc. */ +/* #define LOG_COMMANDS */ /******************************************************************* * You shouldn't edit below here unless you know you need to. diff -r 03f65e461915 -r dba106bf6b34 svr-chansession.c --- a/svr-chansession.c Sat Mar 11 14:59:34 2006 +0000 +++ b/svr-chansession.c Mon Aug 07 13:41:16 2006 +0000 @@ -588,6 +588,16 @@ } } +#ifdef LOG_COMMANDS + if (chansess->cmd) { + dropbear_log(LOG_INFO, "user %s executing '%s'", + ses.authstate.printableuser, chansess->cmd); + } else { + dropbear_log(LOG_INFO, "user %s executing login shell", + ses.authstate.printableuser); + } +#endif + if (chansess->term == NULL) { /* no pty */ ret = noptycommand(channel, chansess);