Skip to content

SSH fixes#256

Merged
mroethke merged 10 commits intortrlib:masterfrom
mroethke:ssh_fixes
Sep 6, 2021
Merged

SSH fixes#256
mroethke merged 10 commits intortrlib:masterfrom
mroethke:ssh_fixes

Conversation

@mroethke
Copy link
Copy Markdown
Member

Contribution description

Several fixes for the ssh transport

  • the log prefix did sometimes indicate the wrong function
  • add support for password authentication
  • properly check malloc return values in ssh init
  • fix a deprecation warning from libssh
  • fix constant spinning on send
  • check return values of libssh functions better and translate them explicitly to our internal ones

Issues/PRs references

fixes #212
fixes #250

@NetDEF-CI

This comment has been minimized.

@codecov-commenter
Copy link
Copy Markdown

codecov-commenter commented Jun 18, 2020

Codecov Report

Merging #256 (249b067) into master (56e67e7) will increase coverage by 0.50%.
The diff coverage is n/a.

❗ Current head 249b067 differs from pull request most recent head 18be6e2. Consider uploading reports for the commit 18be6e2 to get more accurate results

@@            Coverage Diff             @@
##           master     #256      +/-   ##
==========================================
+ Coverage   69.60%   70.10%   +0.50%     
==========================================
  Files          17       17              
  Lines        2625     2572      -53     
==========================================
- Hits         1827     1803      -24     
+ Misses        798      769      -29     

@mroethke
Copy link
Copy Markdown
Member Author

ci:rerun

@NetDEF-CI
Copy link
Copy Markdown
Collaborator

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/RPKI-RTRLIBPR-292/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Warnings Generated during build:

Ubuntu 16.04 i386: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 i386:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-292/artifact/UBUNTU1604I386/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 18.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-292/artifact/U1804AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-292/artifact/UBUNTU1604AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 16.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-292/artifact/UBUNTU1604ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 14.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 14.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-292/artifact/UBUNTU1404AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 16.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-292/artifact/UBUNTU1604ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 18.04 ppc64le: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 ppc64le:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-292/artifact/U1804PPC64LE/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Debian 10 amd64: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-292/artifact/DEB10AMD64/ErrorLog/log_lintian.txt)

W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
N: 0 tags overridden; 6 unused overrides

Copy link
Copy Markdown
Member

@smlng smlng left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks good, some suggestions.

Comment on lines +259 to -289
if (!ssh_socket->config.host)
goto error;
ssh_socket->config.port = config->port;

ssh_socket->config.username = lrtr_strdup(config->username);
if (!ssh_socket->config.username)
goto error;

if ((config->password && config->client_privkey_path) || (!config->password && !config->client_privkey_path))
return TR_ERROR;

if (config->bindaddr)
if (config->bindaddr) {
ssh_socket->config.bindaddr = lrtr_strdup(config->bindaddr);
else
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why is the logic different for config->host and config->username compared to e.g. config->bindaddr. The latter is checked first then duplicated the others are duplicated first then checked. IMHO this should be handled in a consistent fashion.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bindaddr is optional. We must first check if it is set and than if the strdup was successful.

continue;
}

// if none of the conditions matched. The string contains at least one character that are not valid utf8
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

minor type /that are/that is/

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

size_t len = strlen(str);

for (size_t i = 0; i <= len; ++i) {
// check if current byte is a single utf char
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

minor: /utf/utf8/ to be consistent with the following comments

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

}

// if none of the conditions matched. The string contains at least one character that are not valid utf8
return false;
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

putting this into an else branch would make all continue statements in all other branches obsolete - but would also make the first if an empty statement. However, I personally would avoid continue for better readability. Maybe rewrite the loop.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

int i = 0;
bool is_utf8 = true;
while (i < len && is_utf8) {
    if (//1 byte) {
        i += 1;
    }
    else if (//2 bytes) {
        i += 2;
    }
    ...
    else {
        is_utf8 = false;
    }
}
return is_utf8;

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

however, just a suggestion not a blocker

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would argue that the current form is more readable, because the continue makes it clear that there is nothing relevant after the if.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I still disagree, all continues are only required bc return false is not in an else branch. A curious developer will tend to look what is skipped over by continue anyway - and will discover its only the return false. I'm not against using continue in general, but here it seems unnecessary to me.

