From bd1301c8b855e23fac2a333a8b3696412a9ef7ba Mon Sep 17 00:00:00 2001 From: Eniko Nagy <4188977+eenagy@users.noreply.github.com> Date: Sat, 6 Sep 2025 10:46:12 +0000 Subject: [PATCH 1/2] upcoming/noble/amd64/eth-node-teku/25.9.1-1 --- .../25.9.1-1/eth-node-teku.changelog | 6 + .../eth-node-teku/25.9.1-1/eth-node-teku.sps | 23 + .../eth-node-teku/25.9.1-1/eth-node-teku.sss | 8 + .../25.9.1-1/pkg-builder-verify.toml | 7 + .../eth-node-teku/25.9.1-1/pkg-builder.toml | 41 + .../.pc/001-version-info.patch/build.gradle | 1046 +++++++++++++++++ .../version/VersionProviderTest.java | 96 ++ .../25.9.1-1/src/debian/copyright | 21 + .../debian/eth-node-teku.lintian-overrides | 11 + .../src/debian/patches/001-version-info.patch | 41 + .../25.9.1-1/src/debian/patches/series | 1 + .../eth-node-teku/25.9.1-1/src/debian/rules | 24 + .../src/debian/source/lintian-overrides | 4 + .../25.9.1-1/src/debian/tests/control | 10 + .../25.9.1-1/src/debian/tests/tests | 14 + .../src/debian/tests/tests-with-oracle-jre | 24 + 16 files changed, 1377 insertions(+) create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.changelog create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sps create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sss create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder-verify.toml create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder.toml create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/build.gradle create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/infrastructure/version/src/test/java/tech/pegasys/teku/infrastructure/version/VersionProviderTest.java create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/copyright create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/eth-node-teku.lintian-overrides create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/001-version-info.patch create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/series create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/rules create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/source/lintian-overrides create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/control create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests create mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests-with-oracle-jre diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.changelog b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.changelog new file mode 100644 index 000000000..6f8551214 --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.changelog @@ -0,0 +1,6 @@ +eth-node-teku (25.9.1-1) noble; urgency=medium + + * Support for 25.9.1-1 + + -- Eniko Nagy Sat, 06 Sep 2025 10:45:22 +0000 + diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sps b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sps new file mode 100644 index 000000000..cdddfb8a0 --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sps @@ -0,0 +1,23 @@ +name = "eth-node-teku" +architecture = "any" +summary = "Teku is a Java implementation of the Ethereum 2.0 Beacon Chain." +conflicts = [] +recommends = [] +provides = ["eth-node-consensus-client (= 1)"] +suggests = ["eth-node (= 1)"] +add_files = ["/build/install/teku /usr/lib/eth-node-teku"] +add_links = ["/usr/lib/eth-node-teku/teku/bin/teku /usr/bin/teku"] +add_manpages = [] +long_doc = """ +Teku is an open source Ethereum consensus client (previously called an Ethereum 2.0 client) written in Java. +Teku contains a full beacon node implementation and a validator client for participating in proof of stake consensus. +What can you do with Teku? + +Teku supports the following features: + + Running the beacon node synchronization and consensus. + Proposing and attesting to blocks. + Enterprise-focused metrics using Prometheus. + A REST API for managing consensus layer node operations. + External key management for managing validator signing keys. +""" diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sss b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sss new file mode 100644 index 000000000..b76676e76 --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sss @@ -0,0 +1,8 @@ +name = "eth-node-teku" +maintainer = "Eniko Nagy " +section = "net" +variants = [] +build_depends = [] +packages = ["eth-node-teku"] +skip_debug_symbols = true + diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder-verify.toml b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder-verify.toml new file mode 100644 index 000000000..2c346ff6e --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder-verify.toml @@ -0,0 +1,7 @@ +[verify] +package_hash=[ + { hash="5aaafadd7bc77c6e2178589ca6c34a8f3a295bb8", name= "eth-node-teku_25.9.1-1.dsc"}, + { hash="8c29e3f8451ea63cd04f7ec40f861fe213897937", name= "eth-node-teku_25.9.1.orig.tar.gz"}, + { hash="017473a0e93b7dafe9500babce21764e2a0da084", name= "eth-node-teku_25.9.1-1.debian.tar.xz"}, + { hash="bd977e32406e1bd5ed46e598e321ebe746d6aff1", name= "eth-node-teku_25.9.1-1_amd64.deb"}, +] diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder.toml b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder.toml new file mode 100644 index 000000000..9c18ef6f0 --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder.toml @@ -0,0 +1,41 @@ +[package_fields] +spec_file = "eth-node-teku.sss" +package_name = "eth-node-teku" +version_number = "25.9.1" +revision_number = "1" +homepage="https://github.com/Consensys/teku" + +[package_type] +# virtual | git | default +package_type="default" +tarball_url = "https://github.com/Consensys/teku/archive/refs/tags/25.9.1.tar.gz" +## Provided by debian package maintainer not by team developing the software +tarball_hash = "f0763bcc8dcce21ee10febeab824aac266aeb615a5aea52ec8f03188efd59e07" + +[package_type.language_env] +language_env = "java" +is_oracle=true +jdk_version="21.0" +jdk_binary_url="https://download.oracle.com/java/21/archive/jdk-21.0.2_linux-x64_bin.tar.gz" +jdk_binary_checksum="9f1f4a7f25ef6a73255657c40a6d7714f2d269cf15fb2ff1dc9c0c8b56623a6f" + +[package_type.language_env.gradle] +gradle_version="8.4" +gradle_binary_url="https://github.com/gradle/gradle-distributions/releases/download/v8.4.0/gradle-8.4-bin.zip" +gradle_binary_checksum="3e1af3ae886920c3ac87f7a91f816c0c7c436f276a6eefdb3da152100fef72ae" + + +[build_env] +codename="noble numbat" +arch = "amd64" +pkg_builder_version="0.3.1" +debcrafter_version = "2711b53" +run_lintian=true +run_piuparts=true +run_autopkgtest=true +lintian_version="2.116.3" +piuparts_version="1.1.7" +autopkgtest_version="5.28" +sbuild_version="0.85.6" +# package directory +workdir="~/.pkg-builder/packages/noble" diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/build.gradle b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/build.gradle new file mode 100644 index 000000000..ee9622528 --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/build.gradle @@ -0,0 +1,1046 @@ +import com.github.jk1.license.filter.LicenseBundleNormalizer +import tech.pegasys.internal.license.reporter.GroupedLicenseHtmlRenderer +import tech.pegasys.teku.depcheck.DepCheckPlugin + +import java.text.SimpleDateFormat + +import static tech.pegasys.teku.repackage.Repackage.repackage + +buildscript { + repositories { + mavenCentral() + maven { + url "https://artifacts.consensys.net/public/maven/maven/" + content { includeGroupByRegex('tech\\.pegasys\\..*')} + } + } + dependencies { + classpath 'tech.pegasys.internal.license.reporter:license-reporter:1.1.1' + } +} + +plugins { + id 'com.diffplug.spotless' version '6.25.0' + id 'com.github.ben-manes.versions' version '0.51.0' + id 'com.github.jk1.dependency-license-report' version '2.8' + id 'io.spring.dependency-management' version '1.1.5' + id 'net.ltgt.errorprone' version '4.0.0' apply false + id 'de.undercouch.download' version '5.6.0' + id 'org.ajoberstar.grgit' version '5.2.2' +} + +rootProject.version = calculatePublishVersion() +def specificVersion = calculateVersion() +def isDevelopBuild = rootProject.version.contains('develop') + +apply plugin: 'application' +apply plugin: DepCheckPlugin + +defaultTasks 'build','checkLicense' + +def buildAliases = [ + 'dev': [ + 'compileJava', + 'compileTestJava', + 'compileJmhJava', + 'compileIntegrationTestJava', + 'compileReferenceTestJava', + 'compilePropertyTestJava', + 'spotlessApply', + 'build', + 'checkLicense', + 'javadoc'], + 'mash': [ + 'clean', + 'spotlessApply', + 'build', + 'test'] + ] + +def expandedTaskList = [] + +gradle.startParameter.taskNames.each { + expandedTaskList << (buildAliases[it] ? buildAliases[it] : it) +} +gradle.startParameter.taskNames = expandedTaskList.flatten() as Iterable + +def userHome = System.getProperty("user.home") + +def cloudsmithUser = project.hasProperty('cloudsmithUser') ? project.property('cloudsmithUser') : System.getenv('CLOUDSMITH_USER') +def cloudsmithKey = project.hasProperty('cloudsmithApiKey') ? project.property('cloudsmithApiKey') : System.getenv('CLOUDSMITH_API_KEY') + + +var baseInfrastructureProjects = [ + ':infrastructure:bytes', + ':infrastructure:collections', + ':infrastructure:exceptions', + ':infrastructure:subscribers', + ':infrastructure:unsigned', +] +dependencyRules { + rules { + baseInfrastructureProjects.each { register(it) { allowed = [] }} + register(":infrastructure:") { + allowed = [":infrastructure:"] + } + register(":infrastructure:logging") { + allowed = [":infrastructure:unsigned"] + } + + ['dataproviders', 'events', 'executionclient', 'executionlayer', 'networks', 'pow', 'signingrecord', 'spec'].forEach( { + register(":ethereum:${it}") { + allowed = [ + ":infrastructure:", + ":ethereum:" + ] + } + }) + + // ethereum modules that need to be fixed. At least stop new dependencies being added + register(":ethereum:statetransition") { + allowed = [ + ":infrastructure:", + ":ethereum:", + ":storage" + ] + } + register(":ethereum:weaksubjectivity") { + allowed = [ + ":infrastructure:", + ":ethereum:", + ":storage" + ] + } + } +} + +def isNonStable = { String version -> + def stableKeyword = ['RELEASE', 'FINAL', 'GA'].any { keyword -> version.toUpperCase().contains(keyword) } + def regex = /^[0-9,.v-]+(-r)?$/ + return !stableKeyword && !(version ==~ regex) +} + +// reject all non stable versions +tasks.named("dependencyUpdates").configure { + rejectVersionIf { + isNonStable(it.candidate.version) + } +} + +allprojects { + apply plugin: 'java-library' + apply plugin: 'java-test-fixtures' + apply plugin: 'io.spring.dependency-management' + apply plugin: 'net.ltgt.errorprone' + apply from: "${rootDir}/gradle/versions.gradle" + + version = rootProject.version + + task sourcesJar(type: Jar, dependsOn: classes) { + archiveClassifier = 'sources' + from sourceSets.main.allSource + jar.reproducibleFileOrder = true + jar.preserveFileTimestamps = false + } + + sourceCompatibility = '17' + targetCompatibility = '17' + + repositories { + mavenLocal() + mavenCentral() + maven { url "https://jitpack.io" } + maven { + url "https://artifacts.consensys.net/public/maven/maven/" + content { includeGroupByRegex('tech\\.pegasys($|\\..*)')} + } + maven { + url "https://dl.cloudsmith.io/public/libp2p/jvm-libp2p/maven/" + content { includeGroupByRegex('io\\.libp2p($|\\..*)') } + } + maven { + url "https://hyperledger.jfrog.io/artifactory/besu-maven/" + content { includeGroupByRegex('org\\.hyperledger\\.besu($|\\..*)') } + } + } + + dependencies { + errorprone("com.google.errorprone:error_prone_core") + errorprone("tech.pegasys.tools.epchecks:errorprone-checks") + } + + apply plugin: 'com.diffplug.spotless' + spotless { + java { + // This path needs to be relative to each project + target fileTree('.') { + include '**/*.java' + exclude '**/.gradle/**' + exclude 'web3j' + //Excluding tech.pegasys.teku.datastructures due to preferred formatting overwritten by plugin in getConstantsAsString. + exclude '**/src/main/java/tech/pegasys/teku/Constants.java' + exclude '**/proto' + exclude '**/resources' + exclude '**/src/*/generated' + exclude '**/src/*/generated_tests' + exclude '**/build/**' + } + + importOrder 'tech.pegasys', 'net.consensys', 'java', '' + trimTrailingWhitespace() + endWithNewline() + licenseHeaderFile "${rootDir}/gradle/spotless.java.license" + // See gradle.properties for exports/opens flags required by JDK 16 and Google Java Format plugin + googleJavaFormat('1.17.0') + } + } + + tasks.withType(JavaCompile) { + options.compilerArgs += [ + '-Xlint:unchecked', + '-Xlint:cast', + '-Xlint:rawtypes', + '-Xlint:overloads', + '-Xlint:divzero', + '-Xlint:finally', + '-Xlint:static', + '-Werror', + ] + options.forkOptions.jvmArgs += [ + '--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED', + '--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED', + '--add-opens=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED' + ] + + options.errorprone { + enabled = !'true'.equalsIgnoreCase(System.getProperty('avt.disableErrorProne')) + disableWarningsInGeneratedCode + + // Our equals need to be symmetric, this checker doesn't respect that + check('EqualsGetClass', net.ltgt.gradle.errorprone.CheckSeverity.OFF) + // We use the JSR-305 annotations instead of the Google annotations + check('ImmutableEnumChecker', net.ltgt.gradle.errorprone.CheckSeverity.OFF) + // Storing a lambda to avoid code duplication is not a bad thing + check('UnnecessaryLambda', net.ltgt.gradle.errorprone.CheckSeverity.OFF) + // Generates a ton of false alarms for no real value + check('LongDoubleConversion', net.ltgt.gradle.errorprone.CheckSeverity.OFF) + check('InlineMeSuggester', net.ltgt.gradle.errorprone.CheckSeverity.OFF) + check('CanIgnoreReturnValueSuggester', net.ltgt.gradle.errorprone.CheckSeverity.OFF) + check('DirectInvocationOnMock', net.ltgt.gradle.errorprone.CheckSeverity.OFF) + + // We don't apply strict javadoc requirements yet + check('EmptyBlockTag', net.ltgt.gradle.errorprone.CheckSeverity.OFF) + check('MissingSummary', net.ltgt.gradle.errorprone.CheckSeverity.OFF) + + // Force strict compliance with Java naming conventions + check('JavaCase', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + + // Check for uses of == that should probably be .equals + check('ReferenceComparison', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + + // These checks are imported from errorprone-checks dependency but not required in Teku + check('BannedMethod', net.ltgt.gradle.errorprone.CheckSeverity.OFF) + check('ExperimentalCliOptionMustBeCorrectlyDisplayed', net.ltgt.gradle.errorprone.CheckSeverity.OFF) + + // These are experimental checks that we want enabled + check('MissingBraces', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + check('InsecureCryptoUsage', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + check('WildcardImport', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + check('DeduplicateConstants', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + check('RedundantOverride', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + check('RedundantThrows', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + check('UnnecessarilyFullyQualified', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + check('InitializeInline', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + check('ClassName', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + check('InterfaceWithOnlyStatics', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + check('PackageLocation', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + check('MethodInputParametersMustBeFinal', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + check('FieldCanBeFinal', net.ltgt.gradle.errorprone.CheckSeverity.WARN) + + } + options.encoding = 'UTF-8' + + } + + /* + * Pass some system properties provided on the gradle command line to test executions for + * convenience. + * + * The properties passed are: + * - 'test.ethereum.include': allows to run a single Ethereum reference tests. For instance, + * running a single general state test can be done with: + * ./gradlew :ethereum:tech.pegasys.teku.ethereum.vm:test -Dtest.single=GeneralStateTest -Dtest.ethereum.include=callcodecallcallcode_101-Frontier + * The meaning being that will be run only the tests for which the value passed as "include" + * (which can be a java pattern) matches parts of the test name. Knowing that tests names for + * reference tests are of the form: + * (-([])?)? + * where is the test name as defined in the json file (usually the name of the json file + * as well), is the Ethereum milestone tested (not all test use it) and + * is only use in some general state tests where for the same json file and same milestone, + * multiple variant of that test are run. The variant is a simple number. + * - 'test.ethereum.state.eip': for general state tests, allows to only run tests for the + * milestone specified by this value. So for instance, + * ./gradlew :ethereum:tech.pegasys.teku.ethereum.vm:test -Dtest.single=GeneralStateTest -Dtest.ethereum.state.eip=Frontier + * only run general state tests for Frontier. Note that this behavior could be achieved as well + * with the 'include' option above since it is a pattern, but this is a slightly more convenient + * option. + * - 'root.log.level' and 'evm.log.level': allow to control the log level used during the tests. + */ + test { + jvmArgs = [ + '-Xmx4g', + '-XX:-UseGCOverheadLimit' + ] + Set toImport = [ + 'test.ethereum.include', + 'test.ethereum.state.eip', + 'root.log.level', + 'evm.log.level' + ] + testLogging.showStandardStreams = project.hasProperty("showOutput") ? project.property("showOutput") : false + for (String name : toImport) { + if (System.getProperty(name) != null) { + systemProperty name, System.getProperty(name) + } + } + } + + javadoc { + options.addStringOption('Xdoclint:all,-missing', '-quiet') + options.addStringOption('Xwerror', '-html5') + options.encoding = 'UTF-8' + } +} + +def refTestVersion = 'v1.5.0-alpha.2' +def blsRefTestVersion = 'v0.1.2' +def slashingProtectionInterchangeRefTestVersion = 'v5.3.0' +def refTestBaseUrl = 'https://github.com/ethereum/consensus-spec-tests/releases/download' +def blsRefTestBaseUrl = 'https://github.com/ethereum/bls12-381-tests/releases/download' +def slashingProtectionInterchangeRefTestBaseUrl = 'https://github.com/eth-clients/slashing-protection-interchange-tests/archive/refs/tags' +def refTestDownloadDir = "${buildDir}/refTests/${refTestVersion}" +def blsRefTestDownloadDir = "${buildDir}/blsRefTests/${blsRefTestVersion}" +def slashingProtectionInterchangeRefTestDownloadDir = "${buildDir}/slashingProtectionInterchangeRefTests/${slashingProtectionInterchangeRefTestVersion}" +def refTestExpandDir = "${project.rootDir}/eth-reference-tests/src/referenceTest/resources/consensus-spec-tests/" + +task downloadEthRefTests(type: Download) { + src([ + "${refTestBaseUrl}/${refTestVersion}/general.tar.gz", + "${refTestBaseUrl}/${refTestVersion}/minimal.tar.gz", + "${refTestBaseUrl}/${refTestVersion}/mainnet.tar.gz" + ]) + dest "${refTestDownloadDir}" + overwrite false +} + +task downloadBlsRefTests(type: Download) { + src([ + "${blsRefTestBaseUrl}/${blsRefTestVersion}/bls_tests_yaml.tar.gz" + ]) + dest "${blsRefTestDownloadDir}/bls_tests_yaml.tar.gz" + overwrite false +} + +task downloadSlashingProtectionInterchangeRefTests(type: Download) { + src([ + "${slashingProtectionInterchangeRefTestBaseUrl}/${slashingProtectionInterchangeRefTestVersion}.tar.gz" + ]) + dest "${slashingProtectionInterchangeRefTestDownloadDir}/slashing-protection-interchange-tests.tar.gz" + overwrite false +} + +task downloadRefTests(dependsOn: [downloadEthRefTests, downloadBlsRefTests, downloadSlashingProtectionInterchangeRefTests]) + +task cleanRefTestsGeneral(type: Delete) { + delete "${refTestExpandDir}/tests/general" +} + +task expandRefTestsGeneral(type: Copy, dependsOn: [cleanRefTestsGeneral, downloadEthRefTests]) { + from tarTree("${refTestDownloadDir}/general.tar.gz") + into refTestExpandDir +} + +task cleanRefTestsMainnet(type: Delete) { + delete "${refTestExpandDir}/tests/mainnet" +} + +task expandRefTestsMainnet(type: Copy, dependsOn: [cleanRefTestsMainnet, downloadEthRefTests]) { + from tarTree("${refTestDownloadDir}/mainnet.tar.gz") + into refTestExpandDir +} + +task cleanRefTestsMinimal(type: Delete) { + delete "${refTestExpandDir}/tests/minimal" +} + +task expandRefTestsMinimal(type: Copy, dependsOn: [cleanRefTestsMinimal, downloadEthRefTests]) { + from tarTree("${refTestDownloadDir}/minimal.tar.gz") + into refTestExpandDir +} + +task cleanRefTestsBls(type: Delete) { + delete "${refTestExpandDir}/tests/bls" +} + +task expandRefTestsBls(type: Copy, dependsOn: [cleanRefTestsBls, downloadBlsRefTests]) { + from tarTree("${blsRefTestDownloadDir}/bls_tests_yaml.tar.gz") + into "${refTestExpandDir}/tests/bls" +} + +task cleanRefTestsSlashingProtectionInterchange(type: Delete) { + delete "${refTestExpandDir}/tests/slashing-protection-interchange" +} + +task expandRefTestsSlashingProtectionInterchange(type: Copy, dependsOn: [cleanRefTestsSlashingProtectionInterchange, downloadSlashingProtectionInterchangeRefTests]) { + from { + tarTree("${slashingProtectionInterchangeRefTestDownloadDir}/slashing-protection-interchange-tests.tar.gz").matching { + include "**/tests/generated/*.json" + // flatten + eachFile { FileCopyDetails fcp -> + fcp.path = fcp.name + } + } + } + into "${refTestExpandDir}/tests/slashing-protection-interchange" +} + +task expandRefTests(dependsOn: [expandRefTestsGeneral, expandRefTestsMainnet, expandRefTestsMinimal, expandRefTestsBls, expandRefTestsSlashingProtectionInterchange]) +task cleanRefTests(dependsOn: [cleanRefTestsGeneral, cleanRefTestsMainnet, cleanRefTestsMinimal, cleanRefTestsBls, cleanRefTestsSlashingProtectionInterchange]) + +task deploy() {} + +licenseReport { + configurations = ['runtimeClasspath'] + outputDir = "${buildDir}/reports/licenses" + // These jars don't have machine readable license information + excludes = [ + 'org.junit:junit-bom', + 'org.rxtx:rxtx', + 'com.fasterxml.jackson:jackson-bom', + 'io.netty:netty-tcnative-classes', + 'org.jetbrains.kotlinx:kotlinx-coroutines-bom', + 'org.jetbrains.kotlinx:kotlinx-coroutines-core', + 'org.jetbrains.kotlin:kotlin-stdlib-common', + ] + allowedLicensesFile = new File("${rootDir}/gradle/license-report-config/allowed-licenses.json") + filters = [new LicenseBundleNormalizer()] + renderers = [new GroupedLicenseHtmlRenderer(includeTimestamp: false)] +} + +task checkMavenCoordinateCollisions { + doLast { + def coordinates = [:] + getAllprojects().forEach { + if (it.properties.containsKey('publishing') && it.jar?.enabled) { + def coordinate = it.publishing?.publications[0].coordinates + if (coordinates.containsKey(coordinate)) { + throw new GradleException("Duplicate maven coordinates detected, ${coordinate} is used by " + + "both ${coordinates[coordinate]} and ${it.path}.\n" + + "Please add a `publishing` script block to one or both subprojects.") + } + coordinates[coordinate] = it.path + } + } + } +} + +check.dependsOn('checkMavenCoordinateCollisions') + +application { + applicationName = "teku" + getMainClass().set("tech.pegasys.teku.Teku") + applicationDefaultJvmArgs = [ + "-Dvertx.disableFileCPResolving=true", + "-Dteku.home=TEKU_HOME", + // We shutdown log4j ourselves, as otherwise his shutdown hook runs before our own and whatever + // happens during shutdown is not logged. + "-Dlog4j.shutdownHookEnabled=false", + "-Dlog4j2.formatMsgNoLookups=true", + // run `jcmd VM.native_memory` to check JVM native memory consumption + "-XX:NativeMemoryTracking=summary", + // 32Mb for Netty Direct ByteBuf + "-Dio.netty.maxDirectMemory=33554432" + ] +} + +task autocomplete(type: JavaExec) { + dependsOn compileJava + outputs.file "build/teku.autocomplete.sh" + + mainClass = application.getMainClass() + args "debug-tools", "generate-autocomplete", "--output", "build/teku.autocomplete.sh" + classpath sourceSets.main.runtimeClasspath +} + +installDist { + dependsOn checkLicense, autocomplete +} + +distTar { + dependsOn checkLicense, autocomplete + doFirst { + delete fileTree(dir: 'build/distributions', include: '*.tar.gz') + } + compression = Compression.GZIP + archiveExtension = 'tar.gz' + reproducibleFileOrder = true + doLast { + repackage(archiveFile.get().toString(), lastCommitDate()) + } +} + +distZip { + dependsOn checkLicense, autocomplete + doFirst { + delete fileTree(dir: 'build/distributions', include: '*.zip') + } + reproducibleFileOrder = true + doLast { + repackage(archiveFile.get().toString(), lastCommitDate()) + } +} + +startScripts { + + def shortenWindowsClasspath = { line -> + line = line.replaceAll(/^set CLASSPATH=.*$/, "set CLASSPATH=%APP_HOME%/lib/*") + } + + doLast { + unixScript.text = unixScript.text.replace('TEKU_HOME', '\$APP_HOME') + windowsScript.text = windowsScript.text.replace('TEKU_HOME', '%~dp0..') + + // Prevent the error originating from the 8191 chars limit on Windows + windowsScript.text = + windowsScript + .readLines() + .collect(shortenWindowsClasspath) + .join('\r\n') + } +} + +// rename the top level dir from teku- to teku and this makes it really +// simple for use in docker +tasks.register("dockerDistUntar") { + dependsOn distTar + def dockerBuildPath = "build/docker-teku/" + def distTarFile = distTar.outputs.files.singleFile + def distTarFileName = distTar.outputs.files.singleFile.name.replace(".tar.gz", "") + + doFirst { + def dockerBuildDir = new File(dockerBuildPath) + dockerBuildDir.deleteDir() + dockerBuildDir.mkdir() + copy { + from tarTree(distTarFile) + into(dockerBuildPath) + } + def dockerDist = file("${dockerBuildPath}/${distTarFileName}") + dockerDist.renameTo("${dockerBuildPath}/teku") + } +} + +def dockerImage = "consensys/teku" +def dockerJdkVariants = [ "jdk21", "jdk17" ] +def dockerBuildDir = "build/docker-teku/" + +def executableAndArg = System.getProperty('os.name').toLowerCase().contains('windows') ? ["cmd", "/c"] : ["sh", "-c"] + +task distDocker { + dependsOn dockerDistUntar + def dockerBuildVersion = 'develop' + doLast { + def includeCommitHashInDockerTag = project.hasProperty('includeCommitHashInDockerTag') && project.property('includeCommitHashInDockerTag').toBoolean() + def commitHashTag = includeCommitHashInDockerTag ? '-' + grgit.head().getAbbreviatedId() : '' + for (def variant in dockerJdkVariants) { + copy { + from file("${projectDir}/docker/${variant}/Dockerfile") + into(dockerBuildDir) + } + exec { + def image = "${dockerImage}:${dockerBuildVersion}-${variant}${commitHashTag}" + workingDir dockerBuildDir + executable executableAndArg[0] + args executableAndArg[1], "docker build --pull --build-arg BUILD_DATE=${buildTime()} --build-arg VERSION=${dockerBuildVersion} --build-arg VCS_REF=${getCheckedOutGitCommitHash()} -t ${image} ." + } + } + // tag the "default" (which is the variant in the zero position) + exec { + executable executableAndArg[0] + args executableAndArg[1], "docker tag ${dockerImage}:${dockerBuildVersion}-${dockerJdkVariants[0]}${commitHashTag} ${dockerImage}:${dockerBuildVersion}${commitHashTag}" + } + } +} + +task uploadDocker { + dependsOn([distDocker]) + def dockerBuildVersion = "${rootProject.version}".replace('+', '-') + def architecture = System.getenv('architecture') + def platform = System.getenv('platform') + + def versionPrefixes = [dockerBuildVersion] + if (project.hasProperty('branch') && project.property('branch') == 'master') { + versionPrefixes.add('develop') + } + + if (!isDevelopBuild) { + versionPrefixes.add('latest') + versionPrefixes.add(dockerBuildVersion.split(/\./)[0..1].join('.')) + } + + doLast { + def includeCommitHashInDockerTag = project.hasProperty('includeCommitHashInDockerTag') && project.property('includeCommitHashInDockerTag').toBoolean() + def commitHashTag = includeCommitHashInDockerTag ? '-' + grgit.head().getAbbreviatedId() : '' + for (def variant in dockerJdkVariants) { + def tags = "" + versionPrefixes.forEach { prefix -> tags += "-t ${dockerImage}:${prefix.trim()}-${variant}-${architecture}${commitHashTag} "} + + if (variant == dockerJdkVariants[0]) { + versionPrefixes.forEach { prefix -> tags += "-t ${dockerImage}:${prefix.trim()}-${architecture}${commitHashTag} "} + } + + copy { + from file("${projectDir}/docker/${variant}/Dockerfile") + into(dockerBuildDir) + } + + exec { + workingDir dockerBuildDir + executable executableAndArg[0] + args executableAndArg[1], "docker build --pull --platform ${platform} --build-arg BUILD_DATE=${buildTime()} --build-arg VERSION=${dockerBuildVersion} --build-arg VCS_REF=${getCheckedOutGitCommitHash()} ${tags} ." + } + + //docker trust sign runs one image at a time, so we have to remove the '-t' in the string and split into a list we can use + def trustTags = tags.replaceAll( '-t ', '' ).trim().split(' ') + for (def t in trustTags) { + exec { + workingDir dockerBuildDir + executable executableAndArg[0] + args executableAndArg[1], "docker trust sign ${t} && docker push ${t} " + } + } + } + } +} + +task manifestDocker { + def dockerBuildVersion = "${rootProject.version}".replace('+', '-') + def versionPrefixes = [dockerBuildVersion] + def platforms = ["arm64", "amd64"] + + if (project.hasProperty('branch') && project.property('branch') == 'master') { + versionPrefixes.add('develop') + } + + if (!isDevelopBuild) { + versionPrefixes.add('latest') + versionPrefixes.add(dockerBuildVersion.split(/\./)[0..1].join('.')) + } + + doLast { + def includeCommitHashInDockerTag = project.hasProperty('includeCommitHashInDockerTag') && project.property('includeCommitHashInDockerTag').toBoolean() + def commitHashTag = includeCommitHashInDockerTag ? '-' + grgit.head().getAbbreviatedId() : '' + for (def variant in dockerJdkVariants) { + def tags = [] + def cmd = "" + versionPrefixes.forEach { prefix -> tags.add("${dockerImage}:${prefix.trim()}-${variant}") } + + if (variant == dockerJdkVariants[0]) { + versionPrefixes.forEach { prefix -> tags.add("${dockerImage}:${prefix.trim()}") } + } + + for (def tag in tags) { + platforms.forEach { platform -> cmd += "${tag}-${platform}${commitHashTag} " } + exec { + executable executableAndArg[0] + args executableAndArg[1], "docker manifest create ${tag}${commitHashTag} ${cmd} && docker manifest push ${tag}${commitHashTag}" + } + } + } + } +} + +subprojects { + tasks.withType(Test) { + // If GRADLE_MAX_TEST_FORKS is not set, use half the available processors + maxParallelForks = (System.getenv('GRADLE_MAX_TEST_FORKS') ?: (Runtime.runtime.availableProcessors().intdiv(2) ?: 1)).toInteger() + useJUnitPlatform() + reports { + junitXml.required = true + } + filter { + // Support filtering tests with the --tests option to gradle + // Without this the build fails if you filter out all the tests for any module + setFailOnNoMatchingTests(false) + } + } + + tasks.withType(JavaCompile) { + options.fork = true + options.incremental = true + } + + sourceSets { + integrationTest { + java { + compileClasspath += main.output + runtimeClasspath += main.output + srcDir file('src/integration-test/java') + } + resources.srcDir file('src/integration-test/resources') + } + acceptanceTest { + java { + compileClasspath += main.output + runtimeClasspath += main.output + srcDir file('src/acceptance-test/java') + } + resources.srcDir file('src/acceptance-test/resources') + } + propertyTest { + java { + compileClasspath += main.output + runtimeClasspath += main.output + srcDir file('src/property-test/java') + } + resources.srcDir file('src/property-test/resources') + } + referenceTest { + java { + srcDir file('src/referenceTest/generated_tests') + srcDir file('src/referenceTest/java') + } + } + } + + def sourceSetIsPopulated = { sourceSetName -> + def result = project.sourceSets.names.contains(sourceSetName) && !project.sourceSets.getAt(sourceSetName).allSource.empty + logger.info("Project = " + project.name + " Has Source Set (" + sourceSetName + ") = " + result + "(" + project.sourceSets.names + ")") + return result + } + + apply plugin: 'idea' + idea { + module { + testSourceDirs += project.sourceSets.testFixtures.java.srcDirs + testSourceDirs += project.sourceSets.testFixtures.resources.srcDirs + testSourceDirs += project.sourceSets.integrationTest.java.srcDirs + testSourceDirs += project.sourceSets.integrationTest.resources.srcDirs + testSourceDirs += project.sourceSets.acceptanceTest.java.srcDirs + testSourceDirs += project.sourceSets.acceptanceTest.resources.srcDirs + testSourceDirs += project.sourceSets.propertyTest.java.srcDirs + testSourceDirs += project.sourceSets.propertyTest.resources.srcDirs + testSourceDirs += project.sourceSets.referenceTest.java.srcDirs + testSourceDirs += project.sourceSets.referenceTest.resources.srcDirs + } + } + + if (sourceSetIsPopulated("main") || sourceSetIsPopulated("testFixtures")) { + apply plugin: 'maven-publish' + + publishing { + repositories { + maven { + name = "cloudsmith" + url = "https://api-g.cloudsmith.io/maven/consensys/teku/" + credentials { + username = cloudsmithUser + password = cloudsmithKey + } + } + } + publications { + mavenJava(MavenPublication) { + groupId "tech.pegasys.teku.internal" + version "${project.version}" + if (sourceSetIsPopulated("main")) { + from components.java + artifact sourcesJar + } + + versionMapping { + usage('java-api') { fromResolutionOf('runtimeClasspath') } + usage('java-runtime') { fromResolutionResult() } + } + suppressPomMetadataWarningsFor('testFixturesApiElements') + suppressPomMetadataWarningsFor('testFixturesRuntimeElements') + pom { + name = "Teku - ${project.name}" + url = 'https://github.com/Consensys/teku' + licenses { + license { + name = 'The Apache License, Version 2.0' + url = 'http://www.apache.org/licenses/LICENSE-2.0.txt' + } + } + scm { + connection = 'scm:git:git://github.com/Consensys/teku.git' + developerConnection = 'https://github.com/Consensys/teku.git' + url = 'https://github.com/Consensys/teku' + } + // workaround + // https://stackoverflow.com/questions/69877418/why-does-every-pom-file-published-by-gradle-has-a-self-referential-dependency + // https://github.com/spring-gradle-plugins/dependency-management-plugin/issues/365 + withXml { + asNode().dependencies.dependency.each { dep -> + if(dep["artifactId"].last().value().last() == artifactId) { + assert dep.parent().remove(dep) + } + } + } + } + } + } + } + } + + if (project.file('src/jmh/java').exists()) { + sourceSets { + jmh { + java.srcDirs = ['src/jmh/java'] + resources.srcDirs = ['src/jmh/resources'] + compileClasspath += sourceSets.main.runtimeClasspath + } + } + + tasks.getByName("compileJmhJava") { + + options.compilerArgs = [] + + options.errorprone { + enabled = false + } + } + + dependencies { + jmhImplementation 'org.openjdk.jmh:jmh-core' + jmhAnnotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess' + } + + classes.finalizedBy(jmhClasses) + + task jmh(type: JavaExec, dependsOn: jmhClasses) { + mainClass = 'org.openjdk.jmh.Main' + classpath = sourceSets.jmh.compileClasspath + sourceSets.jmh.runtimeClasspath + systemProperty("jmh.blackhole.mode", "COMPILER") + } + } + + + configurations { + integrationTestImplementation.extendsFrom testImplementation + acceptanceTestImplementation.extendsFrom testImplementation + propertyTestImplementation.extendsFrom testImplementation + referenceTestImplementation.extendsFrom testImplementation + + integrationTestRuntimeOnly.extendsFrom testRuntimeOnly + acceptanceTestRuntimeOnly.extendsFrom testRuntimeOnly + propertyTestRuntimeOnly.extendsFrom testRuntimeOnly + referenceTestRuntimeOnly.extendsFrom testRuntimeOnly + + // Details at https://github.com/Hakky54/log-captor#using-log-captor-alongside-with-other-logging-libraries + testImplementation { + exclude(group: "org.apache.logging.log4j", module: "log4j-slf4j-impl") + exclude(group: "org.apache.logging.log4j", module: "log4j-slf4j2-impl") + } + } + + def jarName = project.name + def parent = project.parent + while (parent != null) { + if (parent != rootProject || jarName != 'teku') { + jarName = parent.name + '-' + jarName + } + parent = parent.parent + } + + jar { + archiveBaseName = jarName + manifest { + attributes( + 'Specification-Title': jarName, + 'Specification-Version': project.version, + 'Implementation-Title': jarName, + 'Implementation-Version': specificVersion + ) + } + reproducibleFileOrder = true + preserveFileTimestamps = false + } + + dependencies { + implementation 'com.google.guava:guava' + implementation 'org.apache.commons:commons-lang3' + implementation 'org.apache.logging.log4j:log4j-api' + + runtimeOnly 'org.apache.logging.log4j:log4j-core' + runtimeOnly 'org.apache.logging.log4j:log4j-slf4j-impl' + + testImplementation 'org.apache.tuweni:tuweni-junit' + testImplementation 'org.assertj:assertj-core' + testImplementation 'org.mockito:mockito-core' + testImplementation 'org.junit.jupiter:junit-jupiter-api' + testImplementation 'org.junit.jupiter:junit-jupiter-params' + + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine' + + testFixturesImplementation 'org.assertj:assertj-core' + + testFixturesRuntimeOnly 'org.apiguardian:apiguardian-api' + + propertyTestImplementation 'net.jqwik:jqwik' + } + + if (!baseInfrastructureProjects.contains(project.path)) { + dependencies.implementation(project(':infrastructure:unsigned')) + dependencies.testRuntimeOnly(dependencies.testFixtures(project(':infrastructure:logging'))) + } + + task integrationTest(type: Test, dependsOn:["compileIntegrationTestJava"]){ + group = "verification" + description = "Runs the Teku integration tests" + + testClassesDirs = sourceSets.integrationTest.output.classesDirs + classpath = sourceSets.integrationTest.runtimeClasspath + } + + task acceptanceTest(type: Test, dependsOn:["compileAcceptanceTestJava", rootProject.distDocker]){ + group = "verification" + description = "Runs the Teku acceptance tests" + + systemProperty "teku.testArtifactDir", new File(project.buildDir, "test-artifacts").getAbsolutePath() + testClassesDirs = sourceSets.acceptanceTest.output.classesDirs + classpath = sourceSets.acceptanceTest.runtimeClasspath + } + + task propertyTest(type: Test, dependsOn:["compilePropertyTestJava"]){ + group = "verification" + description = "Runs the Teku property tests" + + testClassesDirs = sourceSets.propertyTest.output.classesDirs + classpath = sourceSets.propertyTest.runtimeClasspath + } + + task referenceTest(type: Test, dependsOn:["compileReferenceTestJava"]){ + group = "verification" + description = "Runs the Teku reference tests" + + testClassesDirs = sourceSets.referenceTest.output.classesDirs + classpath = sourceSets.referenceTest.runtimeClasspath + } +} + +jar { enabled = false } + +run { + if(project.hasProperty('generateFlow')){ + def flowJVMArgs = [ + "-javaagent:${userHome}/.flow/resources/javaagent.jar", + "-Dflow.agent.include=tech.pegasys.teku,tech.pegasys.teku.services.beaconchain,tech.pegasys.teku.statetransition,tech.pegasys.teku.statetransition.util", + "-Dflow.agent.exclude=tech.pegasys.teku.datastructures.state,tech.pegasys.teku.datastructures.blocks,tech.pegasys.teku.datastructures.operations,tech.pegasys.teku.datastructures.util.bitwise,tech.pegasys.teku.util.hashtree,tech.pegasys.teku.util.alogger,tech.pegasys.teku.storage,tech.pegasys.teku.util.bls,tech.pegasys.teku.util.mikuli,tech.pegasys.teku.networking.p2p,tech.pegasys.teku.validator.coordinator", + "-Dflow.agent.autostart", + "-Dflow.agent.execution-name=teku" + ] + applicationDefaultJvmArgs.addAll(flowJVMArgs) + } + args project.hasProperty("teku.run.args") ? project.property("teku.run.args").toString().split("\\s+") : [] + doFirst { + applicationDefaultJvmArgs = applicationDefaultJvmArgs.collect{it.replace('TEKU_HOME', "$buildDir/teku")} + } +} + +dependencies { + implementation project(':teku') + errorprone 'com.google.errorprone:error_prone_core' + errorprone 'tech.pegasys.tools.epchecks:errorprone-checks' +} + +distributions { + main { + contents { + from("LICENSE") + from("build/reports/licenses") { + into "licenses" + exclude "**/dependencies-without-allowed-license.json" + exclude "**/project-licenses-for-check-license-task.json" + } + from("libs") { into "native" } + from("build/teku.autocomplete.sh") + } + } +} + +// http://label-schema.org/rc1/ +// using the RFC3339 format "2016-04-12T23:20:50.52Z" +def buildTime() { + def df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'") + df.setTimeZone(TimeZone.getTimeZone("UTC")) + return df.format(new Date()) +} + +// Get the date of the last git commit. +def lastCommitDate() { + if (!grgit) { + return new Date() + } + return grgit.log(maxCommits: 1).get(0).date +} + +// Calculate the version that this build would be published under (if it is published) +// If this exact commit is tagged, use the tag +// If this is on a release-* branch, use the most recent tag appended with +develop (e.g. 0.1.1-RC1+develop) +// Otherwise, use develop +def calculatePublishVersion() { + if (!grgit) { + return 'develop' + } + def specificVersion = calculateVersion() + def isReleaseBranch = grgit.branch.current().name.startsWith('release-') + if (specificVersion.contains('+')) { + return isReleaseBranch ? "${specificVersion.substring(0, specificVersion.indexOf('+'))}+develop" : "develop" + } + return specificVersion +} + +// Calculate the version that teku --version will report (among other places) +// If this exact commit is tagged, use the tag +// Otherwise use git describe --tags and replace the - after the tag with a + +def calculateVersion() { + if (!grgit) { + logger.warn("Not building from a git checkout. Version information will not be available. Building from a git checkout is strongly recommended.") + return 'UNKNOWN+develop' + } + String version = grgit.describe(tags: true) + if (version == null) { + return "UNKNOWN+g${grgit.head().abbreviatedId}" + } + def versionPattern = ~/^(?.*)-(?[0-9]+-g[a-z0-9]+)$/ + def matcher = version =~ versionPattern + if (matcher.find()) { + return "${matcher.group("lastVersion")}+${matcher.group("devVersion")}" + } + return version +} + +task printVersion() { + doFirst { + print "Specific version: ${specificVersion} Publish version: ${project.version}" + } +} + + +def getCheckedOutGitCommitHash() { + def takeFromHash = 8 + grgit ? grgit.head().id.take(takeFromHash) : 'UNKNOWN' +} + +task cloudsmithUpload { + dependsOn([distTar, distZip]) + doLast { + exec { + executable project.file("scripts/cloudsmith-upload.sh") + args rootProject.version, distTar.archiveFile.get(), distZip.archiveFile.get() + } + } +} + diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/infrastructure/version/src/test/java/tech/pegasys/teku/infrastructure/version/VersionProviderTest.java b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/infrastructure/version/src/test/java/tech/pegasys/teku/infrastructure/version/VersionProviderTest.java new file mode 100644 index 000000000..37e70e7dc --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/infrastructure/version/src/test/java/tech/pegasys/teku/infrastructure/version/VersionProviderTest.java @@ -0,0 +1,96 @@ +/* + * Copyright Consensys Software Inc., 2022 + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on + * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + */ + +package tech.pegasys.teku.infrastructure.version; + +import static org.assertj.core.api.Assertions.assertThat; +import static tech.pegasys.teku.infrastructure.version.VersionProvider.ENV_HOME; +import static tech.pegasys.teku.infrastructure.version.VersionProvider.ENV_LOCALAPPDATA; +import static tech.pegasys.teku.infrastructure.version.VersionProvider.ENV_XDG_DATA_HOME; + +import java.io.IOException; +import java.io.InputStream; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.Map; +import org.apache.logging.log4j.util.Strings; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.io.TempDir; + +class VersionProviderTest { + private static final String TEKU = "/teku"; + + @Test + void commitHashConstant_isValidCommitHash() { + assertThat(VersionProvider.COMMIT_HASH) + .hasValueSatisfying( + commitHash -> assertThat(commitHash).hasSize(40).matches("[0-9a-fA-F]+")); + } + + @Test + void getCommitHashIsEmpty_whenGitPropertiesFileDoesNotExist() { + final InputStream notExistingFile = + VersionProviderTest.class.getClassLoader().getResourceAsStream("foo.properties"); + assertThat(VersionProvider.getCommitHash(notExistingFile)).isEmpty(); + } + + @Test + void getCommitHashIsEmpty_whenGitCommitIdPropertyDoesNotExist(@TempDir final Path tempDir) + throws IOException { + final Path gitPropertiesFile = tempDir.resolve("git.properties"); + + Files.writeString(gitPropertiesFile, "git.commit.foo=3824d24e9fee209d2335780643dac7f2dc4986e1"); + + assertThat(VersionProvider.getCommitHash(Files.newInputStream(gitPropertiesFile))).isEmpty(); + } + + @Test + void defaultStoragePath_shouldHandleWindowsPath() { + final String homeFolder = "c:\\users\\myUser\\AppData\\local"; + final Map env = Map.of(ENV_LOCALAPPDATA, homeFolder); + assertThat(VersionProvider.defaultStoragePathForNormalizedOS("windows", env)) + .isEqualTo(homeFolder + "\\teku"); + } + + @Test + void defaultStoragePath_shouldHandleMacPath() { + final String homeFolder = "/Users/myUser"; + Map env = Map.of(ENV_HOME, homeFolder); + assertThat(VersionProvider.defaultStoragePathForNormalizedOS("osx", env)) + .isEqualTo(homeFolder + "/Library" + TEKU); + } + + @Test + void defaultStoragePath_shouldHandleXdgHome() { + final String homeFolder = "/data/myUser"; + Map env = Map.of(ENV_XDG_DATA_HOME, homeFolder); + assertThat(VersionProvider.defaultStoragePathForNormalizedOS("linux", env)) + .isEqualTo(homeFolder + TEKU); + } + + @Test + void defaultStoragePath_shouldHandleEmptyXdgHome() { + final String homeFolder = "/home/myUser"; + Map env = Map.of(ENV_XDG_DATA_HOME, Strings.EMPTY, ENV_HOME, homeFolder); + assertThat(VersionProvider.defaultStoragePathForNormalizedOS("aix", env)) + .isEqualTo(homeFolder + "/.local/share" + TEKU); + } + + @Test + void defaultStoragePath_shouldHandleLocalHome() { + final String homeFolder = "/home/myUser"; + Map env = Map.of(ENV_HOME, homeFolder); + assertThat(VersionProvider.defaultStoragePathForNormalizedOS("aix", env)) + .isEqualTo(homeFolder + "/.local/share" + TEKU); + } +} diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/copyright b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/copyright new file mode 100644 index 000000000..10c7ce1f0 --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/copyright @@ -0,0 +1,21 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: teku +Upstream-Contact: https://github.com/Consensys/teku +Source: +# +# Please double check copyright with the licensecheck(1) command. + +Files: * +Copyright: __NO_COPYRIGHT_NOR_LICENSE__ +License: Apache-2.0 + +Files: debian/* +License: GPL-3+ + +License: Apache-2.0 + The full text of the Apache License, Version 2.0 is distributed in + /usr/share/common-licenses/Apache-2.0 on Debian systems. + +License: GPL-3+ + The full text of the GPL version 3 is distributed in + /usr/share/common-licenses/GPL-3 on Debian systems. \ No newline at end of file diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/eth-node-teku.lintian-overrides b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/eth-node-teku.lintian-overrides new file mode 100644 index 000000000..51c7222b0 --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/eth-node-teku.lintian-overrides @@ -0,0 +1,11 @@ +eth-node-teku: initial-upload-closes-no-bugs [usr/share/doc/eth-node-teku/changelog.Debian.gz:1] +eth-node-teku: maintainer-script-ignores-errors [postrm] +eth-node-teku: no-manual-page [usr/bin/teku] +eth-node-teku: jar-not-in-usr-share * +eth-node-teku: codeless-jar * +eth-node-teku: copyright-without-copyright-notice +eth-node-teku: executable-not-elf-or-script [usr/lib/eth-node-teku/teku/bin/teku.bat] +eth-node-teku: extended-description-line-too-long line 1 +eth-node-teku: extended-description-line-too-long line 2 +eth-node-teku: script-not-executable [usr/lib/eth-node-teku/teku/teku.autocomplete.sh] +eth-node-teku: unknown-java-class-version * diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/001-version-info.patch b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/001-version-info.patch new file mode 100644 index 000000000..7307510e6 --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/001-version-info.patch @@ -0,0 +1,41 @@ +Index: eth-node-teku-24.6.0/build.gradle +=================================================================== +--- eth-node-teku-24.6.0.orig/build.gradle ++++ eth-node-teku-24.6.0/build.gradle +@@ -1008,7 +1008,12 @@ def calculatePublishVersion() { + def calculateVersion() { + if (!grgit) { + logger.warn("Not building from a git checkout. Version information will not be available. Building from a git checkout is strongly recommended.") +- return 'UNKNOWN+develop' ++ String defaultVersion = System.getenv("TEKU_VERSION"); ++ if (defaultVersion == null || defaultVersion.isEmpty()) { ++ logger.warn("TEKU_VERSION environment variable is not set. Using 'UNKNOWN+develop' as the default version."); ++ defaultVersion = 'UNKNOWN+develop'; ++ } ++ return defaultVersion + } + String version = grgit.describe(tags: true) + if (version == null) { +Index: eth-node-teku-24.6.0/infrastructure/version/src/test/java/tech/pegasys/teku/infrastructure/version/VersionProviderTest.java +=================================================================== +--- eth-node-teku-24.6.0.orig/infrastructure/version/src/test/java/tech/pegasys/teku/infrastructure/version/VersionProviderTest.java ++++ eth-node-teku-24.6.0/infrastructure/version/src/test/java/tech/pegasys/teku/infrastructure/version/VersionProviderTest.java +@@ -30,12 +30,12 @@ import org.junit.jupiter.api.io.TempDir; + class VersionProviderTest { + private static final String TEKU = "/teku"; + +- @Test +- void commitHashConstant_isValidCommitHash() { +- assertThat(VersionProvider.COMMIT_HASH) +- .hasValueSatisfying( +- commitHash -> assertThat(commitHash).hasSize(40).matches("[0-9a-fA-F]+")); +- } ++ //@Test ++ //void commitHashConstant_isValidCommitHash() { ++ //assertThat(VersionProvider.COMMIT_HASH) ++ // .hasValueSatisfying( ++ // commitHash -> assertThat(commitHash).hasSize(40).matches("[0-9a-fA-F]+")); ++ //} + + @Test + void getCommitHashIsEmpty_whenGitPropertiesFileDoesNotExist() { diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/series b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/series new file mode 100644 index 000000000..a496e764c --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/series @@ -0,0 +1 @@ +001-version-info.patch diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/rules b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/rules new file mode 100644 index 000000000..fffbe3a97 --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/rules @@ -0,0 +1,24 @@ +#!/usr/bin/make -f +export TEKU_VERSION=25.9.1 + +%: + dh $@ + +override_dh_auto_build: + ./gradlew distTar installDist + +override_dh_auto_test: + ./gradlew test + +override_dh_auto_install: + # This relies on make install script + # if there is no install script, you have to define your own rules + dh_auto_install -- prefix=/usr + +override_dh_auto_clean: + # on ubuntu clean fails, before dependency installation + # on bookworm clean succeeds, even if dependency is not installed + -make -j1 clean + +override_dh_strip: + dh_strip --no-automatic-dbgsym diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/source/lintian-overrides b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/source/lintian-overrides new file mode 100644 index 000000000..1180ee20a --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/source/lintian-overrides @@ -0,0 +1,4 @@ +eth-node-teku source: debian-rules-ignores-make-clean-error [debian/rules:21] +eth-node-teku source: missing-field-in-dep5-copyright Copyright [debian/copyright:12] +eth-node-teku source: no-newline-at-end [debian/changelog] + diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/control b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/control new file mode 100644 index 000000000..5047562a6 --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/control @@ -0,0 +1,10 @@ +# These tests are run by autopkgtests + +Tests: tests +Depends: @, shunit2, which + +# generally it is not a good idea to test as a root +# better to define third-party repository which depends can be installed from +Tests: tests-with-oracle-jre +Depends: @, shunit2, which, curl, ca-certificates +Restrictions:needs-root # for installing oracle-jre diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests new file mode 100644 index 000000000..db35e03a5 --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests @@ -0,0 +1,14 @@ +#!/usr/bin/env sh + +exec 2>&1 + +set -e + +test_binary_in_path(){ + output="$(which teku)" + assertEquals "/usr/bin/teku" "$output" +} + + + +. shunit2 \ No newline at end of file diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests-with-oracle-jre b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests-with-oracle-jre new file mode 100644 index 000000000..f06354789 --- /dev/null +++ b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests-with-oracle-jre @@ -0,0 +1,24 @@ +#!/usr/bin/env sh + +exec 2>&1 + +set -e + +cd /tmp +curl https://download.oracle.com/java/21/archive/jdk-21.0.2_linux-x64_bin.deb --output jdk-21.0.2_linux-x64_bin.deb +dpkg -i jdk-21.0.2_linux-x64_bin.deb + +test_binary_in_path(){ + output="$(which teku)" + assertEquals "/usr/bin/teku" "$output" +} + +test_invocation(){ + output="$(teku --version)" + echo "$output" + # TODO fix version numbers + # checked against https://artifacts.consensys.net/public/teku/raw/names/teku.tar.gz/versions/23.10.0/teku-23.10.0.tar.gz + assertEquals "$output" "teku/v25.9.1/linux-x86_64/oracle-java-21" +} + +. shunit2 \ No newline at end of file From c95225d850a90c71c55001393a6c02fbb89022c0 Mon Sep 17 00:00:00 2001 From: Eniko Nagy <4188977+eenagy@users.noreply.github.com> Date: Sun, 7 Sep 2025 12:14:53 +0000 Subject: [PATCH 2/2] releases/noble/amd64/eth-node-teku/25.9.1-1 --- .../25.9.1-1/eth-node-teku.changelog | 0 .../eth-node-teku/25.9.1-1/eth-node-teku.sps | 0 .../eth-node-teku/25.9.1-1/eth-node-teku.sss | 0 .../25.9.1-1/pkg-builder-verify.toml | 7 + .../eth-node-teku/25.9.1-1/pkg-builder.toml | 0 .../.pc/001-version-info.patch/build.gradle | 0 .../version/VersionProviderTest.java | 0 .../25.9.1-1/src/debian/copyright | 0 .../debian/eth-node-teku.lintian-overrides | 0 .../src/debian/patches/001-version-info.patch | 0 .../25.9.1-1/src/debian/patches/series | 0 .../eth-node-teku/25.9.1-1/src/debian/rules | 0 .../src/debian/source/lintian-overrides | 0 .../25.9.1-1/src/debian/tests/control | 0 .../25.9.1-1/src/debian/tests/tests | 0 .../src/debian/tests/tests-with-oracle-jre | 0 .../eth-node-teku/25.9.1-1/strace_output.log | 5256 +++++++++++++++++ .../25.9.1-1/pkg-builder-verify.toml | 7 - 18 files changed, 5263 insertions(+), 7 deletions(-) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.changelog (100%) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sps (100%) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sss (100%) create mode 100644 releases/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder-verify.toml rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder.toml (100%) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/build.gradle (100%) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/infrastructure/version/src/test/java/tech/pegasys/teku/infrastructure/version/VersionProviderTest.java (100%) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/src/debian/copyright (100%) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/src/debian/eth-node-teku.lintian-overrides (100%) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/001-version-info.patch (100%) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/series (100%) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/src/debian/rules (100%) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/src/debian/source/lintian-overrides (100%) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/control (100%) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests (100%) rename {upcoming => releases}/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests-with-oracle-jre (100%) create mode 100644 releases/noble/amd64/eth-node-teku/25.9.1-1/strace_output.log delete mode 100644 upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder-verify.toml diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.changelog b/releases/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.changelog similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.changelog rename to releases/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.changelog diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sps b/releases/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sps similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sps rename to releases/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sps diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sss b/releases/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sss similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sss rename to releases/noble/amd64/eth-node-teku/25.9.1-1/eth-node-teku.sss diff --git a/releases/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder-verify.toml b/releases/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder-verify.toml new file mode 100644 index 000000000..3b6676994 --- /dev/null +++ b/releases/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder-verify.toml @@ -0,0 +1,7 @@ +[verify] +package_hash=[ + { hash="b145b52eb326d3370b44906c0339f4c4f2235c5c", name= "eth-node-teku_25.9.1-1.dsc"}, + { hash="b4d5d0a2c692a2d3a498e40a23fe658a64ed21ae", name= "eth-node-teku_25.9.1.orig.tar.gz"}, + { hash="134a850e8bf6165b8995b149de1ddad81eb7426e", name= "eth-node-teku_25.9.1-1.debian.tar.xz"}, + { hash="4da3a65075fa1effc1debb5975fc6faecda120b7", name= "eth-node-teku_25.9.1-1_amd64.deb"}, +] diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder.toml b/releases/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder.toml similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder.toml rename to releases/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder.toml diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/build.gradle b/releases/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/build.gradle similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/build.gradle rename to releases/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/build.gradle diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/infrastructure/version/src/test/java/tech/pegasys/teku/infrastructure/version/VersionProviderTest.java b/releases/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/infrastructure/version/src/test/java/tech/pegasys/teku/infrastructure/version/VersionProviderTest.java similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/infrastructure/version/src/test/java/tech/pegasys/teku/infrastructure/version/VersionProviderTest.java rename to releases/noble/amd64/eth-node-teku/25.9.1-1/src/.pc/001-version-info.patch/infrastructure/version/src/test/java/tech/pegasys/teku/infrastructure/version/VersionProviderTest.java diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/copyright b/releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/copyright similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/copyright rename to releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/copyright diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/eth-node-teku.lintian-overrides b/releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/eth-node-teku.lintian-overrides similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/eth-node-teku.lintian-overrides rename to releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/eth-node-teku.lintian-overrides diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/001-version-info.patch b/releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/001-version-info.patch similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/001-version-info.patch rename to releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/001-version-info.patch diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/series b/releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/series similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/series rename to releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/patches/series diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/rules b/releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/rules similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/rules rename to releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/rules diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/source/lintian-overrides b/releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/source/lintian-overrides similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/source/lintian-overrides rename to releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/source/lintian-overrides diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/control b/releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/control similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/control rename to releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/control diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests b/releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests rename to releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests-with-oracle-jre b/releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests-with-oracle-jre similarity index 100% rename from upcoming/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests-with-oracle-jre rename to releases/noble/amd64/eth-node-teku/25.9.1-1/src/debian/tests/tests-with-oracle-jre diff --git a/releases/noble/amd64/eth-node-teku/25.9.1-1/strace_output.log b/releases/noble/amd64/eth-node-teku/25.9.1-1/strace_output.log new file mode 100644 index 000000000..f6c03020a --- /dev/null +++ b/releases/noble/amd64/eth-node-teku/25.9.1-1/strace_output.log @@ -0,0 +1,5256 @@ +61496 execve("/usr/bin/sbuild-createchroot", ["sbuild-createchroot", "--chroot-mode=unshare", "--make-sbuild-tarball", "/home/debian/.cache/sbuild/noble"..., "noble", "/tmp/temp_1902217611", "http://archive.ubuntu.com/ubuntu"], 0x7ffeb9476a98 /* 28 vars */) = 0 +61496 brk(NULL) = 0x55855b452000 +61496 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fac0ab25000 +61496 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=40283, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 40283, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fac0ab1b000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libm.so.6", O_RDONLY|O_CLOEXEC) = 3 +61496 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=911904, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 913680, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fac0aa3b000 +61496 mmap(0x7fac0aa4b000, 475136, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x7fac0aa4b000 +61496 mmap(0x7fac0aabf000, 368640, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x84000) = 0x7fac0aabf000 +61496 mmap(0x7fac0ab19000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xdd000) = 0x7fac0ab19000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 +61496 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20t\2\0\0\0\0\0"..., 832) = 832 +61496 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61496 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1926232, ...}, AT_EMPTY_PATH) = 0 +61496 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61496 mmap(NULL, 1974096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fac0a859000 +61496 mmap(0x7fac0a87f000, 1400832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7fac0a87f000 +61496 mmap(0x7fac0a9d5000, 339968, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17c000) = 0x7fac0a9d5000 +61496 mmap(0x7fac0aa28000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cf000) = 0x7fac0aa28000 +61496 mmap(0x7fac0aa2e000, 53072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fac0aa2e000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = 3 +61496 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\0"..., 832) = 832 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=206776, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 242344, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fac0a81d000 +61496 mmap(0x7fac0a81f000, 90112, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fac0a81f000 +61496 mmap(0x7fac0a835000, 106496, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x18000) = 0x7fac0a835000 +61496 mmap(0x7fac0a84f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x31000) = 0x7fac0a84f000 +61496 mmap(0x7fac0a851000, 29352, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fac0a851000 +61496 close(3) = 0 +61496 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fac0a81b000 +61496 arch_prctl(ARCH_SET_FS, 0x7fac0a81bb80) = 0 +61496 set_tid_address(0x7fac0a81be50) = 61496 +61496 set_robust_list(0x7fac0a81be60, 24) = 0 +61496 rseq(0x7fac0a81c4a0, 0x20, 0, 0x53053053) = 0 +61496 mprotect(0x7fac0aa28000, 16384, PROT_READ) = 0 +61496 mprotect(0x7fac0a84f000, 4096, PROT_READ) = 0 +61496 mprotect(0x7fac0ab19000, 4096, PROT_READ) = 0 +61496 mprotect(0x5585430ab000, 65536, PROT_READ) = 0 +61496 mprotect(0x7fac0ab58000, 8192, PROT_READ) = 0 +61496 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 +61496 munmap(0x7fac0ab1b000, 40283) = 0 +61496 rt_sigaction(SIGFPE, {sa_handler=SIG_IGN, sa_mask=[FPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 getrandom("\x07\x7f\x4f\x53\xe7\xde\x81\x16", 8, GRND_NONBLOCK) = 8 +61496 brk(NULL) = 0x55855b452000 +61496 brk(0x55855b473000) = 0x55855b473000 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 openat(AT_FDCWD, "/dev/urandom", O_RDONLY|O_CLOEXEC) = 3 +61496 fcntl(3, F_GETFD) = 0x1 (flags FD_CLOEXEC) +61496 read(3, "\242\376\233\330", 4) = 4 +61496 close(3) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 openat(AT_FDCWD, "/dev/urandom", O_RDONLY|O_CLOEXEC) = 3 +61496 read(3, "\34\325#\1", 4) = 4 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=2996, ...}, AT_EMPTY_PATH) = 0 +61496 read(3, "# Locale name alias data base.\n#"..., 4096) = 2996 +61496 read(3, "", 4096) = 0 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=50, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 50, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fac0ab24000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", O_RDONLY) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=27028, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 27028, PROT_READ, MAP_SHARED, 3, 0) = 0x7fac0ab1d000 +61496 close(3) = 0 +61496 futex(0x7fac0aa2da4c, FUTEX_WAKE_PRIVATE, 2147483647) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=353616, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 353616, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fac0a7c4000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1406, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 1406, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fac0ab1c000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TIME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TIME", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=3360, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 3360, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fac0ab1b000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=4096, ...}, AT_EMPTY_PATH) = 0 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=48, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 48, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fac0a7c3000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=270, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 270, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fac0a7c2000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=127, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 127, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fac0a7c1000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=258, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 258, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fac0a7c0000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=23, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 23, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fac0a7bf000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_PAPER", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_PAPER", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=34, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 34, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fac0a7be000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=47, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 47, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fac0a7bd000 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NAME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NAME", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=62, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 62, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fac0a7bc000 +61496 close(3) = 0 +61496 brk(0x55855b494000) = 0x55855b494000 +61496 readlink("/proc/self/exe", "/usr/bin/perl", 4095) = 13 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/5.36.0/x86_64-linux-gnu-thread-multi", 0x7ffdd5529780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/5.36.0", 0x7ffdd5529780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/x86_64-linux-gnu-thread-multi", 0x7ffdd5529780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/site_perl/5.36.0/x86_64-linux-gnu-thread-multi", 0x7ffdd5529780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/site_perl/5.36.0", 0x7ffdd5529780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/site_perl/x86_64-linux-gnu-thread-multi", 0x7ffdd5529780, 0) = -1 ENOENT (No such file or directory) +61496 fcntl(0, F_SETFD, 0) = 0 +61496 ioctl(0, TCGETS, {c_iflag=ICRNL|IXON|IUTF8, c_oflag=NL0|CR0|TAB0|BS0|VT0|FF0|OPOST|ONLCR, c_cflag=B38400|CS8|CREAD, c_lflag=ISIG|ICANON|ECHO|ECHOE|ECHOK|IEXTEN|ECHOCTL|ECHOKE, ...}) = 0 +61496 lseek(0, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) +61496 fcntl(1, F_SETFD, 0) = 0 +61496 ioctl(1, TCGETS, {c_iflag=ICRNL|IXON|IUTF8, c_oflag=NL0|CR0|TAB0|BS0|VT0|FF0|OPOST|ONLCR, c_cflag=B38400|CS8|CREAD, c_lflag=ISIG|ICANON|ECHO|ECHOE|ECHOK|IEXTEN|ECHOCTL|ECHOKE, ...}) = 0 +61496 lseek(1, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) +61496 fcntl(2, F_SETFD, 0) = 0 +61496 ioctl(2, TCGETS, {c_iflag=ICRNL|IXON|IUTF8, c_oflag=NL0|CR0|TAB0|BS0|VT0|FF0|OPOST|ONLCR, c_cflag=B38400|CS8|CREAD, c_lflag=ISIG|ICANON|ECHO|ECHOE|ECHOK|IEXTEN|ECHOCTL|ECHOKE, ...}) = 0 +61496 lseek(2, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) +61496 openat(AT_FDCWD, "/usr/bin/sbuild-createchroot", O_RDONLY|O_CLOEXEC) = 3 +61496 fcntl(3, F_GETFD) = 0x1 (flags FD_CLOEXEC) +61496 ioctl(3, TCGETS, 0x7ffdd5529670) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(3, 0, SEEK_CUR) = 0 +61496 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=24467, ...}, AT_EMPTY_PATH) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 rt_sigaction(SIGCHLD, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 read(3, "#!/usr/bin/perl\n#\n# Run debootst"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/strict.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/strict.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/strict.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/strict.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/strict.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/strict.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/strict.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/strict.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/strict.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/strict.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/strict.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/strict.pm", {st_mode=S_IFREG|0644, st_size=1606, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/strict.pm", O_RDONLY|O_CLOEXEC) = 4 +61496 ioctl(4, TCGETS, 0x7ffdd5528ef0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(4, 0, SEEK_CUR) = 0 +61496 brk(0x55855b4b6000) = 0x55855b4b6000 +61496 read(4, "package strict;\n\n$strict::VERSIO"..., 8192) = 1606 +61496 lseek(4, 1605, SEEK_SET) = 1605 +61496 lseek(4, 0, SEEK_CUR) = 1605 +61496 close(4) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/warnings.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/warnings.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/warnings.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/warnings.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/warnings.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/warnings.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/warnings.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/warnings.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/warnings.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/warnings.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/warnings.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/warnings.pm", {st_mode=S_IFREG|0644, st_size=29669, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/warnings.pm", O_RDONLY|O_CLOEXEC) = 4 +61496 ioctl(4, TCGETS, 0x7ffdd5528ef0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(4, 0, SEEK_CUR) = 0 +61496 read(4, "# -*- buffer-read-only: t -*-\n# "..., 8192) = 8192 +61496 read(4, "..11,57]\n 'layer'\t\t\t\t=> \"\\x00"..., 8192) = 8192 +61496 brk(0x55855b4d7000) = 0x55855b4d7000 +61496 read(4, "00\\x00\\x00\\x20\\x00\\x00\\x00\\x00\\x"..., 8192) = 8192 +61496 read(4, "(empty import list or after a lo"..., 8192) = 5093 +61496 brk(0x55855b4f8000) = 0x55855b4f8000 +61496 lseek(4, 29654, SEEK_SET) = 29654 +61496 lseek(4, 0, SEEK_CUR) = 29654 +61496 close(4) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/English.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/English.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/English.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/English.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/English.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/English.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/English.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/English.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/English.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/English.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/English.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/English.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/English.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/English.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/English.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/English.pm", {st_mode=S_IFREG|0644, st_size=4761, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/English.pm", O_RDONLY|O_CLOEXEC) = 4 +61496 ioctl(4, TCGETS, 0x7ffdd5528ef0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(4, 0, SEEK_CUR) = 0 +61496 read(4, "package English;\n\nour $VERSION ="..., 8192) = 4761 +61496 brk(0x55855b519000) = 0x55855b519000 +61496 newfstatat(AT_FDCWD, "/etc/perl/Errno.pmc", 0x7ffdd5528730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Errno.pm", 0x7ffdd5528730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Errno.pmc", 0x7ffdd5528730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Errno.pm", 0x7ffdd5528730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Errno.pmc", 0x7ffdd5528730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Errno.pm", 0x7ffdd5528730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Errno.pmc", 0x7ffdd5528730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Errno.pm", 0x7ffdd5528730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Errno.pmc", 0x7ffdd5528730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Errno.pm", 0x7ffdd5528730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Errno.pmc", 0x7ffdd5528730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Errno.pm", {st_mode=S_IFREG|0644, st_size=4913, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Errno.pm", O_RDONLY|O_CLOEXEC) = 5 +61496 ioctl(5, TCGETS, 0x7ffdd55284f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(5, 0, SEEK_CUR) = 0 +61496 read(5, "# -*- buffer-read-only: t -*-\n#\n"..., 8192) = 4913 +61496 newfstatat(AT_FDCWD, "/etc/perl/Exporter.pmc", 0x7ffdd5528030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Exporter.pm", 0x7ffdd5528030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Exporter.pmc", 0x7ffdd5528030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Exporter.pm", 0x7ffdd5528030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Exporter.pmc", 0x7ffdd5528030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Exporter.pm", 0x7ffdd5528030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Exporter.pmc", 0x7ffdd5528030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Exporter.pm", 0x7ffdd5528030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Exporter.pmc", 0x7ffdd5528030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Exporter.pm", 0x7ffdd5528030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Exporter.pmc", 0x7ffdd5528030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Exporter.pm", {st_mode=S_IFREG|0644, st_size=2336, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Exporter.pm", O_RDONLY|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd5527df0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 read(6, "package Exporter;\n\nuse strict;\nn"..., 8192) = 2336 +61496 brk(0x55855b53a000) = 0x55855b53a000 +61496 lseek(6, 2335, SEEK_SET) = 2335 +61496 lseek(6, 0, SEEK_CUR) = 2335 +61496 close(6) = 0 +61496 lseek(5, 4898, SEEK_SET) = 4898 +61496 lseek(5, 0, SEEK_CUR) = 4898 +61496 close(5) = 0 +61496 read(4, "", 8192) = 0 +61496 close(4) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/Exporter/Heavy.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Exporter/Heavy.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Exporter/Heavy.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Exporter/Heavy.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Exporter/Heavy.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Exporter/Heavy.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Exporter/Heavy.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Exporter/Heavy.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Exporter/Heavy.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Exporter/Heavy.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Exporter/Heavy.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Exporter/Heavy.pm", {st_mode=S_IFREG|0644, st_size=6385, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Exporter/Heavy.pm", O_RDONLY|O_CLOEXEC) = 4 +61496 ioctl(4, TCGETS, 0x7ffdd5528ef0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(4, 0, SEEK_CUR) = 0 +61496 read(4, "package Exporter::Heavy;\n\nuse st"..., 8192) = 6385 +61496 brk(0x55855b55d000) = 0x55855b55d000 +61496 brk(0x55855b55a000) = 0x55855b55a000 +61496 read(4, "", 8192) = 0 +61496 close(4) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/AptResolver.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/AptResolver.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/AptResolver.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/AptResolver.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/AptResolver.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/AptResolver.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/AptResolver.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/AptResolver.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/AptResolver.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/AptResolver.pm", {st_mode=S_IFREG|0644, st_size=6756, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/AptResolver.pm", O_RDONLY|O_CLOEXEC) = 4 +61496 ioctl(4, TCGETS, 0x7ffdd5528ef0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(4, 0, SEEK_CUR) = 0 +61496 read(4, "# ResolverBase.pm: build library"..., 8192) = 6756 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild.pm", {st_mode=S_IFREG|0644, st_size=11202, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild.pm", O_RDONLY|O_CLOEXEC) = 5 +61496 ioctl(5, TCGETS, 0x7ffdd55287f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(5, 0, SEEK_CUR) = 0 +61496 read(5, "#\n# Sbuild.pm: library for sbuil"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/Sysconfig.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/Sysconfig.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/Sysconfig.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/Sysconfig.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/Sysconfig.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/Sysconfig.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/Sysconfig.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/Sysconfig.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/Sysconfig.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/Sysconfig.pm", {st_mode=S_IFREG|0644, st_size=2754, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/Sysconfig.pm", O_RDONLY|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 read(6, "#\n# Sysconfig.pm: system configu"..., 8192) = 2754 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855b57b000) = 0x55855b57b000 +61496 read(6, "", 8192) = 0 +61496 close(6) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/POSIX.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/POSIX.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/POSIX.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/POSIX.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/POSIX.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/POSIX.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/POSIX.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/POSIX.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/POSIX.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/POSIX.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/POSIX.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/POSIX.pm", {st_mode=S_IFREG|0644, st_size=20383, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/POSIX.pm", O_RDONLY|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 read(6, "package POSIX;\nuse strict;\nuse w"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Fcntl.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Fcntl.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Fcntl.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Fcntl.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Fcntl.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Fcntl.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Fcntl.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Fcntl.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Fcntl.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Fcntl.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Fcntl.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Fcntl.pm", {st_mode=S_IFREG|0644, st_size=2100, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Fcntl.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "package Fcntl;\n\nuse strict;\n\nuse"..., 8192) = 2100 +61496 read(7, "", 8192) = 0 +61496 close(7) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/XSLoader.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/XSLoader.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/XSLoader.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/XSLoader.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/XSLoader.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/XSLoader.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/XSLoader.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/XSLoader.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/XSLoader.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/XSLoader.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/XSLoader.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/XSLoader.pm", {st_mode=S_IFREG|0644, st_size=4115, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/XSLoader.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "# Generated from XSLoader_pm.PL "..., 8192) = 4115 +61496 lseek(7, 4114, SEEK_SET) = 4114 +61496 lseek(7, 0, SEEK_CUR) = 4114 +61496 close(7) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/Fcntl/Fcntl.so", {st_mode=S_IFREG|0644, st_size=22736, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/Fcntl/Fcntl.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/Fcntl/Fcntl.so", O_RDONLY|O_CLOEXEC) = 7 +61496 read(7, "\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\0"..., 832) = 832 +61496 newfstatat(7, "", {st_mode=S_IFREG|0644, st_size=22736, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 20712, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7fac0a7b6000 +61496 mmap(0x7fac0a7b8000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x2000) = 0x7fac0a7b8000 +61496 mmap(0x7fac0a7b9000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x3000) = 0x7fac0a7b9000 +61496 mmap(0x7fac0a7ba000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x4000) = 0x7fac0a7ba000 +61496 close(7) = 0 +61496 mprotect(0x7fac0a7ba000, 4096, PROT_READ) = 0 +61496 brk(0x55855b59c000) = 0x55855b59c000 +61496 read(6, "{\n usage \"printf(pattern, arg"..., 8192) = 8192 +61496 brk(0x55855b5be000) = 0x55855b5be000 +61496 read(6, "IO_PGRP PRIO_USER)],\n\n sys_so"..., 8192) = 3999 +61496 brk(0x55855b5df000) = 0x55855b5df000 +61496 read(6, "", 8192) = 0 +61496 close(6) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/POSIX/POSIX.so", {st_mode=S_IFREG|0644, st_size=110256, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/POSIX/POSIX.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/POSIX/POSIX.so", O_RDONLY|O_CLOEXEC) = 6 +61496 read(6, "\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\0"..., 832) = 832 +61496 newfstatat(6, "", {st_mode=S_IFREG|0644, st_size=110256, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 108080, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7fac0a79b000 +61496 mmap(0x7fac0a7a1000, 53248, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x6000) = 0x7fac0a7a1000 +61496 mmap(0x7fac0a7ae000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x13000) = 0x7fac0a7ae000 +61496 mmap(0x7fac0a7b2000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x17000) = 0x7fac0a7b2000 +61496 close(6) = 0 +61496 mprotect(0x7fac0a7b2000, 12288, PROT_READ) = 0 +61496 brk(0x55855b600000) = 0x55855b600000 +61496 brk(0x55855b621000) = 0x55855b621000 +61496 newfstatat(AT_FDCWD, "/etc/perl/Tie/Hash.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Tie/Hash.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Tie/Hash.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Tie/Hash.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Tie/Hash.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Tie/Hash.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Tie/Hash.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Tie/Hash.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Tie/Hash.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Tie/Hash.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Tie/Hash.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Tie/Hash.pm", {st_mode=S_IFREG|0644, st_size=2044, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Tie/Hash.pm", O_RDONLY|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 read(6, "package Tie::Hash;\n\nour $VERSION"..., 8192) = 2044 +61496 newfstatat(AT_FDCWD, "/etc/perl/Carp.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Carp.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Carp.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Carp.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Carp.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Carp.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Carp.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Carp.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Carp.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Carp.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Carp.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Carp.pm", {st_mode=S_IFREG|0644, st_size=25398, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Carp.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "package Carp;\n\n{ use 5.006; }\nus"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/overloading.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/overloading.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/overloading.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/overloading.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/overloading.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/overloading.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/overloading.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/overloading.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/overloading.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/overloading.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/overloading.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/overloading.pm", {st_mode=S_IFREG|0644, st_size=964, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/overloading.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd5527340) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 brk(0x55855b642000) = 0x55855b642000 +61496 read(8, "package overloading;\nuse warning"..., 8192) = 964 +61496 lseek(8, 963, SEEK_SET) = 963 +61496 lseek(8, 0, SEEK_CUR) = 963 +61496 close(8) = 0 +61496 read(7, "; # allow caller to format refer"..., 8192) = 8192 +61496 brk(0x55855b663000) = 0x55855b663000 +61496 read(7, " to all\n # Perl versions "..., 8192) = 8192 +61496 brk(0x55855b684000) = 0x55855b684000 +61496 read(7, "polluting the caller's namespace"..., 8192) = 822 +61496 lseek(7, 25397, SEEK_SET) = 25397 +61496 lseek(7, 0, SEEK_CUR) = 25397 +61496 close(7) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/warnings/register.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/warnings/register.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/warnings/register.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/warnings/register.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/warnings/register.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/warnings/register.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/warnings/register.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/warnings/register.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/warnings/register.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/warnings/register.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/warnings/register.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/warnings/register.pm", {st_mode=S_IFREG|0644, st_size=488, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/warnings/register.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "package warnings::register;\n\nour"..., 8192) = 488 +61496 lseek(7, 487, SEEK_SET) = 487 +61496 lseek(7, 0, SEEK_CUR) = 487 +61496 close(7) = 0 +61496 read(6, "", 8192) = 0 +61496 close(6) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855b6a5000) = 0x55855b6a5000 +61496 brk(0x55855b6c6000) = 0x55855b6c6000 +61496 newfstatat(AT_FDCWD, "/etc/perl/FileHandle.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/FileHandle.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/FileHandle.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/FileHandle.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/FileHandle.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/FileHandle.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/FileHandle.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/FileHandle.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/FileHandle.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/FileHandle.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/FileHandle.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/FileHandle.pm", {st_mode=S_IFREG|0644, st_size=2111, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/FileHandle.pm", O_RDONLY|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 read(6, "package FileHandle;\n\nuse 5.006;\n"..., 8192) = 2111 +61496 lseek(6, 2110, SEEK_SET) = 2110 +61496 lseek(6, 0, SEEK_CUR) = 2110 +61496 close(6) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/File.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/File.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/File.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/File.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/File.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/File.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/File.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/File.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/File.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/File.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/File.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/File.pm", {st_mode=S_IFREG|0644, st_size=1636, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/File.pm", O_RDONLY|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 read(6, "#\n\npackage IO::File;\n\nuse 5.008_"..., 8192) = 1636 +61496 newfstatat(AT_FDCWD, "/etc/perl/Symbol.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Symbol.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Symbol.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Symbol.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Symbol.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Symbol.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Symbol.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Symbol.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Symbol.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Symbol.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Symbol.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Symbol.pm", {st_mode=S_IFREG|0644, st_size=2205, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Symbol.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 brk(0x55855b6e7000) = 0x55855b6e7000 +61496 read(7, "package Symbol;\n\nuse strict;\nuse"..., 8192) = 2205 +61496 read(7, "", 8192) = 0 +61496 close(7) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/SelectSaver.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/SelectSaver.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/SelectSaver.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/SelectSaver.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/SelectSaver.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/SelectSaver.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/SelectSaver.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/SelectSaver.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/SelectSaver.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/SelectSaver.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/SelectSaver.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/SelectSaver.pm", {st_mode=S_IFREG|0644, st_size=344, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/SelectSaver.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "package SelectSaver;\n\nour $VERSI"..., 8192) = 344 +61496 read(7, "", 8192) = 0 +61496 close(7) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Seekable.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Seekable.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Seekable.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Seekable.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Seekable.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Seekable.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Seekable.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Seekable.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Seekable.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Seekable.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Seekable.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Seekable.pm", {st_mode=S_IFREG|0644, st_size=642, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Seekable.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "#\n\npackage IO::Seekable;\n\nuse 5."..., 8192) = 642 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Handle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Handle.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Handle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Handle.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Handle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Handle.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Handle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Handle.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Handle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Handle.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Handle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Handle.pm", {st_mode=S_IFREG|0644, st_size=7700, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Handle.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "package IO::Handle;\n\nuse 5.008_0"..., 8192) = 7700 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO.pm", {st_mode=S_IFREG|0644, st_size=469, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd5526bf0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "#\n\npackage IO;\n\nuse XSLoader ();"..., 8192) = 469 +61496 brk(0x55855b708000) = 0x55855b708000 +61496 lseek(9, 468, SEEK_SET) = 468 +61496 lseek(9, 0, SEEK_CUR) = 468 +61496 close(9) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/IO/IO.so", {st_mode=S_IFREG|0644, st_size=22976, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/IO/IO.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/IO/IO.so", O_RDONLY|O_CLOEXEC) = 9 +61496 read(9, "\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\0"..., 832) = 832 +61496 newfstatat(9, "", {st_mode=S_IFREG|0644, st_size=22976, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 24968, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x7fac0a794000 +61496 mmap(0x7fac0a796000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x2000) = 0x7fac0a796000 +61496 mmap(0x7fac0a798000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x4000) = 0x7fac0a798000 +61496 mmap(0x7fac0a799000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x4000) = 0x7fac0a799000 +61496 close(9) = 0 +61496 mprotect(0x7fac0a799000, 4096, PROT_READ) = 0 +61496 brk(0x55855b729000) = 0x55855b729000 +61496 read(8, "", 8192) = 0 +61496 close(8) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 read(7, "", 8192) = 0 +61496 close(7) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 read(6, "", 8192) = 0 +61496 close(6) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/Filesys/Df.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Filesys/Df.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Filesys/Df.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Filesys/Df.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Filesys/Df.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Filesys/Df.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Filesys/Df.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Filesys/Df.pm", {st_mode=S_IFREG|0644, st_size=11324, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Filesys/Df.pm", O_RDONLY|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 read(6, "package Filesys::Df;\r\n\r\nuse stri"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/vars.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/vars.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/vars.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/vars.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/vars.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/vars.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/vars.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/vars.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/vars.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/vars.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/vars.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/vars.pm", {st_mode=S_IFREG|0644, st_size=1148, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/vars.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 brk(0x55855b74b000) = 0x55855b74b000 +61496 read(7, "package vars;\n\nuse 5.006;\n\nour $"..., 8192) = 1148 +61496 lseek(7, 1147, SEEK_SET) = 1147 +61496 lseek(7, 0, SEEK_CUR) = 1147 +61496 close(7) = 0 +61496 lseek(6, 6720, SEEK_SET) = 6720 +61496 lseek(6, 0, SEEK_CUR) = 6720 +61496 close(6) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/DynaLoader.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/DynaLoader.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/DynaLoader.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/DynaLoader.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/DynaLoader.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/DynaLoader.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/DynaLoader.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/DynaLoader.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/DynaLoader.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/DynaLoader.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/DynaLoader.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/DynaLoader.pm", {st_mode=S_IFREG|0644, st_size=11266, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/DynaLoader.pm", O_RDONLY|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 read(6, "# Generated from DynaLoader_pm.P"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Config.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Config.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Config.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Config.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Config.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Config.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Config.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Config.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Config.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Config.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Config.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Config.pm", {st_mode=S_IFREG|0644, st_size=3216, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Config.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "# This file was created by confi"..., 8192) = 3216 +61496 brk(0x55855b76c000) = 0x55855b76c000 +61496 read(7, "", 8192) = 0 +61496 close(7) = 0 +61496 brk(0x55855b78f000) = 0x55855b78f000 +61496 brk(0x55855b789000) = 0x55855b789000 +61496 read(6, "t process files as they appear\n "..., 8192) = 3074 +61496 lseek(6, 11265, SEEK_SET) = 11265 +61496 lseek(6, 0, SEEK_CUR) = 11265 +61496 close(6) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/auto/Filesys/Df", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/auto/Filesys/Df", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/auto/Filesys/Df", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/auto/Filesys/Df", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/auto/Filesys/Df/Df.so", {st_mode=S_IFREG|0644, st_size=14176, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/auto/Filesys/Df/Df.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/auto/Filesys/Df/Df.so", O_RDONLY|O_CLOEXEC) = 6 +61496 read(6, "\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\0"..., 832) = 832 +61496 newfstatat(6, "", {st_mode=S_IFREG|0644, st_size=14176, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 16400, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7fac0a78f000 +61496 mmap(0x7fac0a790000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x1000) = 0x7fac0a790000 +61496 mmap(0x7fac0a791000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x2000) = 0x7fac0a791000 +61496 mmap(0x7fac0a792000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x2000) = 0x7fac0a792000 +61496 close(6) = 0 +61496 mprotect(0x7fac0a792000, 4096, PROT_READ) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Time/Local.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Time/Local.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Time/Local.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Time/Local.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Time/Local.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Time/Local.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Time/Local.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Time/Local.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Time/Local.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Time/Local.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Time/Local.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Time/Local.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Time/Local.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Time/Local.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Time/Local.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Time/Local.pm", {st_mode=S_IFREG|0644, st_size=16312, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/Time/Local.pm", O_RDONLY|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 read(6, "package Time::Local;\n\nuse strict"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/parent.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/parent.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/parent.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/parent.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/parent.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/parent.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/parent.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/parent.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/parent.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/parent.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/parent.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/parent.pm", {st_mode=S_IFREG|0644, st_size=460, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/parent.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "package parent;\nuse strict;\n\nour"..., 8192) = 460 +61496 lseek(7, 459, SEEK_SET) = 459 +61496 lseek(7, 0, SEEK_CUR) = 459 +61496 close(7) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/constant.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/constant.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/constant.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/constant.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/constant.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/constant.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/constant.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/constant.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/constant.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/constant.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/constant.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/constant.pm", {st_mode=S_IFREG|0644, st_size=5737, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/constant.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "package constant;\nuse 5.008;\nuse"..., 8192) = 5737 +61496 brk(0x55855b7ac000) = 0x55855b7ac000 +61496 brk(0x55855b7a9000) = 0x55855b7a9000 +61496 lseek(7, 5736, SEEK_SET) = 5736 +61496 lseek(7, 0, SEEK_CUR) = 5736 +61496 close(7) = 0 +61496 brk(0x55855b7ca000) = 0x55855b7ca000 +61496 lseek(6, 6125, SEEK_SET) = 6125 +61496 lseek(6, 0, SEEK_CUR) = 6125 +61496 close(6) = 0 +61496 openat(AT_FDCWD, "/etc/localtime", O_RDONLY|O_CLOEXEC) = 6 +61496 newfstatat(6, "", {st_mode=S_IFREG|0644, st_size=114, ...}, AT_EMPTY_PATH) = 0 +61496 newfstatat(6, "", {st_mode=S_IFREG|0644, st_size=114, ...}, AT_EMPTY_PATH) = 0 +61496 read(6, "TZif2\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"..., 4096) = 114 +61496 lseek(6, -60, SEEK_CUR) = 54 +61496 read(6, "TZif2\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"..., 4096) = 60 +61496 close(6) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Zlib.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Zlib.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Zlib.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Zlib.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Zlib.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Zlib.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Zlib.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Zlib.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Zlib.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Zlib.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Zlib.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Zlib.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Zlib.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Zlib.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Zlib.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Zlib.pm", {st_mode=S_IFREG|0644, st_size=16101, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/IO/Zlib.pm", O_RDONLY|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 read(6, "# IO::Zlib.pm\n#\n# Copyright (c) "..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Tie/Handle.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Tie/Handle.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Tie/Handle.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Tie/Handle.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Tie/Handle.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Tie/Handle.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Tie/Handle.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Tie/Handle.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Tie/Handle.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Tie/Handle.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Tie/Handle.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Tie/Handle.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Tie/Handle.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Tie/Handle.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Tie/Handle.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Tie/Handle.pm", {st_mode=S_IFREG|0644, st_size=4205, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/Tie/Handle.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "package Tie::Handle;\n\nuse 5.006_"..., 8192) = 4205 +61496 newfstatat(AT_FDCWD, "/etc/perl/Tie/StdHandle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Tie/StdHandle.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Tie/StdHandle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Tie/StdHandle.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Tie/StdHandle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Tie/StdHandle.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Tie/StdHandle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Tie/StdHandle.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Tie/StdHandle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Tie/StdHandle.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Tie/StdHandle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Tie/StdHandle.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Tie/StdHandle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Tie/StdHandle.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Tie/StdHandle.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Tie/StdHandle.pm", {st_mode=S_IFREG|0644, st_size=1389, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/Tie/StdHandle.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "package Tie::StdHandle; \n\nuse st"..., 8192) = 1389 +61496 read(8, "", 8192) = 0 +61496 close(8) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 read(7, "", 8192) = 0 +61496 close(7) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Compress/Zlib.pmc", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Compress/Zlib.pm", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Compress/Zlib.pmc", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Compress/Zlib.pm", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Compress/Zlib.pmc", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Compress/Zlib.pm", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Compress/Zlib.pmc", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Compress/Zlib.pm", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Compress/Zlib.pmc", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Compress/Zlib.pm", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Compress/Zlib.pmc", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Compress/Zlib.pm", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Compress/Zlib.pmc", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Compress/Zlib.pm", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Compress/Zlib.pmc", 0x7ffdd5527c80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Compress/Zlib.pm", {st_mode=S_IFREG|0644, st_size=43980, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/Compress/Zlib.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd5527a40) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "\npackage Compress::Zlib;\n\nrequir"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Scalar/Util.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Scalar/Util.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Scalar/Util.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Scalar/Util.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Scalar/Util.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Scalar/Util.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Scalar/Util.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Scalar/Util.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Scalar/Util.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Scalar/Util.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Scalar/Util.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Scalar/Util.pm", {st_mode=S_IFREG|0644, st_size=1096, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Scalar/Util.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd5527340) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 brk(0x55855b7eb000) = 0x55855b7eb000 +61496 read(8, "# Copyright (c) 1997-2007 Graham"..., 8192) = 1096 +61496 lseek(8, 1095, SEEK_SET) = 1095 +61496 lseek(8, 0, SEEK_CUR) = 1095 +61496 close(8) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/List/Util.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/List/Util.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/List/Util.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/List/Util.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/List/Util.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/List/Util.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/List/Util.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/List/Util.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/List/Util.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/List/Util.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/List/Util.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/List/Util.pm", {st_mode=S_IFREG|0644, st_size=1272, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/List/Util.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd5527340) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "# Copyright (c) 1997-2009 Graham"..., 8192) = 1272 +61496 read(8, "", 8192) = 0 +61496 close(8) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/List/Util/Util.so", {st_mode=S_IFREG|0644, st_size=60208, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/List/Util/Util.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/List/Util/Util.so", O_RDONLY|O_CLOEXEC) = 8 +61496 read(8, "\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\0"..., 832) = 832 +61496 newfstatat(8, "", {st_mode=S_IFREG|0644, st_size=60208, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 62304, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fac0a77f000 +61496 mmap(0x7fac0a781000, 40960, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x2000) = 0x7fac0a781000 +61496 mmap(0x7fac0a78b000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0xc000) = 0x7fac0a78b000 +61496 mmap(0x7fac0a78d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0xd000) = 0x7fac0a78d000 +61496 close(8) = 0 +61496 mprotect(0x7fac0a78d000, 4096, PROT_READ) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/Base/Common.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/Base/Common.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/Base/Common.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/Base/Common.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/Base/Common.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/Base/Common.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/Base/Common.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/Base/Common.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/Base/Common.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/Base/Common.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/Base/Common.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/Base/Common.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/Base/Common.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/Base/Common.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Base/Common.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Base/Common.pm", {st_mode=S_IFREG|0644, st_size=22774, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Base/Common.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd5527340) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "package IO::Compress::Base::Comm"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/bytes.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/bytes.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/bytes.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/bytes.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/bytes.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/bytes.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/bytes.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/bytes.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/bytes.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/bytes.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/bytes.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/bytes.pm", {st_mode=S_IFREG|0644, st_size=489, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/bytes.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd5526c40) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "package bytes;\n\nuse strict;\nuse "..., 8192) = 489 +61496 lseek(9, 488, SEEK_SET) = 488 +61496 lseek(9, 0, SEEK_CUR) = 488 +61496 close(9) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/File/GlobMapper.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/File/GlobMapper.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/GlobMapper.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/GlobMapper.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/GlobMapper.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/GlobMapper.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/GlobMapper.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/GlobMapper.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/GlobMapper.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/GlobMapper.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/GlobMapper.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/GlobMapper.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/File/GlobMapper.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/File/GlobMapper.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/File/GlobMapper.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/File/GlobMapper.pm", {st_mode=S_IFREG|0644, st_size=15683, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/File/GlobMapper.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd5526c40) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "package File::GlobMapper;\n\nuse s"..., 8192) = 8192 +61496 brk(0x55855b80c000) = 0x55855b80c000 +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Glob.pmc", 0x7ffdd55267d0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Glob.pm", 0x7ffdd55267d0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Glob.pmc", 0x7ffdd55267d0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Glob.pm", 0x7ffdd55267d0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Glob.pmc", 0x7ffdd55267d0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Glob.pm", 0x7ffdd55267d0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Glob.pmc", 0x7ffdd55267d0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Glob.pm", 0x7ffdd55267d0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Glob.pmc", 0x7ffdd55267d0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Glob.pm", 0x7ffdd55267d0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Glob.pmc", 0x7ffdd55267d0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Glob.pm", {st_mode=S_IFREG|0644, st_size=1540, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Glob.pm", O_RDONLY|O_CLOEXEC) = 10 +61496 ioctl(10, TCGETS, 0x7ffdd5526590) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(10, 0, SEEK_CUR) = 0 +61496 read(10, "package File::Glob;\n\nuse strict;"..., 8192) = 1540 +61496 lseek(10, 1539, SEEK_SET) = 1539 +61496 lseek(10, 0, SEEK_CUR) = 1539 +61496 close(10) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob/Glob.so", {st_mode=S_IFREG|0644, st_size=31416, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob/Glob.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob/Glob.so", O_RDONLY|O_CLOEXEC) = 10 +61496 read(10, "\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\0"..., 832) = 832 +61496 newfstatat(10, "", {st_mode=S_IFREG|0644, st_size=31416, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 33328, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 10, 0) = 0x7fac0a776000 +61496 mmap(0x7fac0a778000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 10, 0x2000) = 0x7fac0a778000 +61496 mmap(0x7fac0a77c000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 10, 0x6000) = 0x7fac0a77c000 +61496 mmap(0x7fac0a77d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 10, 0x6000) = 0x7fac0a77d000 +61496 close(10) = 0 +61496 mprotect(0x7fac0a77d000, 4096, PROT_READ) = 0 +61496 brk(0x55855b82d000) = 0x55855b82d000 +61496 lseek(9, 8032, SEEK_SET) = 8032 +61496 lseek(9, 0, SEEK_CUR) = 8032 +61496 close(9) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/utf8.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/utf8.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/utf8.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/utf8.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/utf8.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/utf8.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/utf8.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/utf8.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/utf8.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/utf8.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/utf8.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/utf8.pm", {st_mode=S_IFREG|0644, st_size=341, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/utf8.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd5526c40) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "package utf8;\n\nuse strict;\nuse w"..., 8192) = 341 +61496 lseek(9, 340, SEEK_SET) = 340 +61496 lseek(9, 0, SEEK_CUR) = 340 +61496 close(9) = 0 +61496 brk(0x55855b84e000) = 0x55855b84e000 +61496 read(8, " $self->{Error} } = shift ;\n "..., 8192) = 8192 +61496 brk(0x55855b86f000) = 0x55855b86f000 +61496 read(8, " if ref $$value ne 'SCALAR'"..., 8192) = 6390 +61496 brk(0x55855b890000) = 0x55855b890000 +61496 brk(0x55855b8b1000) = 0x55855b8b1000 +61496 read(8, "", 8192) = 0 +61496 close(8) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/Compress/Raw/Zlib.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Compress/Raw/Zlib.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Compress/Raw/Zlib.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Compress/Raw/Zlib.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Compress/Raw/Zlib.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Compress/Raw/Zlib.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Compress/Raw/Zlib.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Compress/Raw/Zlib.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Compress/Raw/Zlib.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Compress/Raw/Zlib.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Compress/Raw/Zlib.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Compress/Raw/Zlib.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Compress/Raw/Zlib.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Compress/Raw/Zlib.pm", {st_mode=S_IFREG|0644, st_size=47413, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Compress/Raw/Zlib.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd5527340) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "\npackage Compress::Raw::Zlib;\n\nr"..., 8192) = 8192 +61496 read(8, "eturn 1;\n }\n elsif ($type "..., 8192) = 8192 +61496 brk(0x55855b8d2000) = 0x55855b8d2000 +61496 brk(0x55855b8f3000) = 0x55855b8f3000 +61496 read(8, "') && $got->value('Bufsize') <= "..., 8192) = 8192 +61496 lseek(8, 16722, SEEK_SET) = 16722 +61496 lseek(8, 0, SEEK_CUR) = 16722 +61496 close(8) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Compress/Raw/Zlib/Zlib.so", {st_mode=S_IFREG|0644, st_size=72328, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Compress/Raw/Zlib/Zlib.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Compress/Raw/Zlib/Zlib.so", O_RDONLY|O_CLOEXEC) = 8 +61496 read(8, "\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\0"..., 832) = 832 +61496 newfstatat(8, "", {st_mode=S_IFREG|0644, st_size=72328, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 70224, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fac0a764000 +61496 mmap(0x7fac0a766000, 45056, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x2000) = 0x7fac0a766000 +61496 mmap(0x7fac0a771000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0xd000) = 0x7fac0a771000 +61496 mmap(0x7fac0a774000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x10000) = 0x7fac0a774000 +61496 close(8) = 0 +61496 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 8 +61496 newfstatat(8, "", {st_mode=S_IFREG|0644, st_size=40283, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 40283, PROT_READ, MAP_PRIVATE, 8, 0) = 0x7fac0a75a000 +61496 close(8) = 0 +61496 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libz.so.1", O_RDONLY|O_CLOEXEC) = 8 +61496 read(8, "\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\0"..., 832) = 832 +61496 newfstatat(8, "", {st_mode=S_IFREG|0644, st_size=121280, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 123280, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fac0a73b000 +61496 mmap(0x7fac0a73e000, 77824, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x3000) = 0x7fac0a73e000 +61496 mmap(0x7fac0a751000, 28672, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x16000) = 0x7fac0a751000 +61496 mmap(0x7fac0a758000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x1c000) = 0x7fac0a758000 +61496 close(8) = 0 +61496 mprotect(0x7fac0a758000, 4096, PROT_READ) = 0 +61496 mprotect(0x7fac0a774000, 4096, PROT_READ) = 0 +61496 munmap(0x7fac0a75a000, 40283) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/Gzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/Gzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/Gzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/Gzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/Gzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/Gzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/Gzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/Gzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/Gzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/Gzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/Gzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/Gzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/Gzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/Gzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Gzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Gzip.pm", {st_mode=S_IFREG|0644, st_size=35188, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Gzip.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd5527340) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "package IO::Compress::Gzip ;\n\nre"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/RawDeflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/RawDeflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/RawDeflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/RawDeflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/RawDeflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/RawDeflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/RawDeflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/RawDeflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/RawDeflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/RawDeflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/RawDeflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/RawDeflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/RawDeflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/RawDeflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/RawDeflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/RawDeflate.pm", {st_mode=S_IFREG|0644, st_size=26925, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/RawDeflate.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd5526c40) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "package IO::Compress::RawDeflate"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Base.pm", {st_mode=S_IFREG|0644, st_size=24024, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Base.pm", O_RDONLY|O_CLOEXEC) = 10 +61496 ioctl(10, TCGETS, 0x7ffdd5526540) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(10, 0, SEEK_CUR) = 0 +61496 read(10, "\npackage IO::Compress::Base ;\n\nr"..., 8192) = 8192 +61496 brk(0x55855b914000) = 0x55855b914000 +61496 brk(0x55855b935000) = 0x55855b935000 +61496 read(10, " @_ >= 1 ;\n\n my $input = shif"..., 8192) = 8192 +61496 brk(0x55855b956000) = 0x55855b956000 +61496 read(10, "($outBuffer, @_) ;\n return $s"..., 8192) = 7640 +61496 brk(0x55855b977000) = 0x55855b977000 +61496 lseek(10, 22457, SEEK_SET) = 22457 +61496 lseek(10, 0, SEEK_CUR) = 22457 +61496 close(10) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/Adapter/Deflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/Adapter/Deflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/Adapter/Deflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/Adapter/Deflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/Adapter/Deflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/Adapter/Deflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/Adapter/Deflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/Adapter/Deflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/Adapter/Deflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/Adapter/Deflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/Adapter/Deflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/Adapter/Deflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/Adapter/Deflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/Adapter/Deflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Adapter/Deflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Adapter/Deflate.pm", {st_mode=S_IFREG|0644, st_size=3041, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Adapter/Deflate.pm", O_RDONLY|O_CLOEXEC) = 10 +61496 ioctl(10, TCGETS, 0x7ffdd5526540) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(10, 0, SEEK_CUR) = 0 +61496 read(10, "package IO::Compress::Adapter::D"..., 8192) = 3041 +61496 brk(0x55855b998000) = 0x55855b998000 +61496 close(10) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 lseek(9, 5137, SEEK_SET) = 5137 +61496 lseek(9, 0, SEEK_CUR) = 5137 +61496 close(9) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/Gzip/Constants.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/Gzip/Constants.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/Gzip/Constants.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/Gzip/Constants.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/Gzip/Constants.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/Gzip/Constants.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/Gzip/Constants.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/Gzip/Constants.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/Gzip/Constants.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/Gzip/Constants.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/Gzip/Constants.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/Gzip/Constants.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/Gzip/Constants.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/Gzip/Constants.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Gzip/Constants.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Gzip/Constants.pm", {st_mode=S_IFREG|0644, st_size=3883, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Gzip/Constants.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd5526c40) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 brk(0x55855b9ba000) = 0x55855b9ba000 +61496 read(9, "package IO::Compress::Gzip::Cons"..., 8192) = 3883 +61496 read(9, "", 8192) = 0 +61496 close(9) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/Zlib/Extra.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Compress/Zlib/Extra.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/Zlib/Extra.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Compress/Zlib/Extra.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/Zlib/Extra.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Compress/Zlib/Extra.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/Zlib/Extra.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Compress/Zlib/Extra.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/Zlib/Extra.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Compress/Zlib/Extra.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/Zlib/Extra.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Compress/Zlib/Extra.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/Zlib/Extra.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Compress/Zlib/Extra.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Zlib/Extra.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Zlib/Extra.pm", {st_mode=S_IFREG|0644, st_size=5647, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/IO/Compress/Zlib/Extra.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd5526c40) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "package IO::Compress::Zlib::Extr"..., 8192) = 5647 +61496 close(9) = 0 +61496 brk(0x55855b9db000) = 0x55855b9db000 +61496 lseek(8, 7716, SEEK_SET) = 7716 +61496 lseek(8, 0, SEEK_CUR) = 7716 +61496 close(8) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Uncompress/Gunzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Uncompress/Gunzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Uncompress/Gunzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Uncompress/Gunzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Uncompress/Gunzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Uncompress/Gunzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Uncompress/Gunzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Uncompress/Gunzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Uncompress/Gunzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Uncompress/Gunzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Uncompress/Gunzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Uncompress/Gunzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Uncompress/Gunzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Uncompress/Gunzip.pm", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Uncompress/Gunzip.pmc", 0x7ffdd5527580, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Uncompress/Gunzip.pm", {st_mode=S_IFREG|0644, st_size=32176, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/IO/Uncompress/Gunzip.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd5527340) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "\npackage IO::Uncompress::Gunzip "..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Uncompress/RawInflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Uncompress/RawInflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Uncompress/RawInflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Uncompress/RawInflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Uncompress/RawInflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Uncompress/RawInflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Uncompress/RawInflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Uncompress/RawInflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Uncompress/RawInflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Uncompress/RawInflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Uncompress/RawInflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Uncompress/RawInflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Uncompress/RawInflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Uncompress/RawInflate.pm", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Uncompress/RawInflate.pmc", 0x7ffdd5526e80, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Uncompress/RawInflate.pm", {st_mode=S_IFREG|0644, st_size=31865, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/IO/Uncompress/RawInflate.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd5526c40) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "package IO::Uncompress::RawInfla"..., 8192) = 8192 +61496 brk(0x55855b9fc000) = 0x55855b9fc000 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Uncompress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Uncompress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Uncompress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Uncompress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Uncompress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Uncompress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Uncompress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Uncompress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Uncompress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Uncompress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Uncompress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Uncompress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Uncompress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Uncompress/Base.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Uncompress/Base.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Uncompress/Base.pm", {st_mode=S_IFREG|0644, st_size=38463, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/IO/Uncompress/Base.pm", O_RDONLY|O_CLOEXEC) = 10 +61496 ioctl(10, TCGETS, 0x7ffdd5526540) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(10, 0, SEEK_CUR) = 0 +61496 read(10, "\npackage IO::Uncompress::Base ;\n"..., 8192) = 8192 +61496 brk(0x55855ba1d000) = 0x55855ba1d000 +61496 read(10, " 'transparent' => [IO::Comp"..., 8192) = 8192 +61496 brk(0x55855ba3e000) = 0x55855ba3e000 +61496 read(10, " my $inFile = ($x->{inType} eq "..., 8192) = 8192 +61496 brk(0x55855ba5f000) = 0x55855ba5f000 +61496 brk(0x55855ba80000) = 0x55855ba80000 +61496 read(10, "am}) {\n *$self->{"..., 8192) = 8192 +61496 brk(0x55855baa3000) = 0x55855baa3000 +61496 read(10, "turn substr($$buf, $offset) ;\n "..., 8192) = 5695 +61496 brk(0x55855bac4000) = 0x55855bac4000 +61496 lseek(10, 36888, SEEK_SET) = 36888 +61496 lseek(10, 0, SEEK_CUR) = 36888 +61496 close(10) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Uncompress/Adapter/Inflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IO/Uncompress/Adapter/Inflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Uncompress/Adapter/Inflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IO/Uncompress/Adapter/Inflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Uncompress/Adapter/Inflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IO/Uncompress/Adapter/Inflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Uncompress/Adapter/Inflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IO/Uncompress/Adapter/Inflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Uncompress/Adapter/Inflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IO/Uncompress/Adapter/Inflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Uncompress/Adapter/Inflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IO/Uncompress/Adapter/Inflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Uncompress/Adapter/Inflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/IO/Uncompress/Adapter/Inflate.pm", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Uncompress/Adapter/Inflate.pmc", 0x7ffdd5526780, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/IO/Uncompress/Adapter/Inflate.pm", {st_mode=S_IFREG|0644, st_size=3259, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/IO/Uncompress/Adapter/Inflate.pm", O_RDONLY|O_CLOEXEC) = 10 +61496 ioctl(10, TCGETS, 0x7ffdd5526540) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(10, 0, SEEK_CUR) = 0 +61496 read(10, "package IO::Uncompress::Adapter:"..., 8192) = 3259 +61496 close(10) = 0 +61496 brk(0x55855bae5000) = 0x55855bae5000 +61496 read(9, " "..., 8192) = 8192 +61496 lseek(9, 8590, SEEK_SET) = 8590 +61496 lseek(9, 0, SEEK_CUR) = 8590 +61496 close(9) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855bb06000) = 0x55855bb06000 +61496 lseek(8, 7312, SEEK_SET) = 7312 +61496 lseek(8, 0, SEEK_CUR) = 7312 +61496 close(8) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855bb27000) = 0x55855bb27000 +61496 read(7, "[0] ;\n }\n\n $] >= 5.008 and"..., 8192) = 8192 +61496 brk(0x55855bb48000) = 0x55855bb48000 +61496 lseek(7, 15740, SEEK_SET) = 15740 +61496 lseek(7, 0, SEEK_CUR) = 15740 +61496 close(7) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 read(6, " = shift;\n }\n "..., 8192) = 7909 +61496 brk(0x55855bb69000) = 0x55855bb69000 +61496 read(6, "", 8192) = 0 +61496 close(6) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/MIME/Base64.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/MIME/Base64.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/MIME/Base64.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/MIME/Base64.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/MIME/Base64.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/MIME/Base64.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/MIME/Base64.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/MIME/Base64.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/MIME/Base64.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/MIME/Base64.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/MIME/Base64.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/MIME/Base64.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/MIME/Base64.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/MIME/Base64.pm", {st_mode=S_IFREG|0644, st_size=5433, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/MIME/Base64.pm", O_RDONLY|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 read(6, "package MIME::Base64;\n\nuse stric"..., 8192) = 5433 +61496 brk(0x55855bb8a000) = 0x55855bb8a000 +61496 lseek(6, 647, SEEK_SET) = 647 +61496 lseek(6, 0, SEEK_CUR) = 647 +61496 close(6) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/MIME/Base64/Base64.so", {st_mode=S_IFREG|0644, st_size=18664, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/MIME/Base64/Base64.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/MIME/Base64/Base64.so", O_RDONLY|O_CLOEXEC) = 6 +61496 read(6, "\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\0"..., 832) = 832 +61496 newfstatat(6, "", {st_mode=S_IFREG|0644, st_size=18664, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 20656, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7fac0a75e000 +61496 mmap(0x7fac0a75f000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x1000) = 0x7fac0a75f000 +61496 mmap(0x7fac0a761000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x3000) = 0x7fac0a761000 +61496 mmap(0x7fac0a762000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x3000) = 0x7fac0a762000 +61496 close(6) = 0 +61496 mprotect(0x7fac0a762000, 4096, PROT_READ) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Control.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Control.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Control.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Control.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Control.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Control.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Control.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Control.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control.pm", {st_mode=S_IFREG|0644, st_size=7313, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control.pm", O_RDONLY|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 read(6, "# Copyright \302\251 2007-2009 Rapha\303\253"..., 8192) = 7313 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Gettext.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Gettext.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Gettext.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Gettext.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Gettext.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Gettext.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Gettext.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Gettext.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Gettext.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Gettext.pm", {st_mode=S_IFREG|0644, st_size=6052, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Gettext.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "# Copied from /usr/share/perl5/D"..., 8192) = 6052 +61496 newfstatat(AT_FDCWD, "/etc/perl/feature.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/feature.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/feature.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/feature.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/feature.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/feature.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/feature.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/feature.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/feature.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/feature.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/feature.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/feature.pm", {st_mode=S_IFREG|0644, st_size=7560, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/feature.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "# -*- buffer-read-only: t -*-\n# "..., 8192) = 7560 +61496 brk(0x55855bbab000) = 0x55855bbab000 +61496 read(8, "", 8192) = 0 +61496 close(8) = 0 +61496 brk(0x55855bbd1000) = 0x55855bbd1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/Locale/gettext.pmc", 0x7ffdd5526f20, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Locale/gettext.pm", 0x7ffdd5526f20, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Locale/gettext.pmc", 0x7ffdd5526f20, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Locale/gettext.pm", 0x7ffdd5526f20, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Locale/gettext.pmc", 0x7ffdd5526f20, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Locale/gettext.pm", 0x7ffdd5526f20, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Locale/gettext.pmc", 0x7ffdd5526f20, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Locale/gettext.pm", {st_mode=S_IFREG|0644, st_size=6854, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Locale/gettext.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd5526ce0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "package Locale::gettext;\n\n=head1"..., 8192) = 6854 +61496 newfstatat(AT_FDCWD, "/etc/perl/Encode.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Encode.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Encode.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Encode.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Encode.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Encode.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Encode.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Encode.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Encode.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Encode.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Encode.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Encode.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode.pm", {st_mode=S_IFREG|0644, st_size=32201, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd5526630) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "#\n# $Id: Encode.pm,v 3.17 2022/0"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Encode/Encode.so", {st_mode=S_IFREG|0644, st_size=47768, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Encode/Encode.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Encode/Encode.so", O_RDONLY|O_CLOEXEC) = 10 +61496 read(10, "\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\0"..., 832) = 832 +61496 newfstatat(10, "", {st_mode=S_IFREG|0644, st_size=47768, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 49688, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 10, 0) = 0x7fac0a72e000 +61496 mmap(0x7fac0a731000, 24576, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 10, 0x3000) = 0x7fac0a731000 +61496 mmap(0x7fac0a737000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 10, 0x9000) = 0x7fac0a737000 +61496 mmap(0x7fac0a739000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 10, 0xa000) = 0x7fac0a739000 +61496 close(10) = 0 +61496 mprotect(0x7fac0a739000, 4096, PROT_READ) = 0 +61496 brk(0x55855bbf3000) = 0x55855bbf3000 +61496 newfstatat(AT_FDCWD, "/etc/perl/Encode/Alias.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Encode/Alias.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Encode/Alias.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Encode/Alias.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Encode/Alias.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Encode/Alias.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Encode/Alias.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Encode/Alias.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Encode/Alias.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Encode/Alias.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Encode/Alias.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Encode/Alias.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/Alias.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/Alias.pm", {st_mode=S_IFREG|0644, st_size=12545, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/Alias.pm", O_RDONLY|O_CLOEXEC) = 10 +61496 ioctl(10, TCGETS, 0x7ffdd5525f30) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(10, 0, SEEK_CUR) = 0 +61496 read(10, "package Encode::Alias;\nuse stric"..., 8192) = 8192 +61496 brk(0x55855bc14000) = 0x55855bc14000 +61496 read(10, " define_alias( qr/(?:x-)?windo"..., 8192) = 4353 +61496 lseek(10, 9055, SEEK_SET) = 9055 +61496 lseek(10, 0, SEEK_CUR) = 9055 +61496 close(10) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Encode/MIME/Name.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Encode/MIME/Name.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Encode/MIME/Name.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Encode/MIME/Name.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Encode/MIME/Name.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Encode/MIME/Name.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Encode/MIME/Name.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Encode/MIME/Name.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Encode/MIME/Name.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Encode/MIME/Name.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Encode/MIME/Name.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Encode/MIME/Name.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/MIME/Name.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/MIME/Name.pm", {st_mode=S_IFREG|0644, st_size=3821, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/MIME/Name.pm", O_RDONLY|O_CLOEXEC) = 10 +61496 ioctl(10, TCGETS, 0x7ffdd5525f30) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(10, 0, SEEK_CUR) = 0 +61496 read(10, "package Encode::MIME::Name;\nuse "..., 8192) = 3821 +61496 brk(0x55855bc35000) = 0x55855bc35000 +61496 lseek(10, 3718, SEEK_SET) = 3718 +61496 lseek(10, 0, SEEK_CUR) = 3718 +61496 close(10) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Storable.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Storable.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Storable.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Storable.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Storable.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Storable.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Storable.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Storable.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Storable.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Storable.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Storable.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Storable.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Storable.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Storable.pm", {st_mode=S_IFREG|0644, st_size=49923, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Storable.pm", O_RDONLY|O_CLOEXEC) = 10 +61496 ioctl(10, TCGETS, 0x7ffdd5525f30) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(10, 0, SEEK_CUR) = 0 +61496 read(10, "#\n# Copyright (c) 1995-2001, Ra"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Log/Agent.pmc", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Log/Agent.pm", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Log/Agent.pmc", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Log/Agent.pm", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Log/Agent.pmc", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Log/Agent.pm", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Log/Agent.pmc", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Log/Agent.pm", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Log/Agent.pmc", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Log/Agent.pm", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Log/Agent.pmc", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Log/Agent.pm", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Log/Agent.pmc", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Log/Agent.pm", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Log/Agent.pmc", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Log/Agent.pm", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/site_perl/Log/Agent.pmc", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/site_perl/Log/Agent.pm", 0x7ffdd5525ac0, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Storable/Storable.so", {st_mode=S_IFREG|0644, st_size=113672, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Storable/Storable.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Storable/Storable.so", O_RDONLY|O_CLOEXEC) = 11 +61496 read(11, "\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\0"..., 832) = 832 +61496 newfstatat(11, "", {st_mode=S_IFREG|0644, st_size=113672, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 115592, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 11, 0) = 0x7fac0a711000 +61496 mmap(0x7fac0a714000, 86016, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 11, 0x3000) = 0x7fac0a714000 +61496 mmap(0x7fac0a729000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 11, 0x18000) = 0x7fac0a729000 +61496 mmap(0x7fac0a72c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 11, 0x1a000) = 0x7fac0a72c000 +61496 close(11) = 0 +61496 mprotect(0x7fac0a72c000, 4096, PROT_READ) = 0 +61496 brk(0x55855bc56000) = 0x55855bc56000 +61496 read(10, "r\n eval { $ret = &$xsptr($fil"..., 8192) = 8192 +61496 lseek(10, 12597, SEEK_SET) = 12597 +61496 lseek(10, 0, SEEK_CUR) = 12597 +61496 close(10) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855bc77000) = 0x55855bc77000 +61496 newfstatat(AT_FDCWD, "/etc/perl/Encode/Encoding.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Encode/Encoding.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Encode/Encoding.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Encode/Encoding.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Encode/Encoding.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Encode/Encoding.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Encode/Encoding.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Encode/Encoding.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Encode/Encoding.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Encode/Encoding.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Encode/Encoding.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Encode/Encoding.pm", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/Encoding.pmc", 0x7ffdd5526170, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/Encoding.pm", {st_mode=S_IFREG|0644, st_size=9063, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/Encoding.pm", O_RDONLY|O_CLOEXEC) = 10 +61496 ioctl(10, TCGETS, 0x7ffdd5525f30) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(10, 0, SEEK_CUR) = 0 +61496 read(10, "package Encode::Encoding;\n\n# Bas"..., 8192) = 8192 +61496 lseek(10, 1505, SEEK_SET) = 1505 +61496 lseek(10, 0, SEEK_CUR) = 1505 +61496 close(10) = 0 +61496 lseek(9, 6426, SEEK_SET) = 6426 +61496 lseek(9, 0, SEEK_CUR) = 6426 +61496 close(9) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Encode/Config.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Encode/Config.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Encode/Config.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Encode/Config.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Encode/Config.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Encode/Config.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Encode/Config.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Encode/Config.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Encode/Config.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Encode/Config.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Encode/Config.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Encode/Config.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/Config.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/Config.pm", {st_mode=S_IFREG|0644, st_size=6065, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/Config.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd5526630) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "#\n# Demand-load module list\n#\npa"..., 8192) = 6065 +61496 brk(0x55855bc98000) = 0x55855bc98000 +61496 lseek(9, 6001, SEEK_SET) = 6001 +61496 lseek(9, 0, SEEK_CUR) = 6001 +61496 close(9) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Encode/ConfigLocal.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Encode/ConfigLocal.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Encode/ConfigLocal.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Encode/ConfigLocal.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Encode/ConfigLocal.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Encode/ConfigLocal.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Encode/ConfigLocal.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Encode/ConfigLocal.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Encode/ConfigLocal.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Encode/ConfigLocal.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Encode/ConfigLocal.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Encode/ConfigLocal.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/ConfigLocal.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Encode/ConfigLocal.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Encode/ConfigLocal.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Encode/ConfigLocal.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/site_perl/Encode/ConfigLocal.pmc", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/site_perl/Encode/ConfigLocal.pm", 0x7ffdd5526870, 0) = -1 ENOENT (No such file or directory) +61496 read(8, "", 8192) = 0 +61496 close(8) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/auto/Locale/gettext", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/auto/Locale/gettext", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/auto/Locale/gettext", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/auto/Locale/gettext", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/auto/Locale/gettext/gettext.so", {st_mode=S_IFREG|0644, st_size=18272, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/auto/Locale/gettext/gettext.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/auto/Locale/gettext/gettext.so", O_RDONLY|O_CLOEXEC) = 8 +61496 read(8, "\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\0"..., 832) = 832 +61496 newfstatat(8, "", {st_mode=S_IFREG|0644, st_size=18272, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 20496, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fac0a70b000 +61496 mmap(0x7fac0a70c000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x1000) = 0x7fac0a70c000 +61496 mmap(0x7fac0a70e000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x3000) = 0x7fac0a70e000 +61496 mmap(0x7fac0a70f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x3000) = 0x7fac0a70f000 +61496 close(8) = 0 +61496 mprotect(0x7fac0a70f000, 4096, PROT_READ) = 0 +61496 read(7, "", 8192) = 0 +61496 close(7) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/ErrorHandling.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/ErrorHandling.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/ErrorHandling.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/ErrorHandling.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/ErrorHandling.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/ErrorHandling.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/ErrorHandling.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/ErrorHandling.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/ErrorHandling.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/ErrorHandling.pm", {st_mode=S_IFREG|0644, st_size=5294, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/ErrorHandling.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "# This program is free software;"..., 8192) = 5294 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg.pm", {st_mode=S_IFREG|0644, st_size=5839, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "# This program is free software;"..., 8192) = 5839 +61496 read(8, "", 8192) = 0 +61496 close(8) = 0 +61496 read(7, "", 8192) = 0 +61496 close(7) = 0 +61496 openat(AT_FDCWD, "/usr/share/locale/C.UTF-8/LC_MESSAGES/dpkg-dev.mo", O_RDONLY) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/share/locale/C.utf8/LC_MESSAGES/dpkg-dev.mo", O_RDONLY) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/share/locale/C/LC_MESSAGES/dpkg-dev.mo", O_RDONLY) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Control/Types.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Control/Types.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Control/Types.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Control/Types.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Control/Types.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Control/Types.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Control/Types.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Control/Types.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/Types.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/Types.pm", {st_mode=S_IFREG|0644, st_size=2747, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/Types.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "# This program is free software;"..., 8192) = 2747 +61496 read(7, "", 8192) = 0 +61496 close(7) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Control/Hash.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Control/Hash.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Control/Hash.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Control/Hash.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Control/Hash.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Control/Hash.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Control/Hash.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Control/Hash.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/Hash.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/Hash.pm", {st_mode=S_IFREG|0644, st_size=1225, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/Hash.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "# Copyright \302\251 2007-2009 Rapha\303\253"..., 8192) = 1225 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Control/Fields.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Control/Fields.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Control/Fields.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Control/Fields.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Control/Fields.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Control/Fields.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Control/Fields.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Control/Fields.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/Fields.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/Fields.pm", {st_mode=S_IFREG|0644, st_size=2111, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/Fields.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 brk(0x55855bcb9000) = 0x55855bcb9000 +61496 read(8, "# Copyright \302\251 2007-2009 Rapha\303\253"..., 8192) = 2111 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Control/FieldsCore.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Control/FieldsCore.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Control/FieldsCore.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Control/FieldsCore.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Control/FieldsCore.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Control/FieldsCore.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Control/FieldsCore.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Control/FieldsCore.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/FieldsCore.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/FieldsCore.pm", {st_mode=S_IFREG|0644, st_size=34487, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/FieldsCore.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd5526bf0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "# Copyright \302\251 2007-2009 Rapha\303\253"..., 8192) = 8192 +61496 read(9, "' => {\n name => 'Disclaim"..., 8192) = 8192 +61496 brk(0x55855bcdd000) = 0x55855bcdd000 +61496 read(9, " name => 'Vcs-Cvs',\n all"..., 8192) = 8192 +61496 read(9, " built-using\n static"..., 8192) = 8192 +61496 brk(0x55855bcfe000) = 0x55855bcfe000 +61496 read(9, "_get_sep_type($) {\n my $field"..., 8192) = 1719 +61496 read(9, "", 8192) = 0 +61496 close(9) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Vendor.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Vendor.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Vendor.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Vendor.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Vendor.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Vendor.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Vendor.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Vendor.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Vendor.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Vendor.pm", {st_mode=S_IFREG|0644, st_size=8965, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Vendor.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd5526bf0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "# Copyright \302\251 2008-2009 Rapha\303\253"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/BuildEnv.pmc", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/BuildEnv.pm", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/BuildEnv.pmc", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/BuildEnv.pm", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/BuildEnv.pmc", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/BuildEnv.pm", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/BuildEnv.pmc", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/BuildEnv.pm", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/BuildEnv.pmc", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/BuildEnv.pm", {st_mode=S_IFREG|0644, st_size=2231, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/BuildEnv.pm", O_RDONLY|O_CLOEXEC) = 10 +61496 ioctl(10, TCGETS, 0x7ffdd55264f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(10, 0, SEEK_CUR) = 0 +61496 read(10, "# Copyright \302\251 2012 Guillem Jove"..., 8192) = 2231 +61496 read(10, "", 8192) = 0 +61496 close(10) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Control/HashCore.pmc", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Control/HashCore.pm", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Control/HashCore.pmc", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Control/HashCore.pm", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Control/HashCore.pmc", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Control/HashCore.pm", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Control/HashCore.pmc", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Control/HashCore.pm", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/HashCore.pmc", 0x7ffdd5526730, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/HashCore.pm", {st_mode=S_IFREG|0644, st_size=15794, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Control/HashCore.pm", O_RDONLY|O_CLOEXEC) = 10 +61496 ioctl(10, TCGETS, 0x7ffdd55264f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(10, 0, SEEK_CUR) = 0 +61496 read(10, "# Copyright \302\251 2007-2009 Rapha\303\253"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Interface/Storable.pmc", 0x7ffdd5526030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Interface/Storable.pm", 0x7ffdd5526030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Interface/Storable.pmc", 0x7ffdd5526030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Interface/Storable.pm", 0x7ffdd5526030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Interface/Storable.pmc", 0x7ffdd5526030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Interface/Storable.pm", 0x7ffdd5526030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Interface/Storable.pmc", 0x7ffdd5526030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Interface/Storable.pm", 0x7ffdd5526030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Interface/Storable.pmc", 0x7ffdd5526030, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Interface/Storable.pm", {st_mode=S_IFREG|0644, st_size=4290, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Interface/Storable.pm", O_RDONLY|O_CLOEXEC) = 11 +61496 ioctl(11, TCGETS, 0x7ffdd5525df0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(11, 0, SEEK_CUR) = 0 +61496 read(11, "# Copyright \302\251 2010 Rapha\303\253l Her"..., 8192) = 4290 +61496 newfstatat(AT_FDCWD, "/etc/perl/overload.pmc", 0x7ffdd5525930, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/overload.pm", 0x7ffdd5525930, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/overload.pmc", 0x7ffdd5525930, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/overload.pm", 0x7ffdd5525930, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/overload.pmc", 0x7ffdd5525930, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/overload.pm", 0x7ffdd5525930, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/overload.pmc", 0x7ffdd5525930, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/overload.pm", 0x7ffdd5525930, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/overload.pmc", 0x7ffdd5525930, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/overload.pm", 0x7ffdd5525930, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/overload.pmc", 0x7ffdd5525930, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/overload.pm", {st_mode=S_IFREG|0644, st_size=4494, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/overload.pm", O_RDONLY|O_CLOEXEC) = 12 +61496 ioctl(12, TCGETS, 0x7ffdd55256f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(12, 0, SEEK_CUR) = 0 +61496 brk(0x55855bd20000) = 0x55855bd20000 +61496 read(12, "package overload;\n\nuse strict;\nn"..., 8192) = 4494 +61496 lseek(12, 4493, SEEK_SET) = 4493 +61496 lseek(12, 0, SEEK_CUR) = 4493 +61496 close(12) = 0 +61496 brk(0x55855bd41000) = 0x55855bd41000 +61496 read(11, "", 8192) = 0 +61496 close(11) = 0 +61496 read(10, "ture'));\n }\n\t\t# T"..., 8192) = 7602 +61496 brk(0x55855bd65000) = 0x55855bd65000 +61496 read(10, "", 8192) = 0 +61496 close(10) = 0 +61496 brk(0x55855bd86000) = 0x55855bd86000 +61496 read(9, "info and defined $info->{'Parent"..., 8192) = 773 +61496 read(9, "", 8192) = 0 +61496 close(9) = 0 +61496 read(8, "", 8192) = 0 +61496 close(8) = 0 +61496 newfstatat(AT_FDCWD, "/etc/dpkg/origins/default", {st_mode=S_IFREG|0644, st_size=83, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/etc/dpkg/origins/default", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd5527420) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 newfstatat(8, "", {st_mode=S_IFREG|0644, st_size=83, ...}, AT_EMPTY_PATH) = 0 +61496 read(8, "Vendor: Debian\nVendor-URL: https"..., 8192) = 83 +61496 read(8, "", 8192) = 0 +61496 close(8) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Vendor/Debian.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Vendor/Debian.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Vendor/Debian.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Vendor/Debian.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Vendor/Debian.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Vendor/Debian.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Vendor/Debian.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Vendor/Debian.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Vendor/Debian.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Vendor/Debian.pm", {st_mode=S_IFREG|0644, st_size=15836, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Vendor/Debian.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "# Copyright \302\251 2009-2011 Rapha\303\253"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Vendor/Default.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Vendor/Default.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Vendor/Default.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Vendor/Default.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Vendor/Default.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Vendor/Default.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Vendor/Default.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Vendor/Default.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Vendor/Default.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Vendor/Default.pm", {st_mode=S_IFREG|0644, st_size=7281, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Vendor/Default.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd5526bf0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "# Copyright \302\251 2009 Rapha\303\253l Her"..., 8192) = 7281 +61496 read(9, "", 8192) = 0 +61496 close(9) = 0 +61496 brk(0x55855bda7000) = 0x55855bda7000 +61496 read(8, "f ($flags->get_option_value('opt"..., 8192) = 7644 +61496 brk(0x55855bdc9000) = 0x55855bdc9000 +61496 read(8, "", 8192) = 0 +61496 close(8) = 0 +61496 read(7, "", 8192) = 0 +61496 close(7) = 0 +61496 read(6, "", 8192) = 0 +61496 close(6) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Checksums.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Checksums.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Checksums.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Checksums.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Checksums.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Checksums.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Checksums.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Checksums.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Checksums.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Checksums.pm", {st_mode=S_IFREG|0644, st_size=11235, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Checksums.pm", O_RDONLY|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 read(6, "# Copyright \302\251 2008 Frank Lichte"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Digest.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Digest.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Digest.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Digest.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Digest.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Digest.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Digest.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Digest.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Digest.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Digest.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Digest.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Digest.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Digest.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Digest.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Digest.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Digest.pm", {st_mode=S_IFREG|0644, st_size=11225, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/Digest.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "package Digest;\n\nuse strict;\nuse"..., 8192) = 8192 +61496 lseek(7, 1961, SEEK_SET) = 1961 +61496 lseek(7, 0, SEEK_CUR) = 1961 +61496 close(7) = 0 +61496 brk(0x55855bdeb000) = 0x55855bdeb000 +61496 read(6, " delete $self->{checksums}{$file"..., 8192) = 3043 +61496 read(6, "", 8192) = 0 +61496 close(6) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 openat(AT_FDCWD, "/dev/null", O_RDWR|O_CLOEXEC) = 6 +61496 ioctl(6, TCGETS, 0x7ffdd5528270) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(6, 0, SEEK_CUR) = 0 +61496 newfstatat(6, "", {st_mode=S_IFCHR|0666, st_rdev=makedev(0x1, 0x3), ...}, AT_EMPTY_PATH) = 0 +61496 brk(0x55855be0d000) = 0x55855be0d000 +61496 brk(0x55855be07000) = 0x55855be07000 +61496 brk(0x55855be28000) = 0x55855be28000 +61496 read(5, "\n\tif ($debug_level && $debug_lev"..., 8192) = 3010 +61496 read(5, "", 8192) = 0 +61496 close(5) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/Base.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/Base.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/Base.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/Base.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/Base.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/Base.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/Base.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/Base.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/Base.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/Base.pm", {st_mode=S_IFREG|0644, st_size=4936, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/Base.pm", O_RDONLY|O_CLOEXEC) = 5 +61496 ioctl(5, TCGETS, 0x7ffdd55287f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(5, 0, SEEK_CUR) = 0 +61496 read(5, "#\n# Base.pm: base class containi"..., 8192) = 4936 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855be49000) = 0x55855be49000 +61496 read(5, "", 8192) = 0 +61496 close(5) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ResolverBase.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ResolverBase.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ResolverBase.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ResolverBase.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ResolverBase.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ResolverBase.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ResolverBase.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ResolverBase.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ResolverBase.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ResolverBase.pm", {st_mode=S_IFREG|0644, st_size=55242, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/ResolverBase.pm", O_RDONLY|O_CLOEXEC) = 5 +61496 ioctl(5, TCGETS, 0x7ffdd55287f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(5, 0, SEEK_CUR) = 0 +61496 read(5, "# Resolver.pm: build library for"..., 8192) = 8192 +61496 brk(0x55855be6a000) = 0x55855be6a000 +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Temp.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Temp.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Temp.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Temp.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Temp.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Temp.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Temp.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Temp.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Temp.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Temp.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Temp.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Temp.pm", {st_mode=S_IFREG|0644, st_size=85190, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Temp.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "package File::Temp; # git descri"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Spec.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Spec.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Spec.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Spec.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Spec.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Spec.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Spec.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Spec.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Spec.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Spec.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec.pm", {st_mode=S_IFREG|0644, st_size=556, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "package File::Spec;\n\nuse strict;"..., 8192) = 556 +61496 lseek(8, 555, SEEK_SET) = 555 +61496 lseek(8, 0, SEEK_CUR) = 555 +61496 close(8) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Spec/Unix.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Spec/Unix.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Spec/Unix.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Spec/Unix.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Spec/Unix.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Spec/Unix.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Spec/Unix.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Spec/Unix.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Spec/Unix.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Spec/Unix.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec/Unix.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec/Unix.pm", {st_mode=S_IFREG|0644, st_size=9299, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Spec/Unix.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "package File::Spec::Unix;\n\nuse s"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Cwd.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Cwd.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Cwd.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Cwd.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Cwd.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Cwd.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Cwd.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Cwd.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Cwd.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Cwd.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Cwd.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Cwd.pm", {st_mode=S_IFREG|0644, st_size=17018, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Cwd.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 brk(0x55855be8b000) = 0x55855be8b000 +61496 read(9, "package Cwd;\nuse strict;\nuse Exp"..., 8192) = 8192 +61496 brk(0x55855beac000) = 0x55855beac000 +61496 read(9, "d != $pd) {\n\t $ENV{'PWD'} = c"..., 8192) = 8192 +61496 brk(0x55855becd000) = 0x55855becd000 +61496 read(9, "s to the right places\n\nif (exist"..., 8192) = 634 +61496 lseek(9, 17017, SEEK_SET) = 17017 +61496 lseek(9, 0, SEEK_CUR) = 17017 +61496 close(9) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/Cwd/Cwd.so", {st_mode=S_IFREG|0644, st_size=18800, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/Cwd/Cwd.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/auto/Cwd/Cwd.so", O_RDONLY|O_CLOEXEC) = 9 +61496 read(9, "\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\0"..., 832) = 832 +61496 newfstatat(9, "", {st_mode=S_IFREG|0644, st_size=18800, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 20792, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x7fac0a705000 +61496 mmap(0x7fac0a706000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x1000) = 0x7fac0a706000 +61496 mmap(0x7fac0a708000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x3000) = 0x7fac0a708000 +61496 mmap(0x7fac0a709000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x3000) = 0x7fac0a709000 +61496 close(9) = 0 +61496 mprotect(0x7fac0a709000, 4096, PROT_READ) = 0 +61496 newfstatat(AT_FDCWD, "/bin/pwd", {st_mode=S_IFREG|0755, st_size=43952, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 getegid() = 1000 +61496 getgroups(0, NULL) = 11 +61496 getgroups(11, [4, 20, 24, 25, 27, 29, 30, 44, 46, 110, 1000]) = 11 +61496 read(8, "f->canonpath( $path ) ;\n}\n\n# Int"..., 8192) = 1107 +61496 brk(0x55855beee000) = 0x55855beee000 +61496 read(8, "", 8192) = 0 +61496 close(8) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Path.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Path.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Path.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Path.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Path.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Path.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Path.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Path.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Path.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Path.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Path.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Path.pm", {st_mode=S_IFREG|0644, st_size=20724, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Path.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "package File::Path;\n\nuse 5.005_0"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Basename.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Basename.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Basename.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Basename.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Basename.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Basename.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Basename.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Basename.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Basename.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Basename.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Basename.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Basename.pm", {st_mode=S_IFREG|0644, st_size=5429, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Basename.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "package File::Basename;\n\n# File:"..., 8192) = 5429 +61496 brk(0x55855bf0f000) = 0x55855bf0f000 +61496 read(9, "", 8192) = 0 +61496 close(9) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855bf30000) = 0x55855bf30000 +61496 brk(0x55855bf2a000) = 0x55855bf2a000 +61496 read(8, "d\n return 0 if @t < @d;\n\n "..., 8192) = 8192 +61496 read(8, "$nperm != $perm and not chmod( $"..., 8192) = 4340 +61496 brk(0x55855bf4c000) = 0x55855bf4c000 +61496 lseek(8, 20723, SEEK_SET) = 20723 +61496 lseek(8, 0, SEEK_CUR) = 20723 +61496 close(8) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 read(7, "n be used to tell the OS\n# to au"..., 8192) = 8192 +61496 read(7, "m;\n }\n\n # Try to make "..., 8192) = 8192 +61496 brk(0x55855bf70000) = 0x55855bf70000 +61496 read(7, "ile\n my ($volume, $directories,"..., 8192) = 8192 +61496 brk(0x55855bf91000) = 0x55855bf91000 +61496 read(7, "e for interacting with\n#pod C 1,\n"..., 8192) = 8192 +61496 read(7, "red).\n#pod Then the filename is "..., 8192) = 8192 +61496 brk(0x55855bfd3000) = 0x55855bfd3000 +61496 read(7, " happens automatically.)\n#pod\n#p"..., 8192) = 8192 +61496 read(7, "e up if they exceed the number o"..., 8192) = 3270 +61496 lseek(7, 85189, SEEK_SET) = 85189 +61496 lseek(7, 0, SEEK_CUR) = 85189 +61496 close(7) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Carp/Heavy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Carp/Heavy.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Carp/Heavy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Carp/Heavy.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Carp/Heavy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Carp/Heavy.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Carp/Heavy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Carp/Heavy.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Carp/Heavy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Carp/Heavy.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Carp/Heavy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Carp/Heavy.pm", {st_mode=S_IFREG|0644, st_size=773, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Carp/Heavy.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "package Carp::Heavy;\n\nuse Carp ("..., 8192) = 773 +61496 read(7, "", 8192) = 0 +61496 close(7) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Copy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Copy.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Copy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Copy.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Copy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Copy.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Copy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Copy.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Copy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Copy.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Copy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Copy.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/File/Copy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/File/Copy.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/File/Copy.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/File/Copy.pm", {st_mode=S_IFREG|0644, st_size=15966, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/File/Copy.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "# File/Copy.pm. Written in 1994 "..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/builtin.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/builtin.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/builtin.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/builtin.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/builtin.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/builtin.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/builtin.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/builtin.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/builtin.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/builtin.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/builtin.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/builtin.pm", {st_mode=S_IFREG|0644, st_size=210, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/builtin.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "package builtin 0.006;\n\nuse stri"..., 8192) = 210 +61496 lseek(8, 209, SEEK_SET) = 209 +61496 lseek(8, 0, SEEK_CUR) = 209 +61496 close(8) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Time/HiRes.pmc", 0x7ffdd5527620, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Time/HiRes.pm", 0x7ffdd5527620, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Time/HiRes.pmc", 0x7ffdd5527620, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Time/HiRes.pm", 0x7ffdd5527620, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Time/HiRes.pmc", 0x7ffdd5527620, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Time/HiRes.pm", 0x7ffdd5527620, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Time/HiRes.pmc", 0x7ffdd5527620, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Time/HiRes.pm", 0x7ffdd5527620, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Time/HiRes.pmc", 0x7ffdd5527620, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Time/HiRes.pm", 0x7ffdd5527620, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Time/HiRes.pmc", 0x7ffdd5527620, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Time/HiRes.pm", 0x7ffdd5527620, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Time/HiRes.pmc", 0x7ffdd5527620, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Time/HiRes.pm", {st_mode=S_IFREG|0644, st_size=25689, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Time/HiRes.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55273e0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "package Time::HiRes;\n\n{ use 5.00"..., 8192) = 8192 +61496 brk(0x55855bff4000) = 0x55855bff4000 +61496 lseek(8, 3424, SEEK_SET) = 3424 +61496 lseek(8, 0, SEEK_CUR) = 3424 +61496 close(8) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Time/HiRes/HiRes.so", {st_mode=S_IFREG|0644, st_size=35240, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Time/HiRes/HiRes.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Time/HiRes/HiRes.so", O_RDONLY|O_CLOEXEC) = 8 +61496 read(8, "\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\0"..., 832) = 832 +61496 newfstatat(8, "", {st_mode=S_IFREG|0644, st_size=35240, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 33136, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fac0a6fc000 +61496 mmap(0x7fac0a6fe000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x2000) = 0x7fac0a6fe000 +61496 mmap(0x7fac0a702000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x6000) = 0x7fac0a702000 +61496 mmap(0x7fac0a703000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x7000) = 0x7fac0a703000 +61496 close(8) = 0 +61496 mprotect(0x7fac0a703000, 4096, PROT_READ) = 0 +61496 brk(0x55855c015000) = 0x55855c015000 +61496 read(7, "],0,0) if defined $tomt1;\n un"..., 8192) = 7774 +61496 lseek(7, 8811, SEEK_SET) = 8811 +61496 lseek(7, 0, SEEK_CUR) = 8811 +61496 close(7) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Deps.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Deps.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Deps.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Deps.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Deps.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Deps.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Deps.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Deps.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Deps.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Deps.pm", {st_mode=S_IFREG|0644, st_size=14958, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Deps.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "# Copyright \302\251 1998 Richard Braa"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Version.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/Version.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Version.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/Version.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Version.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/Version.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Version.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/Version.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Version.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/Version.pm", {st_mode=S_IFREG|0644, st_size=13065, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/Version.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "# Copyright \302\251 Colin Watson 1\n\t\t\t\t\t"..., 8192) = 8192 +61496 brk(0x55855c15f000) = 0x55855c15f000 +61496 read(5, "elf->get('Build Dir')\n\t\t\t\t . '/"..., 8192) = 8192 +61496 brk(0x55855c180000) = 0x55855c180000 +61496 read(5, "uild_conflicts_indep\\n\")\n\t if $"..., 8192) = 8192 +61496 brk(0x55855c1a1000) = 0x55855c1a1000 +61496 brk(0x55855c1c2000) = 0x55855c1c2000 +61496 brk(0x55855c1c1000) = 0x55855c1c1000 +61496 read(5, "e error in /var/lib/dpkg/status:"..., 8192) = 8192 +61496 brk(0x55855c1e2000) = 0x55855c1e2000 +61496 read(5, ": ' . $positive . \"\\n\";\n\t}\n\tif ("..., 8192) = 8192 +61496 read(5, "e eq \"Checksums-Sha1:\\n\") {\n\t\tpr"..., 8192) = 6090 +61496 brk(0x55855c203000) = 0x55855c203000 +61496 read(5, "", 8192) = 0 +61496 close(5) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855c224000) = 0x55855c224000 +61496 read(4, "", 8192) = 0 +61496 close(4) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/OptionsBase.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/OptionsBase.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/OptionsBase.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/OptionsBase.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/OptionsBase.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/OptionsBase.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/OptionsBase.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/OptionsBase.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/OptionsBase.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/OptionsBase.pm", {st_mode=S_IFREG|0644, st_size=2475, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/OptionsBase.pm", O_RDONLY|O_CLOEXEC) = 4 +61496 ioctl(4, TCGETS, 0x7ffdd5528ef0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(4, 0, SEEK_CUR) = 0 +61496 read(4, "#\n# OptionsBase.pm: options pars"..., 8192) = 2475 +61496 newfstatat(AT_FDCWD, "/etc/perl/Getopt/Long.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Getopt/Long.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Getopt/Long.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Getopt/Long.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Getopt/Long.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Getopt/Long.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Getopt/Long.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Getopt/Long.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Getopt/Long.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Getopt/Long.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Getopt/Long.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Getopt/Long.pm", {st_mode=S_IFREG|0644, st_size=43499, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Getopt/Long.pm", O_RDONLY|O_CLOEXEC) = 5 +61496 ioctl(5, TCGETS, 0x7ffdd55287f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(5, 0, SEEK_CUR) = 0 +61496 read(5, "#! perl\n\n# Getopt::Long.pm -- Un"..., 8192) = 8192 +61496 brk(0x55855c245000) = 0x55855c245000 +61496 read(5, "\n\tlocal ($^W) = 0;\n\tprint STDERR"..., 8192) = 8192 +61496 brk(0x55855c266000) = 0x55855c266000 +61496 read(5, "}\n\t\t }\n\t\t elsif ( ref($lin"..., 8192) = 8192 +61496 brk(0x55855c287000) = 0x55855c287000 +61496 read(5, "my $dups = '';\n foreach ( @na"..., 8192) = 8192 +61496 brk(0x55855c2a9000) = 0x55855c2a9000 +61496 read(5, "if (! defined $arg) {\n\t warn "..., 8192) = 8192 +61496 brk(0x55855c2ca000) = 0x55855c2ca000 +61496 read(5, "gs(\"version\", @_);\n\n my $v = "..., 8192) = 2539 +61496 brk(0x55855c2eb000) = 0x55855c2eb000 +61496 read(5, "", 8192) = 0 +61496 close(5) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 read(4, "", 8192) = 0 +61496 close(4) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/Conf.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/Conf.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/Conf.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/Conf.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/Conf.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/Conf.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/Conf.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/Conf.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/Conf.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/Conf.pm", {st_mode=S_IFREG|0644, st_size=73615, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/Conf.pm", O_RDONLY|O_CLOEXEC) = 4 +61496 ioctl(4, TCGETS, 0x7ffdd5528ef0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(4, 0, SEEK_CUR) = 0 +61496 read(4, "#\n# Conf.pm: configuration libra"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ConfBase.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ConfBase.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ConfBase.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ConfBase.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ConfBase.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ConfBase.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ConfBase.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ConfBase.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ConfBase.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ConfBase.pm", {st_mode=S_IFREG|0644, st_size=13997, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/ConfBase.pm", O_RDONLY|O_CLOEXEC) = 5 +61496 ioctl(5, TCGETS, 0x7ffdd55287f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(5, 0, SEEK_CUR) = 0 +61496 read(5, "#\n# ConfBase.pm: configuration l"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Data/Dumper.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Data/Dumper.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Data/Dumper.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Data/Dumper.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Data/Dumper.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Data/Dumper.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Data/Dumper.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Data/Dumper.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Data/Dumper.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Data/Dumper.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Data/Dumper.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Data/Dumper.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Data/Dumper.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Data/Dumper.pm", {st_mode=S_IFREG|0644, st_size=45952, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Data/Dumper.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "#\n# Data/Dumper.pm\n#\n# convert p"..., 8192) = 8192 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Data/Dumper/Dumper.so", {st_mode=S_IFREG|0644, st_size=43712, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Data/Dumper/Dumper.bs", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/auto/Data/Dumper/Dumper.so", O_RDONLY|O_CLOEXEC) = 8 +61496 read(8, "\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\0"..., 832) = 832 +61496 newfstatat(8, "", {st_mode=S_IFREG|0644, st_size=43712, ...}, AT_EMPTY_PATH) = 0 +61496 mmap(NULL, 45632, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fac0a6f0000 +61496 mmap(0x7fac0a6f2000, 28672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x2000) = 0x7fac0a6f2000 +61496 mmap(0x7fac0a6f9000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x9000) = 0x7fac0a6f9000 +61496 mmap(0x7fac0a6fa000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x9000) = 0x7fac0a6fa000 +61496 close(8) = 0 +61496 mprotect(0x7fac0a6fa000, 4096, PROT_READ) = 0 +61496 brk(0x55855c30c000) = 0x55855c30c000 +61496 read(7, " call failed): $@\" if $@;\n }\n"..., 8192) = 8192 +61496 brk(0x55855c32d000) = 0x55855c32d000 +61496 brk(0x55855c34e000) = 0x55855c34e000 +61496 brk(0x55855c348000) = 0x55855c348000 +61496 read(7, "mp can push into @post, so we ho"..., 8192) = 8192 +61496 brk(0x55855c369000) = 0x55855c369000 +61496 lseek(7, 24333, SEEK_SET) = 24333 +61496 lseek(7, 0, SEEK_CUR) = 24333 +61496 close(7) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/Utility.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/Utility.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/Utility.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/Utility.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/Utility.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/Utility.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/Utility.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/Utility.pm", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/Utility.pmc", 0x7ffdd5528330, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/Utility.pm", {st_mode=S_IFREG|0644, st_size=14942, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/Utility.pm", O_RDONLY|O_CLOEXEC) = 7 +61496 ioctl(7, TCGETS, 0x7ffdd55280f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(7, 0, SEEK_CUR) = 0 +61496 read(7, "#\n# Utility.pm: library for sbui"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/Chroot.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/Chroot.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/Chroot.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/Chroot.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/Chroot.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/Chroot.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/Chroot.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/Chroot.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/Chroot.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/Chroot.pm", {st_mode=S_IFREG|0644, st_size=22495, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/Chroot.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "#\n# Chroot.pm: chroot library fo"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ChrootInfo.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ChrootInfo.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ChrootInfo.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ChrootInfo.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ChrootInfo.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ChrootInfo.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ChrootInfo.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ChrootInfo.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootInfo.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootInfo.pm", {st_mode=S_IFREG|0644, st_size=3707, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootInfo.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "#\n# ChrootInfo.pm: chroot utilit"..., 8192) = 3707 +61496 brk(0x55855c38a000) = 0x55855c38a000 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855c3ab000) = 0x55855c3ab000 +61496 read(9, "", 8192) = 0 +61496 close(9) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ChrootSetup.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ChrootSetup.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ChrootSetup.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ChrootSetup.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ChrootSetup.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ChrootSetup.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ChrootSetup.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ChrootSetup.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootSetup.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootSetup.pm", {st_mode=S_IFREG|0644, st_size=6363, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootSetup.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "#\n# ChrootSetup.pm: chroot maint"..., 8192) = 6363 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855c3cc000) = 0x55855c3cc000 +61496 read(9, "", 8192) = 0 +61496 close(9) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855c3ed000) = 0x55855c3ed000 +61496 read(8, "MMAND}->[0]\n\t\t\t . \"\\n\");\n\t\tretu"..., 8192) = 8192 +61496 brk(0x55855c40e000) = 0x55855c40e000 +61496 brk(0x55855c430000) = 0x55855c430000 +61496 read(8, "y $options = shift;\n\n\t$options->"..., 8192) = 6111 +61496 read(8, "", 8192) = 0 +61496 close(8) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Module/Load/Conditional.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Module/Load/Conditional.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Module/Load/Conditional.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Module/Load/Conditional.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Module/Load/Conditional.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Module/Load/Conditional.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Module/Load/Conditional.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Module/Load/Conditional.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Module/Load/Conditional.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Module/Load/Conditional.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Module/Load/Conditional.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Module/Load/Conditional.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Module/Load/Conditional.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Module/Load/Conditional.pm", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Module/Load/Conditional.pmc", 0x7ffdd5527c30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Module/Load/Conditional.pm", {st_mode=S_IFREG|0644, st_size=19315, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/Module/Load/Conditional.pm", O_RDONLY|O_CLOEXEC) = 8 +61496 ioctl(8, TCGETS, 0x7ffdd55279f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(8, 0, SEEK_CUR) = 0 +61496 read(8, "package Module::Load::Conditiona"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Module/Load.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Module/Load.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Module/Load.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Module/Load.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Module/Load.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Module/Load.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Module/Load.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Module/Load.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Module/Load.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Module/Load.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Module/Load.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Module/Load.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Module/Load.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Module/Load.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Module/Load.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Module/Load.pm", {st_mode=S_IFREG|0644, st_size=9103, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/Module/Load.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "package Module::Load;\n\nuse stric"..., 8192) = 8192 +61496 brk(0x55855c452000) = 0x55855c452000 +61496 brk(0x55855c474000) = 0x55855c474000 +61496 brk(0x55855c46b000) = 0x55855c46b000 +61496 lseek(9, 3211, SEEK_SET) = 3211 +61496 lseek(9, 0, SEEK_CUR) = 3211 +61496 close(9) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Params/Check.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Params/Check.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Params/Check.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Params/Check.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Params/Check.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Params/Check.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Params/Check.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Params/Check.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Params/Check.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Params/Check.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Params/Check.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Params/Check.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Params/Check.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Params/Check.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Params/Check.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Params/Check.pm", {st_mode=S_IFREG|0644, st_size=19330, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/Params/Check.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "package Params::Check;\n\nuse stri"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/Locale/Maketext/Simple.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Locale/Maketext/Simple.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Locale/Maketext/Simple.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Locale/Maketext/Simple.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Locale/Maketext/Simple.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Locale/Maketext/Simple.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Locale/Maketext/Simple.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Locale/Maketext/Simple.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Locale/Maketext/Simple.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Locale/Maketext/Simple.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Locale/Maketext/Simple.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Locale/Maketext/Simple.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Locale/Maketext/Simple.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Locale/Maketext/Simple.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Locale/Maketext/Simple.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Locale/Maketext/Simple.pm", {st_mode=S_IFREG|0644, st_size=9792, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/Locale/Maketext/Simple.pm", O_RDONLY|O_CLOEXEC) = 10 +61496 ioctl(10, TCGETS, 0x7ffdd5526bf0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(10, 0, SEEK_CUR) = 0 +61496 read(10, "package Locale::Maketext::Simple"..., 8192) = 8192 +61496 brk(0x55855c48c000) = 0x55855c48c000 +61496 read(10, "ggesting this module to be writt"..., 8192) = 1600 +61496 read(10, "", 8192) = 0 +61496 close(10) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Locale/Maketext/Lexicon.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Locale/Maketext/Lexicon.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Locale/Maketext/Lexicon.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Locale/Maketext/Lexicon.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Locale/Maketext/Lexicon.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Locale/Maketext/Lexicon.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Locale/Maketext/Lexicon.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Locale/Maketext/Lexicon.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Locale/Maketext/Lexicon.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Locale/Maketext/Lexicon.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Locale/Maketext/Lexicon.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Locale/Maketext/Lexicon.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Locale/Maketext/Lexicon.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Locale/Maketext/Lexicon.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Locale/Maketext/Lexicon.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Locale/Maketext/Lexicon.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/site_perl/Locale/Maketext/Lexicon.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/site_perl/Locale/Maketext/Lexicon.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 read(9, " next;\n }\n\n ### n"..., 8192) = 8192 +61496 read(9, " subroutine.\n\nThe default is 0;\n"..., 8192) = 2946 +61496 read(9, "", 8192) = 0 +61496 close(9) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Locale/Maketext/Lexicon.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Locale/Maketext/Lexicon.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Locale/Maketext/Lexicon.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Locale/Maketext/Lexicon.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Locale/Maketext/Lexicon.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Locale/Maketext/Lexicon.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Locale/Maketext/Lexicon.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Locale/Maketext/Lexicon.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Locale/Maketext/Lexicon.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Locale/Maketext/Lexicon.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Locale/Maketext/Lexicon.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Locale/Maketext/Lexicon.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Locale/Maketext/Lexicon.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Locale/Maketext/Lexicon.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Locale/Maketext/Lexicon.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Locale/Maketext/Lexicon.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/site_perl/Locale/Maketext/Lexicon.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/site_perl/Locale/Maketext/Lexicon.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/version.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/version.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/version.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/version.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/version.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/version.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/version.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/version.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/version.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/version.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/version.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/version.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/version.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/version.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/version.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/version.pm", {st_mode=S_IFREG|0644, st_size=1976, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/version.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "#!perl -w\npackage version;\n\nuse "..., 8192) = 1976 +61496 brk(0x55855c4ad000) = 0x55855c4ad000 +61496 read(9, "", 8192) = 0 +61496 close(9) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/version/regex.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/version/regex.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/version/regex.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/version/regex.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/version/regex.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/version/regex.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/version/regex.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/version/regex.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/version/regex.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/version/regex.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/version/regex.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/version/regex.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/version/regex.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/version/regex.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/version/regex.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/version/regex.pm", {st_mode=S_IFREG|0644, st_size=4072, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/version/regex.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "package version::regex;\n\nuse str"..., 8192) = 4072 +61496 read(9, "", 8192) = 0 +61496 close(9) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Module/Metadata.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Module/Metadata.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Module/Metadata.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Module/Metadata.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Module/Metadata.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Module/Metadata.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Module/Metadata.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Module/Metadata.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Module/Metadata.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Module/Metadata.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Module/Metadata.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/Module/Metadata.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Module/Metadata.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/Module/Metadata.pm", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Module/Metadata.pmc", 0x7ffdd5527530, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/Module/Metadata.pm", {st_mode=S_IFREG|0644, st_size=34199, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/Module/Metadata.pm", O_RDONLY|O_CLOEXEC) = 9 +61496 ioctl(9, TCGETS, 0x7ffdd55272f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(9, 0, SEEK_CUR) = 0 +61496 read(9, "# -*- mode: cperl; tab-width: 8;"..., 8192) = 8192 +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Find.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/File/Find.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Find.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/File/Find.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Find.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/File/Find.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Find.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/File/Find.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Find.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/File/Find.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Find.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/File/Find.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/File/Find.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/File/Find.pm", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/File/Find.pmc", 0x7ffdd5526e30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl/5.36/File/Find.pm", {st_mode=S_IFREG|0644, st_size=33007, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl/5.36/File/Find.pm", O_RDONLY|O_CLOEXEC) = 10 +61496 ioctl(10, TCGETS, 0x7ffdd5526bf0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(10, 0, SEEK_CUR) = 0 +61496 read(10, "package File::Find;\nuse 5.006;\nu"..., 8192) = 8192 +61496 brk(0x55855c4ce000) = 0x55855c4ce000 +61496 brk(0x55855c4ef000) = 0x55855c4ef000 +61496 brk(0x55855c4e9000) = 0x55855c4e9000 +61496 read(10, "( $udir ) = $p_dir =~ m|$untaint"..., 8192) = 8192 +61496 brk(0x55855c50a000) = 0x55855c50a000 +61496 read(10, ":warnif \"Can't cd to $updir_loc:"..., 8192) = 8192 +61496 brk(0x55855c52b000) = 0x55855c52b000 +61496 lseek(10, 21532, SEEK_SET) = 21532 +61496 lseek(10, 0, SEEK_CUR) = 21532 +61496 close(10) = 0 +61496 read(9, ".pm\") eq lc($mapped_filename);\n "..., 8192) = 8192 +61496 brk(0x55855c54c000) = 0x55855c54c000 +61496 read(9, " # character (which include"..., 8192) = 8192 +61496 brk(0x55855c56e000) = 0x55855c56e000 +61496 brk(0x55855c58f000) = 0x55855c58f000 +61496 lseek(9, 24337, SEEK_SET) = 24337 +61496 lseek(9, 0, SEEK_CUR) = 24337 +61496 close(9) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 read(8, " }\n }\n }"..., 8192) = 8192 +61496 read(8, "NG=$_]}keys(%INC)),qq[\\n])';\n "..., 8192) = 2931 +61496 lseek(8, 16735, SEEK_SET) = 16735 +61496 lseek(8, 0, SEEK_CUR) = 16735 +61496 close(8) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 rt_sigprocmask(SIG_BLOCK, [INT], [], 8) = 0 +61496 rt_sigaction(SIGINT, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 +61496 rt_sigprocmask(SIG_BLOCK, [TERM], [], 8) = 0 +61496 rt_sigaction(SIGTERM, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 +61496 rt_sigprocmask(SIG_BLOCK, [ALRM], [], 8) = 0 +61496 rt_sigaction(SIGALRM, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 +61496 rt_sigprocmask(SIG_BLOCK, [PIPE], [], 8) = 0 +61496 rt_sigaction(SIGPIPE, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 +61496 brk(0x55855c5b2000) = 0x55855c5b2000 +61496 read(7, "\t\t}\n\t\t\t\t\tprint \".]\";\n\t\t\t\t\tprintf"..., 8192) = 6750 +61496 brk(0x55855c5d3000) = 0x55855c5d3000 +61496 read(7, "", 8192) = 0 +61496 close(7) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855c5f4000) = 0x55855c5f4000 +61496 read(5, "OUT);\n\t\t\t\t}\n\n\t\t\t\treturn $retval;"..., 8192) = 5805 +61496 brk(0x55855c615000) = 0x55855c615000 +61496 read(5, "", 8192) = 0 +61496 close(5) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/BuildInfo.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Dpkg/BuildInfo.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/BuildInfo.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Dpkg/BuildInfo.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/BuildInfo.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Dpkg/BuildInfo.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/BuildInfo.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Dpkg/BuildInfo.pm", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/BuildInfo.pmc", 0x7ffdd5528a30, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Dpkg/BuildInfo.pm", {st_mode=S_IFREG|0644, st_size=2934, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Dpkg/BuildInfo.pm", O_RDONLY|O_CLOEXEC) = 5 +61496 ioctl(5, TCGETS, 0x7ffdd55287f0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(5, 0, SEEK_CUR) = 0 +61496 read(5, "# Copyright \302\251 2016-2022 Guillem"..., 8192) = 2934 +61496 read(5, "", 8192) = 0 +61496 close(5) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855c636000) = 0x55855c636000 +61496 read(4, "entry = shift;\n\t\t\t\tmy $key = $"..., 8192) = 8192 +61496 read(4, "e order of entries matters.',\n\t\t"..., 8192) = 8192 +61496 brk(0x55855c657000) = 0x55855c657000 +61496 read(4, "G_DIR');\n\t\t\t\tmy $log_dir_availab"..., 8192) = 8192 +61496 brk(0x55855c678000) = 0x55855c678000 +61496 read(4, "ig/sbuild/config.pl\n\t\t\t# Only 1."..., 8192) = 8192 +61496 read(4, " to dpkg-buildpackage and other "..., 8192) = 8192 +61496 read(4, "nflicts-indep']\n\t\t},\n\t\t'CROSSBUI"..., 8192) = 8192 +61496 brk(0x55855c699000) = 0x55855c699000 +61496 read(4, " => 'Path to piuparts binary',\n"..., 8192) = 8192 +61496 read(4, "g2\\'],\n [\\'bar\\', \\'arg1\\"..., 8192) = 8079 +61496 brk(0x55855c6bb000) = 0x55855c6bb000 +61496 read(4, "", 8192) = 0 +61496 close(4) = 0 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855c6dc000) = 0x55855c6dc000 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ChrootPlain.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ChrootPlain.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ChrootPlain.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ChrootPlain.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ChrootPlain.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ChrootPlain.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ChrootPlain.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ChrootPlain.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootPlain.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootPlain.pm", {st_mode=S_IFREG|0644, st_size=3750, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootPlain.pm", O_RDONLY|O_CLOEXEC) = 4 +61496 ioctl(4, TCGETS, 0x7ffdd5528ef0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(4, 0, SEEK_CUR) = 0 +61496 read(4, "#\n# Chroot.pm: chroot library fo"..., 8192) = 3750 +61496 brk(0x55855c6fe000) = 0x55855c6fe000 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 read(4, "", 8192) = 0 +61496 close(4) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ChrootUnshare.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ChrootUnshare.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ChrootUnshare.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ChrootUnshare.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ChrootUnshare.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ChrootUnshare.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ChrootUnshare.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ChrootUnshare.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootUnshare.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootUnshare.pm", {st_mode=S_IFREG|0644, st_size=28163, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootUnshare.pm", O_RDONLY|O_CLOEXEC) = 4 +61496 ioctl(4, TCGETS, 0x7ffdd5528ef0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(4, 0, SEEK_CUR) = 0 +61496 read(4, "#\n# ChrootUnshare.pm: chroot lib"..., 8192) = 8192 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 brk(0x55855c720000) = 0x55855c720000 +61496 read(4, "hroot but not\n\t# keep the tarbal"..., 8192) = 8192 +61496 brk(0x55855c743000) = 0x55855c743000 +61496 read(4, " 7;\n\t\t\t\tmy $newchksum = sprintf("..., 8192) = 8192 +61496 brk(0x55855c766000) = 0x55855c766000 +61496 read(4, " '--', $self->get('Session ID'))"..., 8192) = 3587 +61496 brk(0x55855c788000) = 0x55855c788000 +61496 read(4, "", 8192) = 0 +61496 close(4) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ChrootRoot.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/Sbuild/ChrootRoot.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ChrootRoot.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/Sbuild/ChrootRoot.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ChrootRoot.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/Sbuild/ChrootRoot.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ChrootRoot.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/Sbuild/ChrootRoot.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootRoot.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootRoot.pm", {st_mode=S_IFREG|0644, st_size=1392, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/share/perl5/Sbuild/ChrootRoot.pm", O_RDONLY|O_CLOEXEC) = 4 +61496 ioctl(4, TCGETS, 0x7ffdd5528ef0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(4, 0, SEEK_CUR) = 0 +61496 read(4, "#\n# ChrootRoot.pm: Run commands "..., 8192) = 1392 +61496 getuid() = 1000 +61496 geteuid() = 1000 +61496 getgid() = 1000 +61496 getegid() = 1000 +61496 read(4, "", 8192) = 0 +61496 close(4) = 0 +61496 newfstatat(AT_FDCWD, "/etc/perl/IPC/Open3.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/etc/perl/IPC/Open3.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IPC/Open3.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/IPC/Open3.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IPC/Open3.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/IPC/Open3.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IPC/Open3.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/IPC/Open3.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IPC/Open3.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/share/perl5/IPC/Open3.pm", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IPC/Open3.pmc", 0x7ffdd5529130, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IPC/Open3.pm", {st_mode=S_IFREG|0644, st_size=9013, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/IPC/Open3.pm", O_RDONLY|O_CLOEXEC) = 4 +61496 ioctl(4, TCGETS, 0x7ffdd5528ef0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(4, 0, SEEK_CUR) = 0 +61496 read(4, "package IPC::Open3;\n\nuse strict;"..., 8192) = 8192 +61496 brk(0x55855c7ab000) = 0x55855c7ab000 +61496 read(4, "d: $!\";\n\t $pid = fork;\n\t d"..., 8192) = 821 +61496 read(4, "", 8192) = 0 +61496 close(4) = 0 +61496 read(3, "g the directory thrice. If the t"..., 8192) = 8192 +61496 brk(0x55855c7ce000) = 0x55855c7ce000 +61496 read(3, "z|tlz|txz|tar(\\.(gz|bz2|lz|xz))?"..., 8192) = 8083 +61496 brk(0x55855c7f1000) = 0x55855c7f1000 +61496 read(3, "", 8192) = 0 +61496 close(3) = 0 +61496 umask(022) = 022 +61496 getuid() = 1000 +61496 socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3 +61496 connect(3, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) +61496 close(3) = 0 +61496 socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3 +61496 connect(3, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) +61496 close(3) = 0 +61496 newfstatat(AT_FDCWD, "/etc/nsswitch.conf", {st_mode=S_IFREG|0644, st_size=505, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=505, ...}, AT_EMPTY_PATH) = 0 +61496 read(3, "# /etc/nsswitch.conf\n#\n# Example"..., 4096) = 505 +61496 read(3, "", 4096) = 0 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=505, ...}, AT_EMPTY_PATH) = 0 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/etc/passwd", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1422, ...}, AT_EMPTY_PATH) = 0 +61496 lseek(3, 0, SEEK_SET) = 0 +61496 read(3, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 1422 +61496 close(3) = 0 +61496 newfstatat(AT_FDCWD, "/etc/nsswitch.conf", {st_mode=S_IFREG|0644, st_size=505, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/etc/shadow", O_RDONLY|O_CLOEXEC) = -1 EACCES (Permission denied) +61496 pipe2([3, 4], O_CLOEXEC) = 0 +61496 fcntl(3, F_GETFD) = 0x1 (flags FD_CLOEXEC) +61496 pipe2([5, 7], O_CLOEXEC) = 0 +61496 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fac0a81be50) = 61497 +61496 close(7) = 0 +61496 close(4) = 0 +61497 set_robust_list(0x7fac0a81be60, 24) = 0 +61496 read(5, +61497 close(5) = 0 +61497 dup2(4, 1) = 1 +61497 close(4) = 0 +61497 close(3) = 0 +61497 rt_sigaction(SIGFPE, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_IGN, sa_mask=[FPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7fac0a895050}, 8) = 0 +61497 execve("/home/debian/.cargo/bin/hostname", ["hostname", "-f"], 0x55855b46c570 /* 29 vars */) = -1 ENOENT (No such file or directory) +61497 execve("/usr/local/bin/hostname", ["hostname", "-f"], 0x55855b46c570 /* 29 vars */) = -1 ENOENT (No such file or directory) +61497 execve("/usr/bin/hostname", ["hostname", "-f"], 0x55855b46c570 /* 29 vars */) = 0 +61496 <... read resumed>"", 4) = 0 +61497 brk(NULL +61496 close(5 +61497 <... brk resumed>) = 0x557bca661000 +61496 <... close resumed>) = 0 +61496 fcntl(3, F_SETFD, FD_CLOEXEC) = 0 +61497 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 +61496 ioctl(3, TCGETS, 0x7ffdd55296a0) = -1 ENOTTY (Inappropriate ioctl for device) +61497 <... mmap resumed>) = 0x7f839d2b4000 +61496 lseek(3, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) +61497 access("/etc/ld.so.preload", R_OK +61496 newfstatat(3, "", {st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61497 <... access resumed>) = -1 ENOENT (No such file or directory) +61496 read(3, +61497 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 +61497 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=40283, ...}, AT_EMPTY_PATH) = 0 +61497 mmap(NULL, 40283, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f839d2aa000 +61497 close(3) = 0 +61497 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 +61497 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20t\2\0\0\0\0\0"..., 832) = 832 +61497 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61497 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1926232, ...}, AT_EMPTY_PATH) = 0 +61497 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61497 mmap(NULL, 1974096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f839d0c8000 +61497 mmap(0x7f839d0ee000, 1400832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f839d0ee000 +61497 mmap(0x7f839d244000, 339968, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17c000) = 0x7f839d244000 +61497 mmap(0x7f839d297000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cf000) = 0x7f839d297000 +61497 mmap(0x7f839d29d000, 53072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f839d29d000 +61497 close(3) = 0 +61497 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f839d0c5000 +61497 arch_prctl(ARCH_SET_FS, 0x7f839d0c5740) = 0 +61497 set_tid_address(0x7f839d0c5a10) = 61497 +61497 set_robust_list(0x7f839d0c5a20, 24) = 0 +61497 rseq(0x7f839d0c6060, 0x20, 0, 0x53053053) = 0 +61497 mprotect(0x7f839d297000, 16384, PROT_READ) = 0 +61497 mprotect(0x557bb51d0000, 4096, PROT_READ) = 0 +61497 mprotect(0x7f839d2e7000, 8192, PROT_READ) = 0 +61497 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 +61497 munmap(0x7f839d2aa000, 40283) = 0 +61497 getrandom("\xcd\xb9\x0b\x73\x44\xff\x07\xce", 8, GRND_NONBLOCK) = 8 +61497 brk(NULL) = 0x557bca661000 +61497 brk(0x557bca682000) = 0x557bca682000 +61497 uname({sysname="Linux", nodename="vps-77de952e", ...}) = 0 +61497 socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3 +61497 connect(3, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) +61497 close(3) = 0 +61497 socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3 +61497 connect(3, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) +61497 close(3) = 0 +61497 newfstatat(AT_FDCWD, "/etc/nsswitch.conf", {st_mode=S_IFREG|0644, st_size=505, ...}, 0) = 0 +61497 newfstatat(AT_FDCWD, "/", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61497 openat(AT_FDCWD, "/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 3 +61497 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=505, ...}, AT_EMPTY_PATH) = 0 +61497 read(3, "# /etc/nsswitch.conf\n#\n# Example"..., 4096) = 505 +61497 read(3, "", 4096) = 0 +61497 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=505, ...}, AT_EMPTY_PATH) = 0 +61497 close(3) = 0 +61497 newfstatat(AT_FDCWD, "/etc/resolv.conf", {st_mode=S_IFREG|0644, st_size=920, ...}, 0) = 0 +61497 openat(AT_FDCWD, "/etc/host.conf", O_RDONLY|O_CLOEXEC) = 3 +61497 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=9, ...}, AT_EMPTY_PATH) = 0 +61497 read(3, "multi on\n", 4096) = 9 +61497 read(3, "", 4096) = 0 +61497 close(3) = 0 +61497 futex(0x7f839d2a442c, FUTEX_WAKE_PRIVATE, 2147483647) = 0 +61497 openat(AT_FDCWD, "/etc/resolv.conf", O_RDONLY|O_CLOEXEC) = 3 +61497 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=920, ...}, AT_EMPTY_PATH) = 0 +61497 read(3, "# This is /run/systemd/resolve/s"..., 4096) = 920 +61497 read(3, "", 4096) = 0 +61497 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=920, ...}, AT_EMPTY_PATH) = 0 +61497 close(3) = 0 +61497 openat(AT_FDCWD, "/etc/hosts", O_RDONLY|O_CLOEXEC) = 3 +61497 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=156, ...}, AT_EMPTY_PATH) = 0 +61497 lseek(3, 0, SEEK_SET) = 0 +61497 read(3, "127.0.0.1\tlocalhost\n::1\tlocalhos"..., 4096) = 156 +61497 read(3, "", 4096) = 0 +61497 close(3) = 0 +61497 newfstatat(1, "", {st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61497 write(1, "vps-77de952e.vps.ovh.net\n", 25) = 25 +61496 <... read resumed>"vps-77de952e.vps.ovh.net\n", 8192) = 25 +61497 exit_group(0 +61496 read(3, +61497 <... exit_group resumed>) = ? +61496 <... read resumed>"", 8192) = 0 +61497 +++ exited with 0 +++ +61496 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=61497, si_uid=1000, si_status=0, si_utime=0, si_stime=0} --- +61496 newfstatat(3, "", {st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61496 close(3) = 0 +61496 wait4(61497, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 61497 +61496 pipe2([3, 4], O_CLOEXEC) = 0 +61496 pipe2([5, 7], O_CLOEXEC) = 0 +61496 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fac0a81be50) = 61498 +61496 close(7) = 0 +61496 close(4 +61498 set_robust_list(0x7fac0a81be60, 24 +61496 <... close resumed>) = 0 +61498 <... set_robust_list resumed>) = 0 +61496 read(5, +61498 close(5) = 0 +61498 dup2(4, 1) = 1 +61498 close(4) = 0 +61498 close(3) = 0 +61498 rt_sigaction(SIGFPE, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_IGN, sa_mask=[FPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7fac0a895050}, 8) = 0 +61498 execve("/home/debian/.cargo/bin/dpkg", ["dpkg", "--print-architecture"], 0x55855b46c570 /* 29 vars */) = -1 ENOENT (No such file or directory) +61498 execve("/usr/local/bin/dpkg", ["dpkg", "--print-architecture"], 0x55855b46c570 /* 29 vars */) = -1 ENOENT (No such file or directory) +61498 execve("/usr/bin/dpkg", ["dpkg", "--print-architecture"], 0x55855b46c570 /* 29 vars */) = 0 +61496 <... read resumed>"", 4) = 0 +61496 close(5 +61498 brk(NULL +61496 <... close resumed>) = 0 +61498 <... brk resumed>) = 0x557f47e0d000 +61496 fcntl(3, F_SETFD, FD_CLOEXEC) = 0 +61496 ioctl(3, TCGETS +61498 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 +61496 <... ioctl resumed>, 0x7ffdd55296a0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(3, 0, SEEK_CUR +61498 <... mmap resumed>) = 0x7f20f558d000 +61496 <... lseek resumed>) = -1 ESPIPE (Illegal seek) +61498 access("/etc/ld.so.preload", R_OK +61496 newfstatat(3, "", +61498 <... access resumed>) = -1 ENOENT (No such file or directory) +61496 <... newfstatat resumed>{st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61498 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC +61496 read(3, +61498 <... openat resumed>) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=40283, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 40283, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f20f5583000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libmd.so.0", O_RDONLY|O_CLOEXEC) = 3 +61498 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\0"..., 832) = 832 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=47312, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 49384, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f20f5576000 +61498 mmap(0x7f20f5578000, 28672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f20f5578000 +61498 mmap(0x7f20f557f000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7f20f557f000 +61498 mmap(0x7f20f5581000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7f20f5581000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libselinux.so.1", O_RDONLY|O_CLOEXEC) = 3 +61498 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\0"..., 832) = 832 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=174312, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 186064, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f20f5548000 +61498 mmap(0x7f20f554f000, 110592, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f20f554f000 +61498 mmap(0x7f20f556a000, 32768, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x22000) = 0x7f20f556a000 +61498 mmap(0x7f20f5572000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x29000) = 0x7f20f5572000 +61498 mmap(0x7f20f5574000, 5840, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f20f5574000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 +61498 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20t\2\0\0\0\0\0"..., 832) = 832 +61498 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61498 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1926232, ...}, AT_EMPTY_PATH) = 0 +61498 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61498 mmap(NULL, 1974096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f20f5366000 +61498 mmap(0x7f20f538c000, 1400832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f20f538c000 +61498 mmap(0x7f20f54e2000, 339968, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17c000) = 0x7f20f54e2000 +61498 mmap(0x7f20f5535000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cf000) = 0x7f20f5535000 +61498 mmap(0x7f20f553b000, 53072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f20f553b000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = 3 +61498 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\0"..., 832) = 832 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=629384, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 627592, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f20f52cc000 +61498 mmap(0x7f20f52ce000, 438272, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f20f52ce000 +61498 mmap(0x7f20f5339000, 176128, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6d000) = 0x7f20f5339000 +61498 mmap(0x7f20f5364000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x98000) = 0x7f20f5364000 +61498 close(3) = 0 +61498 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f20f52ca000 +61498 arch_prctl(ARCH_SET_FS, 0x7f20f52cadc0) = 0 +61498 set_tid_address(0x7f20f52cb090) = 61498 +61498 set_robust_list(0x7f20f52cb0a0, 24) = 0 +61498 rseq(0x7f20f52cb6e0, 0x20, 0, 0x53053053) = 0 +61498 mprotect(0x7f20f5535000, 16384, PROT_READ) = 0 +61498 mprotect(0x7f20f5364000, 4096, PROT_READ) = 0 +61498 mprotect(0x7f20f5572000, 4096, PROT_READ) = 0 +61498 mprotect(0x7f20f5581000, 4096, PROT_READ) = 0 +61498 mprotect(0x557f0a4ba000, 12288, PROT_READ) = 0 +61498 mprotect(0x7f20f55c0000, 8192, PROT_READ) = 0 +61498 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 +61498 munmap(0x7f20f5583000, 40283) = 0 +61498 statfs("/sys/fs/selinux", 0x7ffcb731ec10) = -1 ENOENT (No such file or directory) +61498 statfs("/selinux", 0x7ffcb731ec10) = -1 ENOENT (No such file or directory) +61498 getrandom("\x56\x5d\xff\x24\x73\x32\x2b\xd5", 8, GRND_NONBLOCK) = 8 +61498 brk(NULL) = 0x557f47e0d000 +61498 brk(0x557f47e2e000) = 0x557f47e2e000 +61498 openat(AT_FDCWD, "/proc/filesystems", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0444, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61498 read(3, "nodev\tsysfs\nnodev\ttmpfs\nnodev\tbd"..., 1024) = 353 +61498 read(3, "", 1024) = 0 +61498 close(3) = 0 +61498 access("/etc/selinux/config", F_OK) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=2996, ...}, AT_EMPTY_PATH) = 0 +61498 read(3, "# Locale name alias data base.\n#"..., 4096) = 2996 +61498 read(3, "", 4096) = 0 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=258, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 258, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f20f558c000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", O_RDONLY) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=27028, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 27028, PROT_READ, MAP_SHARED, 3, 0) = 0x7f20f5585000 +61498 close(3) = 0 +61498 futex(0x7f20f553aa4c, FUTEX_WAKE_PRIVATE, 2147483647) = 0 +61498 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=23, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 23, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f20f5584000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=47, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 47, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f20f5583000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=127, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 127, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f20f52c9000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NAME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NAME", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=62, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 62, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f20f52c8000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_PAPER", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_PAPER", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=34, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 34, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f20f52c7000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=4096, ...}, AT_EMPTY_PATH) = 0 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=48, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 48, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f20f52c6000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=270, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 270, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f20f52c5000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1406, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 1406, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f20f52c4000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TIME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TIME", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=3360, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 3360, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f20f52c3000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=50, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 50, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f20f52c2000 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=353616, ...}, AT_EMPTY_PATH) = 0 +61498 mmap(NULL, 353616, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f20f526b000 +61498 close(3) = 0 +61498 ioctl(1, TCGETS, 0x7ffcb731eb90) = -1 ENOTTY (Inappropriate ioctl for device) +61498 umask(022) = 022 +61498 openat(AT_FDCWD, "/etc/dpkg/dpkg.cfg.d", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3 +61498 newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=4096, ...}, AT_EMPTY_PATH) = 0 +61498 getdents64(3, 0x557f47e11080 /* 2 entries */, 32768) = 48 +61498 getdents64(3, 0x557f47e11080 /* 0 entries */, 32768) = 0 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/etc/dpkg/dpkg.cfg", O_RDONLY) = 3 +61498 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=446, ...}, AT_EMPTY_PATH) = 0 +61498 read(3, "# dpkg configuration file\n#\n# Th"..., 4096) = 446 +61498 read(3, "", 4096) = 0 +61498 close(3) = 0 +61498 openat(AT_FDCWD, "/home/debian/.dpkg.cfg", O_RDONLY) = -1 ENOENT (No such file or directory) +61498 getuid() = 1000 +61498 newfstatat(1, "", {st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61498 write(1, "amd64\n", 6) = 6 +61498 openat(AT_FDCWD, "/usr/share/locale/C.UTF-8/LC_MESSAGES/dpkg.mo", O_RDONLY +61496 <... read resumed>"amd64\n", 8192) = 6 +61498 <... openat resumed>) = -1 ENOENT (No such file or directory) +61496 read(3, +61498 openat(AT_FDCWD, "/usr/share/locale/C.utf8/LC_MESSAGES/dpkg.mo", O_RDONLY) = -1 ENOENT (No such file or directory) +61498 openat(AT_FDCWD, "/usr/share/locale/C/LC_MESSAGES/dpkg.mo", O_RDONLY) = -1 ENOENT (No such file or directory) +61498 exit_group(0) = ? +61496 <... read resumed>"", 8192) = 0 +61498 +++ exited with 0 +++ +61496 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=61498, si_uid=1000, si_status=0, si_utime=0, si_stime=0} --- +61496 newfstatat(3, "", {st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61496 close(3) = 0 +61496 wait4(61498, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 61498 +61496 brk(0x55855c812000) = 0x55855c812000 +61496 ioctl(0, TCGETS, {c_iflag=ICRNL|IXON|IUTF8, c_oflag=NL0|CR0|TAB0|BS0|VT0|FF0|OPOST|ONLCR, c_cflag=B38400|CS8|CREAD, c_lflag=ISIG|ICANON|ECHO|ECHOE|ECHOK|IEXTEN|ECHOCTL|ECHOKE, ...}) = 0 +61496 ioctl(1, TCGETS, {c_iflag=ICRNL|IXON|IUTF8, c_oflag=NL0|CR0|TAB0|BS0|VT0|FF0|OPOST|ONLCR, c_cflag=B38400|CS8|CREAD, c_lflag=ISIG|ICANON|ECHO|ECHOE|ECHOK|IEXTEN|ECHOCTL|ECHOKE, ...}) = 0 +61496 newfstatat(AT_FDCWD, "/home/debian/.config/sbuild/config.pl", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/home/debian/.sbuildrc", {st_mode=S_IFREG|0644, st_size=536, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 write(1, "I: consider moving your ~/.sbuil"..., 77) = 77 +61496 brk(0x55855c836000) = 0x55855c836000 +61496 brk(0x55855c831000) = 0x55855c831000 +61496 brk(0x55855c853000) = 0x55855c853000 +61496 brk(0x55855c875000) = 0x55855c875000 +61496 newfstatat(AT_FDCWD, "/etc/sbuild/sbuild.conf", {st_mode=S_IFREG|0644, st_size=46865, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 getegid() = 1000 +61496 getgroups(0, NULL) = 11 +61496 getgroups(11, [4, 20, 24, 25, 27, 29, 30, 44, 46, 110, 1000]) = 11 +61496 pipe2([3, 4], O_CLOEXEC) = 0 +61496 pipe2([5, 7], O_CLOEXEC) = 0 +61496 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fac0a81be50) = 61499 +61496 close(7) = 0 +61496 close(4 +61499 set_robust_list(0x7fac0a81be60, 24 +61496 <... close resumed>) = 0 +61499 <... set_robust_list resumed>) = 0 +61496 read(5, +61499 close(5) = 0 +61499 dup2(4, 1) = 1 +61499 close(4) = 0 +61499 close(3) = 0 +61499 rt_sigaction(SIGFPE, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_IGN, sa_mask=[FPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7fac0a895050}, 8) = 0 +61499 execve("/bin/sh", ["sh", "-c", "cat \"/etc/sbuild/sbuild.conf\""], 0x55855b46c570 /* 29 vars */ +61496 <... read resumed>"", 4) = 0 +61496 close(5 +61499 <... execve resumed>) = 0 +61496 <... close resumed>) = 0 +61496 fcntl(3, F_SETFD, FD_CLOEXEC +61499 brk(NULL +61496 <... fcntl resumed>) = 0 +61499 <... brk resumed>) = 0x5568ef491000 +61496 ioctl(3, TCGETS, 0x7ffdd55296a0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(3, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) +61499 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 +61496 newfstatat(3, "", +61499 <... mmap resumed>) = 0x7f528bdb3000 +61496 <... newfstatat resumed>{st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61499 access("/etc/ld.so.preload", R_OK +61496 read(3, +61499 <... access resumed>) = -1 ENOENT (No such file or directory) +61499 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 +61499 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=40283, ...}, AT_EMPTY_PATH) = 0 +61499 mmap(NULL, 40283, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f528bda9000 +61499 close(3) = 0 +61499 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 +61499 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20t\2\0\0\0\0\0"..., 832) = 832 +61499 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61499 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1926232, ...}, AT_EMPTY_PATH) = 0 +61499 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61499 mmap(NULL, 1974096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f528bbc7000 +61499 mmap(0x7f528bbed000, 1400832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f528bbed000 +61499 mmap(0x7f528bd43000, 339968, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17c000) = 0x7f528bd43000 +61499 mmap(0x7f528bd96000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cf000) = 0x7f528bd96000 +61499 mmap(0x7f528bd9c000, 53072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f528bd9c000 +61499 close(3) = 0 +61499 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f528bbc4000 +61499 arch_prctl(ARCH_SET_FS, 0x7f528bbc4740) = 0 +61499 set_tid_address(0x7f528bbc4a10) = 61499 +61499 set_robust_list(0x7f528bbc4a20, 24) = 0 +61499 rseq(0x7f528bbc5060, 0x20, 0, 0x53053053) = 0 +61499 mprotect(0x7f528bd96000, 16384, PROT_READ) = 0 +61499 mprotect(0x5568cb57b000, 8192, PROT_READ) = 0 +61499 mprotect(0x7f528bde6000, 8192, PROT_READ) = 0 +61499 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 +61499 munmap(0x7f528bda9000, 40283) = 0 +61499 getuid() = 1000 +61499 getgid() = 1000 +61499 getpid() = 61499 +61499 rt_sigaction(SIGCHLD, {sa_handler=0x5568cb570dc0, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7f528bc03050}, NULL, 8) = 0 +61499 geteuid() = 1000 +61499 getrandom("\xe9\x1f\x76\xf2\x93\xd8\x57\xef", 8, GRND_NONBLOCK) = 8 +61499 brk(NULL) = 0x5568ef491000 +61499 brk(0x5568ef4b2000) = 0x5568ef4b2000 +61499 getppid() = 61496 +61499 newfstatat(AT_FDCWD, "/home/debian/workspace/eth-nodes/upcoming/noble/amd64/eth-node-teku/25.9.1-1", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61499 newfstatat(AT_FDCWD, ".", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61499 geteuid() = 1000 +61499 getegid() = 1000 +61499 rt_sigaction(SIGINT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61499 rt_sigaction(SIGINT, {sa_handler=0x5568cb570dc0, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7f528bc03050}, NULL, 8) = 0 +61499 rt_sigaction(SIGQUIT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61499 rt_sigaction(SIGQUIT, {sa_handler=SIG_DFL, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7f528bc03050}, NULL, 8) = 0 +61499 rt_sigaction(SIGTERM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61499 rt_sigaction(SIGTERM, {sa_handler=SIG_DFL, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7f528bc03050}, NULL, 8) = 0 +61499 newfstatat(AT_FDCWD, "/home/debian/.cargo/bin/cat", 0x7ffe579ce450, 0) = -1 ENOENT (No such file or directory) +61499 newfstatat(AT_FDCWD, "/usr/local/bin/cat", 0x7ffe579ce450, 0) = -1 ENOENT (No such file or directory) +61499 newfstatat(AT_FDCWD, "/usr/bin/cat", {st_mode=S_IFREG|0755, st_size=44016, ...}, 0) = 0 +61499 rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], NULL, 8) = 0 +61499 vfork( +61500 rt_sigprocmask(SIG_SETMASK, [], ~[KILL STOP RTMIN RT_1], 8) = 0 +61500 execve("/usr/bin/cat", ["cat", "/etc/sbuild/sbuild.conf"], 0x5568ef491a68 /* 29 vars */ +61499 <... vfork resumed>) = 61500 +61499 rt_sigprocmask(SIG_SETMASK, [], ~[KILL STOP RTMIN RT_1], 8) = 0 +61499 wait4(-1, +61500 <... execve resumed>) = 0 +61500 brk(NULL) = 0x5619e807d000 +61500 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fda69e8c000 +61500 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=40283, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 40283, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fda69e82000 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 +61500 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20t\2\0\0\0\0\0"..., 832) = 832 +61500 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61500 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1926232, ...}, AT_EMPTY_PATH) = 0 +61500 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61500 mmap(NULL, 1974096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fda69ca0000 +61500 mmap(0x7fda69cc6000, 1400832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7fda69cc6000 +61500 mmap(0x7fda69e1c000, 339968, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17c000) = 0x7fda69e1c000 +61500 mmap(0x7fda69e6f000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cf000) = 0x7fda69e6f000 +61500 mmap(0x7fda69e75000, 53072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fda69e75000 +61500 close(3) = 0 +61500 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fda69c9d000 +61500 arch_prctl(ARCH_SET_FS, 0x7fda69c9d740) = 0 +61500 set_tid_address(0x7fda69c9da10) = 61500 +61500 set_robust_list(0x7fda69c9da20, 24) = 0 +61500 rseq(0x7fda69c9e060, 0x20, 0, 0x53053053) = 0 +61500 mprotect(0x7fda69e6f000, 16384, PROT_READ) = 0 +61500 mprotect(0x5619e0216000, 4096, PROT_READ) = 0 +61500 mprotect(0x7fda69ebf000, 8192, PROT_READ) = 0 +61500 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 +61500 munmap(0x7fda69e82000, 40283) = 0 +61500 getrandom("\x62\x4e\x55\x98\x79\x7e\xd3\x53", 8, GRND_NONBLOCK) = 8 +61500 brk(NULL) = 0x5619e807d000 +61500 brk(0x5619e809e000) = 0x5619e809e000 +61500 openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=2996, ...}, AT_EMPTY_PATH) = 0 +61500 read(3, "# Locale name alias data base.\n#"..., 4096) = 2996 +61500 read(3, "", 4096) = 0 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=258, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 258, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fda69e8b000 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", O_RDONLY) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=27028, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 27028, PROT_READ, MAP_SHARED, 3, 0) = 0x7fda69e84000 +61500 close(3) = 0 +61500 futex(0x7fda69e74a4c, FUTEX_WAKE_PRIVATE, 2147483647) = 0 +61500 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=23, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 23, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fda69e83000 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=47, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 47, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fda69e82000 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=127, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 127, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fda69c9c000 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NAME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NAME", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=62, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 62, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fda69c9b000 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_PAPER", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_PAPER", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=34, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 34, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fda69c9a000 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=4096, ...}, AT_EMPTY_PATH) = 0 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=48, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 48, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fda69c99000 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=270, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 270, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fda69c98000 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1406, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 1406, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fda69c97000 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TIME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TIME", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=3360, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 3360, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fda69c96000 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=50, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 50, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fda69c95000 +61500 close(3) = 0 +61500 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61500 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=353616, ...}, AT_EMPTY_PATH) = 0 +61500 mmap(NULL, 353616, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fda69c3e000 +61500 close(3) = 0 +61500 newfstatat(1, "", {st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61500 openat(AT_FDCWD, "/etc/sbuild/sbuild.conf", O_RDONLY) = 3 +61500 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=46865, ...}, AT_EMPTY_PATH) = 0 +61500 fadvise64(3, 0, 0, POSIX_FADV_SEQUENTIAL) = 0 +61500 mmap(NULL, 139264, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fda69c1c000 +61500 read(3, "# sbuild.conf: sbuild settings. "..., 131072) = 46865 +61500 write(1, "# sbuild.conf: sbuild settings. "..., 46865) = 46865 +61500 read(3, "", 131072) = 0 +61496 <... read resumed>"# sbuild.conf: sbuild settings. "..., 8192) = 8192 +61500 munmap(0x7fda69c1c000, 139264 +61496 read(3, "d by date -R). If set to the def"..., 8192) = 8192 +61500 <... munmap resumed>) = 0 +61496 read(3, +61500 close(3 +61496 <... read resumed>" Mechanism to use for chroot vir"..., 8192) = 8192 +61500 <... close resumed>) = 0 +61496 read(3, "tian not working (because there "..., 8192) = 8192 +61500 close(1 +61496 read(3, +61500 <... close resumed>) = 0 +61496 <... read resumed>" Dpkg::BuildInfo::get_build_env_"..., 8192) = 8192 +61500 close(2 +61496 read(3, +61500 <... close resumed>) = 0 +61496 <... read resumed>"ninstallable_explainer = 'dose3'"..., 8192) = 5905 +61500 exit_group(0 +61496 read(3, +61500 <... exit_group resumed>) = ? +61500 +++ exited with 0 +++ +61499 <... wait4 resumed>[{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 61500 +61499 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=61500, si_uid=1000, si_status=0, si_utime=0, si_stime=0} --- +61499 rt_sigreturn({mask=[]}) = 61500 +61499 wait4(-1, 0x7ffe579ce3dc, WNOHANG, NULL) = -1 ECHILD (No child processes) +61499 exit_group(0) = ? +61496 <... read resumed>"", 8192) = 0 +61499 +++ exited with 0 +++ +61496 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=61499, si_uid=1000, si_status=0, si_utime=0, si_stime=0} --- +61496 newfstatat(3, "", {st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61496 close(3) = 0 +61496 wait4(61499, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 61499 +61496 newfstatat(AT_FDCWD, "/home/debian/.sbuildrc", {st_mode=S_IFREG|0644, st_size=536, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 pipe2([3, 4], O_CLOEXEC) = 0 +61496 pipe2([5, 7], O_CLOEXEC) = 0 +61496 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fac0a81be50) = 61501 +61496 close(7) = 0 +61496 close(4) = 0 +61501 set_robust_list(0x7fac0a81be60, 24 +61496 read(5, +61501 <... set_robust_list resumed>) = 0 +61501 close(5) = 0 +61501 dup2(4, 1) = 1 +61501 close(4) = 0 +61501 close(3) = 0 +61501 rt_sigaction(SIGFPE, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_IGN, sa_mask=[FPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7fac0a895050}, 8) = 0 +61501 execve("/bin/sh", ["sh", "-c", "cat \"/home/debian/.sbuildrc\""], 0x55855b46c570 /* 29 vars */) = 0 +61496 <... read resumed>"", 4) = 0 +61501 brk(NULL +61496 close(5 +61501 <... brk resumed>) = 0x5595c34fa000 +61496 <... close resumed>) = 0 +61496 fcntl(3, F_SETFD, FD_CLOEXEC) = 0 +61496 ioctl(3, TCGETS +61501 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 +61496 <... ioctl resumed>, 0x7ffdd55296a0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(3, 0, SEEK_CUR +61501 <... mmap resumed>) = 0x7ff235c84000 +61496 <... lseek resumed>) = -1 ESPIPE (Illegal seek) +61501 access("/etc/ld.so.preload", R_OK +61496 newfstatat(3, "", {st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61501 <... access resumed>) = -1 ENOENT (No such file or directory) +61496 read(3, +61501 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 +61501 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=40283, ...}, AT_EMPTY_PATH) = 0 +61501 mmap(NULL, 40283, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7ff235c7a000 +61501 close(3) = 0 +61501 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 +61501 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20t\2\0\0\0\0\0"..., 832) = 832 +61501 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61501 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1926232, ...}, AT_EMPTY_PATH) = 0 +61501 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61501 mmap(NULL, 1974096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7ff235a98000 +61501 mmap(0x7ff235abe000, 1400832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7ff235abe000 +61501 mmap(0x7ff235c14000, 339968, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17c000) = 0x7ff235c14000 +61501 mmap(0x7ff235c67000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cf000) = 0x7ff235c67000 +61501 mmap(0x7ff235c6d000, 53072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7ff235c6d000 +61501 close(3) = 0 +61501 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7ff235a95000 +61501 arch_prctl(ARCH_SET_FS, 0x7ff235a95740) = 0 +61501 set_tid_address(0x7ff235a95a10) = 61501 +61501 set_robust_list(0x7ff235a95a20, 24) = 0 +61501 rseq(0x7ff235a96060, 0x20, 0, 0x53053053) = 0 +61501 mprotect(0x7ff235c67000, 16384, PROT_READ) = 0 +61501 mprotect(0x5595af554000, 8192, PROT_READ) = 0 +61501 mprotect(0x7ff235cb7000, 8192, PROT_READ) = 0 +61501 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 +61501 munmap(0x7ff235c7a000, 40283) = 0 +61501 getuid() = 1000 +61501 getgid() = 1000 +61501 getpid() = 61501 +61501 rt_sigaction(SIGCHLD, {sa_handler=0x5595af549dc0, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7ff235ad4050}, NULL, 8) = 0 +61501 geteuid() = 1000 +61501 getrandom("\xb4\x72\xcc\x58\x62\xb7\x65\x83", 8, GRND_NONBLOCK) = 8 +61501 brk(NULL) = 0x5595c34fa000 +61501 brk(0x5595c351b000) = 0x5595c351b000 +61501 getppid() = 61496 +61501 newfstatat(AT_FDCWD, "/home/debian/workspace/eth-nodes/upcoming/noble/amd64/eth-node-teku/25.9.1-1", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61501 newfstatat(AT_FDCWD, ".", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61501 geteuid() = 1000 +61501 getegid() = 1000 +61501 rt_sigaction(SIGINT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61501 rt_sigaction(SIGINT, {sa_handler=0x5595af549dc0, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7ff235ad4050}, NULL, 8) = 0 +61501 rt_sigaction(SIGQUIT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61501 rt_sigaction(SIGQUIT, {sa_handler=SIG_DFL, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7ff235ad4050}, NULL, 8) = 0 +61501 rt_sigaction(SIGTERM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61501 rt_sigaction(SIGTERM, {sa_handler=SIG_DFL, sa_mask=~[RTMIN RT_1], sa_flags=SA_RESTORER, sa_restorer=0x7ff235ad4050}, NULL, 8) = 0 +61501 newfstatat(AT_FDCWD, "/home/debian/.cargo/bin/cat", 0x7ffe931139c0, 0) = -1 ENOENT (No such file or directory) +61501 newfstatat(AT_FDCWD, "/usr/local/bin/cat", 0x7ffe931139c0, 0) = -1 ENOENT (No such file or directory) +61501 newfstatat(AT_FDCWD, "/usr/bin/cat", {st_mode=S_IFREG|0755, st_size=44016, ...}, 0) = 0 +61501 rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], NULL, 8) = 0 +61501 vfork( +61502 rt_sigprocmask(SIG_SETMASK, [], ~[KILL STOP RTMIN RT_1], 8) = 0 +61502 execve("/usr/bin/cat", ["cat", "/home/debian/.sbuildrc"], 0x5595c34faa68 /* 29 vars */ +61501 <... vfork resumed>) = 61502 +61501 rt_sigprocmask(SIG_SETMASK, [], +61502 <... execve resumed>) = 0 +61501 <... rt_sigprocmask resumed>~[KILL STOP RTMIN RT_1], 8) = 0 +61501 wait4(-1, +61502 brk(NULL) = 0x55ae305eb000 +61502 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8bdd34b000 +61502 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=40283, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 40283, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8bdd341000 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 +61502 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20t\2\0\0\0\0\0"..., 832) = 832 +61502 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61502 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1926232, ...}, AT_EMPTY_PATH) = 0 +61502 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61502 mmap(NULL, 1974096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f8bdd15f000 +61502 mmap(0x7f8bdd185000, 1400832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f8bdd185000 +61502 mmap(0x7f8bdd2db000, 339968, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17c000) = 0x7f8bdd2db000 +61502 mmap(0x7f8bdd32e000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cf000) = 0x7f8bdd32e000 +61502 mmap(0x7f8bdd334000, 53072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f8bdd334000 +61502 close(3) = 0 +61502 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8bdd15c000 +61502 arch_prctl(ARCH_SET_FS, 0x7f8bdd15c740) = 0 +61502 set_tid_address(0x7f8bdd15ca10) = 61502 +61502 set_robust_list(0x7f8bdd15ca20, 24) = 0 +61502 rseq(0x7f8bdd15d060, 0x20, 0, 0x53053053) = 0 +61502 mprotect(0x7f8bdd32e000, 16384, PROT_READ) = 0 +61502 mprotect(0x55ae07f01000, 4096, PROT_READ) = 0 +61502 mprotect(0x7f8bdd37e000, 8192, PROT_READ) = 0 +61502 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 +61502 munmap(0x7f8bdd341000, 40283) = 0 +61502 getrandom("\x3a\x3d\xb5\x1a\x81\x72\x0f\xfa", 8, GRND_NONBLOCK) = 8 +61502 brk(NULL) = 0x55ae305eb000 +61502 brk(0x55ae3060c000) = 0x55ae3060c000 +61502 openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=2996, ...}, AT_EMPTY_PATH) = 0 +61502 read(3, "# Locale name alias data base.\n#"..., 4096) = 2996 +61502 read(3, "", 4096) = 0 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=258, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 258, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8bdd34a000 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", O_RDONLY) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=27028, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 27028, PROT_READ, MAP_SHARED, 3, 0) = 0x7f8bdd343000 +61502 close(3) = 0 +61502 futex(0x7f8bdd333a4c, FUTEX_WAKE_PRIVATE, 2147483647) = 0 +61502 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=23, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 23, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8bdd342000 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=47, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 47, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8bdd341000 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=127, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 127, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8bdd15b000 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NAME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NAME", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=62, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 62, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8bdd15a000 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_PAPER", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_PAPER", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=34, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 34, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8bdd159000 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=4096, ...}, AT_EMPTY_PATH) = 0 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=48, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 48, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8bdd158000 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=270, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 270, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8bdd157000 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1406, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 1406, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8bdd156000 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TIME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TIME", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=3360, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 3360, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8bdd155000 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=50, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 50, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8bdd154000 +61502 close(3) = 0 +61502 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61502 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=353616, ...}, AT_EMPTY_PATH) = 0 +61502 mmap(NULL, 353616, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8bdd0fd000 +61502 close(3) = 0 +61502 newfstatat(1, "", {st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61502 openat(AT_FDCWD, "/home/debian/.sbuildrc", O_RDONLY) = 3 +61502 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=536, ...}, AT_EMPTY_PATH) = 0 +61502 fadvise64(3, 0, 0, POSIX_FADV_SEQUENTIAL) = 0 +61502 mmap(NULL, 139264, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8bdd0db000 +61502 read(3, "################################"..., 131072) = 536 +61502 write(1, "################################"..., 536) = 536 +61502 read(3, +61496 <... read resumed>"################################"..., 8192) = 536 +61502 <... read resumed>"", 131072) = 0 +61496 read(3, +61502 munmap(0x7f8bdd0db000, 139264) = 0 +61502 close(3) = 0 +61502 close(1) = 0 +61502 close(2) = 0 +61502 exit_group(0) = ? +61502 +++ exited with 0 +++ +61501 <... wait4 resumed>[{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 61502 +61501 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=61502, si_uid=1000, si_status=0, si_utime=0, si_stime=0} --- +61501 rt_sigreturn({mask=[]}) = 61502 +61501 wait4(-1, 0x7ffe9311394c, WNOHANG, NULL) = -1 ECHILD (No child processes) +61501 exit_group(0) = ? +61496 <... read resumed>"", 8192) = 0 +61501 +++ exited with 0 +++ +61496 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=61501, si_uid=1000, si_status=0, si_utime=0, si_stime=0} --- +61496 newfstatat(3, "", {st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61496 close(3) = 0 +61496 wait4(61501, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 61501 +61496 newfstatat(AT_FDCWD, "/usr/local/sbin/su", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/bin/su", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/sbin/su", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/bin/su", {st_mode=S_IFREG|S_ISUID|0755, st_size=72000, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 getegid() = 1000 +61496 getgroups(0, NULL) = 11 +61496 getgroups(11, [4, 20, 24, 25, 27, 29, 30, 44, 46, 110, 1000]) = 11 +61496 newfstatat(AT_FDCWD, "/sbin/su", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/bin/su", {st_mode=S_IFREG|S_ISUID|0755, st_size=72000, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 getegid() = 1000 +61496 getgroups(0, NULL) = 11 +61496 getgroups(11, [4, 20, 24, 25, 27, 29, 30, 44, 46, 110, 1000]) = 11 +61496 newfstatat(AT_FDCWD, "/usr/games/su", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/su", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/sbin/apt-get", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/bin/apt-get", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/sbin/apt-get", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/bin/apt-get", {st_mode=S_IFREG|0755, st_size=51592, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 getegid() = 1000 +61496 getgroups(0, NULL) = 11 +61496 getgroups(11, [4, 20, 24, 25, 27, 29, 30, 44, 46, 110, 1000]) = 11 +61496 newfstatat(AT_FDCWD, "/sbin/apt-get", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/bin/apt-get", {st_mode=S_IFREG|0755, st_size=51592, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 getegid() = 1000 +61496 getgroups(0, NULL) = 11 +61496 getgroups(11, [4, 20, 24, 25, 27, 29, 30, 44, 46, 110, 1000]) = 11 +61496 newfstatat(AT_FDCWD, "/usr/games/apt-get", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/apt-get", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/sbin/apt-cache", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/bin/apt-cache", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/sbin/apt-cache", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/bin/apt-cache", {st_mode=S_IFREG|0755, st_size=88456, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 getegid() = 1000 +61496 getgroups(0, NULL) = 11 +61496 getgroups(11, [4, 20, 24, 25, 27, 29, 30, 44, 46, 110, 1000]) = 11 +61496 newfstatat(AT_FDCWD, "/sbin/apt-cache", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/bin/apt-cache", {st_mode=S_IFREG|0755, st_size=88456, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 getegid() = 1000 +61496 getgroups(0, NULL) = 11 +61496 getgroups(11, [4, 20, 24, 25, 27, 29, 30, 44, 46, 110, 1000]) = 11 +61496 newfstatat(AT_FDCWD, "/usr/games/apt-cache", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/apt-cache", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/sbin/dpkg-source", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/bin/dpkg-source", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/sbin/dpkg-source", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/bin/dpkg-source", {st_mode=S_IFREG|0755, st_size=23457, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 getegid() = 1000 +61496 getgroups(0, NULL) = 11 +61496 getgroups(11, [4, 20, 24, 25, 27, 29, 30, 44, 46, 110, 1000]) = 11 +61496 newfstatat(AT_FDCWD, "/sbin/dpkg-source", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/bin/dpkg-source", {st_mode=S_IFREG|0755, st_size=23457, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 getegid() = 1000 +61496 getgroups(0, NULL) = 11 +61496 getgroups(11, [4, 20, 24, 25, 27, 29, 30, 44, 46, 110, 1000]) = 11 +61496 newfstatat(AT_FDCWD, "/usr/games/dpkg-source", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/dpkg-source", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/sbin/md5sum", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/local/bin/md5sum", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/sbin/md5sum", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/usr/bin/md5sum", {st_mode=S_IFREG|0755, st_size=52176, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 getegid() = 1000 +61496 getgroups(0, NULL) = 11 +61496 getgroups(11, [4, 20, 24, 25, 27, 29, 30, 44, 46, 110, 1000]) = 11 +61496 newfstatat(AT_FDCWD, "/sbin/md5sum", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/bin/md5sum", {st_mode=S_IFREG|0755, st_size=52176, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 getegid() = 1000 +61496 getgroups(0, NULL) = 11 +61496 getgroups(11, [4, 20, 24, 25, 27, 29, 30, 44, 46, 110, 1000]) = 11 +61496 newfstatat(AT_FDCWD, "/usr/games/md5sum", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/md5sum", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 pipe2([3, 4], O_CLOEXEC) = 0 +61496 pipe2([5, 7], O_CLOEXEC) = 0 +61496 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fac0a81be50) = 61503 +61496 close(7) = 0 +61503 set_robust_list(0x7fac0a81be60, 24 +61496 close(4) = 0 +61503 <... set_robust_list resumed>) = 0 +61496 read(5, +61503 close(5) = 0 +61503 dup2(4, 1) = 1 +61503 close(4) = 0 +61503 close(3) = 0 +61503 rt_sigaction(SIGFPE, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_IGN, sa_mask=[FPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7fac0a895050}, 8) = 0 +61503 execve("/bin/pwd", ["/bin/pwd"], 0x55855b46c570 /* 29 vars */ +61496 <... read resumed>"", 4) = 0 +61503 <... execve resumed>) = 0 +61496 close(5) = 0 +61503 brk(NULL +61496 fcntl(3, F_SETFD, FD_CLOEXEC +61503 <... brk resumed>) = 0x55e094603000 +61496 <... fcntl resumed>) = 0 +61496 ioctl(3, TCGETS, 0x7ffdd55296a0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(3, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) +61503 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 +61496 newfstatat(3, "", +61503 <... mmap resumed>) = 0x7f3763c65000 +61496 <... newfstatat resumed>{st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61496 read(3, +61503 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=40283, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 40283, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3763c5b000 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 +61503 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20t\2\0\0\0\0\0"..., 832) = 832 +61503 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61503 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1926232, ...}, AT_EMPTY_PATH) = 0 +61503 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61503 mmap(NULL, 1974096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3763a79000 +61503 mmap(0x7f3763a9f000, 1400832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f3763a9f000 +61503 mmap(0x7f3763bf5000, 339968, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17c000) = 0x7f3763bf5000 +61503 mmap(0x7f3763c48000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cf000) = 0x7f3763c48000 +61503 mmap(0x7f3763c4e000, 53072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f3763c4e000 +61503 close(3) = 0 +61503 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3763a76000 +61503 arch_prctl(ARCH_SET_FS, 0x7f3763a76740) = 0 +61503 set_tid_address(0x7f3763a76a10) = 61503 +61503 set_robust_list(0x7f3763a76a20, 24) = 0 +61503 rseq(0x7f3763a77060, 0x20, 0, 0x53053053) = 0 +61503 mprotect(0x7f3763c48000, 16384, PROT_READ) = 0 +61503 mprotect(0x55e0870ed000, 4096, PROT_READ) = 0 +61503 mprotect(0x7f3763c98000, 8192, PROT_READ) = 0 +61503 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 +61503 munmap(0x7f3763c5b000, 40283) = 0 +61503 getrandom("\x43\x7c\x80\x7f\xe1\x35\x55\x32", 8, GRND_NONBLOCK) = 8 +61503 brk(NULL) = 0x55e094603000 +61503 brk(0x55e094624000) = 0x55e094624000 +61503 openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=2996, ...}, AT_EMPTY_PATH) = 0 +61503 read(3, "# Locale name alias data base.\n#"..., 4096) = 2996 +61503 read(3, "", 4096) = 0 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=258, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 258, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3763c64000 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", O_RDONLY) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=27028, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 27028, PROT_READ, MAP_SHARED, 3, 0) = 0x7f3763c5d000 +61503 close(3) = 0 +61503 futex(0x7f3763c4da4c, FUTEX_WAKE_PRIVATE, 2147483647) = 0 +61503 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=23, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 23, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3763c5c000 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=47, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 47, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3763c5b000 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=127, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 127, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3763a75000 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NAME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NAME", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=62, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 62, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3763a74000 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_PAPER", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_PAPER", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=34, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 34, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3763a73000 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=4096, ...}, AT_EMPTY_PATH) = 0 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=48, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 48, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3763a72000 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=270, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 270, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3763a71000 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1406, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 1406, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3763a70000 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TIME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TIME", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=3360, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 3360, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3763a6f000 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=50, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 50, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3763a6e000 +61503 close(3) = 0 +61503 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61503 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = 3 +61503 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=353616, ...}, AT_EMPTY_PATH) = 0 +61503 mmap(NULL, 353616, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3763a17000 +61503 close(3) = 0 +61503 getcwd("/home/debian/workspace/eth-nodes/upcoming/noble/amd64/eth-node-teku/25.9.1-1", 4096) = 77 +61503 newfstatat(1, "", {st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61503 write(1, "/home/debian/workspace/eth-nodes"..., 77) = 77 +61503 close(1 +61496 <... read resumed>"/home/debian/workspace/eth-nodes"..., 8192) = 77 +61503 <... close resumed>) = 0 +61496 read(3, +61503 close(2 +61496 <... read resumed>"", 8192) = 0 +61503 <... close resumed>) = 0 +61496 newfstatat(3, "", +61503 exit_group(0 +61496 <... newfstatat resumed>{st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61503 <... exit_group resumed>) = ? +61496 close(3) = 0 +61496 wait4(61503, +61503 +++ exited with 0 +++ +61496 <... wait4 resumed>[{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 61503 +61496 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=61503, si_uid=1000, si_status=0, si_utime=0, si_stime=0} --- +61496 write(2, "The Debian buildds switched to t"..., 98) = 98 +61496 write(2, "To start using \"unshare\" add thi"..., 72) = 72 +61496 write(2, "\t$chroot_mode = \"unshare\";\n", 27) = 27 +61496 write(2, "If you want to keep the old \"sch"..., 119) = 119 +61496 write(2, "\t$chroot_mode = \"schroot\";\n", 27) = 27 +61496 write(2, "\t$schroot = \"schroot\";\n", 23) = 23 +61496 pipe2([3, 4], O_CLOEXEC) = 0 +61496 pipe2([5, 7], O_CLOEXEC) = 0 +61496 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fac0a81be50) = 61504 +61496 close(7) = 0 +61496 close(4) = 0 +61504 set_robust_list(0x7fac0a81be60, 24 +61496 read(5, +61504 <... set_robust_list resumed>) = 0 +61504 close(5) = 0 +61504 dup2(4, 1) = 1 +61504 close(4) = 0 +61504 close(3) = 0 +61504 rt_sigaction(SIGFPE, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_IGN, sa_mask=[FPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7fac0a895050}, 8) = 0 +61504 execve("/bin/pwd", ["/bin/pwd"], 0x55855b46c570 /* 29 vars */ +61496 <... read resumed>"", 4) = 0 +61496 close(5 +61504 <... execve resumed>) = 0 +61496 <... close resumed>) = 0 +61496 fcntl(3, F_SETFD, FD_CLOEXEC +61504 brk(NULL +61496 <... fcntl resumed>) = 0 +61504 <... brk resumed>) = 0x560e71af0000 +61496 ioctl(3, TCGETS, 0x7ffdd55296a0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(3, 0, SEEK_CUR +61504 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 +61496 <... lseek resumed>) = -1 ESPIPE (Illegal seek) +61496 newfstatat(3, "", +61504 <... mmap resumed>) = 0x7fc05469c000 +61496 <... newfstatat resumed>{st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61496 read(3, +61504 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=40283, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 40283, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc054692000 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 +61504 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20t\2\0\0\0\0\0"..., 832) = 832 +61504 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61504 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1926232, ...}, AT_EMPTY_PATH) = 0 +61504 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61504 mmap(NULL, 1974096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fc0544b0000 +61504 mmap(0x7fc0544d6000, 1400832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7fc0544d6000 +61504 mmap(0x7fc05462c000, 339968, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17c000) = 0x7fc05462c000 +61504 mmap(0x7fc05467f000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cf000) = 0x7fc05467f000 +61504 mmap(0x7fc054685000, 53072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fc054685000 +61504 close(3) = 0 +61504 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fc0544ad000 +61504 arch_prctl(ARCH_SET_FS, 0x7fc0544ad740) = 0 +61504 set_tid_address(0x7fc0544ada10) = 61504 +61504 set_robust_list(0x7fc0544ada20, 24) = 0 +61504 rseq(0x7fc0544ae060, 0x20, 0, 0x53053053) = 0 +61504 mprotect(0x7fc05467f000, 16384, PROT_READ) = 0 +61504 mprotect(0x560e42a6e000, 4096, PROT_READ) = 0 +61504 mprotect(0x7fc0546cf000, 8192, PROT_READ) = 0 +61504 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 +61504 munmap(0x7fc054692000, 40283) = 0 +61504 getrandom("\x76\x19\x43\x88\x4a\x82\xf7\x26", 8, GRND_NONBLOCK) = 8 +61504 brk(NULL) = 0x560e71af0000 +61504 brk(0x560e71b11000) = 0x560e71b11000 +61504 openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=2996, ...}, AT_EMPTY_PATH) = 0 +61504 read(3, "# Locale name alias data base.\n#"..., 4096) = 2996 +61504 read(3, "", 4096) = 0 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=258, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 258, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc05469b000 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", O_RDONLY) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=27028, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 27028, PROT_READ, MAP_SHARED, 3, 0) = 0x7fc054694000 +61504 close(3) = 0 +61504 futex(0x7fc054684a4c, FUTEX_WAKE_PRIVATE, 2147483647) = 0 +61504 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=23, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 23, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc054693000 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=47, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 47, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc054692000 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=127, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 127, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc0544ac000 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NAME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NAME", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=62, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 62, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc0544ab000 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_PAPER", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_PAPER", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=34, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 34, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc0544aa000 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=4096, ...}, AT_EMPTY_PATH) = 0 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=48, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 48, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc0544a9000 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=270, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 270, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc0544a8000 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1406, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 1406, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc0544a7000 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TIME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TIME", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=3360, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 3360, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc0544a6000 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=50, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 50, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc0544a5000 +61504 close(3) = 0 +61504 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61504 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = 3 +61504 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=353616, ...}, AT_EMPTY_PATH) = 0 +61504 mmap(NULL, 353616, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fc05444e000 +61504 close(3) = 0 +61504 getcwd("/home/debian/workspace/eth-nodes/upcoming/noble/amd64/eth-node-teku/25.9.1-1", 4096) = 77 +61504 newfstatat(1, "", {st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61504 write(1, "/home/debian/workspace/eth-nodes"..., 77) = 77 +61496 <... read resumed>"/home/debian/workspace/eth-nodes"..., 8192) = 77 +61504 close(1 +61496 read(3, +61504 <... close resumed>) = 0 +61496 <... read resumed>"", 8192) = 0 +61504 close(2 +61496 newfstatat(3, "", +61504 <... close resumed>) = 0 +61496 <... newfstatat resumed>{st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61496 close(3 +61504 exit_group(0 +61496 <... close resumed>) = 0 +61504 <... exit_group resumed>) = ? +61496 wait4(61504, +61504 +++ exited with 0 +++ +61496 <... wait4 resumed>[{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 61504 +61496 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=61504, si_uid=1000, si_status=0, si_utime=0, si_stime=0} --- +61496 newfstatat(AT_FDCWD, "/home/debian/workspace/eth-nodes/upcoming/noble/amd64/eth-node-teku/25.9.1-1", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61496 pipe2([3, 4], O_CLOEXEC) = 0 +61496 pipe2([5, 7], O_CLOEXEC) = 0 +61496 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fac0a81be50) = 61505 +61496 close(7) = 0 +61496 close(4 +61505 set_robust_list(0x7fac0a81be60, 24 +61496 <... close resumed>) = 0 +61496 read(5, +61505 <... set_robust_list resumed>) = 0 +61505 close(5) = 0 +61505 dup2(4, 1) = 1 +61505 close(4) = 0 +61505 close(3) = 0 +61505 rt_sigaction(SIGFPE, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_IGN, sa_mask=[FPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7fac0a895050}, 8) = 0 +61505 execve("/bin/pwd", ["/bin/pwd"], 0x55855b46c570 /* 29 vars */ +61496 <... read resumed>"", 4) = 0 +61505 <... execve resumed>) = 0 +61496 close(5) = 0 +61505 brk(NULL +61496 fcntl(3, F_SETFD, FD_CLOEXEC +61505 <... brk resumed>) = 0x561fa748d000 +61496 <... fcntl resumed>) = 0 +61496 ioctl(3, TCGETS, 0x7ffdd55296a0) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(3, 0, SEEK_CUR +61505 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 +61496 <... lseek resumed>) = -1 ESPIPE (Illegal seek) +61496 newfstatat(3, "", +61505 <... mmap resumed>) = 0x7f8cd1229000 +61496 <... newfstatat resumed>{st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61496 read(3, +61505 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=40283, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 40283, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8cd121f000 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 +61505 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20t\2\0\0\0\0\0"..., 832) = 832 +61505 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61505 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1926232, ...}, AT_EMPTY_PATH) = 0 +61505 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61505 mmap(NULL, 1974096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f8cd103d000 +61505 mmap(0x7f8cd1063000, 1400832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f8cd1063000 +61505 mmap(0x7f8cd11b9000, 339968, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17c000) = 0x7f8cd11b9000 +61505 mmap(0x7f8cd120c000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cf000) = 0x7f8cd120c000 +61505 mmap(0x7f8cd1212000, 53072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f8cd1212000 +61505 close(3) = 0 +61505 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f8cd103a000 +61505 arch_prctl(ARCH_SET_FS, 0x7f8cd103a740) = 0 +61505 set_tid_address(0x7f8cd103aa10) = 61505 +61505 set_robust_list(0x7f8cd103aa20, 24) = 0 +61505 rseq(0x7f8cd103b060, 0x20, 0, 0x53053053) = 0 +61505 mprotect(0x7f8cd120c000, 16384, PROT_READ) = 0 +61505 mprotect(0x561f9d717000, 4096, PROT_READ) = 0 +61505 mprotect(0x7f8cd125c000, 8192, PROT_READ) = 0 +61505 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 +61505 munmap(0x7f8cd121f000, 40283) = 0 +61505 getrandom("\x1b\xb4\x67\x71\x81\x15\xd6\x3e", 8, GRND_NONBLOCK) = 8 +61505 brk(NULL) = 0x561fa748d000 +61505 brk(0x561fa74ae000) = 0x561fa74ae000 +61505 openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=2996, ...}, AT_EMPTY_PATH) = 0 +61505 read(3, "# Locale name alias data base.\n#"..., 4096) = 2996 +61505 read(3, "", 4096) = 0 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=258, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 258, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8cd1228000 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", O_RDONLY) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=27028, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 27028, PROT_READ, MAP_SHARED, 3, 0) = 0x7f8cd1221000 +61505 close(3) = 0 +61505 futex(0x7f8cd1211a4c, FUTEX_WAKE_PRIVATE, 2147483647) = 0 +61505 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=23, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 23, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8cd1220000 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=47, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 47, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8cd121f000 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=127, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 127, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8cd1039000 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NAME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NAME", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=62, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 62, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8cd1038000 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_PAPER", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_PAPER", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=34, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 34, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8cd1037000 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=4096, ...}, AT_EMPTY_PATH) = 0 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=48, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 48, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8cd1036000 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=270, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 270, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8cd1035000 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1406, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 1406, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8cd1034000 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TIME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TIME", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=3360, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 3360, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8cd1033000 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=50, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 50, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8cd1032000 +61505 close(3) = 0 +61505 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61505 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = 3 +61505 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=353616, ...}, AT_EMPTY_PATH) = 0 +61505 mmap(NULL, 353616, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f8cd0fdb000 +61505 close(3) = 0 +61505 getcwd("/home/debian/workspace/eth-nodes/upcoming/noble/amd64/eth-node-teku/25.9.1-1", 4096) = 77 +61505 newfstatat(1, "", {st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61505 write(1, "/home/debian/workspace/eth-nodes"..., 77) = 77 +61496 <... read resumed>"/home/debian/workspace/eth-nodes"..., 8192) = 77 +61505 close(1 +61496 read(3, +61505 <... close resumed>) = 0 +61496 <... read resumed>"", 8192) = 0 +61496 newfstatat(3, "", +61505 close(2 +61496 <... newfstatat resumed>{st_mode=S_IFIFO|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61505 <... close resumed>) = 0 +61496 close(3 +61505 exit_group(0 +61496 <... close resumed>) = 0 +61505 <... exit_group resumed>) = ? +61496 wait4(61505, +61505 +++ exited with 0 +++ +61496 <... wait4 resumed>[{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 61505 +61496 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=61505, si_uid=1000, si_status=0, si_utime=0, si_stime=0} --- +61496 newfstatat(AT_FDCWD, "/home/debian/workspace/eth-nodes/upcoming/noble/amd64/eth-node-teku/25.9.1-1", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/etc/apt/trusted.gpg", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 write(1, "Note that this tool is only usef"..., 60) = 60 +61496 write(1, "Debian buildds have switched to "..., 61) = 61 +61496 newfstatat(AT_FDCWD, "/home/debian/.cache/sbuild/noble-amd64.tar.gz", 0x55855b4524a8, 0) = -1 ENOENT (No such file or directory) +61496 newfstatat(AT_FDCWD, "/tmp/temp_1902217611", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/tmp/temp_1902217611", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61496 chmod("/tmp/temp_1902217611", 0755) = 0 +61496 openat(AT_FDCWD, "/tmp/temp_1902217611", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3 +61496 newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=4096, ...}, AT_EMPTY_PATH) = 0 +61496 getdents64(3, 0x55855c852a40 /* 2 entries */, 32768) = 48 +61496 getdents64(3, 0x55855c852a40 /* 0 entries */, 32768) = 0 +61496 close(3) = 0 +61496 newfstatat(AT_FDCWD, "/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}, AT_SYMLINK_NOFOLLOW) = 0 +61496 newfstatat(AT_FDCWD, "/tmp/temp_1902217611", {st_mode=S_IFDIR|0755, st_size=4096, ...}, AT_SYMLINK_NOFOLLOW) = 0 +61496 write(1, "I: SUITE: noble\n", 16) = 16 +61496 write(1, "I: TARGET: /tmp/temp_1902217611\n", 32) = 32 +61496 write(1, "I: MIRROR: http://archive.ubuntu"..., 44) = 44 +61496 write(1, "I: Running debootstrap --arch=am"..., 191) = 191 +61496 getuid() = 1000 +61496 newfstatat(AT_FDCWD, "/etc/nsswitch.conf", {st_mode=S_IFREG|0644, st_size=505, ...}, 0) = 0 +61496 openat(AT_FDCWD, "/etc/passwd", O_RDONLY|O_CLOEXEC) = 3 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1422, ...}, AT_EMPTY_PATH) = 0 +61496 lseek(3, 0, SEEK_SET) = 0 +61496 read(3, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 1422 +61496 close(3) = 0 +61496 newfstatat(AT_FDCWD, "/etc/subuid", {st_mode=S_IFREG|0644, st_size=20, ...}, 0) = 0 +61496 newfstatat(AT_FDCWD, "/etc/subuid", {st_mode=S_IFREG|0644, st_size=20, ...}, 0) = 0 +61496 geteuid() = 1000 +61496 geteuid() = 1000 +61496 getegid() = 1000 +61496 getgroups(0, NULL) = 11 +61496 getgroups(11, [4, 20, 24, 25, 27, 29, 30, 44, 46, 110, 1000]) = 11 +61496 openat(AT_FDCWD, "/etc/subuid", O_RDONLY|O_CLOEXEC) = 3 +61496 ioctl(3, TCGETS, 0x7ffdd5529730) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(3, 0, SEEK_CUR) = 0 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=20, ...}, AT_EMPTY_PATH) = 0 +61496 read(3, "debian:100000:65536\n", 8192) = 20 +61496 close(3) = 0 +61496 openat(AT_FDCWD, "/etc/subgid", O_RDONLY|O_CLOEXEC) = 3 +61496 ioctl(3, TCGETS, 0x7ffdd5529730) = -1 ENOTTY (Inappropriate ioctl for device) +61496 lseek(3, 0, SEEK_CUR) = 0 +61496 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=20, ...}, AT_EMPTY_PATH) = 0 +61496 read(3, "debian:100000:65536\n", 8192) = 20 +61496 close(3) = 0 +61496 rt_sigprocmask(SIG_SETMASK, ~[RTMIN RT_1], [], 8) = 0 +61496 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fac0a81be50) = 61506 +61506 set_robust_list(0x7fac0a81be60, 24 +61496 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 +61506 <... set_robust_list resumed>) = 0 +61496 wait4(61506, +61506 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 +61506 newfstatat(AT_FDCWD, "/etc/perl/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/share/perl5/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/syscall.ph", {st_mode=S_IFREG|0644, st_size=86, ...}, 0) = 0 +61506 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/syscall.ph", O_RDONLY|O_CLOEXEC) = 3 +61506 ioctl(3, TCGETS, 0x7ffdd5529600) = -1 ENOTTY (Inappropriate ioctl for device) +61506 lseek(3, 0, SEEK_CUR) = 0 +61506 read(3, "require '_h2ph_pre.ph';\n\nno warn"..., 8192) = 86 +61506 read(3, "", 8192) = 0 +61506 close(3) = 0 +61506 newfstatat(AT_FDCWD, "/etc/perl/_h2ph_pre.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/_h2ph_pre.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/_h2ph_pre.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/_h2ph_pre.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/share/perl5/_h2ph_pre.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/_h2ph_pre.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/_h2ph_pre.ph", {st_mode=S_IFREG|0644, st_size=32767, ...}, 0) = 0 +61506 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/_h2ph_pre.ph", O_RDONLY|O_CLOEXEC) = 3 +61506 ioctl(3, TCGETS, 0x7ffdd5529600) = -1 ENOTTY (Inappropriate ioctl for device) +61506 lseek(3, 0, SEEK_CUR) = 0 +61506 read(3, "# This file was created by h2ph "..., 8192) = 8192 +61506 read(3, "s (defined &__FLT16_NORM_MAX__) "..., 8192) = 8192 +61506 brk(0x55855c897000) = 0x55855c897000 +61506 read(3, "ned &__GCC_ATOMIC_LONG_LOCK_FREE"..., 8192) = 8192 +61506 brk(0x55855c8b9000) = 0x55855c8b9000 +61506 read(3, "_WIDTH__) { sub __PTRDIFF_WIDTH_"..., 8192) = 8191 +61506 brk(0x55855c8dd000) = 0x55855c8dd000 +61506 read(3, "", 8192) = 0 +61506 close(3) = 0 +61506 newfstatat(AT_FDCWD, "/etc/perl/sys/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/sys/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/sys/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/sys/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/share/perl5/sys/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/sys/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/sys/syscall.ph", {st_mode=S_IFREG|0644, st_size=216, ...}, 0) = 0 +61506 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/sys/syscall.ph", O_RDONLY|O_CLOEXEC) = 3 +61506 ioctl(3, TCGETS, 0x7ffdd5529600) = -1 ENOTTY (Inappropriate ioctl for device) +61506 lseek(3, 0, SEEK_CUR) = 0 +61506 read(3, "require '_h2ph_pre.ph';\n\nno warn"..., 8192) = 216 +61506 read(3, "", 8192) = 0 +61506 close(3) = 0 +61506 newfstatat(AT_FDCWD, "/etc/perl/asm/unistd.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/asm/unistd.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/asm/unistd.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/asm/unistd.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/share/perl5/asm/unistd.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/asm/unistd.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/asm/unistd.ph", {st_mode=S_IFREG|0644, st_size=435, ...}, 0) = 0 +61506 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/asm/unistd.ph", O_RDONLY|O_CLOEXEC) = 3 +61506 ioctl(3, TCGETS, 0x7ffdd5529600) = -1 ENOTTY (Inappropriate ioctl for device) +61506 lseek(3, 0, SEEK_CUR) = 0 +61506 read(3, "require '_h2ph_pre.ph';\n\nno warn"..., 8192) = 435 +61506 read(3, "", 8192) = 0 +61506 close(3) = 0 +61506 newfstatat(AT_FDCWD, "/etc/perl/asm/unistd_64.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/asm/unistd_64.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/asm/unistd_64.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/asm/unistd_64.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/share/perl5/asm/unistd_64.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/asm/unistd_64.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/asm/unistd_64.ph", {st_mode=S_IFREG|0644, st_size=26510, ...}, 0) = 0 +61506 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/asm/unistd_64.ph", O_RDONLY|O_CLOEXEC) = 3 +61506 ioctl(3, TCGETS, 0x7ffdd5529600) = -1 ENOTTY (Inappropriate ioctl for device) +61506 lseek(3, 0, SEEK_CUR) = 0 +61506 read(3, "require '_h2ph_pre.ph';\n\nno warn"..., 8192) = 8192 +61506 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fac0a6cf000 +61506 read(3, "' unless defined(&__NR_setresgid"..., 8192) = 8192 +61506 read(3, " {228;}' unless defined(&__NR_cl"..., 8192) = 8192 +61506 read(3, "&__NR_io_uring_enter);\n eval "..., 8192) = 1934 +61506 read(3, "", 8192) = 0 +61506 close(3) = 0 +61506 brk(0x55855c8fe000) = 0x55855c8fe000 +61506 brk(0x55855c8fd000) = 0x55855c8fd000 +61506 newfstatat(AT_FDCWD, "/etc/perl/bits/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/local/lib/x86_64-linux-gnu/perl/5.36.0/bits/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/local/share/perl/5.36.0/bits/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl5/5.36/bits/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/share/perl5/bits/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl-base/bits/syscall.ph", 0x7ffdd5529840, 0) = -1 ENOENT (No such file or directory) +61506 newfstatat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/bits/syscall.ph", {st_mode=S_IFREG|0644, st_size=77580, ...}, 0) = 0 +61506 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/perl/5.36/bits/syscall.ph", O_RDONLY|O_CLOEXEC) = 3 +61506 ioctl(3, TCGETS, 0x7ffdd5529600) = -1 ENOTTY (Inappropriate ioctl for device) +61506 lseek(3, 0, SEEK_CUR) = 0 +61506 read(3, "require '_h2ph_pre.ph';\n\nno warn"..., 8192) = 8192 +61506 read(3, "&__NR_epoll_create;}' unless def"..., 8192) = 8192 +61506 read(3, "_getegid32)) {\n eval 'sub SYS"..., 8192) = 8192 +61506 read(3, "b SYS_lchown () { &__NR_lchown;}"..., 8192) = 8192 +61506 brk(0x55855c91f000) = 0x55855c91f000 +61506 brk(0x55855c940000) = 0x55855c940000 +61506 read(3, "_NR_olduname)) {\n eval 'sub S"..., 8192) = 8192 +61506 brk(0x55855c963000) = 0x55855c963000 +61506 read(3, "sf_old_sigaction)) {\n eval 's"..., 8192) = 8192 +61506 brk(0x55855c985000) = 0x55855c985000 +61506 read(3, "YS_pidfd_getfd () { &__NR_pidfd_"..., 8192) = 8192 +61506 brk(0x55855c9a6000) = 0x55855c9a6000 +61506 read(3, "rite;}' unless defined(&SYS_s390"..., 8192) = 8192 +61506 brk(0x55855c9c7000) = 0x55855c9c7000 +61506 read(3, "sub SYS_settimeofday () { &__NR_"..., 8192) = 8192 +61506 brk(0x55855c9ea000) = 0x55855c9ea000 +61506 read(3, ";}' unless defined(&SYS_times);\n"..., 8192) = 3852 +61506 read(3, "", 8192) = 0 +61506 close(3) = 0 +61506 brk(0x55855ca0d000) = 0x55855ca0d000 +61506 brk(0x55855ca2e000) = 0x55855ca2e000 +61506 brk(0x55855ca4f000) = 0x55855ca4f000 +61506 brk(0x55855ca70000) = 0x55855ca70000 +61506 brk(0x55855ca91000) = 0x55855ca91000 +61506 unshare(CLONE_NEWUSER) = 0 +61506 rt_sigaction(SIGHUP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGINT, NULL, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61506 rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61506 rt_sigaction(SIGQUIT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGILL, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGTRAP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGABRT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGBUS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGFPE, NULL, {sa_handler=SIG_IGN, sa_mask=[FPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7fac0a895050}, 8) = 0 +61506 rt_sigaction(SIGKILL, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGUSR1, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGSEGV, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGUSR2, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGPIPE, NULL, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61506 rt_sigaction(SIGPIPE, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61506 rt_sigaction(SIGALRM, NULL, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61506 rt_sigaction(SIGALRM, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61506 rt_sigaction(SIGTERM, NULL, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61506 rt_sigaction(SIGTERM, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61506 rt_sigaction(SIGSTKFLT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGCHLD, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGCONT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGSTOP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGTSTP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGTTIN, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGTTOU, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGURG, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGXCPU, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGXFSZ, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGVTALRM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGPROF, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGWINCH, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGIO, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGPWR, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGSYS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_2, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_3, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_4, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_5, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_6, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_7, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_8, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_9, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_10, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_11, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_12, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_13, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_14, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_15, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_16, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_17, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_18, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_19, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_20, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_21, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_22, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_23, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_24, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_25, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_26, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_27, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_28, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_29, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_30, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_31, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGRT_32, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGABRT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGCHLD, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 rt_sigaction(SIGIO, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61506 getpid() = 61506 +61506 getpid() = 61506 +61506 getpid() = 61506 +61506 getpid() = 61506 +61506 close(6) = 0 +61506 exit_group(0) = ? +61506 +++ exited with 0 +++ +61496 <... wait4 resumed>[{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 61506 +61496 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=61506, si_uid=1000, si_status=0, si_utime=1 /* 0.01 s */, si_stime=2 /* 0.02 s */} --- +61496 newfstatat(AT_FDCWD, "/tmp/temp_1902217611", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61496 pipe2([3, 4], O_CLOEXEC) = 0 +61496 rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0 +61496 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fac0a81be50) = 61507 +61496 close(4 +61507 set_robust_list(0x7fac0a81be60, 24 +61496 <... close resumed>) = 0 +61496 rt_sigaction(SIGINT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, +61507 <... set_robust_list resumed>) = 0 +61496 <... rt_sigaction resumed>{sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61496 rt_sigaction(SIGQUIT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61507 rt_sigprocmask(SIG_SETMASK, [], +61496 wait4(61507, +61507 <... rt_sigprocmask resumed>NULL, 8) = 0 +61507 close(3) = 0 +61507 rt_sigaction(SIGFPE, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=SIG_IGN, sa_mask=[FPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7fac0a895050}, 8) = 0 +61507 execve("/home/debian/.cargo/bin/unshare", ["unshare", "--map-user", "0", "--map-group", "0", "--map-users", "100000,1,1", "--map-groups", "100000,1,1", "chown", "1:1", "/tmp/temp_1902217611"], 0x55855b46c570 /* 29 vars */) = -1 ENOENT (No such file or directory) +61507 execve("/usr/local/bin/unshare", ["unshare", "--map-user", "0", "--map-group", "0", "--map-users", "100000,1,1", "--map-groups", "100000,1,1", "chown", "1:1", "/tmp/temp_1902217611"], 0x55855b46c570 /* 29 vars */) = -1 ENOENT (No such file or directory) +61507 execve("/usr/bin/unshare", ["unshare", "--map-user", "0", "--map-group", "0", "--map-users", "100000,1,1", "--map-groups", "100000,1,1", "chown", "1:1", "/tmp/temp_1902217611"], 0x55855b46c570 /* 29 vars */) = 0 +61507 brk(NULL) = 0x5592e5416000 +61507 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f030a8cc000 +61507 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=40283, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 40283, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f030a8c2000 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 +61507 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20t\2\0\0\0\0\0"..., 832) = 832 +61507 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61507 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1926232, ...}, AT_EMPTY_PATH) = 0 +61507 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61507 mmap(NULL, 1974096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f030a6e0000 +61507 mmap(0x7f030a706000, 1400832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f030a706000 +61507 mmap(0x7f030a85c000, 339968, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17c000) = 0x7f030a85c000 +61507 mmap(0x7f030a8af000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cf000) = 0x7f030a8af000 +61507 mmap(0x7f030a8b5000, 53072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f030a8b5000 +61507 close(3) = 0 +61507 mmap(NULL, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f030a6dd000 +61507 arch_prctl(ARCH_SET_FS, 0x7f030a6dd740) = 0 +61507 set_tid_address(0x7f030a6dda10) = 61507 +61507 set_robust_list(0x7f030a6dda20, 24) = 0 +61507 rseq(0x7f030a6de060, 0x20, 0, 0x53053053) = 0 +61507 mprotect(0x7f030a8af000, 16384, PROT_READ) = 0 +61507 mprotect(0x5592a76ea000, 4096, PROT_READ) = 0 +61507 mprotect(0x7f030a8ff000, 8192, PROT_READ) = 0 +61507 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 +61507 munmap(0x7f030a8c2000, 40283) = 0 +61507 geteuid() = 1000 +61507 getegid() = 1000 +61507 getrandom("\xf4\x10\x34\xb7\x00\x18\x33\x35", 8, GRND_NONBLOCK) = 8 +61507 brk(NULL) = 0x5592e5416000 +61507 brk(0x5592e5437000) = 0x5592e5437000 +61507 openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=2996, ...}, AT_EMPTY_PATH) = 0 +61507 read(3, "# Locale name alias data base.\n#"..., 4096) = 2996 +61507 read(3, "", 4096) = 0 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=258, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 258, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f030a8cb000 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", O_RDONLY) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=27028, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 27028, PROT_READ, MAP_SHARED, 3, 0) = 0x7f030a8c4000 +61507 close(3) = 0 +61507 futex(0x7f030a8b4a4c, FUTEX_WAKE_PRIVATE, 2147483647) = 0 +61507 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=23, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 23, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f030a8c3000 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=47, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 47, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f030a8c2000 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=127, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 127, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f030a6dc000 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NAME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NAME", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=62, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 62, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f030a6db000 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_PAPER", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_PAPER", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=34, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 34, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f030a6da000 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=4096, ...}, AT_EMPTY_PATH) = 0 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=48, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 48, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f030a6d9000 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=270, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 270, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f030a6d8000 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1406, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 1406, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f030a6d7000 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_TIME", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_TIME", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=3360, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 3360, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f030a6d6000 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=50, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 50, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f030a6d5000 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/lib/locale/C.UTF-8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/lib/locale/C.utf8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=353616, ...}, AT_EMPTY_PATH) = 0 +61507 mmap(NULL, 353616, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f030a67e000 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/usr/share/locale/C.UTF-8/LC_MESSAGES/util-linux.mo", O_RDONLY) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/share/locale/C.utf8/LC_MESSAGES/util-linux.mo", O_RDONLY) = -1 ENOENT (No such file or directory) +61507 openat(AT_FDCWD, "/usr/share/locale/C/LC_MESSAGES/util-linux.mo", O_RDONLY) = -1 ENOENT (No such file or directory) +61507 socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3 +61507 connect(3, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) +61507 close(3) = 0 +61507 socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3 +61507 connect(3, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) +61507 close(3) = 0 +61507 newfstatat(AT_FDCWD, "/etc/nsswitch.conf", {st_mode=S_IFREG|0644, st_size=505, ...}, 0) = 0 +61507 newfstatat(AT_FDCWD, "/", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61507 openat(AT_FDCWD, "/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=505, ...}, AT_EMPTY_PATH) = 0 +61507 read(3, "# /etc/nsswitch.conf\n#\n# Example"..., 4096) = 505 +61507 read(3, "", 4096) = 0 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=505, ...}, AT_EMPTY_PATH) = 0 +61507 close(3) = 0 +61507 openat(AT_FDCWD, "/etc/passwd", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1422, ...}, AT_EMPTY_PATH) = 0 +61507 lseek(3, 0, SEEK_SET) = 0 +61507 read(3, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 1422 +61507 read(3, "", 4096) = 0 +61507 close(3) = 0 +61507 socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3 +61507 connect(3, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) +61507 close(3) = 0 +61507 socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3 +61507 connect(3, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) +61507 close(3) = 0 +61507 newfstatat(AT_FDCWD, "/etc/nsswitch.conf", {st_mode=S_IFREG|0644, st_size=505, ...}, 0) = 0 +61507 openat(AT_FDCWD, "/etc/group", O_RDONLY|O_CLOEXEC) = 3 +61507 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=750, ...}, AT_EMPTY_PATH) = 0 +61507 lseek(3, 0, SEEK_SET) = 0 +61507 read(3, "root:x:0:\ndaemon:x:1:\nbin:x:2:\ns"..., 4096) = 750 +61507 read(3, "", 4096) = 0 +61507 close(3) = 0 +61507 rt_sigaction(SIGCHLD, {sa_handler=SIG_DFL, sa_mask=[CHLD], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7f030a71c050}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61507 getpid() = 61507 +61507 eventfd2(0, 0) = 3 +61507 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f030a6dda10) = 61508 +61508 set_robust_list(0x7f030a6dda20, 24 +61507 unshare(CLONE_NEWUSER +61508 <... set_robust_list resumed>) = 0 +61508 read(3, +61507 <... unshare resumed>) = 0 +61507 write(3, "\6\0\0\0\0\0\0\0", 8 +61508 <... read resumed>"\6\0\0\0\0\0\0\0", 8) = 8 +61507 <... write resumed>) = 8 +61508 close(3 +61507 close(3 +61508 <... close resumed>) = 0 +61508 clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD +61507 <... close resumed>) = 0 +61507 wait4(61508, +61508 <... clone resumed>, child_tidptr=0x7f030a6dda10) = 61509 +61508 wait4(61509, +61509 set_robust_list(0x7f030a6dda20, 24) = 0 +61509 geteuid() = 1000 +61509 execve("/home/debian/.cargo/bin/newuidmap", ["newuidmap", "61507", "0", "1000", "1", "1", "100000", "1"], 0x7ffd147f9630 /* 29 vars */) = -1 ENOENT (No such file or directory) +61509 execve("/usr/local/bin/newuidmap", ["newuidmap", "61507", "0", "1000", "1", "1", "100000", "1"], 0x7ffd147f9630 /* 29 vars */) = -1 ENOENT (No such file or directory) +61509 execve("/usr/bin/newuidmap", ["newuidmap", "61507", "0", "1000", "1", "1", "100000", "1"], 0x7ffd147f9630 /* 29 vars */) = 0 +61509 access("/etc/suid-debug", F_OK) = -1 ENOENT (No such file or directory) +61509 brk(NULL) = 0x559b8704c000 +61509 fcntl(0, F_GETFD) = 0 +61509 fcntl(1, F_GETFD) = 0 +61509 fcntl(2, F_GETFD) = 0 +61509 access("/etc/suid-debug", F_OK) = -1 ENOENT (No such file or directory) +61509 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7ff7b1323000 +61509 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) +61509 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 +61509 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=40283, ...}, AT_EMPTY_PATH) = 0 +61509 mmap(NULL, 40283, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7ff7b1319000 +61509 close(3) = 0 +61509 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libaudit.so.1", O_RDONLY|O_CLOEXEC) = 3 +61509 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\0"..., 832) = 832 +61509 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=128952, ...}, AT_EMPTY_PATH) = 0 +61509 mmap(NULL, 196816, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7ff7b12e8000 +61509 mmap(0x7ff7b12eb000, 28672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7ff7b12eb000 +61509 mmap(0x7ff7b12f2000, 86016, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7ff7b12f2000 +61509 mmap(0x7ff7b1307000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1e000) = 0x7ff7b1307000 +61509 mmap(0x7ff7b1309000, 61648, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7ff7b1309000 +61509 close(3) = 0 +61509 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libselinux.so.1", O_RDONLY|O_CLOEXEC) = 3 +61509 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\0"..., 832) = 832 +61509 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=174312, ...}, AT_EMPTY_PATH) = 0 +61509 mmap(NULL, 186064, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7ff7b12ba000 +61509 mmap(0x7ff7b12c1000, 110592, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7ff7b12c1000 +61509 mmap(0x7ff7b12dc000, 32768, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x22000) = 0x7ff7b12dc000 +61509 mmap(0x7ff7b12e4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x29000) = 0x7ff7b12e4000 +61509 mmap(0x7ff7b12e6000, 5840, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7ff7b12e6000 +61509 close(3) = 0 +61509 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 +61509 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20t\2\0\0\0\0\0"..., 832) = 832 +61509 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61509 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1926232, ...}, AT_EMPTY_PATH) = 0 +61509 pread64(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784, 64) = 784 +61509 mmap(NULL, 1974096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7ff7b10d8000 +61509 mmap(0x7ff7b10fe000, 1400832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7ff7b10fe000 +61509 mmap(0x7ff7b1254000, 339968, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17c000) = 0x7ff7b1254000 +61509 mmap(0x7ff7b12a7000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1cf000) = 0x7ff7b12a7000 +61509 mmap(0x7ff7b12ad000, 53072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7ff7b12ad000 +61509 close(3) = 0 +61509 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libcap-ng.so.0", O_RDONLY|O_CLOEXEC) = 3 +61509 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\0"..., 832) = 832 +61509 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=30704, ...}, AT_EMPTY_PATH) = 0 +61509 mmap(NULL, 28736, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7ff7b10d0000 +61509 mmap(0x7ff7b10d2000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7ff7b10d2000 +61509 mmap(0x7ff7b10d5000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7ff7b10d5000 +61509 mmap(0x7ff7b10d6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7ff7b10d6000 +61509 close(3) = 0 +61509 openat(AT_FDCWD, "/lib/x86_64-linux-gnu/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = 3 +61509 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\0"..., 832) = 832 +61509 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=629384, ...}, AT_EMPTY_PATH) = 0 +61509 mmap(NULL, 627592, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7ff7b1036000 +61509 mmap(0x7ff7b1038000, 438272, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7ff7b1038000 +61509 mmap(0x7ff7b10a3000, 176128, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6d000) = 0x7ff7b10a3000 +61509 mmap(0x7ff7b10ce000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x98000) = 0x7ff7b10ce000 +61509 close(3) = 0 +61509 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7ff7b1034000 +61509 arch_prctl(ARCH_SET_FS, 0x7ff7b10354c0) = 0 +61509 set_tid_address(0x7ff7b1035790) = 61509 +61509 set_robust_list(0x7ff7b10357a0, 24) = 0 +61509 rseq(0x7ff7b1035de0, 0x20, 0, 0x53053053) = 0 +61509 mprotect(0x7ff7b12a7000, 16384, PROT_READ) = 0 +61509 mprotect(0x7ff7b10ce000, 4096, PROT_READ) = 0 +61509 mprotect(0x7ff7b10d6000, 4096, PROT_READ) = 0 +61509 mprotect(0x7ff7b12e4000, 4096, PROT_READ) = 0 +61509 mprotect(0x7ff7b1307000, 4096, PROT_READ) = 0 +61509 mprotect(0x559b63d43000, 4096, PROT_READ) = 0 +61509 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7ff7b1032000 +61509 mprotect(0x7ff7b1356000, 8192, PROT_READ) = 0 +61509 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 +61509 munmap(0x7ff7b1319000, 40283) = 0 +61509 openat(AT_FDCWD, "/proc/sys/kernel/cap_last_cap", O_RDONLY) = 3 +61509 fstatfs(3, {f_type=PROC_SUPER_MAGIC, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NODEV|ST_NOEXEC|ST_RELATIME}) = 0 +61509 read(3, "40\n", 7) = 3 +61509 close(3) = 0 +61509 prctl(PR_CAPBSET_READ, CAP_CHOWN) = 1 +61509 prctl(PR_GET_SECUREBITS) = 0 +61509 prctl(PR_GET_NO_NEW_PRIVS, 0, 0, 0, 0) = 0 +61509 prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_IS_SET, CAP_CHOWN, 0, 0) = 0 +61509 statfs("/sys/fs/selinux", 0x7fffd180f250) = -1 ENOENT (No such file or directory) +61509 statfs("/selinux", 0x7fffd180f250) = -1 ENOENT (No such file or directory) +61509 getrandom("\x55\x1d\x8e\xcf\x07\xef\xc3\x23", 8, GRND_NONBLOCK) = 8 +61509 brk(NULL) = 0x559b8704c000 +61509 brk(0x559b8706d000) = 0x559b8706d000 +61509 openat(AT_FDCWD, "/proc/filesystems", O_RDONLY|O_CLOEXEC) = 3 +61509 newfstatat(3, "", {st_mode=S_IFREG|0444, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61509 read(3, "nodev\tsysfs\nnodev\ttmpfs\nnodev\tbd"..., 1024) = 353 +61509 read(3, "", 1024) = 0 +61509 close(3) = 0 +61509 access("/etc/selinux/config", F_OK) = -1 ENOENT (No such file or directory) +61509 openat(AT_FDCWD, "/proc/61507/", O_RDONLY|O_DIRECTORY) = 3 +61509 openat(AT_FDCWD, "/proc/self/loginuid", O_RDONLY) = 4 +61509 read(4, "1000", 12) = 4 +61509 close(4) = 0 +61509 socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 4 +61509 connect(4, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) +61509 close(4) = 0 +61509 socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 4 +61509 connect(4, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory) +61509 close(4) = 0 +61509 newfstatat(AT_FDCWD, "/etc/nsswitch.conf", {st_mode=S_IFREG|0644, st_size=505, ...}, 0) = 0 +61509 newfstatat(AT_FDCWD, "/", {st_mode=S_IFDIR|0755, st_size=4096, ...}, 0) = 0 +61509 openat(AT_FDCWD, "/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 4 +61509 newfstatat(4, "", {st_mode=S_IFREG|0644, st_size=505, ...}, AT_EMPTY_PATH) = 0 +61509 read(4, "# /etc/nsswitch.conf\n#\n# Example"..., 4096) = 505 +61509 read(4, "", 4096) = 0 +61509 newfstatat(4, "", {st_mode=S_IFREG|0644, st_size=505, ...}, AT_EMPTY_PATH) = 0 +61509 close(4) = 0 +61509 openat(AT_FDCWD, "/etc/passwd", O_RDONLY|O_CLOEXEC) = 4 +61509 newfstatat(4, "", {st_mode=S_IFREG|0644, st_size=1422, ...}, AT_EMPTY_PATH) = 0 +61509 lseek(4, 0, SEEK_SET) = 0 +61509 read(4, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 1422 +61509 close(4) = 0 +61509 getuid() = 1000 +61509 newfstatat(AT_FDCWD, "/etc/nsswitch.conf", {st_mode=S_IFREG|0644, st_size=505, ...}, 0) = 0 +61509 openat(AT_FDCWD, "/etc/passwd", O_RDONLY|O_CLOEXEC) = 4 +61509 newfstatat(4, "", {st_mode=S_IFREG|0644, st_size=1422, ...}, AT_EMPTY_PATH) = 0 +61509 lseek(4, 0, SEEK_SET) = 0 +61509 read(4, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 1422 +61509 close(4) = 0 +61509 newfstatat(3, "", {st_mode=S_IFDIR|0555, st_size=0, ...}, AT_EMPTY_PATH) = 0 +61509 getuid() = 1000 +61509 openat(AT_FDCWD, "/etc/login.defs", O_RDONLY) = 4 +61509 newfstatat(4, "", {st_mode=S_IFREG|0644, st_size=12569, ...}, AT_EMPTY_PATH) = 0 +61509 read(4, "#\n# /etc/login.defs - Configurat"..., 4096) = 4096 +61509 read(4, " issuing \n# the \"mesg y\" command"..., 4096) = 4096 +61509 read(4, "users to gain permanent\n# access"..., 4096) = 4096 +61509 read(4, " #\n# Shadow utilities will displ"..., 4096) = 281 +61509 read(4, "", 4096) = 0 +61509 close(4) = 0 +61509 getgid() = 1000 +61509 getgid() = 1000 +61509 openat(AT_FDCWD, "/etc/subuid", O_RDONLY|O_NOCTTY|O_NONBLOCK|O_NOFOLLOW) = 4 +61509 fcntl(4, F_GETFL) = 0x28800 (flags O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_NOFOLLOW) +61509 fcntl(4, F_SETFD, FD_CLOEXEC) = 0 +61509 newfstatat(4, "", {st_mode=S_IFREG|0644, st_size=20, ...}, AT_EMPTY_PATH) = 0 +61509 read(4, "debian:100000:65536\n", 4096) = 20 +61509 read(4, "", 4096) = 0 +61509 openat(AT_FDCWD, "/etc/nsswitch.conf", O_RDONLY) = 5 +61509 newfstatat(5, "", {st_mode=S_IFREG|0644, st_size=505, ...}, AT_EMPTY_PATH) = 0 +61509 read(5, "# /etc/nsswitch.conf\n#\n# Example"..., 4096) = 505 +61509 read(5, "", 4096) = 0 +61509 close(5) = 0 +61509 newfstatat(AT_FDCWD, "/etc/nsswitch.conf", {st_mode=S_IFREG|0644, st_size=505, ...}, 0) = 0 +61509 openat(AT_FDCWD, "/etc/passwd", O_RDONLY|O_CLOEXEC) = 5 +61509 newfstatat(5, "", {st_mode=S_IFREG|0644, st_size=1422, ...}, AT_EMPTY_PATH) = 0 +61509 lseek(5, 0, SEEK_SET) = 0 +61509 read(5, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 1422 +61509 close(5) = 0 +61509 openat(3, "uid_map", O_WRONLY) = 5 +61509 write(5, "0 1000 1\n1 100000 1\n", 20) = -1 EPERM (Operation not permitted) +61509 write(2, "newuidmap: write to uid_map fail"..., 60) = 60 +61509 exit_group(1) = ? +61509 +++ exited with 1 +++ +61508 <... wait4 resumed>[{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 61509 +61508 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=61509, si_uid=1000, si_status=1, si_utime=0, si_stime=0} --- +61508 dup(1) = 3 +61508 close(3) = 0 +61508 dup(2) = 3 +61508 close(3) = 0 +61508 exit_group(1) = ? +61508 +++ exited with 1 +++ +61507 <... wait4 resumed>[{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 61508 +61507 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=61508, si_uid=65534, si_status=1, si_utime=0, si_stime=0} --- +61507 dup(1) = 3 +61507 close(3) = 0 +61507 dup(2) = 3 +61507 close(3) = 0 +61507 exit_group(1) = ? +61507 +++ exited with 1 +++ +61496 <... wait4 resumed>[{WIFEXITED(s) && WEXITSTATUS(s) == 1}], 0, NULL) = 61507 +61496 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0 +61496 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=61507, si_uid=1000, si_status=1, si_utime=0, si_stime=0} --- +61496 rt_sigaction(SIGINT, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, NULL, 8) = 0 +61496 rt_sigaction(SIGQUIT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, NULL, 8) = 0 +61496 read(3, "", 4) = 0 +61496 close(3) = 0 +61496 write(2, "E: Unable to chown /tmp/temp_190"..., 82) = 82 +61496 rt_sigaction(SIGHUP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGINT, NULL, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61496 rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61496 rt_sigaction(SIGQUIT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61496 rt_sigaction(SIGILL, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGTRAP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGABRT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGBUS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGFPE, NULL, {sa_handler=SIG_IGN, sa_mask=[FPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x7fac0a895050}, 8) = 0 +61496 rt_sigaction(SIGKILL, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGUSR1, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGSEGV, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGUSR2, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGPIPE, NULL, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61496 rt_sigaction(SIGPIPE, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61496 rt_sigaction(SIGALRM, NULL, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61496 rt_sigaction(SIGALRM, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61496 rt_sigaction(SIGTERM, NULL, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61496 rt_sigaction(SIGTERM, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, {sa_handler=0x558542e22580, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7fac0a895050}, 8) = 0 +61496 rt_sigaction(SIGSTKFLT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGCHLD, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGCONT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGSTOP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGTSTP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGTTIN, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGTTOU, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGURG, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGXCPU, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGXFSZ, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGVTALRM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGPROF, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGWINCH, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGIO, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGPWR, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGSYS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_2, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_3, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_4, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_5, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_6, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_7, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_8, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_9, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_10, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_11, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_12, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_13, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_14, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_15, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_16, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_17, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_18, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_19, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_20, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_21, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_22, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_23, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_24, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_25, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_26, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_27, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_28, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_29, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_30, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_31, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGRT_32, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGABRT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGCHLD, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 rt_sigaction(SIGIO, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0 +61496 getpid() = 61496 +61496 getpid() = 61496 +61496 getpid() = 61496 +61496 getpid() = 61496 +61496 close(6) = 0 +61496 brk(0x55855c873000) = 0x55855c873000 +61496 exit_group(25) = ? +61496 +++ exited with 25 +++ diff --git a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder-verify.toml b/upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder-verify.toml deleted file mode 100644 index 2c346ff6e..000000000 --- a/upcoming/noble/amd64/eth-node-teku/25.9.1-1/pkg-builder-verify.toml +++ /dev/null @@ -1,7 +0,0 @@ -[verify] -package_hash=[ - { hash="5aaafadd7bc77c6e2178589ca6c34a8f3a295bb8", name= "eth-node-teku_25.9.1-1.dsc"}, - { hash="8c29e3f8451ea63cd04f7ec40f861fe213897937", name= "eth-node-teku_25.9.1.orig.tar.gz"}, - { hash="017473a0e93b7dafe9500babce21764e2a0da084", name= "eth-node-teku_25.9.1-1.debian.tar.xz"}, - { hash="bd977e32406e1bd5ed46e598e321ebe746d6aff1", name= "eth-node-teku_25.9.1-1_amd64.deb"}, -]