2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/channels.c.coverity openssh-7.4p1/channels.c
|
|
|
|
--- openssh-7.4p1/channels.c.coverity 2016-12-23 16:40:26.881788686 +0100
|
|
|
|
+++ openssh-7.4p1/channels.c 2016-12-23 16:42:36.244818763 +0100
|
|
|
|
@@ -288,11 +288,11 @@ channel_register_fds(Channel *c, int rfd
|
2011-09-08 22:54:28 +00:00
|
|
|
|
|
|
|
/* enable nonblocking mode */
|
|
|
|
if (nonblock) {
|
|
|
|
- if (rfd != -1)
|
|
|
|
+ if (rfd >= 0)
|
|
|
|
set_nonblock(rfd);
|
|
|
|
- if (wfd != -1)
|
|
|
|
+ if (wfd >= 0)
|
|
|
|
set_nonblock(wfd);
|
|
|
|
- if (efd != -1)
|
|
|
|
+ if (efd >= 0)
|
|
|
|
set_nonblock(efd);
|
|
|
|
}
|
|
|
|
}
|
2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/monitor.c.coverity openssh-7.4p1/monitor.c
|
|
|
|
--- openssh-7.4p1/monitor.c.coverity 2016-12-23 16:40:26.888788688 +0100
|
|
|
|
+++ openssh-7.4p1/monitor.c 2016-12-23 16:40:26.900788691 +0100
|
|
|
|
@@ -411,7 +411,7 @@ monitor_child_preauth(Authctxt *_authctx
|
2013-04-04 14:42:32 +00:00
|
|
|
mm_get_keystate(pmonitor);
|
2011-09-14 15:03:03 +00:00
|
|
|
|
|
|
|
/* Drain any buffered messages from the child */
|
|
|
|
- while (pmonitor->m_log_recvfd != -1 && monitor_read_log(pmonitor) == 0)
|
|
|
|
+ while (pmonitor->m_log_recvfd >= 0 && monitor_read_log(pmonitor) == 0)
|
|
|
|
;
|
|
|
|
|
2018-03-27 14:52:07 +00:00
|
|
|
if (pmonitor->m_recvfd >= 0)
|
2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/monitor_wrap.c.coverity openssh-7.4p1/monitor_wrap.c
|
|
|
|
--- openssh-7.4p1/monitor_wrap.c.coverity 2016-12-23 16:40:26.892788689 +0100
|
|
|
|
+++ openssh-7.4p1/monitor_wrap.c 2016-12-23 16:40:26.900788691 +0100
|
|
|
|
@@ -525,10 +525,10 @@ mm_pty_allocate(int *ptyfd, int *ttyfd,
|
2011-09-14 15:03:03 +00:00
|
|
|
if ((tmp1 = dup(pmonitor->m_recvfd)) == -1 ||
|
|
|
|
(tmp2 = dup(pmonitor->m_recvfd)) == -1) {
|
|
|
|
error("%s: cannot allocate fds for pty", __func__);
|
|
|
|
- if (tmp1 > 0)
|
|
|
|
+ if (tmp1 >= 0)
|
|
|
|
close(tmp1);
|
|
|
|
- if (tmp2 > 0)
|
|
|
|
- close(tmp2);
|
|
|
|
+ /*DEAD CODE if (tmp2 >= 0)
|
|
|
|
+ close(tmp2);*/
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
close(tmp1);
|
2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/openbsd-compat/bindresvport.c.coverity openssh-7.4p1/openbsd-compat/bindresvport.c
|
|
|
|
--- openssh-7.4p1/openbsd-compat/bindresvport.c.coverity 2016-12-19 05:59:41.000000000 +0100
|
|
|
|
+++ openssh-7.4p1/openbsd-compat/bindresvport.c 2016-12-23 16:40:26.901788691 +0100
|
2015-03-20 13:56:04 +00:00
|
|
|
@@ -58,7 +58,7 @@ bindresvport_sa(int sd, struct sockaddr
|
2011-09-09 19:18:35 +00:00
|
|
|
struct sockaddr_in6 *in6;
|
|
|
|
u_int16_t *portp;
|
|
|
|
u_int16_t port;
|
|
|
|
- socklen_t salen;
|
|
|
|
+ socklen_t salen = sizeof(struct sockaddr_storage);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (sa == NULL) {
|
2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/scp.c.coverity openssh-7.4p1/scp.c
|
|
|
|
--- openssh-7.4p1/scp.c.coverity 2016-12-23 16:40:26.856788681 +0100
|
|
|
|
+++ openssh-7.4p1/scp.c 2016-12-23 16:40:26.901788691 +0100
|
|
|
|
@@ -157,7 +157,7 @@ killchild(int signo)
|
2011-09-08 22:54:28 +00:00
|
|
|
{
|
|
|
|
if (do_cmd_pid > 1) {
|
|
|
|
kill(do_cmd_pid, signo ? signo : SIGTERM);
|
|
|
|
- waitpid(do_cmd_pid, NULL, 0);
|
|
|
|
+ (void) waitpid(do_cmd_pid, NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (signo)
|
2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/servconf.c.coverity openssh-7.4p1/servconf.c
|
|
|
|
--- openssh-7.4p1/servconf.c.coverity 2016-12-23 16:40:26.896788690 +0100
|
|
|
|
+++ openssh-7.4p1/servconf.c 2016-12-23 16:40:26.901788691 +0100
|
|
|
|
@@ -1547,7 +1547,7 @@ process_server_config_line(ServerOptions
|
2011-09-09 19:18:35 +00:00
|
|
|
fatal("%s line %d: Missing subsystem name.",
|
|
|
|
filename, linenum);
|
|
|
|
if (!*activep) {
|
|
|
|
- arg = strdelim(&cp);
|
|
|
|
+ /*arg =*/ (void) strdelim(&cp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for (i = 0; i < options->num_subsystems; i++)
|
2017-01-02 14:42:13 +00:00
|
|
|
@@ -1638,8 +1638,9 @@ process_server_config_line(ServerOptions
|
2011-09-14 15:03:03 +00:00
|
|
|
if (*activep && *charptr == NULL) {
|
|
|
|
*charptr = tilde_expand_filename(arg, getuid());
|
|
|
|
/* increase optional counter */
|
|
|
|
- if (intptr != NULL)
|
|
|
|
- *intptr = *intptr + 1;
|
|
|
|
+ /* DEAD CODE intptr is still NULL ;)
|
|
|
|
+ if (intptr != NULL)
|
|
|
|
+ *intptr = *intptr + 1; */
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/serverloop.c.coverity openssh-7.4p1/serverloop.c
|
|
|
|
--- openssh-7.4p1/serverloop.c.coverity 2016-12-19 05:59:41.000000000 +0100
|
|
|
|
+++ openssh-7.4p1/serverloop.c 2016-12-23 16:40:26.902788691 +0100
|
|
|
|
@@ -125,13 +125,13 @@ notify_setup(void)
|
2011-09-08 22:54:28 +00:00
|
|
|
static void
|
|
|
|
notify_parent(void)
|
|
|
|
{
|
|
|
|
- if (notify_pipe[1] != -1)
|
|
|
|
+ if (notify_pipe[1] >= 0)
|
2013-10-14 13:54:41 +00:00
|
|
|
(void)write(notify_pipe[1], "", 1);
|
2011-09-08 22:54:28 +00:00
|
|
|
}
|
|
|
|
static void
|
|
|
|
notify_prepare(fd_set *readset)
|
|
|
|
{
|
|
|
|
- if (notify_pipe[0] != -1)
|
|
|
|
+ if (notify_pipe[0] >= 0)
|
|
|
|
FD_SET(notify_pipe[0], readset);
|
|
|
|
}
|
|
|
|
static void
|
2017-01-02 14:42:13 +00:00
|
|
|
@@ -139,8 +139,8 @@ notify_done(fd_set *readset)
|
2011-09-08 22:54:28 +00:00
|
|
|
{
|
|
|
|
char c;
|
|
|
|
|
|
|
|
- if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
|
|
|
|
- while (read(notify_pipe[0], &c, 1) != -1)
|
|
|
|
+ if (notify_pipe[0] >= 0 && FD_ISSET(notify_pipe[0], readset))
|
|
|
|
+ while (read(notify_pipe[0], &c, 1) >= 0)
|
2018-08-24 20:40:20 +00:00
|
|
|
debug2("%s: reading", __func__);
|
2011-09-08 22:54:28 +00:00
|
|
|
}
|
|
|
|
|
2017-01-02 14:42:13 +00:00
|
|
|
@@ -518,7 +518,7 @@ server_request_tun(void)
|
2011-09-08 22:54:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tun = packet_get_int();
|
2018-03-27 14:52:07 +00:00
|
|
|
- if (auth_opts->force_tun_device != -1) {
|
|
|
|
+ if (auth_opts->force_tun_device >= 0) {
|
|
|
|
if (tun != SSH_TUNID_ANY && auth_opts->force_tun_device != tun)
|
2011-09-08 22:54:28 +00:00
|
|
|
goto done;
|
2018-03-27 14:52:07 +00:00
|
|
|
tun = auth_opts->force_tun_device;
|
2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/sftp.c.coverity openssh-7.4p1/sftp.c
|
|
|
|
--- openssh-7.4p1/sftp.c.coverity 2016-12-19 05:59:41.000000000 +0100
|
|
|
|
+++ openssh-7.4p1/sftp.c 2016-12-23 16:40:26.903788691 +0100
|
|
|
|
@@ -224,7 +224,7 @@ killchild(int signo)
|
2013-10-14 13:54:41 +00:00
|
|
|
{
|
|
|
|
if (sshpid > 1) {
|
|
|
|
kill(sshpid, SIGTERM);
|
|
|
|
- waitpid(sshpid, NULL, 0);
|
|
|
|
+ (void) waitpid(sshpid, NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
_exit(1);
|
2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/ssh-agent.c.coverity openssh-7.4p1/ssh-agent.c
|
|
|
|
--- openssh-7.4p1/ssh-agent.c.coverity 2016-12-19 05:59:41.000000000 +0100
|
|
|
|
+++ openssh-7.4p1/ssh-agent.c 2016-12-23 16:40:26.903788691 +0100
|
|
|
|
@@ -1220,8 +1220,8 @@ main(int ac, char **av)
|
2011-09-09 19:18:35 +00:00
|
|
|
sanitise_stdfd();
|
|
|
|
|
|
|
|
/* drop */
|
|
|
|
- setegid(getgid());
|
|
|
|
- setgid(getgid());
|
|
|
|
+ (void) setegid(getgid());
|
|
|
|
+ (void) setgid(getgid());
|
|
|
|
|
2016-07-25 14:21:15 +00:00
|
|
|
platform_disable_tracing(0); /* strict=no */
|
|
|
|
|
2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/sshd.c.coverity openssh-7.4p1/sshd.c
|
|
|
|
--- openssh-7.4p1/sshd.c.coverity 2016-12-23 16:40:26.897788690 +0100
|
|
|
|
+++ openssh-7.4p1/sshd.c 2016-12-23 16:40:26.904788692 +0100
|
|
|
|
@@ -691,8 +691,10 @@ privsep_preauth(Authctxt *authctxt)
|
2016-02-19 13:42:33 +00:00
|
|
|
|
|
|
|
privsep_preauth_child();
|
2011-09-14 15:03:03 +00:00
|
|
|
setproctitle("%s", "[net]");
|
|
|
|
- if (box != NULL)
|
|
|
|
+ if (box != NULL) {
|
|
|
|
ssh_sandbox_child(box);
|
2013-10-14 13:54:41 +00:00
|
|
|
+ free(box);
|
2011-09-14 15:03:03 +00:00
|
|
|
+ }
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2017-01-02 14:42:13 +00:00
|
|
|
@@ -1386,6 +1388,9 @@ server_accept_loop(int *sock_in, int *so
|
2011-09-08 22:54:28 +00:00
|
|
|
if (num_listen_socks < 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ if (fdset != NULL)
|
2013-10-14 13:54:41 +00:00
|
|
|
+ free(fdset);
|
2011-09-08 22:54:28 +00:00
|
|
|
}
|
|
|
|
|
2016-07-25 14:21:15 +00:00
|
|
|
/*
|