Further, I think it is suboptimal that i is manipulated twice, i.e., in the loop statement (++i) and by all else if cases. Also it is counter intuitive that i is increase by byte-size - 1 - I admit that the for-loop avoids accidentally creating an invite loop, hence I still find something like

int i = 0;
while (i < len) {
    if (// 1 byte utf8) {
        //do stuff
        i += 1;
    }
    else if (//2 byte utf8) {
        // do stuff
        i += 2;
    }
    ...
    else {
        return false;
    }
}
return true;

easier to understand and less error prone.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm starting to think that you are right, changed it accordingly.

if ((str[i] & UTF8_ONE_BYTE_MASK) == UTF8_ONE_BYTE_PREFIX) {
continue;

// check if current byte is the start of a two byte utf8 char and validate subsequent bytes
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

minor: indention of comment not aligned like comment above? Same for next 2 else if.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

@NetDEF-CI

This comment has been minimized.

{
size_t len = strlen(str);

for (size_t i = 0; i <= len; ++i) {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldn't this be i < len instead of i <= len?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. fixed.

@mroethke
Copy link
Copy Markdown
Member Author

I also noticed two additional problems myself.

  1. I forgot to amend the help string and the man page
  2. The option -s to force the rtrclient to interpret the string as a path to a private key collided with another global option. I switched it to use -r.

@NetDEF-CI
Copy link
Copy Markdown
Collaborator

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/RPKI-RTRLIBPR-302/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Failed

FreeBSD 11 amd64: Failed (click for details)

Make Debug failed for FreeBSD 11 amd64:
(see full Make Debug log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-302/artifact/FBSD11AMD64/ErrorLog/log_make_debug.txt)

[  1%] Building C object CMakeFiles/rtrlib.dir/rtrlib/rtr_mgr.c.o
warning: unknown warning option '-Wfree-nonheap-object'; did you mean '-Wsequence-point'? [-Wunknown-warning-option]
warning: unknown warning option '-Werror=cast-function-type'; did you mean '-Werror=bad-function-cast'? [-Wunknown-warning-option]
2 warnings generated.
[  3%] Building C object CMakeFiles/rtrlib.dir/rtrlib/lib/utils.c.o
warning: unknown warning option '-Wfree-nonheap-object'; did you mean '-Wsequence-point'? [-Wunknown-warning-option]
warning: unknown warning option '-Werror=cast-function-type'; did you mean '-Werror=bad-function-cast'? [-Wunknown-warning-option]
2 warnings generated.
[  5%] Building C object CMakeFiles/rtrlib.dir/rtrlib/lib/alloc_utils.c.o
Successful on other platforms/tests
  • Ubuntu 16.04 amd64
  • Fedora 31 amd64
  • Debian 9 arm8
  • Debian 9 amd64
  • Ubuntu 18.04 arm7
  • CentOS 7 amd64
  • Debian 8 amd64
  • Ubuntu 20.04 arm8
  • Ubuntu 18.04 arm8
  • Ubuntu 14.04 amd64
  • Debian 10 amd64
  • Fedora 29 amd64
  • CentOS 8 amd64
  • Ubuntu 16.04 arm7
  • OpenBSD 6 amd64
  • CentOS 6 amd64
  • Ubuntu 18.04 amd64
  • Ubuntu 16.04 i386
  • FreeBSD 12 amd64
  • Ubuntu 18.04 ppc64le
  • Ubuntu 16.04 arm8
  • Debian 9 arm7
  • NetBSD 8 amd64
  • Alpine amd64

Warnings Generated during build:

Ubuntu 16.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-302/artifact/UBUNTU1604AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 18.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-302/artifact/U1804ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 20.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 20.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-302/artifact/U2004ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-302/artifact/U1804ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 14.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 14.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-302/artifact/UBUNTU1404AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Debian 10 amd64: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-302/artifact/DEB10AMD64/ErrorLog/log_lintian.txt)

W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
N: 0 tags overridden; 6 unused overrides
Ubuntu 16.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-302/artifact/UBUNTU1604ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 18.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-302/artifact/U1804AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 i386: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 i386:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-302/artifact/UBUNTU1604I386/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 18.04 ppc64le: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 ppc64le:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-302/artifact/U1804PPC64LE/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-302/artifact/UBUNTU1604ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable

@NetDEF-CI
Copy link
Copy Markdown
Collaborator

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/RPKI-RTRLIBPR-327/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Warnings Generated during build:

Ubuntu 18.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-327/artifact/U1804AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-327/artifact/UBUNTU1604ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Debian 10 amd64: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-327/artifact/DEB10AMD64/ErrorLog/log_lintian.txt)

W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
N: 0 tags overridden; 6 unused overrides
Ubuntu 18.04 ppc64le: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 ppc64le:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-327/artifact/U1804PPC64LE/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-327/artifact/U1804ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-327/artifact/UBUNTU1604AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 16.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-327/artifact/UBUNTU1604ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 16.04 i386: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 i386:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-327/artifact/UBUNTU1604I386/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 18.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-327/artifact/U1804ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 14.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 14.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-327/artifact/UBUNTU1404AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 20.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 20.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-327/artifact/U2004ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional

@NetDEF-CI
Copy link
Copy Markdown
Collaborator

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/RPKI-RTRLIBPR-328/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Warnings Generated during build:

Ubuntu 18.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-328/artifact/U1804AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 ppc64le: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 ppc64le:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-328/artifact/U1804PPC64LE/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-328/artifact/UBUNTU1604ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Debian 10 amd64: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-328/artifact/DEB10AMD64/ErrorLog/log_lintian.txt)

