rust-lang / cargo

The Rust package manager
https://doc.rust-lang.org/cargo
Apache License 2.0
12.78k stars 2.42k forks source link

Cargo update from GitHub Enterprise yields "the SSL certificate is invalid" #3993

Closed JoeyAcc closed 7 years ago

JoeyAcc commented 7 years ago

We have a GitHub Enterprise server here at work, and a project setup that uses neon to bind Rust code to Node.JS.

In terms of dependencies the setup roughly looks like this: top-level consumer app (sbr-viewer-ws)rust-backed npm module (sbr-validate-npm)multiple rust dependencies (regular rust crates e.g. sbr-xquery-interpreter-api). Manual cloning and pulling works fine on both GitHub.com and GHE, but this fails:

accept@vm-jenkins2:~/downloads/sbr-viewer-ws/node_modules/sbr-validate-npm/native$ cargo update --verbose
    Updating registry `https://github.com/rust-lang/crates.io-index`
    Updating git repository `https://github.acc.nl/AcceptDevelopmentBV/sbr-xquery-interpreter-api`
error: failed to load source for a dependency on `sbr-xquery-interpreter-api`

Caused by:
  Unable to update https://github.acc.nl/AcceptDevelopmentBV/sbr-xquery-interpreter-api

Caused by:
  failed to fetch into /home/accept/.cargo/git/db/sbr-xquery-interpreter-api-387d6c59da00e16a

Caused by:
  [16/-17] the SSL certificate is invalid

I can't be sure but since manual cloning works fine, I'm inclined to believe that the certificates are properly installed, and Cargo somehow can't handle it. I've also heard on multiple occasions that Cargo uses libgit2 and that libgit2 doesn't handle custom certificates properly. I have to wonder: is that the root cause of this issue?

alexcrichton commented 7 years ago

Thanks for the report! So it looks like you're on Linux, and I'm going to initially assume that you're using rustup and/or the official toolchains. In that case the SSL library in use is OpenSSL and it's linked statically, so we're not using the system SSL implementation. This means that we have to ourselves instruct OpenSSL where to find certificates, and the crate which does this isn't entirely principled about how it does so.

So my guess as to what's happening here is that the probing for ssl certs is perhaps choosing a different location than where the actual certificates are living. Do you know where the valid SSL certificates are located? Does some combination of SSL_CERT_{FILE,DIR} work for instructing Cargo where the SSL certificates are? Once we sort that out I figure we can determine what patch needs to be applied to Cargo

JoeyAcc commented 7 years ago

Thank you for writing/maintaining an awesome project, Cargo is hands-down one of the best build tools I've ever used (measured by frustration and anger when trying to get things done, or rather lack thereof :) ).

