]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: make scp(1) in SFTP mode output better match original
authordjm@openbsd.org <djm@openbsd.org>
Sat, 7 Aug 2021 00:08:52 +0000 (00:08 +0000)
committerDamien Miller <djm@mindrot.org>
Sat, 7 Aug 2021 00:20:31 +0000 (10:20 +1000)
scp(1) by suppressing "Retrieving [path]" lines that were emitted to support
the interactive sftp(1) client. ok markus@

OpenBSD-Commit-ID: 06be293df5f156a18f366079be2f33fa68001acc

scp.c
sftp-client.c
sftp-client.h

diff --git a/scp.c b/scp.c
index 9be41a26f92b10cbce091f428547d0b1e438efd6..51925455d617d81078944b670a1867a0c9ad14ef 100644 (file)
--- a/scp.c
+++ b/scp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: scp.c,v 1.219 2021/08/07 00:06:30 djm Exp $ */
+/* $OpenBSD: scp.c,v 1.220 2021/08/07 00:08:52 djm Exp $ */
 /*
  * scp - secure remote copy.  This is basically patched BSD rcp which
  * uses ssh to do the data transfer (instead of using rcmd).
@@ -1289,7 +1289,8 @@ source_sftp(int argc, char *src, char *targ,
        debug3_f("copying local %s to remote %s", src, abs_dst);
 
        if (local_is_dir(src) && iamrecursive) {
-               if (upload_dir(conn, src, abs_dst, pflag, 1, 0, 0) != 0) {
+               if (upload_dir(conn, src, abs_dst, pflag,
+                   SFTP_PROGRESS_ONLY, 0, 0) != 0) {
                        fatal("failed to upload directory %s to %s",
                                src, abs_dst);
                }
@@ -1521,7 +1522,7 @@ sink_sftp(int argc, char *dst, const char *src, struct sftp_conn *conn)
                debug("Fetching %s to %s\n", g.gl_pathv[i], abs_dst);
                if (globpath_is_dir(g.gl_pathv[i]) && iamrecursive) {
                        if (download_dir(conn, g.gl_pathv[i], abs_dst, NULL,
-                           pflag, 1, 0, 0) == -1)
+                           pflag, SFTP_PROGRESS_ONLY, 0, 0) == -1)
                                err = -1;
                } else {
                        if (do_download(conn, g.gl_pathv[i], abs_dst, NULL,
index dc9a9a8099bbabe2746a649e653e815a47aef11c..2d43305675d3e8ff2527116c0b92f0a732c40834 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: sftp-client.c,v 1.146 2021/08/07 00:07:18 djm Exp $ */
+/* $OpenBSD: sftp-client.c,v 1.147 2021/08/07 00:08:52 djm Exp $ */
 /*
  * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
  *
@@ -1633,7 +1633,7 @@ download_dir_internal(struct sftp_conn *conn, const char *src, const char *dst,
                error("\"%s\" is not a directory", src);
                return -1;
        }
-       if (print_flag)
+       if (print_flag && print_flag != SFTP_PROGRESS_ONLY)
                mprintf("Retrieving %s\n", src);
 
        if (dirattrib->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) {
@@ -1957,7 +1957,7 @@ upload_dir_internal(struct sftp_conn *conn, const char *src, const char *dst,
                error("\"%s\" is not a directory", src);
                return -1;
        }
-       if (print_flag)
+       if (print_flag && print_flag != SFTP_PROGRESS_ONLY)
                mprintf("Entering %s\n", src);
 
        attrib_clear(&a);
index c7fa04f5be75ce102af2b4abc0c26661b55e8b07..1de6ba8fdc57cfbe14ab7174c45346ade65e8260 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: sftp-client.h,v 1.31 2021/08/07 00:02:41 djm Exp $ */
+/* $OpenBSD: sftp-client.h,v 1.32 2021/08/07 00:08:52 djm Exp $ */
 
 /*
  * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
@@ -61,6 +61,11 @@ struct sftp_limits {
        u_int64_t open_handles;
 };
 
+/* print flag values */
+#define SFTP_QUIET             0       /* be quiet during transfers */
+#define SFTP_PRINT             1       /* list files and show progress bar */
+#define SFTP_PROGRESS_ONLY     2       /* progress bar only */
+
 /*
  * Initialise a SSH filexfer connection. Returns NULL on error or
  * a pointer to a initialized sftp_conn struct on success.