W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
N: 0 tags overridden; 6 unused overrides
Ubuntu 16.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-328/artifact/UBUNTU1604AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 16.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-328/artifact/UBUNTU1604ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 18.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-328/artifact/U1804ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 i386: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 i386:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-328/artifact/UBUNTU1604I386/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 14.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 14.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-328/artifact/UBUNTU1404AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 20.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 20.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-328/artifact/U2004ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-328/artifact/U1804ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional

@NetDEF-CI
Copy link
Copy Markdown
Collaborator

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/RPKI-RTRLIBPR-329/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Warnings Generated during build:

Ubuntu 18.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-329/artifact/U1804AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 ppc64le: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 ppc64le:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-329/artifact/U1804PPC64LE/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-329/artifact/UBUNTU1604ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 16.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-329/artifact/UBUNTU1604ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Debian 10 amd64: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-329/artifact/DEB10AMD64/ErrorLog/log_lintian.txt)

W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
N: 0 tags overridden; 6 unused overrides
Ubuntu 16.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-329/artifact/UBUNTU1604AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 18.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-329/artifact/U1804ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 i386: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 i386:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-329/artifact/UBUNTU1604I386/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 14.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 14.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-329/artifact/UBUNTU1404AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 20.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 20.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-329/artifact/U2004ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-329/artifact/U1804ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional

@mroethke
Copy link
Copy Markdown
Member Author

mroethke commented Nov 6, 2020

ping @pguibert6WIND

@mroethke
Copy link
Copy Markdown
Member Author

mroethke commented Dec 8, 2020

ping @pguibert6WIND

@NetDEF-CI

This comment has been minimized.

@NetDEF-CI
Copy link
Copy Markdown
Collaborator

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Warnings Generated during build:

Debian 10 amd64: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/artifact/DEB10AMD64/ErrorLog/log_lintian.txt)

W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
N: 0 tags overridden; 6 unused overrides
Ubuntu 18.04 ppc64le: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 ppc64le:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/artifact/U1804PPC64LE/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/artifact/U1804AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 i386: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 i386:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/artifact/U18I386/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/artifact/UBUNTU1604ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Debian 11 amd64: Successful with additional warnings

Debian Package lintian failed for Debian 11 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/artifact/DEB11AMD64/ErrorLog/log_lintian.txt)

E: librtr-dbg: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: librtr-dev: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: librtr-doc: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: librtr0: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: rtr-tools: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: rtr-tools-dbg: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 i386: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 i386:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/artifact/UBUNTU1604I386/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 16.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/artifact/UBUNTU1604ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 16.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/artifact/UBUNTU1604AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 18.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/artifact/U1804ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 14.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 14.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/artifact/UBUNTU1404AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 20.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 20.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/artifact/U2004ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-336/artifact/U1804ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional

@waehlisch
Copy link
Copy Markdown
Member

ci:rerun

@NetDEF-CI
Copy link
Copy Markdown
Collaborator

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/RPKI-RTRLIBPR-337/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Failed