Linux: ✓ (At least the build server, but that's what matters here) Rustup: ✓ Official Rust toolchains: ✓ (We use nightlies as the sbr-xquery-interpreter-api project uses some unstable Rust features)

The cert installation procedure is as follows:

  1. Copy the company_cert.pem file to /etc/ssl/certs/
  2. Execute sudo dpkg-reconfigure ca-certificates, which takes care of actually making the cert known to the system as a whole (apologies if it's redundant, I want the info to be as complete as I can make it).

BTW, I did notice that /etc/ssl/certs/ is not in this list, I don't know what the exact consequences of that are?

As for SSL_CERT_{FILE,DIR}, specifically executing both export SSL_CERT_DIR=/etc/ssl/certs and export SSL_CERT_FILE=/etc/ssl/certs/company_cert.pem has an effect on whether or not the build can fetch normally. Withholding either results in fetch issues from github.com (rather than GitHub Enterprise, which surprised me):

    Updating registry `https://github.com/rust-lang/crates.io-index`
error: failed to load source for a dependency on `neon`

Caused by:
  Unable to update registry https://github.com/rust-lang/crates.io-index

Caused by:
  failed to fetch `https://github.com/rust-lang/crates.io-index`

To learn more, run the command again with --verbose.

To get things building in the meantime I had to write a workaround, which works but is somewhat brittle: It involves invoking a bash script that manually clones the Rust dependencies of sbr-validate-npm, then edits the corresponding dependencies in Cargo.toml to point to those local clones, and only then starts the build.

If there's any other info I can provide, please let me know and I'll add it.

alexcrichton commented 7 years ago

Interesting! So to confirm, it was possible to clone from GitHub Enterprise when you set the environment variables? I think openssl-probe should be inferring SSL_CERT_DIR=/etc/ssl/certs as down near the bottom it'll append the certs dir. The openssl-probe crate won't, though, infer the value you mentioned for SSL_CERT_FILE.

If you configure these env vars and it makes GH Enterprise works but breaks the actual GH, that's also bad though! I forget the precise mechanism that the DIR and FILE env vars configure, but IIRC you only really need to configure one or the other. The FILE one is "here's a bundle of valid certs" (I think) whereas the DIR one is "here's a giant dir of valid certs". It may be the case that openssl-probe is inferring a value for the FILE variable but that's causing breakage if there's custom certs in the dir too?

We're definitely quite interested in finding a fix here, just gotta figure out the best way!

JoeyAcc commented 7 years ago

It was possible to clone manually i.e. using command line git. This is also what my workaround build script does: first it manually clones the dependencies using git clone, then it updates the relevant Cargo.toml files to point to those newly-cloned dependencies, and only then it builds with neon build (which delegates a part to cargo build).

At this moment, trying to update the dependencies using cargo fails on those certs, no matter what I do.

And yeah it would be more intuitive that I'd only need one of SSL_CERT_* env vars, but I tried all 4 combinations and setting both SSL_CERT_FILE and SSL_CERT_DIR is the only thing that actually does the job so far.

alexcrichton commented 7 years ago

Ah sorry I'm personally no expert on SSL certificate configuration, nor how the directories/filesystems work on distros. At this point I'm not sure what's going on, but it seems likely to be related to ssl configuration?

JoeyAcc commented 7 years ago

It's very likely related, but I'm not sure about the exact nature of that relation (e.g. causal or just a correlation). As you may have guessed by now we use certs at work here, and pretty much everything else does what it's supposed to.

It's only when Cargo is introduced to the mix that I start getting SSL errors like the one above. It's this last part that makes me look at Cargo for the root cause.

Is there any other information I could provide to help debug this issue?

alexcrichton commented 7 years ago

Unfortunately without a way to reproduce locally I may not be of much more help in debugging. You could try strace on a working tool to see what files it accesses and then try strace on cargo to see what the difference is maybe?

ethomson commented 7 years ago

👋 Why is cargo statically linking against its own openssl? This seems problematic, is this something that can be fixed? Is there something that I can do to help?

alexcrichton commented 7 years ago

@ethomson right now one of the primary mechanisms to ship Cargo is with the precompiled binaries that we ship ourselves as part of the rust-lang/rust project. These binaries are intended to be "extra compatible" in the sense that they're compiled with very old toolchains (to have low glibc requirements) and statically link dependencies (to not have runtime requirements).

It's expected, however, that if you install Cargo through a package manager (e.g. via a linux distro) you'd get a dynamically linked OpenSSL rather than a statically linked one (as you'd expect).

So in that sense I think it's unfortunately just a limitation of shipping "compatible" precompiled binaries. We could in theory ship one with a shim that dynamically uses whatever is available at runtime, but in general it's much easier on our end to just statically link it and then probe for certs at runtime.

ethomson commented 7 years ago

So what's the plan for this issue? Are you going to teach cargo where to find the system certificates in a way that's compatible with the default system OpenSSL? Is there even a way to probe that?

Also, for what it's worth, I would have never expected that anybody statically linked OpenSSL. Especially something that I trust to install software on my machine. I understand the dependency problem you're facing but with security libraries, it seems like loading the system one is ideal, so that your end users have a predictable upgrade path. But that's just my $0.02.

alexcrichton commented 7 years ago

We've currently got a crate to probe for standard cert dirs across linux distributions and it currently configures requisite env vars to pass the informationa long to OpenSSL.

To tackle this issue there's some reason that logic isn't working, so it'd basically be to start debugging there. Although without the ability to reproduce I may unfortunately not be super helpful :(

JoeyAcc commented 7 years ago

Apologies for the late response, other responsibilities got in the way. Let me try this from another angle, by describing what exactly I want to achieve:

We have a Jenkins build server as well as a GitHub Enterprise install here. In addition, we have the top-level consumer app (sbr-viewer-ws)rust-backed npm module (sbr-validate-npm)multiple rust dependencies (regular rust crates e.g. sbr-xquery-interpreter-api) dependency chain mentioned at the top.

Here's the issue: cargo has issues downloading rust project dependencies on the build server due to somehow not being able to access the cert (which is definitely installed, btw), while on every developer workstation (all of which use the same certificate to access GHE) cargo works without any hitch. What we need is for cargo to work the same on the build server as on the developer workstations.

Does that help any to clarify the situation?

alexcrichton commented 7 years ago

@JoeyAcc thanks for the explanation! Do you know the difference in configuration between the jenkins server and your local machines? Is the certificate installed in a different location or perhaps the method of installation differs? Unfortunately I don't know a whole lot about debugging OpenSSL loading certificates from the filesystem, so without access to strace and the ability to poke around I can only try to offer help from afar :(

JoeyAcc commented 7 years ago

That's ok, I'm already very happy that you're willing to help me solve this issue (as that is not a given for maintainers in general my experience) :)

There are indeed some differences between the build server and the dev workstations:

Jenkins Build Server Dev Workstations
OS Ubuntu 16.04 Wndows 10
cert install method manual* certmgr.msc
cert installed location /etc/ssl/certs ???**

Those are the important differences that I can think of ATM. I do have a question: What exactly would you apply strace to? Perhaps I can replicate the steps locally and then provide the results.

*Manual here means that I manually copied the cert file to /usr/local/share/ca-certificates/accept2017.crt, and then I ran sudo update-ca-certificates as outlined here, which (probably among other things) makes a symlink to the cert in /etc/ssl/certs named accetp2017.pem. Initially I had not installed the .key file to /etc/ssl/private as outlined here, but I just tried exactly that and the result is the same failure as in my OP.

** I have no idea where certmgr.msc actually stores its certificates.

alexcrichton commented 7 years ago

Hm ok that's definitely quite odd, that sounds like it's all you'd need to do to install the cert on Ubuntu. I know though that the cert store on Windows is a little easier to install to than on Ubuntu, so that may at least explain a bit of the difference here!

I think the next thing to do may be to run strace over cargo itself. That'll tell us which cert files Cargo's actually trying to read from the filesystem. Could you ssh directly into the Jenkins server to run something like strace -f cargo build? That should hopefully fail the same way your works are failing and provide some useful output to crawl over.

JoeyAcc commented 7 years ago

Below is the strace output I got. There is indeed some kind of error in there.

```` accept@vm-jenkins2:~/test/sbr-xquery-interpreter-api$ strace -f cargo build execve("/home/accept/.cargo/bin/cargo", ["cargo", "build"], [/* 32 vars */]) = 0 brk(NULL) = 0x555a6c9da000 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4cb5229000 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=30356, ...}) = 0 mmap(NULL, 30356, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f4cb5221000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libz.so.1", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\35\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=104864, ...}) = 0 mmap(NULL, 2199848, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f4cb4dec000 mprotect(0x7f4cb4e05000, 2093056, PROT_NONE) = 0 mmap(0x7f4cb5004000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x18000) = 0x7f4cb5004000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\r\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=14608, ...}) = 0 mmap(NULL, 2109680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f4cb4be8000 mprotect(0x7f4cb4beb000, 2093056, PROT_NONE) = 0 mmap(0x7f4cb4dea000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f4cb4dea000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260`\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=138696, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4cb5220000 mmap(NULL, 2212904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f4cb49cb000 mprotect(0x7f4cb49e3000, 2093056, PROT_NONE) = 0 mmap(0x7f4cb4be2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f4cb4be2000 mmap(0x7f4cb4be4000, 13352, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f4cb4be4000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p*\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=89696, ...}) = 0 mmap(NULL, 2185488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f4cb47b5000 mprotect(0x7f4cb47cb000, 2093056, PROT_NONE) = 0 mmap(0x7f4cb49ca000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f4cb49ca000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\t\2\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=1868984, ...}) = 0 mmap(NULL, 3971488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f4cb43eb000 mprotect(0x7f4cb45ab000, 2097152, PROT_NONE) = 0 mmap(0x7f4cb47ab000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c0000) = 0x7f4cb47ab000 mmap(0x7f4cb47b1000, 14752, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f4cb47b1000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libm.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0V\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=1088952, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4cb521f000 mmap(NULL, 3178744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f4cb40e2000 mprotect(0x7f4cb41ea000, 2093056, PROT_NONE) = 0 mmap(0x7f4cb43e9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x107000) = 0x7f4cb43e9000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/librt.so.1", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0!\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=31712, ...}) = 0 mmap(NULL, 2128832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f4cb3eda000 mprotect(0x7f4cb3ee1000, 2093056, PROT_NONE) = 0 mmap(0x7f4cb40e0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f4cb40e0000 close(3) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4cb521e000 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4cb521c000 arch_prctl(ARCH_SET_FS, 0x7f4cb521c880) = 0 mprotect(0x7f4cb47ab000, 16384, PROT_READ) = 0 mprotect(0x7f4cb4be2000, 4096, PROT_READ) = 0 mprotect(0x7f4cb40e0000, 4096, PROT_READ) = 0 mprotect(0x7f4cb43e9000, 4096, PROT_READ) = 0 mprotect(0x7f4cb4dea000, 4096, PROT_READ) = 0 mprotect(0x7f4cb5004000, 4096, PROT_READ) = 0 mprotect(0x7f4cb522b000, 4096, PROT_READ) = 0 munmap(0x7f4cb5221000, 30356) = 0 set_tid_address(0x7f4cb521cb50) = 17114 set_robust_list(0x7f4cb521cb60, 24) = 0 rt_sigaction(SIGRTMIN, {0x7f4cb49d0b50, [], SA_RESTORER|SA_SIGINFO, 0x7f4cb49dc390}, NULL, 8) = 0 rt_sigaction(SIGRT_1, {0x7f4cb49d0be0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f4cb49dc390}, NULL, 8) = 0 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 readlink("/etc/malloc.conf", 0x7fff77ef62d0, 4096) = -1 ENOENT (No such file or directory) brk(NULL) = 0x555a6c9da000 mmap(NULL, 2097152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4cb3cda000 munmap(0x7f4cb3cda000, 2097152) = 0 mmap(NULL, 4190208, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4cb3adb000 munmap(0x7f4cb3adb000, 1200128) = 0 munmap(0x7f4cb3e00000, 892928) = 0 open("/sys/devices/system/cpu/online", O_RDONLY|O_CLOEXEC) = 3 read(3, "0-1\n", 8192) = 4 close(3) = 0 rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4cb44204b0}, {SIG_DFL, [], 0}, 8) = 0 mmap(NULL, 2097152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4cb3a00000 open("/proc/self/maps", O_RDONLY|O_CLOEXEC) = 3 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0 read(3, "555a6be68000-555a6c478000 r-xp 0"..., 1024) = 1024 read(3, " /lib/x86_64-linux-gnu/libm-"..., 1024) = 1024 read(3, " /lib/x86_64-linux-gnu/libpt"..., 1024) = 1024 read(3, ":00 271763 /"..., 1024) = 1024 close(3) = 0 sched_getaffinity(17114, 32, [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) = 32 mmap(0x7fff776fa000, 4096, PROT_NONE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fff776fa000 rt_sigaction(SIGSEGV, {0x555a6c2e3bc0, [], SA_RESTORER|SA_STACK|SA_SIGINFO, 0x7f4cb49dc390}, NULL, 8) = 0 rt_sigaction(SIGBUS, {0x555a6c2e3bc0, [], SA_RESTORER|SA_STACK|SA_SIGINFO, 0x7f4cb49dc390}, NULL, 8) = 0 sigaltstack(NULL, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4cb5227000 sigaltstack({ss_sp=0x7f4cb5227000, ss_flags=0, ss_size=8192}, NULL) = 0 getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 stat("/home/accept/.cargo/bin/multirust", 0x7fff77ef00b0) = -1 ENOENT (No such file or directory) getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 stat("/home/accept/.cargo/bin/rustup-init", 0x7fff77eefdb0) = -1 ENOENT (No such file or directory) stat("/home/accept/.cargo/bin/multirust-setup", 0x7fff77eefdb0) = -1 ENOENT (No such file or directory) stat("/home/accept/.terminfo", 0x7fff77eef280) = -1 ENOENT (No such file or directory) stat("/etc/terminfo", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/etc/terminfo/x/xterm-256color", 0x7fff77eef280) = -1 ENOENT (No such file or directory) stat("/etc/terminfo/78/xterm-256color", 0x7fff77eef280) = -1 ENOENT (No such file or directory) stat("/lib/terminfo", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/lib/terminfo/x/xterm-256color", {st_mode=S_IFREG|0644, st_size=3417, ...}) = 0 open("/lib/terminfo/x/xterm-256color", O_RDONLY|O_CLOEXEC) = 3 ioctl(3, FIOCLEX) = 0 read(3, "\32\1%\0&\0\17\0\235\1\262\5xterm-256color|xterm"..., 8192) = 3417 getrandom("", 0, GRND_NONBLOCK) = 0 getrandom("Z$[\352\227\271<\362", 8, GRND_NONBLOCK) = 8 getrandom("\321\321\367\316\\\202\3\2", 8, GRND_NONBLOCK) = 8 close(3) = 0 stat("/home/accept/.rustup/rustup-version", 0x7fff77eeecd0) = -1 ENOENT (No such file or directory) stat("/home/accept/.multirust", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/.rustup", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 stat("/home/accept/.rustup", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/.rustup/version", 0x7fff77eeecb0) = -1 ENOENT (No such file or directory) stat("/home/accept/.rustup", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/.rustup/settings.toml", {st_mode=S_IFREG|0664, st_size=271, ...}) = 0 open("/home/accept/.rustup/settings.toml", O_RDONLY|O_CLOEXEC) = 3 ioctl(3, FIOCLEX) = 0 read(3, "default_host_triple = \"x86_64-un", 32) = 32 read(3, "known-linux-gnu\"\ndefault_toolcha"..., 64) = 64 read(3, "\nversion = \"12\"\n\n[overrides]\n\"/h"..., 128) = 128 read(3, " \"nightly-2017-04-04-x86_64-unkn"..., 256) = 47 read(3, "", 209) = 0 close(3) = 0 getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept/test", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 lstat("/home/accept/test/sbr-xquery-interpreter-api", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/test/sbr-xquery-interpreter-api", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept/test", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 lstat("/home/accept/test/sbr-xquery-interpreter-api", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/test", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept/test", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/cargo", {st_mode=S_IFREG|0755, st_size=14172520, ...}) = 0 getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 futex(0x7f4cb4deb0a8, FUTEX_WAKE_PRIVATE, 2147483647) = 0 pipe2([3, 4], O_CLOEXEC) = 0 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f4cb521cb50) = 17115 strace: Process 17115 attached [pid 17115] set_robust_list(0x7f4cb521cb60, 24 [pid 17114] close(4) = 0 [pid 17114] read(3, [pid 17115] <... set_robust_list resumed> ) = 0 [pid 17115] close(3) = 0 [pid 17115] rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_DFL, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4cb44204b0}, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4cb44204b0}, 8) = 0 [pid 17115] execve("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/cargo", ["/home/accept/.rustup/toolchains/"..., "build"], [/* 37 vars */] [pid 17114] <... read resumed> "", 8) = 0 [pid 17114] close(3) = 0 [pid 17114] wait4(17115, [pid 17115] <... execve resumed> ) = 0 [pid 17115] brk(NULL) = 0x561ce9f56000 [pid 17115] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f168f381000 [pid 17115] readlink("/proc/self/exe", "/home/accept/.rustup/toolchains/"..., 4096) = 74 [pid 17115] access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/tls/x86_64", 0x7ffd82011b70) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/tls", 0x7ffd82011b70) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/x86_64", 0x7ffd82011b70) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/tls/x86_64", 0x7ffd82011b70) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/tls", 0x7ffd82011b70) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/x86_64", 0x7ffd82011b70) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] fstat(3, {st_mode=S_IFREG|0644, st_size=30356, ...}) = 0 [pid 17115] mmap(NULL, 30356, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f168f379000 [pid 17115] close(3) = 0 [pid 17115] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] open("/lib/x86_64-linux-gnu/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\r\0\0\0\0\0\0"..., 832) = 832 [pid 17115] fstat(3, {st_mode=S_IFREG|0644, st_size=14608, ...}) = 0 [pid 17115] mmap(NULL, 2109680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f168ef5a000 [pid 17115] mprotect(0x7f168ef5d000, 2093056, PROT_NONE) = 0 [pid 17115] mmap(0x7f168f15c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f168f15c000 [pid 17115] close(3) = 0 [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] open("/lib/x86_64-linux-gnu/librt.so.1", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0!\0\0\0\0\0\0"..., 832) = 832 [pid 17115] fstat(3, {st_mode=S_IFREG|0644, st_size=31712, ...}) = 0 [pid 17115] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f168f378000 [pid 17115] mmap(NULL, 2128832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f168ed52000 [pid 17115] mprotect(0x7f168ed59000, 2093056, PROT_NONE) = 0 [pid 17115] mmap(0x7f168ef58000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f168ef58000 [pid 17115] close(3) = 0 [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] open("/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260`\0\0\0\0\0\0"..., 832) = 832 [pid 17115] fstat(3, {st_mode=S_IFREG|0755, st_size=138696, ...}) = 0 [pid 17115] mmap(NULL, 2212904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f168eb35000 [pid 17115] mprotect(0x7f168eb4d000, 2093056, PROT_NONE) = 0 [pid 17115] mmap(0x7f168ed4c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f168ed4c000 [pid 17115] mmap(0x7f168ed4e000, 13352, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f168ed4e000 [pid 17115] close(3) = 0 [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] open("/lib/x86_64-linux-gnu/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p*\0\0\0\0\0\0"..., 832) = 832 [pid 17115] fstat(3, {st_mode=S_IFREG|0644, st_size=89696, ...}) = 0 [pid 17115] mmap(NULL, 2185488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f168e91f000 [pid 17115] mprotect(0x7f168e935000, 2093056, PROT_NONE) = 0 [pid 17115] mmap(0x7f168eb34000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f168eb34000 [pid 17115] close(3) = 0 [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] open("/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\t\2\0\0\0\0\0"..., 832) = 832 [pid 17115] fstat(3, {st_mode=S_IFREG|0755, st_size=1868984, ...}) = 0 [pid 17115] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f168f377000 [pid 17115] mmap(NULL, 3971488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f168e555000 [pid 17115] mprotect(0x7f168e715000, 2097152, PROT_NONE) = 0 [pid 17115] mmap(0x7f168e915000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c0000) = 0x7f168e915000 [pid 17115] mmap(0x7f168e91b000, 14752, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f168e91b000 [pid 17115] close(3) = 0 [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] open("/lib/x86_64-linux-gnu/libm.so.6", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0V\0\0\0\0\0\0"..., 832) = 832 [pid 17115] fstat(3, {st_mode=S_IFREG|0644, st_size=1088952, ...}) = 0 [pid 17115] mmap(NULL, 3178744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f168e24c000 [pid 17115] mprotect(0x7f168e354000, 2093056, PROT_NONE) = 0 [pid 17115] mmap(0x7f168e553000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x107000) = 0x7f168e553000 [pid 17115] close(3) = 0 [pid 17115] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f168f376000 [pid 17115] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f168f374000 [pid 17115] arch_prctl(ARCH_SET_FS, 0x7f168f3748c0) = 0 [pid 17115] mprotect(0x7f168e915000, 16384, PROT_READ) = 0 [pid 17115] mprotect(0x7f168e553000, 4096, PROT_READ) = 0 [pid 17115] mprotect(0x7f168ed4c000, 4096, PROT_READ) = 0 [pid 17115] mprotect(0x7f168ef58000, 4096, PROT_READ) = 0 [pid 17115] mprotect(0x7f168f15c000, 4096, PROT_READ) = 0 [pid 17115] mprotect(0x7f168f383000, 4096, PROT_READ) = 0 [pid 17115] munmap(0x7f168f379000, 30356) = 0 [pid 17115] set_tid_address(0x7f168f374b90) = 17115 [pid 17115] set_robust_list(0x7f168f374ba0, 24) = 0 [pid 17115] rt_sigaction(SIGRTMIN, {0x7f168eb3ab50, [], SA_RESTORER|SA_SIGINFO, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] rt_sigaction(SIGRT_1, {0x7f168eb3abe0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 [pid 17115] getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 [pid 17115] readlink("/etc/malloc.conf", 0x7ffd82011380, 4096) = -1 ENOENT (No such file or directory) [pid 17115] brk(NULL) = 0x561ce9f56000 [pid 17115] mmap(NULL, 2097152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f168e04c000 [pid 17115] munmap(0x7f168e04c000, 2097152) = 0 [pid 17115] mmap(NULL, 4190208, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f168de4d000 [pid 17115] munmap(0x7f168de4d000, 1781760) = 0 [pid 17115] munmap(0x7f168e200000, 311296) = 0 [pid 17115] open("/sys/devices/system/cpu/online", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] read(3, "0-1\n", 8192) = 4 [pid 17115] close(3) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168e58a4b0}, {SIG_DFL, [], 0}, 8) = 0 [pid 17115] mmap(NULL, 2097152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f168de00000 [pid 17115] open("/proc/self/maps", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 [pid 17115] fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0 [pid 17115] read(3, "561ce9219000-561ce9ad8000 r-xp 0"..., 1024) = 1024 [pid 17115] read(3, "-gnu/libc-2.23.so\n7f168e915000-7"..., 1024) = 1024 [pid 17115] read(3, " /lib/x86_64-linux-gnu/libpthrea"..., 1024) = 1024 [pid 17115] read(3, " /lib/x86_64-linux-gn"..., 1024) = 729 [pid 17115] close(3) = 0 [pid 17115] sched_getaffinity(17115, 32, [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) = 32 [pid 17115] mmap(0x7ffd81814000, 4096, PROT_NONE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7ffd81814000 [pid 17115] rt_sigaction(SIGSEGV, {0x561ce98cda90, [], SA_RESTORER|SA_STACK|SA_SIGINFO, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] rt_sigaction(SIGBUS, {0x561ce98cda90, [], SA_RESTORER|SA_STACK|SA_SIGINFO, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] sigaltstack(NULL, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0 [pid 17115] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f168f37f000 [pid 17115] sigaltstack({ss_sp=0x7f168f37f000, ss_flags=0, ss_size=8192}, NULL) = 0 [pid 17115] ioctl(2, TCGETS, {B38400 opost isig icanon echo ...}) = 0 [pid 17115] stat("/home/accept/.terminfo", 0x7ffd82010ef0) = -1 ENOENT (No such file or directory) [pid 17115] stat("/etc/terminfo", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] stat("/etc/terminfo/x/xterm-256color", 0x7ffd82010ef0) = -1 ENOENT (No such file or directory) [pid 17115] stat("/etc/terminfo/78/xterm-256color", 0x7ffd82010ef0) = -1 ENOENT (No such file or directory) [pid 17115] stat("/lib/terminfo", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] stat("/lib/terminfo/x/xterm-256color", {st_mode=S_IFREG|0644, st_size=3417, ...}) = 0 [pid 17115] open("/lib/terminfo/x/xterm-256color", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] ioctl(3, FIOCLEX) = 0 [pid 17115] read(3, "\32\1%\0&\0\17\0\235\1\262\5xterm-256color|xterm"..., 8192) = 3417 [pid 17115] getrandom("", 0, GRND_NONBLOCK) = 0 [pid 17115] getrandom("\213\341\10\331\177\371@\263", 8, GRND_NONBLOCK) = 8 [pid 17115] getrandom("Aw\200=\377\233\375\20", 8, GRND_NONBLOCK) = 8 [pid 17115] close(3) = 0 [pid 17115] ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0 [pid 17115] stat("/home/accept/.terminfo", 0x7ffd82010ef0) = -1 ENOENT (No such file or directory) [pid 17115] stat("/etc/terminfo", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] stat("/etc/terminfo/x/xterm-256color", 0x7ffd82010ef0) = -1 ENOENT (No such file or directory) [pid 17115] stat("/etc/terminfo/78/xterm-256color", 0x7ffd82010ef0) = -1 ENOENT (No such file or directory) [pid 17115] stat("/lib/terminfo", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] stat("/lib/terminfo/x/xterm-256color", {st_mode=S_IFREG|0644, st_size=3417, ...}) = 0 [pid 17115] open("/lib/terminfo/x/xterm-256color", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] ioctl(3, FIOCLEX) = 0 [pid 17115] read(3, "\32\1%\0&\0\17\0\235\1\262\5xterm-256color|xterm"..., 8192) = 3417 [pid 17115] close(3) = 0 [pid 17115] getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 [pid 17115] mmap(NULL, 2097152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f168dc00000 [pid 17115] stat("/home/accept/test/sbr-xquery-interpreter-api/.cargo/config", 0x7ffd8200f0f0) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/test/.cargo/config", 0x7ffd8200f0f0) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/.cargo/config", 0x7ffd8200f0f0) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/.cargo/config", 0x7ffd8200f0f0) = -1 ENOENT (No such file or directory) [pid 17115] stat("/.cargo/config", 0x7ffd8200f0f0) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/.cargo/config", 0x7ffd8200f0f0) = -1 ENOENT (No such file or directory) [pid 17115] stat("/var/ssl", 0x7ffd8200f610) = -1 ENOENT (No such file or directory) [pid 17115] stat("/usr/share/ssl", 0x7ffd8200f610) = -1 ENOENT (No such file or directory) [pid 17115] stat("/usr/local/ssl", 0x7ffd8200f610) = -1 ENOENT (No such file or directory) [pid 17115] stat("/usr/local/openssl", 0x7ffd8200f610) = -1 ENOENT (No such file or directory) [pid 17115] stat("/usr/local/share", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] stat("/usr/lib/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] stat("/usr/ssl", 0x7ffd8200f610) = -1 ENOENT (No such file or directory) [pid 17115] stat("/etc/openssl", 0x7ffd8200f610) = -1 ENOENT (No such file or directory) [pid 17115] stat("/etc/pki/tls", 0x7ffd8200f610) = -1 ENOENT (No such file or directory) [pid 17115] stat("/etc/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] stat("/data/data/com.termux/files/usr/etc/tls", 0x7ffd8200f610) = -1 ENOENT (No such file or directory) [pid 17115] open("/dev/urandom", O_RDONLY|O_NOCTTY|O_NONBLOCK) = 3 [pid 17115] fstat(3, {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 9), ...}) = 0 [pid 17115] poll([{fd=3, events=POLLIN}], 1, 10) = 1 ([{fd=3, revents=POLLIN}]) [pid 17115] read(3, "x8\tI\247nD\233\272\227\t\4p\346\7\24e\t\243\23\321GR)\2432\344+\361\341\266E", 32) = 32 [pid 17115] close(3) = 0 [pid 17115] getuid() = 1000 [pid 17115] open("/home/accept/cert/accept2017.crt", O_RDONLY) = 3 [pid 17115] fstat(3, {st_mode=S_IFREG|0644, st_size=2448, ...}) = 0 [pid 17115] read(3, "Bag Attributes\r\n localKeyID: "..., 4096) = 2448 [pid 17115] read(3, "", 4096) = 0 [pid 17115] close(3) = 0 [pid 17115] futex(0x561ce9d43e04, FUTEX_WAKE_PRIVATE, 2147483647) = 0 [pid 17115] access("/home/accept/.gitconfig", F_OK) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 3 [pid 17115] read(3, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(3) = 0 [pid 17115] access("/home/accept/.config/git/config", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] access("/etc/gitconfig", F_OK) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 3 [pid 17115] read(3, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(3) = 0 [pid 17115] stat("/home/accept/test/sbr-xquery-interpreter-api/Cargo.toml", {st_mode=S_IFREG|0664, st_size=874, ...}) = 0 [pid 17115] open("/home/accept/test/sbr-xquery-interpreter-api/Cargo.toml", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] ioctl(3, FIOCLEX) = 0 [pid 17115] read(3, "[package]\nname = \"sbr-xquery-int", 32) = 32 [pid 17115] read(3, "erpreter-api\"\nversion = \"0.6.2\"\n"..., 64) = 64 [pid 17115] read(3, "y.ezechiels@gmail.com>\"]\ndescrip"..., 128) = 128 [pid 17115] read(3, "ies]\nchrono = { version = \"0.3\","..., 256) = 256 [pid 17115] read(3, "\nxmltree = \"0.4\"\nunicode-segment"..., 512) = 394 [pid 17115] read(3, "", 118) = 0 [pid 17115] close(3) = 0 [pid 17115] stat("/home/accept/test/sbr-xquery-interpreter-api/src/lib.rs", {st_mode=S_IFREG|0775, st_size=4334, ...}) = 0 [pid 17115] stat("/home/accept/test/sbr-xquery-interpreter-api/src/main.rs", 0x7ffd81ff23b0) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/test/sbr-xquery-interpreter-api/src/bin", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3 [pid 17115] fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] getdents(3, /* 3 entries */, 32768) = 80 [pid 17115] getdents(3, /* 0 entries */, 32768) = 0 [pid 17115] close(3) = 0 [pid 17115] open("/home/accept/test/sbr-xquery-interpreter-api/examples", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/test/sbr-xquery-interpreter-api/tests", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/test/sbr-xquery-interpreter-api/benches", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/test/sbr-xquery-interpreter-api/build.rs", 0x7ffd81fe9fb0) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/test/Cargo.toml", 0x7ffd81ff6970) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/Cargo.toml", 0x7ffd81ff6970) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/Cargo.toml", 0x7ffd81ff6970) = -1 ENOENT (No such file or directory) [pid 17115] stat("/Cargo.toml", 0x7ffd81ff6970) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/test/sbr-xquery-interpreter-api/Cargo.lock", 0x7ffd81ff16c0) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/test/sbr-xquery-interpreter-api/Cargo.toml", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] ioctl(3, FIOCLEX) = 0 [pid 17115] read(3, "[package]\nname = \"sbr-xquery-int", 32) = 32 [pid 17115] read(3, "erpreter-api\"\nversion = \"0.6.2\"\n"..., 64) = 64 [pid 17115] read(3, "y.ezechiels@gmail.com>\"]\ndescrip"..., 128) = 128 [pid 17115] read(3, "ies]\nchrono = { version = \"0.3\","..., 256) = 256 [pid 17115] read(3, "\nxmltree = \"0.4\"\nunicode-segment"..., 512) = 394 [pid 17115] read(3, "", 118) = 0 [pid 17115] close(3) = 0 [pid 17115] stat("/home/accept/test/sbr-xquery-interpreter-api/src/lib.rs", {st_mode=S_IFREG|0775, st_size=4334, ...}) = 0 [pid 17115] stat("/home/accept/test/sbr-xquery-interpreter-api/src/main.rs", 0x7ffd81fed620) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/test/sbr-xquery-interpreter-api/src/bin", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3 [pid 17115] fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] getdents(3, /* 3 entries */, 32768) = 80 [pid 17115] getdents(3, /* 0 entries */, 32768) = 0 [pid 17115] close(3) = 0 [pid 17115] open("/home/accept/test/sbr-xquery-interpreter-api/examples", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/test/sbr-xquery-interpreter-api/tests", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/test/sbr-xquery-interpreter-api/benches", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/test/sbr-xquery-interpreter-api/build.rs", 0x7ffd81fe5220) = -1 ENOENT (No such file or directory) [pid 17115] open("/checkout/obj/build/x86_64-unknown-linux-gnu/openssl/install/ssl/openssl.cnf", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 17115] socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP) = 3 [pid 17115] close(3) = 0 [pid 17115] stat("/var/ssl", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/usr/share/ssl", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/usr/local/ssl", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/usr/local/openssl", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/usr/local/share", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] stat("/usr/lib/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] stat("/usr/ssl", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/etc/openssl", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/etc/pki/tls", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/etc/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] stat("/data/data/com.termux/files/usr/etc/tls", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] access("/home/accept/.gitconfig", F_OK) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 3 [pid 17115] read(3, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(3) = 0 [pid 17115] access("/home/accept/.config/git/config", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] access("/etc/gitconfig", F_OK) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 3 [pid 17115] read(3, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(3) = 0 [pid 17115] mkdir("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823", 0777) = -1 EEXIST (File exists) [pid 17115] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.cargo-index-lock", O_RDWR|O_CREAT|O_CLOEXEC, 0666) = 3 [pid 17115] ioctl(3, FIOCLEX) = 0 [pid 17115] statfs("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.cargo-index-lock", {f_type="EXT2_SUPER_MAGIC", f_bsize=4096, f_blocks=18687272, f_bfree=6394741, f_bavail=5439708, f_files=4759552, f_ffree=3179048, f_fsid={712344455, 1912640877}, f_namelen=255, f_frsize=4096, f_flags=4128}) = 0 [pid 17115] flock(3, LOCK_EX|LOCK_NB) = 0 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, "\33[32m", 5) = 5 [pid 17115] write(2, "\33[1m", 4) = 4 [pid 17115] write(2, " ", 1 ) = 1 [pid 17115] write(2, " ", 1 ) = 1 [pid 17115] write(2, " ", 1 ) = 1 [pid 17115] write(2, " ", 1 ) = 1 [pid 17115] write(2, "Updating", 8Updating) = 8 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, " ", 1 ) = 1 [pid 17115] write(2, "registry `https://github.com/rus"..., 55registry `https://github.com/rust-lang/crates.io-index`) = 55 [pid 17115] write(2, "\n", 1 ) = 1 [pid 17115] lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept/.cargo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept/.cargo/registry", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept/.cargo/registry/index", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823", {st_mode=S_IFDIR|0775, st_size=12288, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/objects/", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/HEAD", {st_mode=S_IFREG|0664, st_size=23, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/refs/", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] access("/home/accept/.gitconfig", F_OK) = 0 [pid 17115] access("/home/accept/.config/git/config", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] access("/etc/gitconfig", F_OK) = 0 [pid 17115] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", O_RDONLY) = 4 [pid 17115] read(4, "[core]\n\tbare = false\n\trepository"..., 92) = 92 [pid 17115] close(4) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 4 [pid 17115] read(4, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(4) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 4 [pid 17115] read(4, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(4) = 0 [pid 17115] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", O_RDONLY) = 4 [pid 17115] read(4, "[core]\n\tbare = false\n\trepository"..., 92) = 92 [pid 17115] close(4) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 4 [pid 17115] read(4, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(4) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 4 [pid 17115] read(4, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(4) = 0 [pid 17115] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/", {st_mode=S_IFDIR|0775, st_size=12288, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", O_RDONLY) = 4 [pid 17115] read(4, "[core]\n\tbare = false\n\trepository"..., 92) = 92 [pid 17115] close(4) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 4 [pid 17115] read(4, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(4) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 4 [pid 17115] read(4, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(4) = 0 [pid 17115] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", O_RDONLY) = 4 [pid 17115] read(4, "[core]\n\tbare = false\n\trepository"..., 92) = 92 [pid 17115] close(4) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 4 [pid 17115] read(4, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(4) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 4 [pid 17115] read(4, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(4) = 0 [pid 17115] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/refs/heads/master", {st_mode=S_IFREG|0664, st_size=41, ...}) = 0 [pid 17115] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/refs/heads/master", O_RDONLY) = 4 [pid 17115] read(4, "1b321622a4a1790556be33d01b4de1b6"..., 41) = 41 [pid 17115] close(4) = 0 [pid 17115] stat("/var/ssl", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/usr/share/ssl", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/usr/local/ssl", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/usr/local/openssl", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/usr/local/share", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] stat("/usr/lib/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] stat("/usr/ssl", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/etc/openssl", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/etc/pki/tls", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] stat("/etc/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] stat("/data/data/com.termux/files/usr/etc/tls", 0x7ffd81fede50) = -1 ENOENT (No such file or directory) [pid 17115] access("/home/accept/.gitconfig", F_OK) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 4 [pid 17115] read(4, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(4) = 0 [pid 17115] access("/home/accept/.config/git/config", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] access("/etc/gitconfig", F_OK) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 4 [pid 17115] read(4, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(4) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 552844900}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 552893100}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 552936000}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 552979600}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 553025000}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 553070200}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 553113100}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 553157000}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 553200600}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 553244700}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 553315600}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 553368000}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 553411800}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 553454100}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148843, 553497300}) = 0 [pid 17115] socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 4 [pid 17115] connect(4, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) [pid 17115] close(4) = 0 [pid 17115] socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 4 [pid 17115] connect(4, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) [pid 17115] close(4) = 0 [pid 17115] open("/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 4 [pid 17115] fstat(4, {st_mode=S_IFREG|0644, st_size=497, ...}) = 0 [pid 17115] read(4, "# /etc/nsswitch.conf\n#\n# Example"..., 4096) = 497 [pid 17115] read(4, "", 4096) = 0 [pid 17115] close(4) = 0 [pid 17115] open("/etc/host.conf", O_RDONLY|O_CLOEXEC) = 4 [pid 17115] fstat(4, {st_mode=S_IFREG|0644, st_size=92, ...}) = 0 [pid 17115] read(4, "# The \"order\" line is only used "..., 4096) = 92 [pid 17115] read(4, "", 4096) = 0 [pid 17115] close(4) = 0 [pid 17115] futex(0x7f168e91da64, FUTEX_WAKE_PRIVATE, 2147483647) = 0 [pid 17115] open("/etc/resolv.conf", O_RDONLY|O_CLOEXEC) = 4 [pid 17115] fstat(4, {st_mode=S_IFREG|0644, st_size=201, ...}) = 0 [pid 17115] read(4, "# Dynamic resolv.conf(5) file fo"..., 4096) = 201 [pid 17115] read(4, "", 4096) = 0 [pid 17115] close(4) = 0 [pid 17115] uname({sysname="Linux", nodename="vm-jenkins2", ...}) = 0 [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4 [pid 17115] fstat(4, {st_mode=S_IFREG|0644, st_size=30356, ...}) = 0 [pid 17115] mmap(NULL, 30356, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7f168f36c000 [pid 17115] close(4) = 0 [pid 17115] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] open("/lib/x86_64-linux-gnu/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = 4 [pid 17115] read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260!\0\0\0\0\0\0"..., 832) = 832 [pid 17115] fstat(4, {st_mode=S_IFREG|0644, st_size=47600, ...}) = 0 [pid 17115] mmap(NULL, 2168600, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f168d9ee000 [pid 17115] mprotect(0x7f168d9f9000, 2093056, PROT_NONE) = 0 [pid 17115] mmap(0x7f168dbf8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xa000) = 0x7f168dbf8000 [pid 17115] mmap(0x7f168dbfa000, 22296, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f168dbfa000 [pid 17115] close(4) = 0 [pid 17115] mprotect(0x7f168dbf8000, 4096, PROT_READ) = 0 [pid 17115] munmap(0x7f168f36c000, 30356) = 0 [pid 17115] open("/etc/hosts", O_RDONLY|O_CLOEXEC) = 4 [pid 17115] fstat(4, {st_mode=S_IFREG|0644, st_size=248, ...}) = 0 [pid 17115] read(4, "127.0.0.1\tlocalhost\n127.0.1.1\tvm"..., 4096) = 248 [pid 17115] read(4, "", 4096) = 0 [pid 17115] close(4) = 0 [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libnss_dns.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libnss_dns.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4 [pid 17115] fstat(4, {st_mode=S_IFREG|0644, st_size=30356, ...}) = 0 [pid 17115] mmap(NULL, 30356, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7f168f36c000 [pid 17115] close(4) = 0 [pid 17115] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] open("/lib/x86_64-linux-gnu/libnss_dns.so.2", O_RDONLY|O_CLOEXEC) = 4 [pid 17115] read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\17\0\0\0\0\0\0"..., 832) = 832 [pid 17115] fstat(4, {st_mode=S_IFREG|0644, st_size=27000, ...}) = 0 [pid 17115] mmap(NULL, 2121944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f168d7e7000 [pid 17115] mprotect(0x7f168d7ec000, 2097152, PROT_NONE) = 0 [pid 17115] mmap(0x7f168d9ec000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5000) = 0x7f168d9ec000 [pid 17115] close(4) = 0 [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 17115] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] open("/lib/x86_64-linux-gnu/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 4 [pid 17115] read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P9\0\0\0\0\0\0"..., 832) = 832 [pid 17115] fstat(4, {st_mode=S_IFREG|0644, st_size=101200, ...}) = 0 [pid 17115] mmap(NULL, 2206280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f168d5cc000 [pid 17115] mprotect(0x7f168d5e3000, 2097152, PROT_NONE) = 0 [pid 17115] mmap(0x7f168d7e3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x17000) = 0x7f168d7e3000 [pid 17115] mmap(0x7f168d7e5000, 6728, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f168d7e5000 [pid 17115] close(4) = 0 [pid 17115] mprotect(0x7f168d7e3000, 4096, PROT_READ) = 0 [pid 17115] mprotect(0x7f168d9ec000, 4096, PROT_READ) = 0 [pid 17115] munmap(0x7f168f36c000, 30356) = 0 [pid 17115] stat("/etc/resolv.conf", {st_mode=S_IFREG|0644, st_size=201, ...}) = 0 [pid 17115] open("/etc/resolv.conf", O_RDONLY|O_CLOEXEC) = 4 [pid 17115] fstat(4, {st_mode=S_IFREG|0644, st_size=201, ...}) = 0 [pid 17115] read(4, "# Dynamic resolv.conf(5) file fo"..., 4096) = 201 [pid 17115] read(4, "", 4096) = 0 [pid 17115] close(4) = 0 [pid 17115] uname({sysname="Linux", nodename="vm-jenkins2", ...}) = 0 [pid 17115] socket(PF_INET, SOCK_DGRAM|SOCK_NONBLOCK, IPPROTO_IP) = 4 [pid 17115] connect(4, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.1.190")}, 16) = 0 [pid 17115] gettimeofday({1498635171, 105496}, NULL) = 0 [pid 17115] poll([{fd=4, events=POLLOUT}], 1, 0) = 1 ([{fd=4, revents=POLLOUT}]) [pid 17115] sendmmsg(4, {{{msg_name(0)=NULL, msg_iov(1)=[{"\346H\1\0\0\1\0\0\0\0\0\0\3api\6github\3com\0\0\1\0\1", 32}], msg_controllen=0, msg_flags=MSG_RST|MSG_ERRQUEUE|MSG_NOSIGNAL|MSG_WAITFORONE|0x8f360000}, 32}, {{msg_name(0)=NULL, msg_iov(1)=[{"Qc\1\0\0\1\0\0\0\0\0\0\3api\6github\3com\0\0\34\0\1", 32}], msg_controllen=0, msg_flags=MSG_OOB|MSG_DONTROUTE|MSG_CTRUNC|MSG_EOR|MSG_WAITALL|MSG_FIN|MSG_CONFIRM|MSG_RST|MSG_ERRQUEUE|MSG_MORE|MSG_WAITFORONE|0x1c920010}, 32}}, 2, MSG_NOSIGNAL) = 2 [pid 17115] poll([{fd=4, events=POLLIN}], 1, 5000) = 1 ([{fd=4, revents=POLLIN}]) [pid 17115] ioctl(4, FIONREAD, [97]) = 0 [pid 17115] recvfrom(4, "Qc\201\200\0\1\0\0\0\1\0\0\3api\6github\3com\0\0\34\0\1"..., 2048, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.1.190")}, [16]) = 97 [pid 17115] gettimeofday({1498635171, 117186}, NULL) = 0 [pid 17115] poll([{fd=4, events=POLLIN}], 1, 4988) = 1 ([{fd=4, revents=POLLIN}]) [pid 17115] ioctl(4, FIONREAD, [64]) = 0 [pid 17115] recvfrom(4, "\346H\201\200\0\1\0\2\0\0\0\0\3api\6github\3com\0\0\1\0\1"..., 65536, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.1.190")}, [16]) = 64 [pid 17115] close(4) = 0 [pid 17115] open("/etc/gai.conf", O_RDONLY|O_CLOEXEC) = 4 [pid 17115] fstat(4, {st_mode=S_IFREG|0644, st_size=2584, ...}) = 0 [pid 17115] fstat(4, {st_mode=S_IFREG|0644, st_size=2584, ...}) = 0 [pid 17115] read(4, "# Configuration for getaddrinfo("..., 4096) = 2584 [pid 17115] read(4, "", 4096) = 0 [pid 17115] close(4) = 0 [pid 17115] futex(0x7f168e91bee4, FUTEX_WAKE_PRIVATE, 2147483647) = 0 [pid 17115] socket(PF_NETLINK, SOCK_RAW, NETLINK_ROUTE) = 4 [pid 17115] bind(4, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 0 [pid 17115] getsockname(4, {sa_family=AF_NETLINK, pid=17115, groups=00000000}, [12]) = 0 [pid 17115] sendto(4, "\24\0\0\0\26\0\1\3\247[SY\0\0\0\0\0\0\0\0", 20, 0, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 20 [pid 17115] recvmsg(4, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"L\0\0\0\24\0\2\0\247[SY\333B\0\0\2\10\200\376\1\0\0\0\10\0\1\0\177\0\0\1"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 244 [pid 17115] recvmsg(4, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"H\0\0\0\24\0\2\0\247[SY\333B\0\0\n\200\200\376\1\0\0\0\24\0\1\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 216 [pid 17115] recvmsg(4, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"\24\0\0\0\3\0\2\0\247[SY\333B\0\0\0\0\0\0", 4096}], msg_controllen=0, msg_flags=0}, 0) = 20 [pid 17115] close(4) = 0 [pid 17115] socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 4 [pid 17115] connect(4, {sa_family=AF_INET, sin_port=htons(443), sin_addr=inet_addr("192.30.253.116")}, 16) = 0 [pid 17115] getsockname(4, {sa_family=AF_INET, sin_port=htons(56526), sin_addr=inet_addr("192.168.1.222")}, [16]) = 0 [pid 17115] connect(4, {sa_family=AF_UNSPEC, sa_data="\0\0\0\0\0\0\0\0\0\0\0\0\0\0"}, 16) = 0 [pid 17115] connect(4, {sa_family=AF_INET, sin_port=htons(443), sin_addr=inet_addr("192.30.253.117")}, 16) = 0 [pid 17115] getsockname(4, {sa_family=AF_INET, sin_port=htons(37099), sin_addr=inet_addr("192.168.1.222")}, [16]) = 0 [pid 17115] close(4) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 456990600}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457032700}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457076700}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457120100}) = 0 [pid 17115] socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 4 [pid 17115] setsockopt(4, SOL_TCP, TCP_NODELAY, [1], 4) = 0 [pid 17115] fcntl(4, F_GETFL) = 0x2 (flags O_RDWR) [pid 17115] fcntl(4, F_SETFL, O_RDWR|O_NONBLOCK) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457358500}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457402300}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457437900}) = 0 [pid 17115] connect(4, {sa_family=AF_INET, sin_port=htons(443), sin_addr=inet_addr("192.30.253.116")}, 16) = -1 EINPROGRESS (Operation now in progress) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457588400}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457633800}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457677900}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457721300}) = 0 [pid 17115] poll([{fd=4, events=POLLOUT}], 1, 0) = 0 (Timeout) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457815700}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457862100}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457905500}) = 0 [pid 17115] poll([{fd=4, events=POLLOUT}], 1, 0) = 0 (Timeout) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 457997700}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 458031500}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 458075200}) = 0 [pid 17115] poll([{fd=4, events=POLLOUT}], 1, 0) = 0 (Timeout) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 458162700}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 458208100}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 458241500}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 458284000}) = 0 [pid 17115] poll([{fd=4, events=POLLOUT}], 1, 198) = 1 ([{fd=4, revents=POLLOUT}]) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 547327700}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 547357000}) = 0 [pid 17115] poll([{fd=4, events=POLLOUT}], 1, 0) = 1 ([{fd=4, revents=POLLOUT}]) [pid 17115] getsockopt(4, SOL_SOCKET, SO_ERROR, [0], [4]) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 547518400}) = 0 [pid 17115] getpeername(4, {sa_family=AF_INET, sin_port=htons(443), sin_addr=inet_addr("192.30.253.116")}, [16]) = 0 [pid 17115] getsockname(4, {sa_family=AF_INET, sin_port=htons(52154), sin_addr=inet_addr("192.168.1.222")}, [16]) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 547678500}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 547722800}) = 0 [pid 17115] open("/home/accept/cert/accept2017.crt", O_RDONLY) = 5 [pid 17115] fstat(5, {st_mode=S_IFREG|0644, st_size=2448, ...}) = 0 [pid 17115] read(5, "Bag Attributes\r\n localKeyID: "..., 4096) = 2448 [pid 17115] read(5, "", 4096) = 0 [pid 17115] close(5) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 548578900}) = 0 [pid 17115] write(4, "\26\3\1\2\0\1\0\1\374\3\3\32\362gN\26\17\270\336\301\377F,\230\316\221\272\\\304)!\377"..., 517) = 517 [pid 17115] read(4, 0x7f168dc84e80, 7) = -1 EAGAIN (Resource temporarily unavailable) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 548802200}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 548848800}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 548892100}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 548937200}) = 0 [pid 17115] poll([{fd=4, events=POLLIN}], 1, 108 ) = 1 ([{fd=4, revents=POLLIN}]) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 641333000}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 641363200}) = 0 [pid 17115] poll([{fd=4, events=POLLIN|POLLPRI}], 1, 0) = 1 ([{fd=4, revents=POLLIN}]) [pid 17115] read(4, "\26\3\3\0l\2\0", 7) = 7 [pid 17115] read(4, "\0h\3\3\306\343e\246\6\245\231n1~n\317|\327R\240:\353%\316\234uQ9\246\2\266\270"..., 106) = 106 [pid 17115] read(4, "\26\3\3\f\23", 5) = 5 [pid 17115] read(4, "\v\0\f\17\0\f\f\0\7Q0\202\7M0\202\0065\240\3\2\1\2\2\20\r\235\335\347\317\254a"..., 3091) = 3091 [pid 17115] stat("/etc/ssl/certs/244b5494.0", {st_mode=S_IFREG|0644, st_size=1367, ...}) = 0 [pid 17115] open("/etc/ssl/certs/244b5494.0", O_RDONLY) = 5 [pid 17115] fstat(5, {st_mode=S_IFREG|0644, st_size=1367, ...}) = 0 [pid 17115] read(5, "-----BEGIN CERTIFICATE-----\nMIID"..., 4096) = 1367 [pid 17115] read(5, "", 4096) = 0 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/ssl/certs/244b5494.1", 0x7ffd81fedd60) = -1 ENOENT (No such file or directory) [pid 17115] open("/etc/localtime", O_RDONLY|O_CLOEXEC) = 5 [pid 17115] fstat(5, {st_mode=S_IFREG|0644, st_size=2943, ...}) = 0 [pid 17115] fstat(5, {st_mode=S_IFREG|0644, st_size=2943, ...}) = 0 [pid 17115] read(5, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\16\0\0\0\16\0\0\0\0"..., 4096) = 2943 [pid 17115] lseek(5, -1852, SEEK_CUR) = 1091 [pid 17115] read(5, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\16\0\0\0\16\0\0\0\0"..., 4096) = 1852 [pid 17115] close(5) = 0 [pid 17115] read(4, "\26\3\3\1M", 5) = 5 [pid 17115] read(4, "\f\0\1I\3\0\27A\4+\307P\2\321\223sI^`\357\254\337\326\34*.\322\2426\16gy"..., 333) = 333 [pid 17115] read(4, "\26\3\3\0\4", 5) = 5 [pid 17115] read(4, "\16\0\0\0", 4) = 4 [pid 17115] write(4, "\26\3\3\0F\20\0\0BA\4L\216\326J\353\371\20747\22\225K\322A\344l\363\353\251\221\5"..., 126) = 126 [pid 17115] read(4, 0x7f168dc84e83, 5) = -1 EAGAIN (Resource temporarily unavailable) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 644508500}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 644557400}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 644601400}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 644645700}) = 0 [pid 17115] poll([{fd=4, events=POLLIN}], 1, 12) = 0 (Timeout) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 656871700}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 656904000}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 656950800}) = 0 [pid 17115] poll([{fd=4, events=POLLIN|POLLPRI}], 1, 0) = 0 (Timeout) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 657047100}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 657092000}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 657134700}) = 0 [pid 17115] poll([{fd=4, events=POLLIN}], 1, 0) = 0 (Timeout) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 657226600}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 657269400}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 657312300}) = 0 [pid 17115] poll([{fd=4, events=POLLIN|POLLPRI}], 1, 0) = 0 (Timeout) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 657401900}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 657447800}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 657481300}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 657524800}) = 0 [pid 17115] poll([{fd=4, events=POLLIN}], 1, 1000) = 1 ([{fd=4, revents=POLLIN}]) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 736746000}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 736800800}) = 0 [pid 17115] poll([{fd=4, events=POLLIN|POLLPRI}], 1, 0) = 1 ([{fd=4, revents=POLLIN}]) [pid 17115] read(4, "\24\3\3\0\1", 5) = 5 [pid 17115] read(4, "\1", 1) = 1 [pid 17115] read(4, "\26\3\3\0(", 5) = 5 [pid 17115] read(4, "\vY\375\344:\273J\274h\353\317\362\235\7\252N\254\5\363\356\231\275u)Ji\3\7\203\326B\27"..., 40) = 40 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 737319600}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 737367900}) = 0 [pid 17115] write(4, "\27\3\3\0\342\265\t\177\376\210H\3447\215\310\352H\230\t\207\262\27\361RV\315EU\22\24\276\301"..., 231) = 231 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 737520000}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 737565600}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 737609400}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 737652400}) = 0 [pid 17115] poll([{fd=4, events=POLLIN|POLLPRI}], 1, 0) = 0 (Timeout) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 737736800}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 737779300}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 737822300}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 737864100}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 737911500}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 737955000}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 737996900}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 738041300}) = 0 [pid 17115] poll([{fd=4, events=POLLIN}], 1, 1000) = 1 ([{fd=4, revents=POLLIN}]) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 846013600}) = 0 [pid 17115] poll([{fd=4, events=POLLIN|POLLPRI}], 1, 0) = 1 ([{fd=4, revents=POLLIN}]) [pid 17115] read(4, "\27\3\3\3\257", 5) = 5 [pid 17115] read(4, "\vY\375\344:\273J\275Z[B\360\246\264\377\254f\335\222T\342\351\4.\235t\345W\375~\256\""..., 943) = 943 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 846225600}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 846293100}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 846335300}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 846376500}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 846417700}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 846464100}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 846506600}) = 0 [pid 17115] flock(3, LOCK_UN) = 0 [pid 17115] close(3) = 0 [pid 17115] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.cargo-index-lock", O_RDONLY|O_CLOEXEC) = 3 [pid 17115] ioctl(3, FIOCLEX) = 0 [pid 17115] statfs("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.cargo-index-lock", {f_type="EXT2_SUPER_MAGIC", f_bsize=4096, f_blocks=18687272, f_bfree=6394741, f_bavail=5439708, f_files=4759552, f_ffree=3179048, f_fsid={712344455, 1912640877}, f_namelen=255, f_frsize=4096, f_flags=4128}) = 0 [pid 17115] flock(3, LOCK_SH|LOCK_NB) = 0 [pid 17115] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/3/u/url", O_RDONLY|O_CLOEXEC) = 5 [pid 17115] ioctl(5, FIOCLEX) = 0 [pid 17115] read(5, "{\"name\":\"url\",\"vers\":\"0.1.0\",\"de", 32) = 32 [pid 17115] read(5, "ps\":[{\"name\":\"encoding\",\"req\":\"^"..., 64) = 64 [pid 17115] read(5, "false,\"default_features\":true,\"t"..., 128) = 128 [pid 17115] read(5, "es\":{},\"yanked\":false}\n{\"name\":\""..., 256) = 256 [pid 17115] read(5, "anked\":false}\n{\"name\":\"url\",\"ver"..., 512) = 512 [pid 17115] read(5, "b84b5ef\",\"features\":{\"query_enco"..., 1024) = 1024 [pid 17115] read(5, "],\"optional\":true,\"default_featu"..., 2048) = 2048 [pid 17115] read(5, "ame\":\"url\",\"vers\":\"0.2.11\",\"deps"..., 4096) = 4096 [pid 17115] read(5, "d\":\"normal\"}],\"cksum\":\"d0f97514e"..., 8192) = 8192 [pid 17115] read(5, "coding\"]},\"yanked\":false}\n{\"name"..., 8192) = 8192 [pid 17115] read(5, "features\":[],\"optional\":false,\"d"..., 8192) = 8192 [pid 17115] read(5, "me\":\"idna\",\"req\":\"^0.1.0\",\"featu"..., 8192) = 8192 [pid 17115] read(5, "nd\":\"normal\"},{\"name\":\"matches\","..., 8192) = 8192 [pid 17115] read(5, "alize\",\"req\":\"^0.3\",\"features\":["..., 8192) = 1247 [pid 17115] read(5, "", 6945) = 0 [pid 17115] close(5) = 0 [pid 17115] flock(3, LOCK_UN) = 0 [pid 17115] close(3) = 0 [pid 17115] open("/home/accept/.cargo/git/.cargo-lock-git", O_RDWR|O_CREAT|O_CLOEXEC, 0666) = 3 [pid 17115] ioctl(3, FIOCLEX) = 0 [pid 17115] statfs("/home/accept/.cargo/git/.cargo-lock-git", {f_type="EXT2_SUPER_MAGIC", f_bsize=4096, f_blocks=18687272, f_bfree=6394741, f_bavail=5439708, f_files=4759552, f_ffree=3179048, f_fsid={712344455, 1912640877}, f_namelen=255, f_frsize=4096, f_flags=4128}) = 0 [pid 17115] flock(3, LOCK_EX|LOCK_NB) = 0 [pid 17115] lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept/.cargo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept/.cargo/git", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept/.cargo/git/db", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/.git", 0x7ffd81fee270) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/objects/", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/HEAD", {st_mode=S_IFREG|0664, st_size=23, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/refs/", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] access("/home/accept/.gitconfig", F_OK) = 0 [pid 17115] access("/home/accept/.config/git/config", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] access("/etc/gitconfig", F_OK) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/refs/heads/master", 0x7ffd81fedc20) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/packed-refs", 0x7ffd81fedae0) = -1 ENOENT (No such file or directory) [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, "\33[32m", 5) = 5 [pid 17115] write(2, "\33[1m", 4) = 4 [pid 17115] write(2, " ", 1 ) = 1 [pid 17115] write(2, " ", 1 ) = 1 [pid 17115] write(2, " ", 1 ) = 1 [pid 17115] write(2, " ", 1 ) = 1 [pid 17115] write(2, "Updating", 8Updating) = 8 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, " ", 1 ) = 1 [pid 17115] write(2, "git repository `https://github.a"..., 80git repository `https://github.acc.nl/AcceptDevelopmentBV/sbr-xquery-parser-api`) = 80 [pid 17115] write(2, "\n", 1 ) = 1 [pid 17115] lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept/.cargo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept/.cargo/git", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept/.cargo/git/db", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] lstat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/.git", 0x7ffd81fee050) = -1 ENOENT (No such file or directory) [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/objects/", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/HEAD", {st_mode=S_IFREG|0664, st_size=23, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/refs/", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 17115] access("/home/accept/.gitconfig", F_OK) = 0 [pid 17115] access("/home/accept/.config/git/config", F_OK) = -1 ENOENT (No such file or directory) [pid 17115] access("/etc/gitconfig", F_OK) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 17115] open("/etc/gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 17115] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 17115] close(5) = 0 [pid 17115] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 17115] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 17115] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 17115] close(5) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 859982600}) = 0 [pid 17115] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168e58a4b0}, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 860152300}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 860194500}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 860236100}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 860277000}) = 0 [pid 17115] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 860407800}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 860449700}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 860491100}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 860533900}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 860591800}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 860642300}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 860680800}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 860713200}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 860754500}) = 0 [pid 17115] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 [pid 17115] rt_sigaction(SIGALRM, NULL, {SIG_DFL, [], 0}, 8) = 0 [pid 17115] rt_sigaction(SIGALRM, {0x561ce97494b0, [], SA_RESTORER, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] alarm(300) = 0 [pid 17115] stat("/etc/resolv.conf", {st_mode=S_IFREG|0644, st_size=201, ...}) = 0 [pid 17115] open("/etc/hosts", O_RDONLY|O_CLOEXEC) = 5 [pid 17115] fstat(5, {st_mode=S_IFREG|0644, st_size=248, ...}) = 0 [pid 17115] read(5, "127.0.0.1\tlocalhost\n127.0.1.1\tvm"..., 4096) = 248 [pid 17115] read(5, "", 4096) = 0 [pid 17115] close(5) = 0 [pid 17115] stat("/etc/resolv.conf", {st_mode=S_IFREG|0644, st_size=201, ...}) = 0 [pid 17115] socket(PF_INET, SOCK_DGRAM|SOCK_NONBLOCK, IPPROTO_IP) = 5 [pid 17115] connect(5, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.1.190")}, 16) = 0 [pid 17115] gettimeofday({1498635175, 408764}, NULL) = 0 [pid 17115] poll([{fd=5, events=POLLOUT}], 1, 0) = 1 ([{fd=5, revents=POLLOUT}]) [pid 17115] sendmmsg(5, {{{msg_name(0)=NULL, msg_iov(1)=[{"\362\362\1\0\0\1\0\0\0\0\0\0\6github\3acc\2nl\0\0\1\0\1", 31}], msg_controllen=0, msg_flags=MSG_OOB}, 31}, {{msg_name(0)=NULL, msg_iov(1)=[{"\v\224\1\0\0\1\0\0\0\0\0\0\6github\3acc\2nl\0\0\34\0\1", 31}], msg_controllen=0, msg_flags=MSG_CTRUNC|MSG_TRUNC|MSG_DONTWAIT|MSG_EOR|MSG_WAITALL|MSG_SYN|MSG_CONFIRM|MSG_ERRQUEUE|MSG_NOSIGNAL|MSG_WAITFORONE|0x8df20010}, 31}}, 2, MSG_NOSIGNAL) = 2 [pid 17115] poll([{fd=5, events=POLLIN}], 1, 5000) = 1 ([{fd=5, revents=POLLIN}]) [pid 17115] ioctl(5, FIONREAD, [47]) = 0 [pid 17115] recvfrom(5, "\362\362\205\200\0\1\0\1\0\0\0\0\6github\3acc\2nl\0\0\1\0\1\300"..., 2048, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.1.190")}, [16]) = 47 [pid 17115] gettimeofday({1498635175, 409574}, NULL) = 0 [pid 17115] poll([{fd=5, events=POLLIN}], 1, 4999) = 1 ([{fd=5, revents=POLLIN}]) [pid 17115] ioctl(5, FIONREAD, [105]) = 0 [pid 17115] recvfrom(5, "\v\224\205\200\0\1\0\0\0\1\0\0\6github\3acc\2nl\0\0\34\0\1\300"..., 65536, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.1.190")}, [16]) = 105 [pid 17115] close(5) = 0 [pid 17115] alarm(0) = 300 [pid 17115] rt_sigaction(SIGALRM, {SIG_DFL, [], SA_RESTORER, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 862658900}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 862701600}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 862734800}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 862771600}) = 0 [pid 17115] socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 5 [pid 17115] setsockopt(5, SOL_TCP, TCP_NODELAY, [1], 4) = 0 [pid 17115] fcntl(5, F_GETFL) = 0x2 (flags O_RDWR) [pid 17115] fcntl(5, F_SETFL, O_RDWR|O_NONBLOCK) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863002700}) = 0 [pid 17115] connect(5, {sa_family=AF_INET, sin_port=htons(443), sin_addr=inet_addr("192.168.231.5")}, 16) = -1 EINPROGRESS (Operation now in progress) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863141700}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863185700}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863228200}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863272500}) = 0 [pid 17115] poll([{fd=5, events=POLLOUT}], 1, 0) = 0 (Timeout) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863352900}) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863442800}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863484500}) = 0 [pid 17115] poll([{fd=5, events=POLLOUT}], 1, 0) = 0 (Timeout) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863571400}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863612500}) = 0 [pid 17115] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863743300}) = 0 [pid 17115] poll([{fd=5, events=POLLOUT}], 1, 0) = 0 (Timeout) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863819400}) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863906200}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863947600}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 863989300}) = 0 [pid 17115] poll([{fd=5, events=POLLOUT}], 1, 199) = 1 ([{fd=5, revents=POLLOUT}]) [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 879781900}) = 0 [pid 17115] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 879916900}) = 0 [pid 17115] poll([{fd=5, events=POLLOUT}], 1, 0) = 1 ([{fd=5, revents=POLLOUT}]) [pid 17115] getsockopt(5, SOL_SOCKET, SO_ERROR, [0], [4]) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 880084400}) = 0 [pid 17115] getpeername(5, {sa_family=AF_INET, sin_port=htons(443), sin_addr=inet_addr("192.168.231.5")}, [16]) = 0 [pid 17115] getsockname(5, {sa_family=AF_INET, sin_port=htons(40230), sin_addr=inet_addr("192.168.1.222")}, [16]) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 880217000}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 880261900}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 880303400}) = 0 [pid 17115] clock_gettime(CLOCK_MONOTONIC, {148847, 880347200}) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] select(6, [], [5], [5], NULL) = 1 (out [5]) [pid 17115] sendto(5, "\26\3\1\0\326\1\0\0\322\3\3\272T#\241U\371o#\373\210\265\324r\264\265\271\267P\210\214\233"..., 219, MSG_NOSIGNAL, NULL, 0) = 219 [pid 17115] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 17115] recvfrom(5, "\26\3\3\0b\2\0", 7, 0, NULL, NULL) = 7 [pid 17115] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 17115] recvfrom(5, "\0^\3\3\177\217u\231`qE\322\331\35\302\375\214\t\270:7\374\275\1\214'\37E\302\301\4\264"..., 96, 0, NULL, NULL) = 96 [pid 17115] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 17115] recvfrom(5, "\26\3\3\5\321", 5, 0, NULL, NULL) = 5 [pid 17115] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 17115] recvfrom(5, "\v\0\5\315\0\5\312\0\5\3070\202\5\3030\202\4\253\240\3\2\1\2\2\20G\321\271X\3112\377"..., 1489, 0, NULL, NULL) = 1489 [pid 17115] stat("/etc/ssl/certs/c43a77d9.0", 0x7ffd81fed1e0) = -1 ENOENT (No such file or directory) [pid 17115] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 17115] recvfrom(5, "\26\3\3\1M", 5, 0, NULL, NULL) = 5 [pid 17115] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 17115] recvfrom(5, "\f\0\1I\3\0\27A\4\344\r\177NS\266'qE\273\233", 31, MSG_NOSIGNAL, NULL, 0) = 31 [pid 17115] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] close(5) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] flock(3, LOCK_UN) = 0 [pid 17115] close(3) = 0 [pid 17115] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] write(4, "\25\3\3\0\32\265\t\177\376\210H\3448\1\277\177\261)m\307k\312Jk(\373\222[J\304\210", 31) = 31 [pid 17115] close(4) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f168eb46390}, NULL, 8) = 0 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, "\33[31m", 5) = 5 [pid 17115] write(2, "\33[1m", 4) = 4 [pid 17115] write(2, "error:", 6error:) = 6 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, " ", 1 ) = 1 [pid 17115] write(2, "failed to load source for a depe"..., 65failed to load source for a dependency on `sbr-xquery-parser-api`) = 65 [pid 17115] write(2, "\n", 1 ) = 1 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, "\nCaused by:", 11 Caused by:) = 11 [pid 17115] write(2, "\n", 1 ) = 1 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, " Unable to update https://githu"..., 82 Unable to update https://github.acc.nl/AcceptDevelopmentBV/sbr-xquery-parser-api) = 82 [pid 17115] write(2, "\n", 1 ) = 1 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, "\nCaused by:", 11 Caused by:) = 11 [pid 17115] write(2, "\n", 1 ) = 1 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, " failed to fetch into /home/acc"..., 88 failed to fetch into /home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c) = 88 [pid 17115] write(2, "\n", 1 ) = 1 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] write(2, "\nTo learn more, run the command "..., 53 To learn more, run the command again with --verbose.) = 53 [pid 17115] write(2, "\n", 1 ) = 1 [pid 17115] write(2, "\33(B\33[m", 6) = 6 [pid 17115] sigaltstack({ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=8192}, NULL) = 0 [pid 17115] munmap(0x7f168f37f000, 8192) = 0 [pid 17115] exit_group(101) = ? [pid 17115] +++ exited with 101 +++ <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 101}], 0, NULL) = 17115 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=17115, si_uid=1000, si_status=101, si_utime=2, si_stime=2} --- sigaltstack({ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=8192}, NULL) = 0 munmap(0x7f4cb5227000, 8192) = 0 exit_group(101) = ? +++ exited with 101 +++ accept@vm-jenkins2:~/test/sbr-xquery-interpreter-api$ ````
alexcrichton commented 7 years ago

Ok so early on there we see:

[pid 17115] stat("/var/ssl", 0x7ffd8200f610) = -1 ENOENT (No such file or directory)
[pid 17115] stat("/usr/share/ssl", 0x7ffd8200f610) = -1 ENOENT (No such file or directory)
[pid 17115] stat("/usr/local/ssl", 0x7ffd8200f610) = -1 ENOENT (No such file or directory)
[pid 17115] stat("/usr/local/openssl", 0x7ffd8200f610) = -1 ENOENT (No such file or directory)
[pid 17115] stat("/usr/local/share", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 17115] stat("/usr/lib/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 17115] stat("/usr/ssl", 0x7ffd8200f610) = -1 ENOENT (No such file or directory)
[pid 17115] stat("/etc/openssl", 0x7ffd8200f610) = -1 ENOENT (No such file or directory)
[pid 17115] stat("/etc/pki/tls", 0x7ffd8200f610) = -1 ENOENT (No such file or directory)
[pid 17115] stat("/etc/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 17115] stat("/data/data/com.termux/files/usr/etc/tls", 0x7ffd8200f610) = -1 ENOENT (No such file or directory)

notably, these three directories exist:

[pid 17115] stat("/usr/local/share", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 17115] stat("/usr/lib/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 17115] stat("/etc/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0

Oddly though we don't see sycalls after this happens. These stat syscalls correspond to this loop but the try functions are never invoked because apparently env vars like SSL_CERT_FILE and SSL_CERT_DIR are already set?

@JoeyAcc are those env vars already set by jenkins? If so, maybe those aren't configured right? Something I saw was probing for /etc/ssl/certs/244b5494.0 which looks like some sort of compiled database?

Around the time of the failed verification we see:

stat("/etc/ssl/certs/c43a77d9.0", 0x7ffd81fed1e0) = -1 ENOENT (No such file or directory)

so presumably that file should exist and have the custom GH enterprise certificate?

JoeyAcc commented 7 years ago

Indeed the env var SSL_CERT_FILE was set to /home/accept/cert/accept2017.crt, and SSL_CERT_DIR was set to /etc/ssl/certs.

Additionally, the file /etc/ssl/certs/244b5494.0 did not exist (it seems to be generated by the update-ca-certificates cmd).

However, I just unset them both and ran update-ca-certificates (after which /etc/ssl/certs/244b5494.0 does exist) and strace again, and still got a very similar result from it:

```` accept@vm-jenkins2:~/test/sbr-xquery-interpreter-api$ unset SSL_CERT_DIR; unset SSL_CERT_FILE accept@vm-jenkins2:~/test/sbr-xquery-interpreter-api$ sudo update-ca-certificates Updating certificates in /etc/ssl/certs... 4 added, 1 removed; done. Running hooks in /etc/ca-certificates/update.d... done. accept@vm-jenkins2:~/test/sbr-xquery-interpreter-api$ ls /etc/ssl/certs/244b5494.0 /etc/ssl/certs/244b5494.0 accept@vm-jenkins2:~/test/sbr-xquery-interpreter-api$ strace -f cargo build execve("/home/accept/.cargo/bin/cargo", ["cargo", "build"], [/* 30 vars */]) = 0 brk(NULL) = 0x5621ba6e5000 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde7901f000 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=30356, ...}) = 0 mmap(NULL, 30356, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fde79017000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libz.so.1", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\35\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=104864, ...}) = 0 mmap(NULL, 2199848, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde78be2000 mprotect(0x7fde78bfb000, 2093056, PROT_NONE) = 0 mmap(0x7fde78dfa000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x18000) = 0x7fde78dfa000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\r\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=14608, ...}) = 0 mmap(NULL, 2109680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde789de000 mprotect(0x7fde789e1000, 2093056, PROT_NONE) = 0 mmap(0x7fde78be0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fde78be0000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260`\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=138696, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde79016000 mmap(NULL, 2212904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde787c1000 mprotect(0x7fde787d9000, 2093056, PROT_NONE) = 0 mmap(0x7fde789d8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7fde789d8000 mmap(0x7fde789da000, 13352, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fde789da000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p*\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=89696, ...}) = 0 mmap(NULL, 2185488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde785ab000 mprotect(0x7fde785c1000, 2093056, PROT_NONE) = 0 mmap(0x7fde787c0000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7fde787c0000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\t\2\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=1868984, ...}) = 0 mmap(NULL, 3971488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde781e1000 mprotect(0x7fde783a1000, 2097152, PROT_NONE) = 0 mmap(0x7fde785a1000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c0000) = 0x7fde785a1000 mmap(0x7fde785a7000, 14752, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fde785a7000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libm.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0V\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=1088952, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde79015000 mmap(NULL, 3178744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde77ed8000 mprotect(0x7fde77fe0000, 2093056, PROT_NONE) = 0 mmap(0x7fde781df000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x107000) = 0x7fde781df000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/librt.so.1", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0!\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=31712, ...}) = 0 mmap(NULL, 2128832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde77cd0000 mprotect(0x7fde77cd7000, 2093056, PROT_NONE) = 0 mmap(0x7fde77ed6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fde77ed6000 close(3) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde79014000 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde79012000 arch_prctl(ARCH_SET_FS, 0x7fde79012880) = 0 mprotect(0x7fde785a1000, 16384, PROT_READ) = 0 mprotect(0x7fde789d8000, 4096, PROT_READ) = 0 mprotect(0x7fde77ed6000, 4096, PROT_READ) = 0 mprotect(0x7fde781df000, 4096, PROT_READ) = 0 mprotect(0x7fde78be0000, 4096, PROT_READ) = 0 mprotect(0x7fde78dfa000, 4096, PROT_READ) = 0 mprotect(0x7fde79021000, 4096, PROT_READ) = 0 munmap(0x7fde79017000, 30356) = 0 set_tid_address(0x7fde79012b50) = 36389 set_robust_list(0x7fde79012b60, 24) = 0 rt_sigaction(SIGRTMIN, {0x7fde787c6b50, [], SA_RESTORER|SA_SIGINFO, 0x7fde787d2390}, NULL, 8) = 0 rt_sigaction(SIGRT_1, {0x7fde787c6be0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7fde787d2390}, NULL, 8) = 0 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 readlink("/etc/malloc.conf", 0x7ffc434a5eb0, 4096) = -1 ENOENT (No such file or directory) brk(NULL) = 0x5621ba6e5000 mmap(NULL, 2097152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde77ad0000 munmap(0x7fde77ad0000, 2097152) = 0 mmap(NULL, 4190208, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde778d1000 munmap(0x7fde778d1000, 1241088) = 0 munmap(0x7fde77c00000, 851968) = 0 open("/sys/devices/system/cpu/online", O_RDONLY|O_CLOEXEC) = 3 read(3, "0-1\n", 8192) = 4 close(3) = 0 rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7fde782164b0}, {SIG_DFL, [], 0}, 8) = 0 mmap(NULL, 2097152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde77800000 open("/proc/self/maps", O_RDONLY|O_CLOEXEC) = 3 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0 read(3, "5621b90b8000-5621b96c8000 r-xp 0"..., 1024) = 1024 read(3, " /lib/x86_64-linux-gnu/libm-"..., 1024) = 1024 read(3, " /lib/x86_64-linux-gnu/libpt"..., 1024) = 1024 read(3, ":00 271763 /"..., 1024) = 1024 close(3) = 0 sched_getaffinity(36389, 32, [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) = 32 mmap(0x7ffc42ca8000, 4096, PROT_NONE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7ffc42ca8000 rt_sigaction(SIGSEGV, {0x5621b9533bc0, [], SA_RESTORER|SA_STACK|SA_SIGINFO, 0x7fde787d2390}, NULL, 8) = 0 rt_sigaction(SIGBUS, {0x5621b9533bc0, [], SA_RESTORER|SA_STACK|SA_SIGINFO, 0x7fde787d2390}, NULL, 8) = 0 sigaltstack(NULL, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde7901d000 sigaltstack({ss_sp=0x7fde7901d000, ss_flags=0, ss_size=8192}, NULL) = 0 getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 stat("/home/accept/.cargo/bin/multirust", 0x7ffc4349fc90) = -1 ENOENT (No such file or directory) getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 stat("/home/accept/.cargo/bin/rustup-init", 0x7ffc4349f990) = -1 ENOENT (No such file or directory) stat("/home/accept/.cargo/bin/multirust-setup", 0x7ffc4349f990) = -1 ENOENT (No such file or directory) stat("/home/accept/.terminfo", 0x7ffc4349ee60) = -1 ENOENT (No such file or directory) stat("/etc/terminfo", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/etc/terminfo/x/xterm-256color", 0x7ffc4349ee60) = -1 ENOENT (No such file or directory) stat("/etc/terminfo/78/xterm-256color", 0x7ffc4349ee60) = -1 ENOENT (No such file or directory) stat("/lib/terminfo", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/lib/terminfo/x/xterm-256color", {st_mode=S_IFREG|0644, st_size=3417, ...}) = 0 open("/lib/terminfo/x/xterm-256color", O_RDONLY|O_CLOEXEC) = 3 ioctl(3, FIOCLEX) = 0 read(3, "\32\1%\0&\0\17\0\235\1\262\5xterm-256color|xterm"..., 8192) = 3417 getrandom("", 0, GRND_NONBLOCK) = 0 getrandom("\363\26\20Q4\235\224<", 8, GRND_NONBLOCK) = 8 getrandom("\360t,\357\343\257f\203", 8, GRND_NONBLOCK) = 8 close(3) = 0 stat("/home/accept/.rustup/rustup-version", 0x7ffc4349e8b0) = -1 ENOENT (No such file or directory) stat("/home/accept/.multirust", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/.rustup", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 stat("/home/accept/.rustup", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/.rustup/version", 0x7ffc4349e890) = -1 ENOENT (No such file or directory) stat("/home/accept/.rustup", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/.rustup/settings.toml", {st_mode=S_IFREG|0664, st_size=271, ...}) = 0 open("/home/accept/.rustup/settings.toml", O_RDONLY|O_CLOEXEC) = 3 ioctl(3, FIOCLEX) = 0 read(3, "default_host_triple = \"x86_64-un", 32) = 32 read(3, "known-linux-gnu\"\ndefault_toolcha"..., 64) = 64 read(3, "\nversion = \"12\"\n\n[overrides]\n\"/h"..., 128) = 128 read(3, " \"nightly-2017-04-04-x86_64-unkn"..., 256) = 47 read(3, "", 209) = 0 close(3) = 0 getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept/test", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 lstat("/home/accept/test/sbr-xquery-interpreter-api", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/test/sbr-xquery-interpreter-api", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept/test", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 lstat("/home/accept/test/sbr-xquery-interpreter-api", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/test", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept/test", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/cargo", {st_mode=S_IFREG|0755, st_size=14172520, ...}) = 0 getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 futex(0x7fde78be10a8, FUTEX_WAKE_PRIVATE, 2147483647) = 0 pipe2([3, 4], O_CLOEXEC) = 0 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fde79012b50) = 36390 strace: Process 36390 attached [pid 36390] set_robust_list(0x7fde79012b60, 24) = 0 [pid 36389] close(4) = 0 [pid 36389] read(3, [pid 36390] close(3) = 0 [pid 36390] rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_DFL, [PIPE], SA_RESTORER|SA_RESTART, 0x7fde782164b0}, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7fde782164b0}, 8) = 0 [pid 36390] execve("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/cargo", ["/home/accept/.rustup/toolchains/"..., "build"], [/* 35 vars */] [pid 36389] <... read resumed> "", 8) = 0 [pid 36389] close(3) = 0 [pid 36389] wait4(36390, [pid 36390] <... execve resumed> ) = 0 [pid 36390] brk(NULL) = 0x559fed1ae000 [pid 36390] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f46468c0000 [pid 36390] readlink("/proc/self/exe", "/home/accept/.rustup/toolchains/"..., 4096) = 74 [pid 36390] access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/tls/x86_64", 0x7fffa02b0fb0) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/tls", 0x7fffa02b0fb0) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/x86_64", 0x7fffa02b0fb0) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/tls/x86_64", 0x7fffa02b0fb0) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/tls", 0x7fffa02b0fb0) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/x86_64", 0x7fffa02b0fb0) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] fstat(3, {st_mode=S_IFREG|0644, st_size=30356, ...}) = 0 [pid 36390] mmap(NULL, 30356, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f46468b8000 [pid 36390] close(3) = 0 [pid 36390] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] open("/lib/x86_64-linux-gnu/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\r\0\0\0\0\0\0"..., 832) = 832 [pid 36390] fstat(3, {st_mode=S_IFREG|0644, st_size=14608, ...}) = 0 [pid 36390] mmap(NULL, 2109680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f4646499000 [pid 36390] mprotect(0x7f464649c000, 2093056, PROT_NONE) = 0 [pid 36390] mmap(0x7f464669b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f464669b000 [pid 36390] close(3) = 0 [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] open("/lib/x86_64-linux-gnu/librt.so.1", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0!\0\0\0\0\0\0"..., 832) = 832 [pid 36390] fstat(3, {st_mode=S_IFREG|0644, st_size=31712, ...}) = 0 [pid 36390] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f46468b7000 [pid 36390] mmap(NULL, 2128832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f4646291000 [pid 36390] mprotect(0x7f4646298000, 2093056, PROT_NONE) = 0 [pid 36390] mmap(0x7f4646497000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f4646497000 [pid 36390] close(3) = 0 [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] open("/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260`\0\0\0\0\0\0"..., 832) = 832 [pid 36390] fstat(3, {st_mode=S_IFREG|0755, st_size=138696, ...}) = 0 [pid 36390] mmap(NULL, 2212904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f4646074000 [pid 36390] mprotect(0x7f464608c000, 2093056, PROT_NONE) = 0 [pid 36390] mmap(0x7f464628b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f464628b000 [pid 36390] mmap(0x7f464628d000, 13352, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f464628d000 [pid 36390] close(3) = 0 [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] open("/lib/x86_64-linux-gnu/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p*\0\0\0\0\0\0"..., 832) = 832 [pid 36390] fstat(3, {st_mode=S_IFREG|0644, st_size=89696, ...}) = 0 [pid 36390] mmap(NULL, 2185488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f4645e5e000 [pid 36390] mprotect(0x7f4645e74000, 2093056, PROT_NONE) = 0 [pid 36390] mmap(0x7f4646073000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f4646073000 [pid 36390] close(3) = 0 [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] open("/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\t\2\0\0\0\0\0"..., 832) = 832 [pid 36390] fstat(3, {st_mode=S_IFREG|0755, st_size=1868984, ...}) = 0 [pid 36390] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f46468b6000 [pid 36390] mmap(NULL, 3971488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f4645a94000 [pid 36390] mprotect(0x7f4645c54000, 2097152, PROT_NONE) = 0 [pid 36390] mmap(0x7f4645e54000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c0000) = 0x7f4645e54000 [pid 36390] mmap(0x7f4645e5a000, 14752, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f4645e5a000 [pid 36390] close(3) = 0 [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] open("/lib/x86_64-linux-gnu/libm.so.6", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0V\0\0\0\0\0\0"..., 832) = 832 [pid 36390] fstat(3, {st_mode=S_IFREG|0644, st_size=1088952, ...}) = 0 [pid 36390] mmap(NULL, 3178744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f464578b000 [pid 36390] mprotect(0x7f4645893000, 2093056, PROT_NONE) = 0 [pid 36390] mmap(0x7f4645a92000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x107000) = 0x7f4645a92000 [pid 36390] close(3) = 0 [pid 36390] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f46468b5000 [pid 36390] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f46468b3000 [pid 36390] arch_prctl(ARCH_SET_FS, 0x7f46468b38c0) = 0 [pid 36390] mprotect(0x7f4645e54000, 16384, PROT_READ) = 0 [pid 36390] mprotect(0x7f4645a92000, 4096, PROT_READ) = 0 [pid 36390] mprotect(0x7f464628b000, 4096, PROT_READ) = 0 [pid 36390] mprotect(0x7f4646497000, 4096, PROT_READ) = 0 [pid 36390] mprotect(0x7f464669b000, 4096, PROT_READ) = 0 [pid 36390] mprotect(0x7f46468c2000, 4096, PROT_READ) = 0 [pid 36390] munmap(0x7f46468b8000, 30356) = 0 [pid 36390] set_tid_address(0x7f46468b3b90) = 36390 [pid 36390] set_robust_list(0x7f46468b3ba0, 24) = 0 [pid 36390] rt_sigaction(SIGRTMIN, {0x7f4646079b50, [], SA_RESTORER|SA_SIGINFO, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] rt_sigaction(SIGRT_1, {0x7f4646079be0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 [pid 36390] getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 [pid 36390] readlink("/etc/malloc.conf", 0x7fffa02b07c0, 4096) = -1 ENOENT (No such file or directory) [pid 36390] brk(NULL) = 0x559fed1ae000 [pid 36390] mmap(NULL, 2097152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f464558b000 [pid 36390] munmap(0x7f464558b000, 2097152) = 0 [pid 36390] mmap(NULL, 4190208, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f464538c000 [pid 36390] munmap(0x7f464538c000, 475136) = 0 [pid 36390] munmap(0x7f4645600000, 1617920) = 0 [pid 36390] open("/sys/devices/system/cpu/online", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] read(3, "0-1\n", 8192) = 4 [pid 36390] close(3) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4645ac94b0}, {SIG_DFL, [], 0}, 8) = 0 [pid 36390] mmap(NULL, 2097152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4645200000 [pid 36390] open("/proc/self/maps", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 [pid 36390] fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0 [pid 36390] read(3, "559febe10000-559fec6cf000 r-xp 0"..., 1024) = 1024 [pid 36390] read(3, "-gnu/libc-2.23.so\n7f4645e54000-7"..., 1024) = 1024 [pid 36390] read(3, " /lib/x86_64-linux-gnu/libpthrea"..., 1024) = 1024 [pid 36390] read(3, " /lib/x86_64-linux-gn"..., 1024) = 729 [pid 36390] close(3) = 0 [pid 36390] sched_getaffinity(36390, 32, [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) = 32 [pid 36390] mmap(0x7fff9fab4000, 4096, PROT_NONE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fff9fab4000 [pid 36390] rt_sigaction(SIGSEGV, {0x559fec4c4a90, [], SA_RESTORER|SA_STACK|SA_SIGINFO, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] rt_sigaction(SIGBUS, {0x559fec4c4a90, [], SA_RESTORER|SA_STACK|SA_SIGINFO, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] sigaltstack(NULL, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0 [pid 36390] mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f46468be000 [pid 36390] sigaltstack({ss_sp=0x7f46468be000, ss_flags=0, ss_size=8192}, NULL) = 0 [pid 36390] ioctl(2, TCGETS, {B38400 opost isig icanon echo ...}) = 0 [pid 36390] stat("/home/accept/.terminfo", 0x7fffa02b0330) = -1 ENOENT (No such file or directory) [pid 36390] stat("/etc/terminfo", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] stat("/etc/terminfo/x/xterm-256color", 0x7fffa02b0330) = -1 ENOENT (No such file or directory) [pid 36390] stat("/etc/terminfo/78/xterm-256color", 0x7fffa02b0330) = -1 ENOENT (No such file or directory) [pid 36390] stat("/lib/terminfo", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] stat("/lib/terminfo/x/xterm-256color", {st_mode=S_IFREG|0644, st_size=3417, ...}) = 0 [pid 36390] open("/lib/terminfo/x/xterm-256color", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] ioctl(3, FIOCLEX) = 0 [pid 36390] read(3, "\32\1%\0&\0\17\0\235\1\262\5xterm-256color|xterm"..., 8192) = 3417 [pid 36390] getrandom("", 0, GRND_NONBLOCK) = 0 [pid 36390] getrandom("\337\245Z0\30\337i\354", 8, GRND_NONBLOCK) = 8 [pid 36390] getrandom("Q\225\203\315\22\266\376K", 8, GRND_NONBLOCK) = 8 [pid 36390] close(3) = 0 [pid 36390] ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0 [pid 36390] stat("/home/accept/.terminfo", 0x7fffa02b0330) = -1 ENOENT (No such file or directory) [pid 36390] stat("/etc/terminfo", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] stat("/etc/terminfo/x/xterm-256color", 0x7fffa02b0330) = -1 ENOENT (No such file or directory) [pid 36390] stat("/etc/terminfo/78/xterm-256color", 0x7fffa02b0330) = -1 ENOENT (No such file or directory) [pid 36390] stat("/lib/terminfo", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] stat("/lib/terminfo/x/xterm-256color", {st_mode=S_IFREG|0644, st_size=3417, ...}) = 0 [pid 36390] open("/lib/terminfo/x/xterm-256color", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] ioctl(3, FIOCLEX) = 0 [pid 36390] read(3, "\32\1%\0&\0\17\0\235\1\262\5xterm-256color|xterm"..., 8192) = 3417 [pid 36390] close(3) = 0 [pid 36390] getcwd("/home/accept/test/sbr-xquery-interpreter-api", 512) = 45 [pid 36390] mmap(NULL, 2097152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f4645000000 [pid 36390] stat("/home/accept/test/sbr-xquery-interpreter-api/.cargo/config", 0x7fffa02ae530) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/test/.cargo/config", 0x7fffa02ae530) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/.cargo/config", 0x7fffa02ae530) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/.cargo/config", 0x7fffa02ae530) = -1 ENOENT (No such file or directory) [pid 36390] stat("/.cargo/config", 0x7fffa02ae530) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/.cargo/config", 0x7fffa02ae530) = -1 ENOENT (No such file or directory) [pid 36390] stat("/var/ssl", 0x7fffa02aea50) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/share/ssl", 0x7fffa02aea50) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/ssl", 0x7fffa02aea50) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/openssl", 0x7fffa02aea50) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/share", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] stat("/usr/lib/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] stat("/usr/ssl", 0x7fffa02aea50) = -1 ENOENT (No such file or directory) [pid 36390] stat("/etc/openssl", 0x7fffa02aea50) = -1 ENOENT (No such file or directory) [pid 36390] stat("/etc/pki/tls", 0x7fffa02aea50) = -1 ENOENT (No such file or directory) [pid 36390] stat("/etc/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] stat("/data/data/com.termux/files/usr/etc/tls", 0x7fffa02aea50) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/share/cert.pem", 0x7fffa02aeb10) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/share/certs.pem", 0x7fffa02aeb10) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/share/certs/ca-certificates.crt", 0x7fffa02aeb10) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/share/certs/ca-root-nss.crt", 0x7fffa02aeb10) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/share/certs/ca-bundle.crt", 0x7fffa02aeb10) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/share/certs", 0x7fffa02aeb10) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/lib/ssl/cert.pem", 0x7fffa02aeb10) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/lib/ssl/certs.pem", 0x7fffa02aeb10) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/lib/ssl/certs/ca-certificates.crt", {st_mode=S_IFREG|0644, st_size=285230, ...}) = 0 [pid 36390] stat("/usr/lib/ssl/certs", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 [pid 36390] open("/dev/urandom", O_RDONLY|O_NOCTTY|O_NONBLOCK) = 3 [pid 36390] fstat(3, {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 9), ...}) = 0 [pid 36390] poll([{fd=3, events=POLLIN}], 1, 10) = 1 ([{fd=3, revents=POLLIN}]) [pid 36390] read(3, "\26\223,\351\3270\267ja\365\rL\253@\373\\\314R\206q)\212;.#i\224\356{v\355\320", 32) = 32 [pid 36390] close(3) = 0 [pid 36390] getuid() = 1000 [pid 36390] open("/usr/lib/ssl/certs/ca-certificates.crt", O_RDONLY) = 3 [pid 36390] fstat(3, {st_mode=S_IFREG|0644, st_size=285230, ...}) = 0 [pid 36390] read(3, "-----BEGIN CERTIFICATE-----\nMIIH"..., 4096) = 4096 [pid 36390] read(3, "WIm\nfQwng4/F9tqgaHtPkl7qpHMyEVNE"..., 4096) = 4096 [pid 36390] read(3, "Ktmyuy/uE5jF66CyCU3nuDuP/jVo23Ee"..., 4096) = 4096 [pid 36390] read(3, "0IFRUUCBOZXR3\nb3JrMSAwHgYDVQQDEx"..., 4096) = 4096 [pid 36390] read(3, "NAQEFBQAwRDELMAkGA1UE\nBhMCVVMxFD"..., 4096) = 4096 [pid 36390] read(3, "BAQEFAAOCAQ8AMIIBCgKCAQEAp23gdE6"..., 4096) = 4096 [pid 36390] read(3, "sYCA0irhpuF\n3dvd6qJ2gHN99ZwExEWN"..., 4096) = 4096 [pid 36390] read(3, "6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gq"..., 4096) = 4096 [pid 36390] read(3, "NV\nBAYTAlNLMRMwEQYDVQQHEwpCcmF0a"..., 4096) = 4096 [pid 36390] read(3, "VQQKEx5BQyBDYW1lcmZpcm1hIFNBIENJ"..., 4096) = 4096 [pid 36390] read(3, "MDU4NThaFw00NDExMDgwMDU4NThaMFgx"..., 4096) = 4096 [pid 36390] read(3, "TEqkPFMTFYvZbF6nVsmnWxTfj3l/+WFv"..., 4096) = 4096 [pid 36390] read(3, "zMKND5pCCrlUoSe1b16kQ\nOA7+j0xbm0"..., 4096) = 4096 [pid 36390] read(3, "EIRUpdPA+nJCdDC7xij5aqgwJHsfV\nPK"..., 4096) = 4096 [pid 36390] read(3, "cyBSb290MIIBIjANBgkqhkiG9w0BAQEF"..., 4096) = 4096 [pid 36390] read(3, "RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMe"..., 4096) = 4096 [pid 36390] read(3, "\n-----BEGIN CERTIFICATE-----\nMII"..., 4096) = 4096 [pid 36390] read(3, "GntewImbQKDdSFc8gS4TXt8QUxHXOZDO"..., 4096) = 4096 [pid 36390] read(3, "1i8b5QZ7dsvfPx\nH2sMNgcWfzd8qVtte"..., 4096) = 4096 [pid 36390] read(3, "MIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/"..., 4096) = 4096 [pid 36390] read(3, "HdL4mrLZBdd56rF+NP8m800ERElvlEFD"..., 4096) = 4096 [pid 36390] read(3, "XU42\ntSHKXzlABF9bfsyjxiupQB7ZNoT"..., 4096) = 4096 [pid 36390] read(3, "DO\nTLKBtjDOWU/aWR1qeqRFsIImgYZ29"..., 4096) = 4096 [pid 36390] read(3, "NfMjA0OCBp\nbmNvcnAuIGJ5IHJlZi4gK"..., 4096) = 4096 [pid 36390] read(3, "BEGIN CERTIFICATE-----\nMIIEPjCCA"..., 4096) = 4096 [pid 36390] read(3, "iOe/FP3gx7kC\nAwEAAaOCAQkwggEFMHA"..., 4096) = 4096 [pid 36390] read(3, "1gdLymmasoR6d5NFFxWfJNCYExL/u6Au"..., 4096) = 4096 [pid 36390] read(3, "4b7UVXGYNTq+k+qurUKykG/g/CFNNWMz"..., 4096) = 4096 [pid 36390] read(3, "NuH8KrUwJM/gYwx7WBr+mbpCErGR9Hxo"..., 4096) = 4096 [pid 36390] read(3, "4NzEbMBkGA1UEChMSQUMgQ2FtZXJmaXJ"..., 4096) = 4096 [pid 36390] read(3, "QADggEPADCCAQoCggEBAKbPJA6+Lm8om"..., 4096) = 4096 [pid 36390] read(3, "GFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBd"..., 4096) = 4096 [pid 36390] read(3, "jK9ouuU\n+ehcCuz/mNKvcbO0U59Oh++S"..., 4096) = 4096 [pid 36390] read(3, "jcIYyHF2fYPepraX/z9E0+X1b\nF8bc1g"..., 4096) = 4096 [pid 36390] read(3, "XVyL2NybC8wHQYDVR0OBBYE\nFASqekej"..., 4096) = 4096 [pid 36390] read(3, "8GA1UEBxMIQnVkYXBlc3QxFjAUBgNVBA"..., 4096) = 4096 [pid 36390] read(3, "DVQQKEx5OZXRMb2NrIEhhbG96YXRiaXp"..., 4096) = 4096 [pid 36390] read(3, "IN CERTIFICATE-----\nMIIG0TCCBbmg"..., 4096) = 4096 [pid 36390] read(3, "vdCBHQSBDQTAeFw0w\nNTEyMTExNjAzND"..., 4096) = 4096 [pid 36390] read(3, "D3N1c2NlcnRlLmdvYi52ZaAbBgVghl4C"..., 4096) = 4096 [pid 36390] read(3, "aHv5+HBg6XJxg\nFyo6dIMzMH1hVBHL7a"..., 4096) = 4096 [pid 36390] read(3, "jyjPtr7guXd\n8lyyBTNvijbO0BNO/79K"..., 4096) = 4096 [pid 36390] read(3, "YDVQQLExxSb290IENlcnRpZmljYXRpb2"..., 4096) = 4096 [pid 36390] read(3, "AgIQCgEBAQAAAnwAAAAKAAAAAjANBgkq"..., 4096) = 4096 [pid 36390] read(3, "FQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCC"..., 4096) = 4096 [pid 36390] read(3, "WgGmBSWh9JhNrxtJ1aeV+7AwFb9\nMs+k"..., 4096) = 4096 [pid 36390] read(3, "NCMEAwDwYDVR0TAQH/BAUwAwEB\n/zAOB"..., 4096) = 4096 [pid 36390] read(3, "TtJlycM33+FC\nY7BXN0Ute4qcvwXqZVU"..., 4096) = 4096 [pid 36390] read(3, "MjCCASIwDQYJKoZIhvcNAQEBBQADggEP"..., 4096) = 4096 [pid 36390] read(3, "93\nd3cuc3RhcnRzc2wuY29tL3BvbGlje"..., 4096) = 4096 [pid 36390] read(3, "0ZwNq7eEPS8CRhXBF4EKe3ikj1AENoBB"..., 4096) = 4096 [pid 36390] read(3, "iG\n9w0BAQsFAAOCAQEATpYS2353XpInn"..., 4096) = 4096 [pid 36390] read(3, "0vSk3FQQoHt5FRnDsr7p4DooqzgB53MB"..., 4096) = 4096 [pid 36390] read(3, "sCC\nbwq7EsiHSycR+R4tx5M/nttfJmtS"..., 4096) = 4096 [pid 36390] read(3, "+mHtwX6WQ\n2K34ArZv02DdQEsixT2tOn"..., 4096) = 4096 [pid 36390] read(3, "w4HBM7uIHqHn4rS9MWwOUT1v+5ZWgOI2"..., 4096) = 4096 [pid 36390] read(3, "gNVHRMBAf8E\nBTADAQH/MA4GA1UdDwEB"..., 4096) = 4096 [pid 36390] read(3, "mzB6azZie60EI4RYZeLbK4rnJVM3YlNf"..., 4096) = 4096 [pid 36390] read(3, "\nni4gKGMpIEFyYWzEsWsgMjAwNzCCASI"..., 4096) = 4096 [pid 36390] read(3, "vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0"..., 4096) = 4096 [pid 36390] read(3, "wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5"..., 4096) = 4096 [pid 36390] read(3, "zAdBgNVBAMTFlVUTi1VU0VSRmlyc3QtS"..., 4096) = 4096 [pid 36390] read(3, "Hhv2Vr\nn5Z20T0CAwEAATANBgkqhkiG9"..., 4096) = 4096 [pid 36390] read(3, "Tk1OVowXzELMAkGA1UEBhMCVVMxFzAVB"..., 4096) = 4096 [pid 36390] read(3, "BZMFcwVRYJ\naW1hZ2UvZ2lmMCEwHzAHB"..., 4096) = 4096 [pid 36390] read(3, "UEChMEVklTQTEvMC0GA1UECxMmVmlzYS"..., 4096) = 4096 [pid 36390] read(3, "4niXVOKM6Cm6\njBAyvd0zaziGfjk9DgN"..., 4096) = 4096 [pid 36390] read(3, "V\r\nBAMMFmdpdGh1Yi5hY2NlcHRkZXYub"..., 4096) = 4096 [pid 36390] read(3, "L=Salford/O=COMODO CA Limited/CN"..., 4096) = 4096 [pid 36390] read(3, "pb25TZWN1cmVTZXJ2ZXJDQS5jcnQwJAY"..., 4096) = 2606 [pid 36390] read(3, "", 4096) = 0 [pid 36390] close(3) = 0 [pid 36390] sysinfo({uptime=321348, loads=[3072, 3296, 896], totalram=2038116352, freeram=252964864, sharedram=23498752, bufferram=1029287936, totalswap=2092953600, freeswap=2066694144, procs=190, totalhigh=0, freehigh=0, mem_unit=1}) = 0 [pid 36390] futex(0x559fec93ae04, FUTEX_WAKE_PRIVATE, 2147483647) = 0 [pid 36390] access("/home/accept/.gitconfig", F_OK) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 3 [pid 36390] read(3, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(3) = 0 [pid 36390] access("/home/accept/.config/git/config", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] access("/etc/gitconfig", F_OK) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 3 [pid 36390] read(3, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(3) = 0 [pid 36390] stat("/home/accept/test/sbr-xquery-interpreter-api/Cargo.toml", {st_mode=S_IFREG|0664, st_size=874, ...}) = 0 [pid 36390] open("/home/accept/test/sbr-xquery-interpreter-api/Cargo.toml", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] ioctl(3, FIOCLEX) = 0 [pid 36390] read(3, "[package]\nname = \"sbr-xquery-int", 32) = 32 [pid 36390] read(3, "erpreter-api\"\nversion = \"0.6.2\"\n"..., 64) = 64 [pid 36390] read(3, "y.ezechiels@gmail.com>\"]\ndescrip"..., 128) = 128 [pid 36390] read(3, "ies]\nchrono = { version = \"0.3\","..., 256) = 256 [pid 36390] read(3, "\nxmltree = \"0.4\"\nunicode-segment"..., 512) = 394 [pid 36390] read(3, "", 118) = 0 [pid 36390] close(3) = 0 [pid 36390] stat("/home/accept/test/sbr-xquery-interpreter-api/src/lib.rs", {st_mode=S_IFREG|0775, st_size=4334, ...}) = 0 [pid 36390] stat("/home/accept/test/sbr-xquery-interpreter-api/src/main.rs", 0x7fffa02917f0) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/test/sbr-xquery-interpreter-api/src/bin", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3 [pid 36390] fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] getdents(3, /* 3 entries */, 32768) = 80 [pid 36390] getdents(3, /* 0 entries */, 32768) = 0 [pid 36390] close(3) = 0 [pid 36390] open("/home/accept/test/sbr-xquery-interpreter-api/examples", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/test/sbr-xquery-interpreter-api/tests", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/test/sbr-xquery-interpreter-api/benches", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/test/sbr-xquery-interpreter-api/build.rs", 0x7fffa02893f0) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/test/Cargo.toml", 0x7fffa0295db0) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/Cargo.toml", 0x7fffa0295db0) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/Cargo.toml", 0x7fffa0295db0) = -1 ENOENT (No such file or directory) [pid 36390] stat("/Cargo.toml", 0x7fffa0295db0) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/test/sbr-xquery-interpreter-api/Cargo.lock", 0x7fffa0290b00) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/test/sbr-xquery-interpreter-api/Cargo.toml", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] ioctl(3, FIOCLEX) = 0 [pid 36390] read(3, "[package]\nname = \"sbr-xquery-int", 32) = 32 [pid 36390] read(3, "erpreter-api\"\nversion = \"0.6.2\"\n"..., 64) = 64 [pid 36390] read(3, "y.ezechiels@gmail.com>\"]\ndescrip"..., 128) = 128 [pid 36390] read(3, "ies]\nchrono = { version = \"0.3\","..., 256) = 256 [pid 36390] read(3, "\nxmltree = \"0.4\"\nunicode-segment"..., 512) = 394 [pid 36390] read(3, "", 118) = 0 [pid 36390] close(3) = 0 [pid 36390] stat("/home/accept/test/sbr-xquery-interpreter-api/src/lib.rs", {st_mode=S_IFREG|0775, st_size=4334, ...}) = 0 [pid 36390] stat("/home/accept/test/sbr-xquery-interpreter-api/src/main.rs", 0x7fffa028ca60) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/test/sbr-xquery-interpreter-api/src/bin", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3 [pid 36390] fstat(3, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] getdents(3, /* 3 entries */, 32768) = 80 [pid 36390] getdents(3, /* 0 entries */, 32768) = 0 [pid 36390] close(3) = 0 [pid 36390] open("/home/accept/test/sbr-xquery-interpreter-api/examples", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/test/sbr-xquery-interpreter-api/tests", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/test/sbr-xquery-interpreter-api/benches", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/test/sbr-xquery-interpreter-api/build.rs", 0x7fffa0284660) = -1 ENOENT (No such file or directory) [pid 36390] open("/checkout/obj/build/x86_64-unknown-linux-gnu/openssl/install/ssl/openssl.cnf", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 36390] socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP) = 3 [pid 36390] close(3) = 0 [pid 36390] stat("/var/ssl", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/share/ssl", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/ssl", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/openssl", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/share", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] stat("/usr/lib/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] stat("/usr/ssl", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/etc/openssl", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/etc/pki/tls", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/etc/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] stat("/data/data/com.termux/files/usr/etc/tls", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] access("/home/accept/.gitconfig", F_OK) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 3 [pid 36390] read(3, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(3) = 0 [pid 36390] access("/home/accept/.config/git/config", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] access("/etc/gitconfig", F_OK) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 3 [pid 36390] read(3, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(3) = 0 [pid 36390] mkdir("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823", 0777) = -1 EEXIST (File exists) [pid 36390] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.cargo-index-lock", O_RDWR|O_CREAT|O_CLOEXEC, 0666) = 3 [pid 36390] ioctl(3, FIOCLEX) = 0 [pid 36390] statfs("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.cargo-index-lock", {f_type="EXT2_SUPER_MAGIC", f_bsize=4096, f_blocks=18687272, f_bfree=6263596, f_bavail=5308563, f_files=4759552, f_ffree=3144324, f_fsid={712344455, 1912640877}, f_namelen=255, f_frsize=4096, f_flags=4128}) = 0 [pid 36390] flock(3, LOCK_EX|LOCK_NB) = 0 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, "\33[32m", 5) = 5 [pid 36390] write(2, "\33[1m", 4) = 4 [pid 36390] write(2, " ", 1 ) = 1 [pid 36390] write(2, " ", 1 ) = 1 [pid 36390] write(2, " ", 1 ) = 1 [pid 36390] write(2, " ", 1 ) = 1 [pid 36390] write(2, "Updating", 8Updating) = 8 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, " ", 1 ) = 1 [pid 36390] write(2, "registry `https://github.com/rus"..., 55registry `https://github.com/rust-lang/crates.io-index`) = 55 [pid 36390] write(2, "\n", 1 ) = 1 [pid 36390] lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept/.cargo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept/.cargo/registry", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept/.cargo/registry/index", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823", {st_mode=S_IFDIR|0775, st_size=12288, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/objects/", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/HEAD", {st_mode=S_IFREG|0664, st_size=23, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/refs/", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] access("/home/accept/.gitconfig", F_OK) = 0 [pid 36390] access("/home/accept/.config/git/config", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] access("/etc/gitconfig", F_OK) = 0 [pid 36390] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", O_RDONLY) = 4 [pid 36390] read(4, "[core]\n\tbare = false\n\trepository"..., 92) = 92 [pid 36390] close(4) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 4 [pid 36390] read(4, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(4) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 4 [pid 36390] read(4, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(4) = 0 [pid 36390] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", O_RDONLY) = 4 [pid 36390] read(4, "[core]\n\tbare = false\n\trepository"..., 92) = 92 [pid 36390] close(4) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 4 [pid 36390] read(4, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(4) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 4 [pid 36390] read(4, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(4) = 0 [pid 36390] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/", {st_mode=S_IFDIR|0775, st_size=12288, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", O_RDONLY) = 4 [pid 36390] read(4, "[core]\n\tbare = false\n\trepository"..., 92) = 92 [pid 36390] close(4) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 4 [pid 36390] read(4, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(4) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 4 [pid 36390] read(4, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(4) = 0 [pid 36390] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/config", O_RDONLY) = 4 [pid 36390] read(4, "[core]\n\tbare = false\n\trepository"..., 92) = 92 [pid 36390] close(4) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 4 [pid 36390] read(4, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(4) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 4 [pid 36390] read(4, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(4) = 0 [pid 36390] stat("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/refs/heads/master", {st_mode=S_IFREG|0664, st_size=41, ...}) = 0 [pid 36390] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.git/refs/heads/master", O_RDONLY) = 4 [pid 36390] read(4, "fa80d450fab0981f80b542a39e0a6fa2"..., 41) = 41 [pid 36390] close(4) = 0 [pid 36390] stat("/var/ssl", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/share/ssl", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/ssl", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/openssl", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/usr/local/share", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] stat("/usr/lib/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] stat("/usr/ssl", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/etc/openssl", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/etc/pki/tls", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] stat("/etc/ssl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] stat("/data/data/com.termux/files/usr/etc/tls", 0x7fffa028d290) = -1 ENOENT (No such file or directory) [pid 36390] access("/home/accept/.gitconfig", F_OK) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 4 [pid 36390] read(4, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(4) = 0 [pid 36390] access("/home/accept/.config/git/config", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] access("/etc/gitconfig", F_OK) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 4 [pid 36390] read(4, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(4) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 895521700}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 895570200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 895628400}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 895665500}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 895734400}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 895796200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 895874200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 895933200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 895990900}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 896077200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 896197300}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 896251500}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 896309300}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 896366100}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 896425400}) = 0 [pid 36390] socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 4 [pid 36390] connect(4, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) [pid 36390] close(4) = 0 [pid 36390] socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 4 [pid 36390] connect(4, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) [pid 36390] close(4) = 0 [pid 36390] open("/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 4 [pid 36390] fstat(4, {st_mode=S_IFREG|0644, st_size=497, ...}) = 0 [pid 36390] read(4, "# /etc/nsswitch.conf\n#\n# Example"..., 4096) = 497 [pid 36390] read(4, "", 4096) = 0 [pid 36390] close(4) = 0 [pid 36390] open("/etc/host.conf", O_RDONLY|O_CLOEXEC) = 4 [pid 36390] fstat(4, {st_mode=S_IFREG|0644, st_size=92, ...}) = 0 [pid 36390] read(4, "# The \"order\" line is only used "..., 4096) = 92 [pid 36390] read(4, "", 4096) = 0 [pid 36390] close(4) = 0 [pid 36390] futex(0x7f4645e5ca64, FUTEX_WAKE_PRIVATE, 2147483647) = 0 [pid 36390] open("/etc/resolv.conf", O_RDONLY|O_CLOEXEC) = 4 [pid 36390] fstat(4, {st_mode=S_IFREG|0644, st_size=201, ...}) = 0 [pid 36390] read(4, "# Dynamic resolv.conf(5) file fo"..., 4096) = 201 [pid 36390] read(4, "", 4096) = 0 [pid 36390] close(4) = 0 [pid 36390] uname({sysname="Linux", nodename="vm-jenkins2", ...}) = 0 [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4 [pid 36390] fstat(4, {st_mode=S_IFREG|0644, st_size=30356, ...}) = 0 [pid 36390] mmap(NULL, 30356, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7f46468ab000 [pid 36390] close(4) = 0 [pid 36390] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] open("/lib/x86_64-linux-gnu/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = 4 [pid 36390] read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260!\0\0\0\0\0\0"..., 832) = 832 [pid 36390] fstat(4, {st_mode=S_IFREG|0644, st_size=47600, ...}) = 0 [pid 36390] mmap(NULL, 2168600, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f4644dee000 [pid 36390] mprotect(0x7f4644df9000, 2093056, PROT_NONE) = 0 [pid 36390] mmap(0x7f4644ff8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0xa000) = 0x7f4644ff8000 [pid 36390] mmap(0x7f4644ffa000, 22296, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f4644ffa000 [pid 36390] close(4) = 0 [pid 36390] mprotect(0x7f4644ff8000, 4096, PROT_READ) = 0 [pid 36390] munmap(0x7f46468ab000, 30356) = 0 [pid 36390] open("/etc/hosts", O_RDONLY|O_CLOEXEC) = 4 [pid 36390] fstat(4, {st_mode=S_IFREG|0644, st_size=248, ...}) = 0 [pid 36390] read(4, "127.0.0.1\tlocalhost\n127.0.1.1\tvm"..., 4096) = 248 [pid 36390] read(4, "", 4096) = 0 [pid 36390] close(4) = 0 [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libnss_dns.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libnss_dns.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 4 [pid 36390] fstat(4, {st_mode=S_IFREG|0644, st_size=30356, ...}) = 0 [pid 36390] mmap(NULL, 30356, PROT_READ, MAP_PRIVATE, 4, 0) = 0x7f46468ab000 [pid 36390] close(4) = 0 [pid 36390] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] open("/lib/x86_64-linux-gnu/libnss_dns.so.2", O_RDONLY|O_CLOEXEC) = 4 [pid 36390] read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\17\0\0\0\0\0\0"..., 832) = 832 [pid 36390] fstat(4, {st_mode=S_IFREG|0644, st_size=27000, ...}) = 0 [pid 36390] mmap(NULL, 2121944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f4644be7000 [pid 36390] mprotect(0x7f4644bec000, 2097152, PROT_NONE) = 0 [pid 36390] mmap(0x7f4644dec000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5000) = 0x7f4644dec000 [pid 36390] close(4) = 0 [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/../lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] open("/home/accept/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) [pid 36390] access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] open("/lib/x86_64-linux-gnu/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 4 [pid 36390] read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P9\0\0\0\0\0\0"..., 832) = 832 [pid 36390] fstat(4, {st_mode=S_IFREG|0644, st_size=101200, ...}) = 0 [pid 36390] mmap(NULL, 2206280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f46449cc000 [pid 36390] mprotect(0x7f46449e3000, 2097152, PROT_NONE) = 0 [pid 36390] mmap(0x7f4644be3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x17000) = 0x7f4644be3000 [pid 36390] mmap(0x7f4644be5000, 6728, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f4644be5000 [pid 36390] close(4) = 0 [pid 36390] mprotect(0x7f4644be3000, 4096, PROT_READ) = 0 [pid 36390] mprotect(0x7f4644dec000, 4096, PROT_READ) = 0 [pid 36390] munmap(0x7f46468ab000, 30356) = 0 [pid 36390] stat("/etc/resolv.conf", {st_mode=S_IFREG|0644, st_size=201, ...}) = 0 [pid 36390] open("/etc/resolv.conf", O_RDONLY|O_CLOEXEC) = 4 [pid 36390] fstat(4, {st_mode=S_IFREG|0644, st_size=201, ...}) = 0 [pid 36390] read(4, "# Dynamic resolv.conf(5) file fo"..., 4096) = 201 [pid 36390] read(4, "", 4096) = 0 [pid 36390] close(4) = 0 [pid 36390] uname({sysname="Linux", nodename="vm-jenkins2", ...}) = 0 [pid 36390] socket(PF_INET, SOCK_DGRAM|SOCK_NONBLOCK, IPPROTO_IP) = 4 [pid 36390] connect(4, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.1.190")}, 16) = 0 [pid 36390] gettimeofday({1498807663, 631909}, NULL) = 0 [pid 36390] poll([{fd=4, events=POLLOUT}], 1, 0) = 1 ([{fd=4, revents=POLLOUT}]) [pid 36390] sendmmsg(4, {{{msg_name(0)=NULL, msg_iov(1)=[{"\333R\1\0\0\1\0\0\0\0\0\0\3api\6github\3com\0\0\1\0\1", 32}], msg_controllen=0, msg_flags=MSG_ERRQUEUE|MSG_NOSIGNAL|MSG_WAITFORONE|MSG_CMSG_CLOEXEC|0x68a0000}, 32}, {{msg_name(0)=NULL, msg_iov(1)=[{"\250(\1\0\0\1\0\0\0\0\0\0\3api\6github\3com\0\0\34\0\1", 32}], msg_controllen=0, msg_flags=MSG_OOB|MSG_DONTROUTE|MSG_CTRUNC|MSG_EOR|MSG_WAITALL|MSG_FIN|MSG_CONFIRM|MSG_RST|MSG_ERRQUEUE|MSG_MORE|MSG_WAITFORONE|0x1c920010}, 32}}, 2, MSG_NOSIGNAL) = 2 [pid 36390] poll([{fd=4, events=POLLIN}], 1, 5000) = 1 ([{fd=4, revents=POLLIN}]) [pid 36390] ioctl(4, FIONREAD, [116]) = 0 [pid 36390] recvfrom(4, "\250(\201\200\0\1\0\0\0\1\0\0\3api\6github\3com\0\0\34\0\1"..., 2048, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.1.190")}, [16]) = 116 [pid 36390] gettimeofday({1498807663, 632710}, NULL) = 0 [pid 36390] poll([{fd=4, events=POLLIN}], 1, 4999) = 1 ([{fd=4, revents=POLLIN}]) [pid 36390] ioctl(4, FIONREAD, [64]) = 0 [pid 36390] recvfrom(4, "\333R\201\200\0\1\0\2\0\0\0\0\3api\6github\3com\0\0\1\0\1"..., 65536, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.1.190")}, [16]) = 64 [pid 36390] close(4) = 0 [pid 36390] open("/etc/gai.conf", O_RDONLY|O_CLOEXEC) = 4 [pid 36390] fstat(4, {st_mode=S_IFREG|0644, st_size=2584, ...}) = 0 [pid 36390] fstat(4, {st_mode=S_IFREG|0644, st_size=2584, ...}) = 0 [pid 36390] read(4, "# Configuration for getaddrinfo("..., 4096) = 2584 [pid 36390] read(4, "", 4096) = 0 [pid 36390] close(4) = 0 [pid 36390] futex(0x7f4645e5aee4, FUTEX_WAKE_PRIVATE, 2147483647) = 0 [pid 36390] socket(PF_NETLINK, SOCK_RAW, NETLINK_ROUTE) = 4 [pid 36390] bind(4, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 0 [pid 36390] getsockname(4, {sa_family=AF_NETLINK, pid=36390, groups=00000000}, [12]) = 0 [pid 36390] sendto(4, "\24\0\0\0\26\0\1\3o\375UY\0\0\0\0\0\0\0\0", 20, 0, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 20 [pid 36390] recvmsg(4, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"L\0\0\0\24\0\2\0o\375UY&\216\0\0\2\10\200\376\1\0\0\0\10\0\1\0\177\0\0\1"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 244 [pid 36390] recvmsg(4, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"H\0\0\0\24\0\2\0o\375UY&\216\0\0\n\200\200\376\1\0\0\0\24\0\1\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 216 [pid 36390] recvmsg(4, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"\24\0\0\0\3\0\2\0o\375UY&\216\0\0\0\0\0\0", 4096}], msg_controllen=0, msg_flags=0}, 0) = 20 [pid 36390] close(4) = 0 [pid 36390] socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 4 [pid 36390] connect(4, {sa_family=AF_INET, sin_port=htons(443), sin_addr=inet_addr("192.30.253.117")}, 16) = 0 [pid 36390] getsockname(4, {sa_family=AF_INET, sin_port=htons(35993), sin_addr=inet_addr("192.168.1.222")}, [16]) = 0 [pid 36390] connect(4, {sa_family=AF_UNSPEC, sa_data="\0\0\0\0\0\0\0\0\0\0\0\0\0\0"}, 16) = 0 [pid 36390] connect(4, {sa_family=AF_INET, sin_port=htons(443), sin_addr=inet_addr("192.30.253.116")}, 16) = 0 [pid 36390] getsockname(4, {sa_family=AF_INET, sin_port=htons(56045), sin_addr=inet_addr("192.168.1.222")}, [16]) = 0 [pid 36390] close(4) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 911025400}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 911102500}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 911159500}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 911216700}) = 0 [pid 36390] socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 4 [pid 36390] setsockopt(4, SOL_TCP, TCP_NODELAY, [1], 4) = 0 [pid 36390] fcntl(4, F_GETFL) = 0x2 (flags O_RDWR) [pid 36390] fcntl(4, F_SETFL, O_RDWR|O_NONBLOCK) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 911481900}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 911527100}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 911584800}) = 0 [pid 36390] connect(4, {sa_family=AF_INET, sin_port=htons(443), sin_addr=inet_addr("192.30.253.117")}, 16) = -1 EINPROGRESS (Operation now in progress) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 911727300}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 911770600}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 911811800}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 911853100}) = 0 [pid 36390] poll([{fd=4, events=POLLOUT}], 1, 0) = 0 (Timeout) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 911931000}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 911973800}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 912060900}) = 0 [pid 36390] poll([{fd=4, events=POLLOUT}], 1, 0) = 0 (Timeout) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 912150800}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 912191200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 912246800}) = 0 [pid 36390] poll([{fd=4, events=POLLOUT}], 1, 0) = 0 (Timeout) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 912341800}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 912408500}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 912473600}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321347, 912538200}) = 0 [pid 36390] poll([{fd=4, events=POLLOUT}], 1, 199) = 1 ([{fd=4, revents=POLLOUT}]) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 1227100}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 1279500}) = 0 [pid 36390] poll([{fd=4, events=POLLOUT}], 1, 0) = 1 ([{fd=4, revents=POLLOUT}]) [pid 36390] getsockopt(4, SOL_SOCKET, SO_ERROR, [0], [4]) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 1535300}) = 0 [pid 36390] getpeername(4, {sa_family=AF_INET, sin_port=htons(443), sin_addr=inet_addr("192.30.253.117")}, [16]) = 0 [pid 36390] getsockname(4, {sa_family=AF_INET, sin_port=htons(45868), sin_addr=inet_addr("192.168.1.222")}, [16]) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 1816000}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 1902800}) = 0 [pid 36390] open("/usr/lib/ssl/certs/ca-certificates.crt", O_RDONLY) = 5 [pid 36390] fstat(5, {st_mode=S_IFREG|0644, st_size=285230, ...}) = 0 [pid 36390] read(5, "-----BEGIN CERTIFICATE-----\nMIIH"..., 4096) = 4096 [pid 36390] read(5, "WIm\nfQwng4/F9tqgaHtPkl7qpHMyEVNE"..., 4096) = 4096 [pid 36390] read(5, "Ktmyuy/uE5jF66CyCU3nuDuP/jVo23Ee"..., 4096) = 4096 [pid 36390] read(5, "0IFRUUCBOZXR3\nb3JrMSAwHgYDVQQDEx"..., 4096) = 4096 [pid 36390] read(5, "NAQEFBQAwRDELMAkGA1UE\nBhMCVVMxFD"..., 4096) = 4096 [pid 36390] read(5, "BAQEFAAOCAQ8AMIIBCgKCAQEAp23gdE6"..., 4096) = 4096 [pid 36390] read(5, "sYCA0irhpuF\n3dvd6qJ2gHN99ZwExEWN"..., 4096) = 4096 [pid 36390] read(5, "6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gq"..., 4096) = 4096 [pid 36390] read(5, "NV\nBAYTAlNLMRMwEQYDVQQHEwpCcmF0a"..., 4096) = 4096 [pid 36390] read(5, "VQQKEx5BQyBDYW1lcmZpcm1hIFNBIENJ"..., 4096) = 4096 [pid 36390] read(5, "MDU4NThaFw00NDExMDgwMDU4NThaMFgx"..., 4096) = 4096 [pid 36390] read(5, "TEqkPFMTFYvZbF6nVsmnWxTfj3l/+WFv"..., 4096) = 4096 [pid 36390] read(5, "zMKND5pCCrlUoSe1b16kQ\nOA7+j0xbm0"..., 4096) = 4096 [pid 36390] read(5, "EIRUpdPA+nJCdDC7xij5aqgwJHsfV\nPK"..., 4096) = 4096 [pid 36390] read(5, "cyBSb290MIIBIjANBgkqhkiG9w0BAQEF"..., 4096) = 4096 [pid 36390] read(5, "RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMe"..., 4096) = 4096 [pid 36390] read(5, "\n-----BEGIN CERTIFICATE-----\nMII"..., 4096) = 4096 [pid 36390] read(5, "GntewImbQKDdSFc8gS4TXt8QUxHXOZDO"..., 4096) = 4096 [pid 36390] read(5, "1i8b5QZ7dsvfPx\nH2sMNgcWfzd8qVtte"..., 4096) = 4096 [pid 36390] read(5, "MIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/"..., 4096) = 4096 [pid 36390] read(5, "HdL4mrLZBdd56rF+NP8m800ERElvlEFD"..., 4096) = 4096 [pid 36390] read(5, "XU42\ntSHKXzlABF9bfsyjxiupQB7ZNoT"..., 4096) = 4096 [pid 36390] read(5, "DO\nTLKBtjDOWU/aWR1qeqRFsIImgYZ29"..., 4096) = 4096 [pid 36390] read(5, "NfMjA0OCBp\nbmNvcnAuIGJ5IHJlZi4gK"..., 4096) = 4096 [pid 36390] read(5, "BEGIN CERTIFICATE-----\nMIIEPjCCA"..., 4096) = 4096 [pid 36390] read(5, "iOe/FP3gx7kC\nAwEAAaOCAQkwggEFMHA"..., 4096) = 4096 [pid 36390] read(5, "1gdLymmasoR6d5NFFxWfJNCYExL/u6Au"..., 4096) = 4096 [pid 36390] read(5, "4b7UVXGYNTq+k+qurUKykG/g/CFNNWMz"..., 4096) = 4096 [pid 36390] read(5, "NuH8KrUwJM/gYwx7WBr+mbpCErGR9Hxo"..., 4096) = 4096 [pid 36390] read(5, "4NzEbMBkGA1UEChMSQUMgQ2FtZXJmaXJ"..., 4096) = 4096 [pid 36390] read(5, "QADggEPADCCAQoCggEBAKbPJA6+Lm8om"..., 4096) = 4096 [pid 36390] read(5, "GFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBd"..., 4096) = 4096 [pid 36390] read(5, "jK9ouuU\n+ehcCuz/mNKvcbO0U59Oh++S"..., 4096) = 4096 [pid 36390] read(5, "jcIYyHF2fYPepraX/z9E0+X1b\nF8bc1g"..., 4096) = 4096 [pid 36390] read(5, "XVyL2NybC8wHQYDVR0OBBYE\nFASqekej"..., 4096) = 4096 [pid 36390] read(5, "8GA1UEBxMIQnVkYXBlc3QxFjAUBgNVBA"..., 4096) = 4096 [pid 36390] read(5, "DVQQKEx5OZXRMb2NrIEhhbG96YXRiaXp"..., 4096) = 4096 [pid 36390] read(5, "IN CERTIFICATE-----\nMIIG0TCCBbmg"..., 4096) = 4096 [pid 36390] read(5, "vdCBHQSBDQTAeFw0w\nNTEyMTExNjAzND"..., 4096) = 4096 [pid 36390] read(5, "D3N1c2NlcnRlLmdvYi52ZaAbBgVghl4C"..., 4096) = 4096 [pid 36390] read(5, "aHv5+HBg6XJxg\nFyo6dIMzMH1hVBHL7a"..., 4096) = 4096 [pid 36390] read(5, "jyjPtr7guXd\n8lyyBTNvijbO0BNO/79K"..., 4096) = 4096 [pid 36390] read(5, "YDVQQLExxSb290IENlcnRpZmljYXRpb2"..., 4096) = 4096 [pid 36390] read(5, "AgIQCgEBAQAAAnwAAAAKAAAAAjANBgkq"..., 4096) = 4096 [pid 36390] read(5, "FQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCC"..., 4096) = 4096 [pid 36390] read(5, "WgGmBSWh9JhNrxtJ1aeV+7AwFb9\nMs+k"..., 4096) = 4096 [pid 36390] read(5, "NCMEAwDwYDVR0TAQH/BAUwAwEB\n/zAOB"..., 4096) = 4096 [pid 36390] read(5, "TtJlycM33+FC\nY7BXN0Ute4qcvwXqZVU"..., 4096) = 4096 [pid 36390] read(5, "MjCCASIwDQYJKoZIhvcNAQEBBQADggEP"..., 4096) = 4096 [pid 36390] read(5, "93\nd3cuc3RhcnRzc2wuY29tL3BvbGlje"..., 4096) = 4096 [pid 36390] read(5, "0ZwNq7eEPS8CRhXBF4EKe3ikj1AENoBB"..., 4096) = 4096 [pid 36390] read(5, "iG\n9w0BAQsFAAOCAQEATpYS2353XpInn"..., 4096) = 4096 [pid 36390] read(5, "0vSk3FQQoHt5FRnDsr7p4DooqzgB53MB"..., 4096) = 4096 [pid 36390] read(5, "sCC\nbwq7EsiHSycR+R4tx5M/nttfJmtS"..., 4096) = 4096 [pid 36390] read(5, "+mHtwX6WQ\n2K34ArZv02DdQEsixT2tOn"..., 4096) = 4096 [pid 36390] read(5, "w4HBM7uIHqHn4rS9MWwOUT1v+5ZWgOI2"..., 4096) = 4096 [pid 36390] read(5, "gNVHRMBAf8E\nBTADAQH/MA4GA1UdDwEB"..., 4096) = 4096 [pid 36390] read(5, "mzB6azZie60EI4RYZeLbK4rnJVM3YlNf"..., 4096) = 4096 [pid 36390] read(5, "\nni4gKGMpIEFyYWzEsWsgMjAwNzCCASI"..., 4096) = 4096 [pid 36390] read(5, "vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0"..., 4096) = 4096 [pid 36390] read(5, "wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5"..., 4096) = 4096 [pid 36390] read(5, "zAdBgNVBAMTFlVUTi1VU0VSRmlyc3QtS"..., 4096) = 4096 [pid 36390] read(5, "Hhv2Vr\nn5Z20T0CAwEAATANBgkqhkiG9"..., 4096) = 4096 [pid 36390] read(5, "Tk1OVowXzELMAkGA1UEBhMCVVMxFzAVB"..., 4096) = 4096 [pid 36390] read(5, "BZMFcwVRYJ\naW1hZ2UvZ2lmMCEwHzAHB"..., 4096) = 4096 [pid 36390] read(5, "UEChMEVklTQTEvMC0GA1UECxMmVmlzYS"..., 4096) = 4096 [pid 36390] read(5, "4niXVOKM6Cm6\njBAyvd0zaziGfjk9DgN"..., 4096) = 4096 [pid 36390] read(5, "V\r\nBAMMFmdpdGh1Yi5hY2NlcHRkZXYub"..., 4096) = 4096 [pid 36390] read(5, "L=Salford/O=COMODO CA Limited/CN"..., 4096) = 4096 [pid 36390] mmap(NULL, 2097152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f46447cc000 [pid 36390] munmap(0x7f46447cc000, 2097152) = 0 [pid 36390] mmap(NULL, 4190208, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f46445cd000 [pid 36390] munmap(0x7f46445cd000, 208896) = 0 [pid 36390] munmap(0x7f4644800000, 1884160) = 0 [pid 36390] read(5, "pb25TZWN1cmVTZXJ2ZXJDQS5jcnQwJAY"..., 4096) = 2606 [pid 36390] read(5, "", 4096) = 0 [pid 36390] close(5) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 29403400}) = 0 [pid 36390] write(4, "\26\3\1\2\0\1\0\1\374\3\3\274\355\245\312'\325OJ\6\n\3437(gd\271\336\363aO\355"..., 517) = 517 [pid 36390] read(4, 0x7f4644623540, 7) = -1 EAGAIN (Resource temporarily unavailable) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 29632200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 29679500}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 29724400}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 29767800}) = 0 [pid 36390] poll([{fd=4, events=POLLIN}], 1, 81) = 0 (Timeout) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 111092900}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 111142200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 111189100}) = 0 [pid 36390] poll([{fd=4, events=POLLIN|POLLPRI}], 1, 0) = 0 (Timeout) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 111263200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 111306200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 111347900}) = 0 [pid 36390] poll([{fd=4, events=POLLIN}], 1, 0) = 0 (Timeout) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 111434500}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 111476000}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 111518100}) = 0 [pid 36390] poll([{fd=4, events=POLLIN|POLLPRI}], 1, 0) = 0 (Timeout) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 111638000}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 111684000}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 111725500}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 111767500}) = 0 [pid 36390] poll([{fd=4, events=POLLIN}], 1, 1000) = 1 ([{fd=4, revents=POLLIN}]) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 121254300}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 121339200}) = 0 [pid 36390] poll([{fd=4, events=POLLIN|POLLPRI}], 1, 0) = 1 ([{fd=4, revents=POLLIN}]) [pid 36390] read(4, "\26\3\3\0l\2\0", 7) = 7 [pid 36390] read(4, "\0h\3\3\203qj\276\200\24\206\207\356\204\345\266\26\274\235s\t\306\306\224g\372\3318\207=:\316"..., 106) = 106 [pid 36390] read(4, "\26\3\3\f\23", 5) = 5 [pid 36390] read(4, "\v\0\f\17\0\f\f\0\7Q0\202\7M0\202\0065\240\3\2\1\2\2\20\r\235\335\347\317\254a"..., 3091) = 3091 [pid 36390] open("/etc/localtime", O_RDONLY|O_CLOEXEC) = 5 [pid 36390] fstat(5, {st_mode=S_IFREG|0644, st_size=2943, ...}) = 0 [pid 36390] fstat(5, {st_mode=S_IFREG|0644, st_size=2943, ...}) = 0 [pid 36390] read(5, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\16\0\0\0\16\0\0\0\0"..., 4096) = 2943 [pid 36390] lseek(5, -1852, SEEK_CUR) = 1091 [pid 36390] read(5, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\16\0\0\0\16\0\0\0\0"..., 4096) = 1852 [pid 36390] close(5) = 0 [pid 36390] read(4, "\26\3\3\1M", 5) = 5 [pid 36390] read(4, "\f\0\1I\3\0\27A\4\335\333?\272\357\334\272r\216~\230\303\33\33\250^\335\245\0178H\362c"..., 333) = 333 [pid 36390] read(4, "\26\3\3\0\4", 5) = 5 [pid 36390] read(4, "\16\0\0\0", 4) = 4 [pid 36390] write(4, "\26\3\3\0F\20\0\0BA\4\300\370/S\226u-=\26\227\347\305P>\200+\355\371\230\352\225"..., 126) = 126 [pid 36390] read(4, 0x7f4644623543, 5) = -1 EAGAIN (Resource temporarily unavailable) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 125204000}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 125281400}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 125351100}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 125502800}) = 0 [pid 36390] poll([{fd=4, events=POLLIN}], 1, 1000) = 1 ([{fd=4, revents=POLLIN}]) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 214858400}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 214909300}) = 0 [pid 36390] poll([{fd=4, events=POLLIN|POLLPRI}], 1, 0) = 1 ([{fd=4, revents=POLLIN}]) [pid 36390] read(4, "\24\3\3\0\1", 5) = 5 [pid 36390] read(4, "\1", 1) = 1 [pid 36390] read(4, "\26\3\3\0(", 5) = 5 [pid 36390] read(4, "bh\10\230+K+7\361\360\261\366\17\200\26\266%&!q6\215\33\341^\f\356Y\342u\216\2"..., 40) = 40 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 215390400}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 215438800}) = 0 [pid 36390] write(4, "\27\3\3\0\342RLNTPzT\247\315NK\223i\247g\237c\211\314\355'[C\\k\320\226"..., 231) = 231 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 215624300}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 215694900}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 215738900}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 215780800}) = 0 [pid 36390] poll([{fd=4, events=POLLIN|POLLPRI}], 1, 0) = 0 (Timeout) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 215882600}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 215920300}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 215963200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 216045700}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 216094700}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 216137100}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 216178400}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 216221200}) = 0 [pid 36390] poll([{fd=4, events=POLLIN}], 1, 1000) = 1 ([{fd=4, revents=POLLIN}]) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 326269700}) = 0 [pid 36390] poll([{fd=4, events=POLLIN|POLLPRI}], 1, 0) = 1 ([{fd=4, revents=POLLIN}]) [pid 36390] read(4, "\27\3\3\3\255", 5) = 5 [pid 36390] read(4, "bh\10\230+K+8\311\362|w\270\"\326\361\273\177\274\313\203\24G]\6wu\17\360P\226\36"..., 941) = 941 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 326503500}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 326574900}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 326617900}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 326675900}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 326719600}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 326764300}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 326807800}) = 0 [pid 36390] flock(3, LOCK_UN) = 0 [pid 36390] close(3) = 0 [pid 36390] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.cargo-index-lock", O_RDONLY|O_CLOEXEC) = 3 [pid 36390] ioctl(3, FIOCLEX) = 0 [pid 36390] statfs("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/.cargo-index-lock", {f_type="EXT2_SUPER_MAGIC", f_bsize=4096, f_blocks=18687272, f_bfree=6263596, f_bavail=5308563, f_files=4759552, f_ffree=3144324, f_fsid={712344455, 1912640877}, f_namelen=255, f_frsize=4096, f_flags=4128}) = 0 [pid 36390] flock(3, LOCK_SH|LOCK_NB) = 0 [pid 36390] open("/home/accept/.cargo/registry/index/github.com-1ecc6299db9ec823/ch/ro/chrono", O_RDONLY|O_CLOEXEC) = 5 [pid 36390] ioctl(5, FIOCLEX) = 0 [pid 36390] read(5, "{\"name\":\"chrono\",\"vers\":\"0.1.0\",", 32) = 32 [pid 36390] read(5, "\"deps\":[{\"name\":\"num\",\"req\":\"^0."..., 64) = 64 [pid 36390] read(5, "false,\"default_features\":true,\"t"..., 128) = 128 [pid 36390] read(5, "rue,\"target\":null}],\"cksum\":\"2d4"..., 256) = 256 [pid 36390] read(5, "get\":null,\"kind\":\"normal\"},{\"nam"..., 512) = 512 [pid 36390] read(5, "}\n{\"name\":\"chrono\",\"vers\":\"0.1.3"..., 1024) = 1024 [pid 36390] read(5, "1f\",\"features\":{},\"yanked\":false"..., 2048) = 2048 [pid 36390] read(5, "],\"cksum\":\"89bf75f50398c3b14edb4"..., 4096) = 4096 [pid 36390] read(5, "s\":\"0.2.11\",\"deps\":[{\"name\":\"tim"..., 8192) = 8192 [pid 36390] read(5, "ult_features\":true,\"target\":null"..., 8192) = 3691 [pid 36390] read(5, "", 4501) = 0 [pid 36390] close(5) = 0 [pid 36390] flock(3, LOCK_UN) = 0 [pid 36390] close(3) = 0 [pid 36390] open("/home/accept/.cargo/git/.cargo-lock-git", O_RDWR|O_CREAT|O_CLOEXEC, 0666) = 3 [pid 36390] ioctl(3, FIOCLEX) = 0 [pid 36390] statfs("/home/accept/.cargo/git/.cargo-lock-git", {f_type="EXT2_SUPER_MAGIC", f_bsize=4096, f_blocks=18687272, f_bfree=6263596, f_bavail=5308563, f_files=4759552, f_ffree=3144324, f_fsid={712344455, 1912640877}, f_namelen=255, f_frsize=4096, f_flags=4128}) = 0 [pid 36390] flock(3, LOCK_EX|LOCK_NB) = 0 [pid 36390] lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept/.cargo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept/.cargo/git", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept/.cargo/git/db", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/.git", 0x7fffa028d6b0) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/objects/", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/HEAD", {st_mode=S_IFREG|0664, st_size=23, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/refs/", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] access("/home/accept/.gitconfig", F_OK) = 0 [pid 36390] access("/home/accept/.config/git/config", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] access("/etc/gitconfig", F_OK) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/refs/heads/master", 0x7fffa028d060) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/packed-refs", 0x7fffa028cf20) = -1 ENOENT (No such file or directory) [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, "\33[32m", 5) = 5 [pid 36390] write(2, "\33[1m", 4) = 4 [pid 36390] write(2, " ", 1 ) = 1 [pid 36390] write(2, " ", 1 ) = 1 [pid 36390] write(2, " ", 1 ) = 1 [pid 36390] write(2, " ", 1 ) = 1 [pid 36390] write(2, "Updating", 8Updating) = 8 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, " ", 1 ) = 1 [pid 36390] write(2, "git repository `https://github.a"..., 80git repository `https://github.acc.nl/AcceptDevelopmentBV/sbr-xquery-parser-api`) = 80 [pid 36390] write(2, "\n", 1 ) = 1 [pid 36390] lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept/.cargo", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept/.cargo/git", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept/.cargo/git/db", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] lstat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/.git", 0x7fffa028d490) = -1 ENOENT (No such file or directory) [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/objects/", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/HEAD", {st_mode=S_IFREG|0664, st_size=23, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/refs/", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 [pid 36390] access("/home/accept/.gitconfig", F_OK) = 0 [pid 36390] access("/home/accept/.config/git/config", F_OK) = -1 ENOENT (No such file or directory) [pid 36390] access("/etc/gitconfig", F_OK) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/gitconfig", {st_mode=S_IFREG|0644, st_size=123, ...}) = 0 [pid 36390] open("/etc/gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[alias]\n\tco = checkout\n\tci = com"..., 123) = 123 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.gitconfig", {st_mode=S_IFREG|0664, st_size=92, ...}) = 0 [pid 36390] open("/home/accept/.gitconfig", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\teditor = vim\n#[http]\n#\ts"..., 92) = 92 [pid 36390] close(5) = 0 [pid 36390] stat("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", {st_mode=S_IFREG|0664, st_size=66, ...}) = 0 [pid 36390] open("/home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c/config", O_RDONLY) = 5 [pid 36390] read(5, "[core]\n\tbare = true\n\trepositoryf"..., 66) = 66 [pid 36390] close(5) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 341614800}) = 0 [pid 36390] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4645ac94b0}, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 341754200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 341794600}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 341837800}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 341896800}) = 0 [pid 36390] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 342087600}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 342146200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 342191200}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 342247900}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 342320800}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 342398900}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 342431300}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 342470700}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 342511000}) = 0 [pid 36390] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0 [pid 36390] rt_sigaction(SIGALRM, NULL, {SIG_DFL, [], 0}, 8) = 0 [pid 36390] rt_sigaction(SIGALRM, {0x559fec3404b0, [], SA_RESTORER, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] alarm(300) = 0 [pid 36390] stat("/etc/resolv.conf", {st_mode=S_IFREG|0644, st_size=201, ...}) = 0 [pid 36390] open("/etc/hosts", O_RDONLY|O_CLOEXEC) = 5 [pid 36390] fstat(5, {st_mode=S_IFREG|0644, st_size=248, ...}) = 0 [pid 36390] read(5, "127.0.0.1\tlocalhost\n127.0.1.1\tvm"..., 4096) = 248 [pid 36390] read(5, "", 4096) = 0 [pid 36390] close(5) = 0 [pid 36390] stat("/etc/resolv.conf", {st_mode=S_IFREG|0644, st_size=201, ...}) = 0 [pid 36390] socket(PF_INET, SOCK_DGRAM|SOCK_NONBLOCK, IPPROTO_IP) = 5 [pid 36390] connect(5, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.1.190")}, 16) = 0 [pid 36390] gettimeofday({1498807664, 73390}, NULL) = 0 [pid 36390] poll([{fd=5, events=POLLOUT}], 1, 0) = 1 ([{fd=5, revents=POLLOUT}]) [pid 36390] sendmmsg(5, {{{msg_name(0)=NULL, msg_iov(1)=[{"t\356\1\0\0\1\0\0\0\0\0\0\6github\3acc\2nl\0\0\1\0\1", 31}], msg_controllen=0, msg_flags=MSG_OOB}, 31}, {{msg_name(0)=NULL, msg_iov(1)=[{"h\305\1\0\0\1\0\0\0\0\0\0\6github\3acc\2nl\0\0\34\0\1", 31}], msg_controllen=0, msg_flags=MSG_CTRUNC|MSG_WAITALL|MSG_FIN|MSG_CONFIRM|MSG_RST|MSG_ERRQUEUE|MSG_NOSIGNAL|MSG_MORE|MSG_CMSG_CLOEXEC|0x5060000}, 31}}, 2, MSG_NOSIGNAL) = 2 [pid 36390] poll([{fd=5, events=POLLIN}], 1, 5000) = 1 ([{fd=5, revents=POLLIN}]) [pid 36390] ioctl(5, FIONREAD, [47]) = 0 [pid 36390] recvfrom(5, "t\356\205\200\0\1\0\1\0\0\0\0\6github\3acc\2nl\0\0\1\0\1\300"..., 2048, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.1.190")}, [16]) = 47 [pid 36390] gettimeofday({1498807664, 74341}, NULL) = 0 [pid 36390] poll([{fd=5, events=POLLIN}], 1, 4999) = 1 ([{fd=5, revents=POLLIN}]) [pid 36390] ioctl(5, FIONREAD, [105]) = 0 [pid 36390] recvfrom(5, "h\305\205\200\0\1\0\0\0\1\0\0\6github\3acc\2nl\0\0\34\0\1\300"..., 65536, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.1.190")}, [16]) = 105 [pid 36390] close(5) = 0 [pid 36390] alarm(0) = 300 [pid 36390] rt_sigaction(SIGALRM, {SIG_DFL, [], SA_RESTORER, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 344736000}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 344777400}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 344836000}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 344892800}) = 0 [pid 36390] socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 5 [pid 36390] setsockopt(5, SOL_TCP, TCP_NODELAY, [1], 4) = 0 [pid 36390] fcntl(5, F_GETFL) = 0x2 (flags O_RDWR) [pid 36390] fcntl(5, F_SETFL, O_RDWR|O_NONBLOCK) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 345208500}) = 0 [pid 36390] connect(5, {sa_family=AF_INET, sin_port=htons(443), sin_addr=inet_addr("192.168.231.5")}, 16) = -1 EINPROGRESS (Operation now in progress) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 345377800}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 345438000}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 345483600}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 345524900}) = 0 [pid 36390] poll([{fd=5, events=POLLOUT}], 1, 0) = 0 (Timeout) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 345610900}) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 345763700}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 345828600}) = 0 [pid 36390] poll([{fd=5, events=POLLOUT}], 1, 0) = 0 (Timeout) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 345933800}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 345975400}) = 0 [pid 36390] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 346133500}) = 0 [pid 36390] poll([{fd=5, events=POLLOUT}], 1, 0) = 0 (Timeout) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 346217400}) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 346336400}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 346378000}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 346418400}) = 0 [pid 36390] poll([{fd=5, events=POLLOUT}], 1, 198) = 1 ([{fd=5, revents=POLLOUT}]) [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 361976000}) = 0 [pid 36390] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 362111600}) = 0 [pid 36390] poll([{fd=5, events=POLLOUT}], 1, 0) = 1 ([{fd=5, revents=POLLOUT}]) [pid 36390] getsockopt(5, SOL_SOCKET, SO_ERROR, [0], [4]) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 362236900}) = 0 [pid 36390] getpeername(5, {sa_family=AF_INET, sin_port=htons(443), sin_addr=inet_addr("192.168.231.5")}, [16]) = 0 [pid 36390] getsockname(5, {sa_family=AF_INET, sin_port=htons(40876), sin_addr=inet_addr("192.168.1.222")}, [16]) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 362379000}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 362453000}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 362493700}) = 0 [pid 36390] clock_gettime(CLOCK_MONOTONIC, {321348, 362529100}) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] select(6, [], [5], [5], NULL) = 1 (out [5]) [pid 36390] sendto(5, "\26\3\1\0\326\1\0\0\322\3\3\251\237\336\324+\220f\4\335s]\307&\35\350\243\337[;\235>"..., 219, MSG_NOSIGNAL, NULL, 0) = 219 [pid 36390] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 36390] recvfrom(5, "\26\3\3\0b\2\0", 7, 0, NULL, NULL) = 7 [pid 36390] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 36390] recvfrom(5, "\0^\3\3GM\331>\377\252\227 \202\250W\222cD\33A[\304\257\217F\372.\213\236]u\36"..., 96, 0, NULL, NULL) = 96 [pid 36390] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 36390] recvfrom(5, "\26\3\3\5\321", 5, 0, NULL, NULL) = 5 [pid 36390] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 36390] recvfrom(5, "\v\0\5\315\0\5\312\0\5\3070\202\5\3030\202\4\253\240\3\2\1\2\2\20G\321\271X\3112\377"..., 1489, 0, NULL, NULL) = 1489 [pid 36390] stat("/usr/lib/ssl/certs/c43a77d9.0", 0x7fffa028c620) = -1 ENOENT (No such file or directory) [pid 36390] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 36390] recvfrom(5, "\26\3\3\1M", 5, 0, NULL, NULL) = 5 [pid 36390] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 36390] recvfrom(5, "\f\0\1I\3\0\27A\4\3402\261\360B\235\355\253\340\332\302\10=\250\f>\222\336\236\0\327u\273"..., 333, 0, NULL, NULL) = 333 [pid 36390] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 36390] recvfrom(5, "\26\3\3\0\4", 5, 0, NULL, NULL) = 5 [pid 36390] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 36390] recvfrom(5, "\16\0\0\0", 4, 0, NULL, NULL) = 4 [pid 36390] select(6, [], [5], [5], NULL) = 1 (out [5]) [pid 36390] sendto(5, "\26\3\3\0F\20\0\0BA\4\326\274\344\220\241[/\343\316\202\377\342\3508wm\236n5\364\356"..., 126, MSG_NOSIGNAL, NULL, 0) = 126 [pid 36390] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 36390] recvfrom(5, "\24\3\3\0\1", 5, 0, NULL, NULL) = 5 [pid 36390] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 36390] recvfrom(5, "\1", 1, 0, NULL, NULL) = 1 [pid 36390] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 36390] recvfrom(5, "\26\3\3\0(", 5, 0, NULL, NULL) = 5 [pid 36390] select(6, [5], [], [5], NULL) = 1 (in [5]) [pid 36390] recvfrom(5, "~\271\313\237\274\255h\267\343\366~(\271\356J\344\262\350-4\274z\267\315\274!\330/$8\277\23"..., 40, 0, NULL, NULL) = 40 [pid 36390] select(6, [], [5], [5], NULL) = 1 (out [5]) [pid 36390] sendto(5, "\25\3\3\0\32R\214\271$g\0\272\5\320o\5Z\315i7\271\177gK9\315[;\10BJ", 31, MSG_NOSIGNAL, NULL, 0) = 31 [pid 36390] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] close(5) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] flock(3, LOCK_UN) = 0 [pid 36390] close(3) = 0 [pid 36390] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] write(4, "\25\3\3\0\32RLNTPzT\250\333(\2063-\320s\332\353\314{\6\300F>\232TJ", 31) = 31 [pid 36390] close(4) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f4646085390}, NULL, 8) = 0 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, "\33[31m", 5) = 5 [pid 36390] write(2, "\33[1m", 4) = 4 [pid 36390] write(2, "error:", 6error:) = 6 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, " ", 1 ) = 1 [pid 36390] write(2, "failed to load source for a depe"..., 65failed to load source for a dependency on `sbr-xquery-parser-api`) = 65 [pid 36390] write(2, "\n", 1 ) = 1 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, "\nCaused by:", 11 Caused by:) = 11 [pid 36390] write(2, "\n", 1 ) = 1 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, " Unable to update https://githu"..., 82 Unable to update https://github.acc.nl/AcceptDevelopmentBV/sbr-xquery-parser-api) = 82 [pid 36390] write(2, "\n", 1 ) = 1 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, "\nCaused by:", 11 Caused by:) = 11 [pid 36390] write(2, "\n", 1 ) = 1 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, " failed to fetch into /home/acc"..., 88 failed to fetch into /home/accept/.cargo/git/db/sbr-xquery-parser-api-3e88f660a2af248c) = 88 [pid 36390] write(2, "\n", 1 ) = 1 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] write(2, "\nTo learn more, run the command "..., 53 To learn more, run the command again with --verbose.) = 53 [pid 36390] write(2, "\n", 1 ) = 1 [pid 36390] write(2, "\33(B\33[m", 6) = 6 [pid 36390] sigaltstack({ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=8192}, NULL) = 0 [pid 36390] munmap(0x7f46468be000, 8192) = 0 [pid 36390] exit_group(101) = ? [pid 36390] +++ exited with 101 +++ <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 101}], 0, NULL) = 36390 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=36390, si_uid=1000, si_status=101, si_utime=4, si_stime=4} --- sigaltstack({ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=8192}, NULL) = 0 munmap(0x7fde7901d000, 8192) = 0 exit_group(101) = ? +++ exited with 101 +++ accept@vm-jenkins2:~/test/sbr-xquery-interpreter-api$ ````
alexcrichton commented 7 years ago

@JoeyAcc ah ok yeah so that strace looks like it is indeed doing the probing logic (no env vars set as you have done) and it looks like it's looking at /usr/lib/ssl/certs/ca-certificates.crt for certificates. Do you know if that file is updated with the update-ca-certificates command?

(are there maybe multiple installations of OpenSSL CA certificates on this system?)

JoeyAcc commented 7 years ago

My colleague tells me that it's very likely that update-ca-certificate indeed does update /usr/lib/ssl/certs/ca-certificates.crt. Additionally, both he and I think that there is only 1 OpenSSL installation i.e. the one that shipped with the Ubuntu image (the "duplicates" are old versions as reported by apt-cache, which is part of Ubuntu's package manager APT), which is to say neither of us installed any additional OpenSSL instances:

accept@vm-jenkins2:~$ apt-cache show openssl
Package: openssl
Priority: standard
Section: utils
Installed-Size: 934
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Original-Maintainer: Debian OpenSSL Team <pkg-openssl-devel@lists.alioth.debian.org>
Architecture: amd64
Version: 1.0.2g-1ubuntu4.8
Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.2g)
Suggests: ca-certificates
Filename: pool/main/o/openssl/openssl_1.0.2g-1ubuntu4.8_amd64.deb
Size: 491720
MD5sum: ea3ad9b613c675a31cf9e8111987c88d
SHA1: 7eccd5cea88d4a117a12c6093608c9e1ef97dd19
SHA256: 3a1d993937d7fc05f65408e2e120e8c834d9600473005a6d43c1b67cadbd3fbd
Description-en: Secure Sockets Layer toolkit - cryptographic utility
 This package is part of the OpenSSL project's implementation of the SSL
 and TLS cryptographic protocols for secure communication over the
 Internet.
 .
 It contains the general-purpose command line binary /usr/bin/openssl,
 useful for cryptographic operations such as:
  * creating RSA, DH, and DSA key parameters;
  * creating X.509 certificates, CSRs, and CRLs;
  * calculating message digests;
  * encrypting and decrypting with ciphers;
  * testing SSL/TLS clients and servers;
  * handling S/MIME signed or encrypted mail.
Description-md5: 9b6de2bb6e1d9016aeb0f00bcf6617bd
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu
Supported: 5y
Task: standard, ubuntu-core, ubuntu-core, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntu-touch-core, ubuntu-touch, ubuntu-sdk-libs-tools, ubuntu-sdk

Package: openssl
Priority: standard
Section: utils
Installed-Size: 934
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Original-Maintainer: Debian OpenSSL Team <pkg-openssl-devel@lists.alioth.debian.org>
Architecture: amd64
Version: 1.0.2g-1ubuntu4.6
Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.2g)
Suggests: ca-certificates
Filename: pool/main/o/openssl/openssl_1.0.2g-1ubuntu4.6_amd64.deb
Size: 491668
MD5sum: 5a10ca1cfbd6ebad80264e2c2106c752
SHA1: 9ffe8c4291c09fd996a3afafdf85df8f5d9520ed
SHA256: 18f4d36f3e624be6ecfab385cd2e2fe4e5d7abc8030505dcacfa3ab243253cd1
Description-en: Secure Sockets Layer toolkit - cryptographic utility
 This package is part of the OpenSSL project's implementation of the SSL
 and TLS cryptographic protocols for secure communication over the
 Internet.
 .
 It contains the general-purpose command line binary /usr/bin/openssl,
 useful for cryptographic operations such as:
  * creating RSA, DH, and DSA key parameters;
  * creating X.509 certificates, CSRs, and CRLs;
  * calculating message digests;
  * encrypting and decrypting with ciphers;
  * testing SSL/TLS clients and servers;
  * handling S/MIME signed or encrypted mail.
Description-md5: 9b6de2bb6e1d9016aeb0f00bcf6617bd
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu
Supported: 5y
Task: standard, ubuntu-core, ubuntu-core, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntu-touch-core, ubuntu-touch, ubuntu-sdk-libs-tools, ubuntu-sdk

Package: openssl
Priority: standard
Section: utils
Installed-Size: 934
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Original-Maintainer: Debian OpenSSL Team <pkg-openssl-devel@lists.alioth.debian.org>
Architecture: amd64
Version: 1.0.2g-1ubuntu4
Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.2g)
Suggests: ca-certificates
Filename: pool/main/o/openssl/openssl_1.0.2g-1ubuntu4_amd64.deb
Size: 492190
MD5sum: 8280148dc2991da94be5810ad4d91552
SHA1: b5326f27aae83c303ff934121dede47d9fce7c76
SHA256: e897ffc8d84b0d436baca5dbd684a85146ffa78d3f2d15093779d3f5a8189690
Description-en: Secure Sockets Layer toolkit - cryptographic utility
 This package is part of the OpenSSL project's implementation of the SSL
 and TLS cryptographic protocols for secure communication over the
 Internet.
 .
 It contains the general-purpose command line binary /usr/bin/openssl,
 useful for cryptographic operations such as:
  * creating RSA, DH, and DSA key parameters;
  * creating X.509 certificates, CSRs, and CRLs;
  * calculating message digests;
  * encrypting and decrypting with ciphers;
  * testing SSL/TLS clients and servers;
  * handling S/MIME signed or encrypted mail.
Description-md5: 9b6de2bb6e1d9016aeb0f00bcf6617bd
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu
Supported: 5y
Task: standard, ubuntu-core, ubuntu-core, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntu-touch-core, ubuntu-touch, ubuntu-sdk-libs-tools, ubuntu-sdk

accept@vm-jenkins2:~$
alexcrichton commented 7 years ago

Ah yeah unfortunately I've never install a custom SSL certificate on a linux system so I'm not even sure what the "normal" mechanism for doing this is and if the behavior we're seeing diverges from that...

I'm running low on ideas :(

JoeyAcc commented 7 years ago

I don't exactly when it will happen yet, but there are plans to create a new build slave image from scratch and see if that will work. At this point for all we know it could be a borked Ubuntu image.

I'll post the results in this thread once I have them.

carols10cents commented 7 years ago

I'm going to close this issue due to a lack of activity... no news is good news, right???

Please reopen if this is still a problem! Thank you!!