vishalmishra434 / rpms / openssh

Forked from rpms/openssh a month ago
Clone
Jakub Jelen 6cf9b8
diff -up openssh-7.4p1/log.c.log-in-chroot openssh-7.4p1/log.c
Jakub Jelen 6cf9b8
--- openssh-7.4p1/log.c.log-in-chroot	2016-12-19 05:59:41.000000000 +0100
Jakub Jelen 6cf9b8
+++ openssh-7.4p1/log.c	2016-12-23 15:14:33.330168088 +0100
Jakub Jelen 6cf9b8
@@ -250,6 +250,11 @@ debug3(const char *fmt,...)
Petr Lautrbach 7a7b8f
 void
Petr Lautrbach 7a7b8f
 log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr)
Petr Lautrbach 7a7b8f
 {
Petr Lautrbach 7a7b8f
+	log_init_handler(av0, level, facility, on_stderr, 1);
Petr Lautrbach 7a7b8f
+}
Petr Lautrbach 7a7b8f
+
Petr Lautrbach 7a7b8f
+void
Petr Lautrbach 7a7b8f
+log_init_handler(char *av0, LogLevel level, SyslogFacility facility, int on_stderr, int reset_handler) {
Petr Lautrbach 7a7b8f
 #if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
Petr Lautrbach 7a7b8f
 	struct syslog_data sdata = SYSLOG_DATA_INIT;
Petr Lautrbach 7a7b8f
 #endif
Jakub Jelen 6cf9b8
@@ -273,8 +278,10 @@ log_init(char *av0, LogLevel level, Sysl
Petr Lautrbach 7a7b8f
 		exit(1);
Petr Lautrbach 7a7b8f
 	}
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
-	log_handler = NULL;
Petr Lautrbach 7a7b8f
-	log_handler_ctx = NULL;
Petr Lautrbach 7a7b8f
+	if (reset_handler) {
Petr Lautrbach 7a7b8f
+		log_handler = NULL;
Petr Lautrbach 7a7b8f
+		log_handler_ctx = NULL;
Petr Lautrbach 7a7b8f
+	}
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 	log_on_stderr = on_stderr;
Petr Lautrbach 7a7b8f
 	if (on_stderr)
Jakub Jelen 6cf9b8
diff -up openssh-7.4p1/log.h.log-in-chroot openssh-7.4p1/log.h
Jakub Jelen 6cf9b8
--- openssh-7.4p1/log.h.log-in-chroot	2016-12-19 05:59:41.000000000 +0100
Jakub Jelen 6cf9b8
+++ openssh-7.4p1/log.h	2016-12-23 15:14:33.330168088 +0100
Petr Lautrbach 7a7b8f
@@ -49,6 +49,7 @@ typedef enum {
Petr Lautrbach 7a7b8f
 typedef void (log_handler_fn)(LogLevel, const char *, void *);
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 void     log_init(char *, LogLevel, SyslogFacility, int);
Petr Lautrbach 7a7b8f
+void     log_init_handler(char *, LogLevel, SyslogFacility, int, int);
Jakub Jelen bbf61d
 LogLevel log_level_get(void);
Jakub Jelen 5b55d0
 int      log_change_level(LogLevel);
Petr Lautrbach 7a7b8f
 int      log_is_on_stderr(void);
Jakub Jelen 6cf9b8
diff -up openssh-7.4p1/monitor.c.log-in-chroot openssh-7.4p1/monitor.c
Jakub Jelen 6cf9b8
--- openssh-7.4p1/monitor.c.log-in-chroot	2016-12-23 15:14:33.311168085 +0100
Jakub Jelen 6cf9b8
+++ openssh-7.4p1/monitor.c	2016-12-23 15:16:42.154193100 +0100
Jakub Jelen 6cf9b8
@@ -307,6 +307,8 @@ monitor_child_preauth(Authctxt *_authctx
Jakub Jelen 3cd489
 		close(pmonitor->m_log_sendfd);
Petr Lautrbach 7a7b8f
 	pmonitor->m_log_sendfd = pmonitor->m_recvfd = -1;
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
+	pmonitor->m_state = "preauth";
Petr Lautrbach 7a7b8f
+
Jakub Jelen def1de
 	authctxt = (Authctxt *)ssh->authctxt;
Petr Lautrbach 7a7b8f
 	memset(authctxt, 0, sizeof(*authctxt));
Jakub Jelen 3cd489
 	ssh->authctxt = authctxt;
Jakub Jelen 6cf9b8
@@ -405,6 +407,8 @@ monitor_child_postauth(struct monitor *p
Petr Lautrbach 7a7b8f
 	close(pmonitor->m_recvfd);
Petr Lautrbach 7a7b8f
 	pmonitor->m_recvfd = -1;
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
+	pmonitor->m_state = "postauth";
Petr Lautrbach 7a7b8f
+
Petr Lautrbach 7a7b8f
 	monitor_set_child_handler(pmonitor->m_pid);
Jakub Jelen 51f5c1
 	ssh_signal(SIGHUP, &monitor_child_handler);
Jakub Jelen 51f5c1
 	ssh_signal(SIGTERM, &monitor_child_handler);
Jakub Jelen 6cf9b8
@@ -472,7 +476,7 @@ monitor_read_log(struct monitor *pmonito
Petr Lautrbach 7a7b8f
 	if (log_level_name(level) == NULL)
Petr Lautrbach 7a7b8f
 		fatal("%s: invalid log level %u (corrupted message?)",
Petr Lautrbach 7a7b8f
 		    __func__, level);
Petr Lautrbach 7a7b8f
-	do_log2(level, "%s [preauth]", msg);
Petr Lautrbach 7a7b8f
+	do_log2(level, "%s [%s]", msg, pmonitor->m_state);
Petr Lautrbach 7a7b8f
 
Jakub Jelen bbf61d
 	sshbuf_free(logmsg);
Petr Lautrbach 7a7b8f
 	free(msg);
Jakub Jelen 6cf9b8
@@ -1719,13 +1723,28 @@ monitor_init(void)
Jakub Jelen 6cf9b8
 	mon = xcalloc(1, sizeof(*mon));
Jakub Jelen 6cf9b8
 	monitor_openfds(mon, 1);
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
+	mon->m_state = "";
Petr Lautrbach 7a7b8f
+
Petr Lautrbach 7a7b8f
 	return mon;
Petr Lautrbach 7a7b8f
 }
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 void
Petr Lautrbach 7a7b8f
-monitor_reinit(struct monitor *mon)
Petr Lautrbach 7a7b8f
+monitor_reinit(struct monitor *mon, const char *chroot_dir)
Petr Lautrbach 7a7b8f
 {
Petr Lautrbach 7a7b8f
-	monitor_openfds(mon, 0);
Petr Lautrbach 7a7b8f
+	struct stat dev_log_stat;
Petr Lautrbach 7a7b8f
+	char *dev_log_path;
Petr Lautrbach 7a7b8f
+	int do_logfds = 0;
Petr Lautrbach 7a7b8f
+
Petr Lautrbach 7a7b8f
+	if (chroot_dir != NULL) {
Petr Lautrbach 7a7b8f
+		xasprintf(&dev_log_path, "%s/dev/log", chroot_dir);
Petr Lautrbach 7a7b8f
+
Petr Lautrbach 7a7b8f
+		if (stat(dev_log_path, &dev_log_stat) != 0) {
Petr Lautrbach 7a7b8f
+			debug("%s: /dev/log doesn't exist in %s chroot - will try to log via monitor using [postauth] suffix", __func__, chroot_dir);
Petr Lautrbach 7a7b8f
+			do_logfds = 1;
Petr Lautrbach 7a7b8f
+		}
Petr Lautrbach 7a7b8f
+		free(dev_log_path);
Petr Lautrbach 7a7b8f
+	}
Petr Lautrbach 7a7b8f
+	monitor_openfds(mon, do_logfds);
Petr Lautrbach 7a7b8f
 }
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 #ifdef GSSAPI
Jakub Jelen 6cf9b8
diff -up openssh-7.4p1/monitor.h.log-in-chroot openssh-7.4p1/monitor.h
Jakub Jelen 6cf9b8
--- openssh-7.4p1/monitor.h.log-in-chroot	2016-12-23 15:14:33.330168088 +0100
Jakub Jelen 6cf9b8
+++ openssh-7.4p1/monitor.h	2016-12-23 15:16:28.372190424 +0100
Petr Lautrbach 7a7b8f
@@ -83,10 +83,11 @@ struct monitor {
Jakub Jelen 6cf9b8
 	int			 m_log_sendfd;
Jakub Jelen 132f8f
 	struct kex		**m_pkex;
Petr Lautrbach 7a7b8f
 	pid_t			 m_pid;
Petr Lautrbach 7a7b8f
+	char		*m_state;
Petr Lautrbach 7a7b8f
 };
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 struct monitor *monitor_init(void);
Petr Lautrbach 7a7b8f
-void monitor_reinit(struct monitor *);
Petr Lautrbach 7a7b8f
+void monitor_reinit(struct monitor *, const char *);
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 struct Authctxt;
Jakub Jelen def1de
 void monitor_child_preauth(struct ssh *, struct monitor *);
Jakub Jelen 6cf9b8
diff -up openssh-7.4p1/session.c.log-in-chroot openssh-7.4p1/session.c
Jakub Jelen 6cf9b8
--- openssh-7.4p1/session.c.log-in-chroot	2016-12-23 15:14:33.319168086 +0100
Jakub Jelen 6cf9b8
+++ openssh-7.4p1/session.c	2016-12-23 15:18:18.742211853 +0100
Jakub Jelen 6cf9b8
@@ -160,6 +160,7 @@ login_cap_t *lc;
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 static int is_child = 0;
Jakub Jelen 13073f
 static int in_chroot = 0;
Petr Lautrbach 7a7b8f
+static int have_dev_log = 1;
Jakub Jelen 13073f
 
Jakub Jelen 5b55d0
 /* File containing userauth info, if ExposeAuthInfo set */
Jakub Jelen 5b55d0
 static char *auth_info_file = NULL;
Jakub Jelen 6cf9b8
@@ -619,6 +620,7 @@ do_exec(Session *s, const char *command)
Petr Lautrbach 7a7b8f
 	int ret;
Jakub Jelen 13073f
 	const char *forced = NULL, *tty = NULL;
Jakub Jelen 13073f
 	char session_type[1024];
Petr Lautrbach 7a7b8f
+	struct stat dev_log_stat;
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 	if (options.adm_forced_command) {
Petr Lautrbach 7a7b8f
 		original_command = command;
Jakub Jelen 6cf9b8
@@ -676,6 +678,10 @@ do_exec(Session *s, const char *command)
Petr Lautrbach 7a7b8f
 			tty += 5;
Petr Lautrbach 7a7b8f
 	}
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
+	if (lstat("/dev/log", &dev_log_stat) != 0) {
Petr Lautrbach 7a7b8f
+		have_dev_log = 0;
Petr Lautrbach 7a7b8f
+	}
Petr Lautrbach 7a7b8f
+
Jakub Jelen 13073f
 	verbose("Starting session: %s%s%s for %s from %.200s port %d id %d",
Petr Lautrbach 7a7b8f
 	    session_type,
Petr Lautrbach 7a7b8f
 	    tty == NULL ? "" : " on ",
Jakub Jelen 6cf9b8
@@ -1486,14 +1492,6 @@ child_close_fds(void)
Petr Lautrbach 7a7b8f
 	 * descriptors left by system functions.  They will be closed later.
Petr Lautrbach 7a7b8f
 	 */
Petr Lautrbach 7a7b8f
 	endpwent();
Petr Lautrbach 7a7b8f
-
Petr Lautrbach 7a7b8f
-	/*
Petr Lautrbach 7a7b8f
-	 * Close any extra open file descriptors so that we don't have them
Petr Lautrbach 7a7b8f
-	 * hanging around in clients.  Note that we want to do this after
Petr Lautrbach 7a7b8f
-	 * initgroups, because at least on Solaris 2.3 it leaves file
Petr Lautrbach 7a7b8f
-	 * descriptors open.
Petr Lautrbach 7a7b8f
-	 */
Petr Lautrbach 7a7b8f
-	closefrom(STDERR_FILENO + 1);
Petr Lautrbach 7a7b8f
 }
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 /*
Jakub Jelen 6cf9b8
@@ -1629,8 +1627,6 @@ do_child(Session *s, const char *command
Petr Lautrbach 7a7b8f
 			exit(1);
Petr Lautrbach 7a7b8f
 	}
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
-	closefrom(STDERR_FILENO + 1);
Petr Lautrbach 7a7b8f
-
Jakub Jelen 3cd489
 	do_rc_files(ssh, s, shell);
Petr Lautrbach 7a7b8f
 
Jakub Jelen 6cf9b8
 	/* restore SIGPIPE for child */
Jakub Jelen 6cf9b8
@@ -1653,9 +1649,17 @@ do_child(Session *s, const char *command
Petr Lautrbach 7a7b8f
 		argv[i] = NULL;
Petr Lautrbach 7a7b8f
 		optind = optreset = 1;
Petr Lautrbach 7a7b8f
 		__progname = argv[0];
Petr Lautrbach 7a7b8f
-		exit(sftp_server_main(i, argv, s->pw));
Petr Lautrbach 7a7b8f
+		exit(sftp_server_main(i, argv, s->pw, have_dev_log));
Petr Lautrbach 7a7b8f
 	}
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
+	/*
Petr Lautrbach 7a7b8f
+	 * Close any extra open file descriptors so that we don't have them
Petr Lautrbach 7a7b8f
+	 * hanging around in clients.  Note that we want to do this after
Petr Lautrbach 7a7b8f
+	 * initgroups, because at least on Solaris 2.3 it leaves file
Petr Lautrbach 7a7b8f
+	 * descriptors open.
Petr Lautrbach 7a7b8f
+	 */
Petr Lautrbach 7a7b8f
+	closefrom(STDERR_FILENO + 1);
Petr Lautrbach 7a7b8f
+
Petr Lautrbach 7a7b8f
 	fflush(NULL);
Petr Lautrbach 7a7b8f
 
Jakub Jelen 6cf9b8
 	/* Get the last component of the shell name. */
Jakub Jelen 6cf9b8
diff -up openssh-7.4p1/sftp.h.log-in-chroot openssh-7.4p1/sftp.h
Jakub Jelen 6cf9b8
--- openssh-7.4p1/sftp.h.log-in-chroot	2016-12-19 05:59:41.000000000 +0100
Jakub Jelen 6cf9b8
+++ openssh-7.4p1/sftp.h	2016-12-23 15:14:33.331168088 +0100
Jakub Jelen 6cf9b8
@@ -97,5 +97,5 @@
Petr Lautrbach 7a7b8f
 
Jakub Jelen 6cf9b8
 struct passwd;
Jakub Jelen 6cf9b8
 
Jakub Jelen 6cf9b8
-int	sftp_server_main(int, char **, struct passwd *);
Jakub Jelen 6cf9b8
+int	sftp_server_main(int, char **, struct passwd *, int);
Jakub Jelen 6cf9b8
 void	sftp_server_cleanup_exit(int) __attribute__((noreturn));
Jakub Jelen 6cf9b8
diff -up openssh-7.4p1/sftp-server.c.log-in-chroot openssh-7.4p1/sftp-server.c
Jakub Jelen 6cf9b8
--- openssh-7.4p1/sftp-server.c.log-in-chroot	2016-12-19 05:59:41.000000000 +0100
Jakub Jelen 6cf9b8
+++ openssh-7.4p1/sftp-server.c	2016-12-23 15:14:33.331168088 +0100
Jakub Jelen 6cf9b8
@@ -1497,7 +1497,7 @@ sftp_server_usage(void)
Petr Lautrbach 7a7b8f
 }
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 int
Petr Lautrbach 7a7b8f
-sftp_server_main(int argc, char **argv, struct passwd *user_pw)
Petr Lautrbach 7a7b8f
+sftp_server_main(int argc, char **argv, struct passwd *user_pw, int reset_handler)
Petr Lautrbach 7a7b8f
 {
Petr Lautrbach 7a7b8f
 	fd_set *rset, *wset;
Jakub Jelen 132f8f
 	int i, r, in, out, max, ch, skipargs = 0, log_stderr = 0;
Jakub Jelen 6cf9b8
@@ -1511,7 +1511,7 @@ sftp_server_main(int argc, char **argv,
Jakub Jelen 36fef5
 	extern char *__progname;
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 	__progname = ssh_get_progname(argv[0]);
Petr Lautrbach 7a7b8f
-	log_init(__progname, log_level, log_facility, log_stderr);
Petr Lautrbach 7a7b8f
+	log_init_handler(__progname, log_level, log_facility, log_stderr, reset_handler);
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 	pw = pwcopy(user_pw);
Petr Lautrbach 7a7b8f
 
Jakub Jelen 6cf9b8
@@ -1582,7 +1582,7 @@ sftp_server_main(int argc, char **argv,
Petr Lautrbach 7a7b8f
 		}
Petr Lautrbach 7a7b8f
 	}
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
-	log_init(__progname, log_level, log_facility, log_stderr);
Petr Lautrbach 7a7b8f
+	log_init_handler(__progname, log_level, log_facility, log_stderr, reset_handler);
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 190035
 	/*
Jakub Jelen 5878eb
 	 * On platforms where we can, avoid making /proc/self/{mem,maps}
Jakub Jelen 6cf9b8
diff -up openssh-7.4p1/sftp-server-main.c.log-in-chroot openssh-7.4p1/sftp-server-main.c
Jakub Jelen 6cf9b8
--- openssh-7.4p1/sftp-server-main.c.log-in-chroot	2016-12-19 05:59:41.000000000 +0100
Jakub Jelen 6cf9b8
+++ openssh-7.4p1/sftp-server-main.c	2016-12-23 15:14:33.331168088 +0100
Jakub Jelen 6cf9b8
@@ -49,5 +49,5 @@ main(int argc, char **argv)
Jakub Jelen 6cf9b8
 		return 1;
Jakub Jelen 6cf9b8
 	}
Petr Lautrbach 7a7b8f
 
Jakub Jelen 6cf9b8
-	return (sftp_server_main(argc, argv, user_pw));
Jakub Jelen 6cf9b8
+	return (sftp_server_main(argc, argv, user_pw, 0));
Jakub Jelen 6cf9b8
 }
Jakub Jelen 6cf9b8
diff -up openssh-7.4p1/sshd.c.log-in-chroot openssh-7.4p1/sshd.c
Jakub Jelen 6cf9b8
--- openssh-7.4p1/sshd.c.log-in-chroot	2016-12-23 15:14:33.328168088 +0100
Jakub Jelen 6cf9b8
+++ openssh-7.4p1/sshd.c	2016-12-23 15:14:33.332168088 +0100
Jakub Jelen 6cf9b8
@@ -650,7 +650,7 @@ privsep_postauth(Authctxt *authctxt)
Petr Lautrbach 7a7b8f
 	}
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 	/* New socket pair */
Petr Lautrbach 7a7b8f
-	monitor_reinit(pmonitor);
Petr Lautrbach 7a7b8f
+	monitor_reinit(pmonitor, options.chroot_directory);
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 	pmonitor->m_pid = fork();
Petr Lautrbach 7a7b8f
 	if (pmonitor->m_pid == -1)
Jakub Jelen 6cf9b8
@@ -668,6 +668,11 @@ privsep_postauth(Authctxt *authctxt)
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 	close(pmonitor->m_sendfd);
Petr Lautrbach 7a7b8f
 	pmonitor->m_sendfd = -1;
Petr Lautrbach 7a7b8f
+	close(pmonitor->m_log_recvfd);
Petr Lautrbach 7a7b8f
+	pmonitor->m_log_recvfd = -1;
Petr Lautrbach 7a7b8f
+
Petr Lautrbach 7a7b8f
+	if (pmonitor->m_log_sendfd != -1)
Petr Lautrbach 7a7b8f
+		set_log_handler(mm_log_handler, pmonitor);
Petr Lautrbach 7a7b8f
 
Petr Lautrbach 7a7b8f
 	/* Demote the private keys to public keys. */
Petr Lautrbach 7a7b8f
 	demote_sensitive_data();