Ubuntu 16.04 arm7: Failed (click for details) Ubuntu 16.04 arm7: No useful log found
Successful on other platforms/tests
  • Alpine amd64
  • Debian 10 amd64
  • FreeBSD 11 amd64
  • Ubuntu 18.04 ppc64le
  • Debian 8 amd64
  • Fedora 29 amd64
  • CentOS 6 amd64
  • Debian 11 amd64
  • OpenBSD 6 amd64
  • FreeBSD 12 amd64
  • Ubuntu 18.04 i386
  • Ubuntu 18.04 amd64
  • Ubuntu 16.04 i386
  • NetBSD 8 amd64
  • Ubuntu 16.04 arm8
  • CentOS 7 amd64
  • Ubuntu 16.04 amd64
  • Debian 9 arm7
  • Debian 9 amd64
  • Debian 9 arm8
  • Fedora 31 amd64
  • CentOS 8 amd64
  • Ubuntu 18.04 arm7
  • Ubuntu 14.04 amd64
  • Ubuntu 20.04 arm8
  • Ubuntu 18.04 arm8

Warnings Generated during build:

Debian 10 amd64: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-337/artifact/DEB10AMD64/ErrorLog/log_lintian.txt)

W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
N: 0 tags overridden; 6 unused overrides
Ubuntu 18.04 ppc64le: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 ppc64le:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-337/artifact/U1804PPC64LE/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Debian 11 amd64: Successful with additional warnings

Debian Package lintian failed for Debian 11 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-337/artifact/DEB11AMD64/ErrorLog/log_lintian.txt)

E: librtr-dbg: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: librtr-dev: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: librtr-doc: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: librtr0: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: rtr-tools: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: rtr-tools-dbg: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 i386: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 i386:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-337/artifact/U18I386/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-337/artifact/U1804AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 i386: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 i386:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-337/artifact/UBUNTU1604I386/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 16.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-337/artifact/UBUNTU1604ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 16.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-337/artifact/UBUNTU1604AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 18.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-337/artifact/U1804ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 14.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 14.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-337/artifact/UBUNTU1404AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 20.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 20.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-337/artifact/U2004ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-337/artifact/U1804ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional

It does not make much sense to set both in non interactive
authentication, but one of them has to be set.
libssh has deprecated ssh_is_known_server, ssh_session_is_known_server
should be used instead. It is available since version 0.8.0, we will use
it if available.
The timeout in the tr_ssh_recv implementation was hard coded to 1 second,
instead of using the provided timeout.
…nnel_select

ssh_channel_select can return SSH_EINTR, SSH_ERROR and SSH_OK.
Handle SSH_EINTR and SSH_ERROR accordingly and continue for SSH_OK.
Some functions returned SSH_* error values, instead of TR_* error values
@NetDEF-CI
Copy link
Copy Markdown
Collaborator

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Warnings Generated during build:

Debian 10 amd64: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/artifact/DEB10AMD64/ErrorLog/log_lintian.txt)

W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
N: 0 tags overridden; 6 unused overrides
Ubuntu 16.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/artifact/UBUNTU1604ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 18.04 ppc64le: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 ppc64le:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/artifact/U1804PPC64LE/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 i386: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 i386:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/artifact/U18I386/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/artifact/U1804AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 i386: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 i386:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/artifact/UBUNTU1604I386/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Debian 11 amd64: Successful with additional warnings

Debian Package lintian failed for Debian 11 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/artifact/DEB11AMD64/ErrorLog/log_lintian.txt)

E: librtr-dbg: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: librtr-dev: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: librtr-doc: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: librtr0: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: rtr-tools: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
E: rtr-tools-dbg: malformed-override Unknown tag latest-debian-changelog-entry-changed-to-native in line 1
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 16.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/artifact/UBUNTU1604AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 16.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 16.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/artifact/UBUNTU1604ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 18.04 arm7: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm7:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/artifact/U1804ARM7/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 14.04 amd64: Successful with additional warnings

Debian Package lintian failed for Ubuntu 14.04 amd64:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/artifact/UBUNTU1404AMD64/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
Ubuntu 20.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 20.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/artifact/U2004ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional
Ubuntu 18.04 arm8: Successful with additional warnings

Debian Package lintian failed for Ubuntu 18.04 arm8:
(see full package build log at https://ci1.netdef.org/browse/RPKI-RTRLIBPR-338/artifact/U1804ARM8/ErrorLog/log_lintian.txt)

E: librtr0 changes: bad-distribution-in-changes-file stable
W: librtr-dbg: priority-extra-is-replaced-by-priority-optional
W: rtr-tools-dbg: priority-extra-is-replaced-by-priority-optional

@mroethke mroethke merged commit b3bcfeb into rtrlib:master Sep 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Extend SSH transport to allow for password authentication SSH transport does not honor sync timeout

6 participants