├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── enhancement-idea.md │ └── support-request.md ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md └── workflows │ ├── build-qa-arch-matrix.yml │ ├── build-qa-config-matrix-large.yml │ ├── build-qa-config-matrix-small.yml │ ├── build-qa-os-matrix-large.yml │ ├── build-qa-os-matrix-small.yml │ ├── build-qa-out-of-tree-build.yml │ ├── build-qa-verify-make-targets-prefix.yml │ ├── code-qa-autoscan.yml │ ├── code-qa-codeql.yml │ ├── code-qa-coverity.yml │ ├── code-qa-sonarcloud.yml │ ├── code-qa-valgrind.yml │ ├── install-qa-installfile.yml │ ├── install-qa-os-matrix.yml │ ├── install-qa-readme.yml │ ├── packaging-qa-os-matrix-large.yml │ ├── packaging-qa-os-matrix-small.yml │ ├── publish-native-packages.yml │ ├── release-qa-os-matrix-install-from-repo.yml │ └── release-qa-os-matrix-install-from-source.yml ├── .gitignore ├── COPYING ├── ChangeLog ├── Makefile.am ├── README.md ├── bootstrap.sh ├── configure.ac ├── configure.scan ├── dev-tools ├── _bootstrap.sh ├── autoscan.sh ├── build-native-package.sh ├── build-release-package.sh ├── clean-git-repository.sh ├── create-release-commit-and-tag.sh ├── import-external-lib.sh ├── install-dev-software.sh ├── install-packaging-software.sh ├── libexec │ ├── extract-and-run-install-steps-from-readme.sh │ ├── extract-native-package-install-steps.sh │ ├── generate-gcov-reports.sh │ ├── get-random-configure-flags.sh │ ├── get-release-tag.sh │ ├── get-release-version.sh │ ├── get-sonarcloud-tag.sh │ ├── verify-last-version-everywhere.sh │ ├── verify-last-version-in-changelog.sh │ ├── verify-last-version-in-readme.sh │ └── verify-make-targets-prefix.sh ├── publish-native-package.sh ├── publish-release.sh ├── submit-to-coverity.conf.SAMPLE ├── submit-to-coverity.sh ├── submit-to-sonarcloud.conf.SAMPLE ├── submit-to-sonarcloud.sh └── test-build-matrix.sh ├── doc ├── CONTRIBUTING.md ├── DOCKER-BASED-ISSUE-DEMO-Dockerfile ├── DOCKER-BASED-ISSUE-DEMO.md ├── FAQ.md ├── FILTER_exclude_spawns_of.md ├── GETTING-SUPPORT.md ├── HACKING-INTERNALS.md ├── HACKING-OVERVIEW.md ├── HACKING-QA.md ├── INSTALL-MULTIARCH.md ├── INSTALL.md ├── Makefile.am ├── RELEASING-HOWTO.md ├── install-from-repo.md └── install-from-source.md ├── etc ├── Makefile.am └── snoopy.ini.in ├── install └── install-snoopy.sh ├── lib ├── Makefile.am └── inih │ ├── IMPORT.defs │ ├── LICENSE │ ├── Makefile.am │ ├── patches │ ├── 0001-strip-value-quotes.diff │ ├── 0002-prefix-function-names.diff │ └── 0003-fix-double-cast.diff │ └── src │ ├── Makefile.am │ ├── ini.c │ └── ini.h ├── packaging ├── arch │ ├── PKGBUILD │ ├── env │ └── snoopy.install ├── deb │ ├── README.Build.md │ ├── README.Debian │ ├── README.md │ ├── changelog.TEMPLATE │ ├── compat │ ├── control │ ├── copyright │ ├── extra-files │ │ └── snapd-apparmor-profile │ ├── rules │ ├── snoopy.config │ ├── snoopy.docs │ ├── snoopy.lintian-overrides │ ├── snoopy.postinst │ ├── snoopy.prerm │ ├── source.lintian-overrides │ ├── source │ │ └── format │ └── templates └── rpm │ ├── README.md │ └── snoopy.spec ├── src ├── Makefile.am ├── action │ ├── Makefile.am │ ├── log-message-dispatch.c │ ├── log-message-dispatch.h │ ├── log-syscall-exec.c │ └── log-syscall-exec.h ├── cli │ ├── Makefile.am │ ├── action-conf.c │ ├── action-conf.h │ ├── action-disable.c │ ├── action-disable.h │ ├── action-enable.c │ ├── action-enable.h │ ├── action-status.c │ ├── action-status.h │ ├── action-version.c │ ├── action-version.h │ ├── cli-subroutines.c │ ├── cli-subroutines.h │ └── snoopyctl.c ├── configfile.c ├── configfile.h ├── configuration.c ├── configuration.h ├── datasource │ ├── Makefile.am │ ├── cgroup.c │ ├── cgroup.h │ ├── cmdline.c │ ├── cmdline.h │ ├── cwd.c │ ├── cwd.h │ ├── datasource-common.h │ ├── datetime.c │ ├── datetime.h │ ├── domain.c │ ├── domain.h │ ├── egid.c │ ├── egid.h │ ├── egroup.c │ ├── egroup.h │ ├── env.c │ ├── env.h │ ├── env_all.c │ ├── env_all.h │ ├── euid.c │ ├── euid.h │ ├── eusername.c │ ├── eusername.h │ ├── failure.c │ ├── failure.h │ ├── filename.c │ ├── filename.h │ ├── gid.c │ ├── gid.h │ ├── group.c │ ├── group.h │ ├── hostname.c │ ├── hostname.h │ ├── ipaddr.c │ ├── ipaddr.h │ ├── login.c │ ├── login.h │ ├── noop.c │ ├── noop.h │ ├── pid.c │ ├── pid.h │ ├── ppid.c │ ├── ppid.h │ ├── rpname.c │ ├── rpname.h │ ├── sid.c │ ├── sid.h │ ├── snoopy_configure_command.c │ ├── snoopy_configure_command.h │ ├── snoopy_literal.c │ ├── snoopy_literal.h │ ├── snoopy_threads.c │ ├── snoopy_threads.h │ ├── snoopy_version.c │ ├── snoopy_version.h │ ├── systemd-unit-name.c │ ├── systemd-unit-name.h │ ├── tid.c │ ├── tid.h │ ├── tid_kernel.c │ ├── tid_kernel.h │ ├── timestamp.c │ ├── timestamp.h │ ├── timestamp_ms.c │ ├── timestamp_ms.h │ ├── timestamp_us.c │ ├── timestamp_us.h │ ├── tty.c │ ├── tty.h │ ├── tty__common.c │ ├── tty__common.h │ ├── tty_uid.c │ ├── tty_uid.h │ ├── tty_username.c │ ├── tty_username.h │ ├── uid.c │ ├── uid.h │ ├── username.c │ └── username.h ├── datasourceregistry.c ├── datasourceregistry.h ├── entrypoint │ ├── Makefile.am │ ├── cli.c │ ├── cli.h │ ├── execve-wrapper-test-configfile-env.c │ ├── execve-wrapper-test-configfile-env.h │ ├── execve-wrapper.c │ ├── execve-wrapper.h │ ├── test-cli.c │ └── test-cli.h ├── error.c ├── error.h ├── filter │ ├── Makefile.am │ ├── exclude_spawns_of.c │ ├── exclude_spawns_of.h │ ├── exclude_uid.c │ ├── exclude_uid.h │ ├── noop.c │ ├── noop.h │ ├── only_root.c │ ├── only_root.h │ ├── only_tty.c │ ├── only_tty.h │ ├── only_uid.c │ └── only_uid.h ├── filtering.c ├── filtering.h ├── filterregistry.c ├── filterregistry.h ├── genericregistry.c ├── genericregistry.h ├── init-deinit.c ├── init-deinit.h ├── inputdatastorage.c ├── inputdatastorage.h ├── message.c ├── message.h ├── output │ ├── Makefile.am │ ├── devlogoutput.c │ ├── devlogoutput.h │ ├── devnulloutput.c │ ├── devnulloutput.h │ ├── devttyoutput.c │ ├── devttyoutput.h │ ├── fileoutput.c │ ├── fileoutput.h │ ├── noopoutput.c │ ├── noopoutput.h │ ├── socketoutput.c │ ├── socketoutput.h │ ├── stderroutput.c │ ├── stderroutput.h │ ├── stdoutoutput.c │ ├── stdoutoutput.h │ ├── syslogoutput.c │ └── syslogoutput.h ├── outputregistry.c ├── outputregistry.h ├── snoopy.h ├── tsrm.c ├── tsrm.h └── util │ ├── Makefile.am │ ├── file-snoopy.h │ ├── file.c │ ├── list-snoopy.h │ ├── list.c │ ├── parser-snoopy.h │ ├── parser.c │ ├── pwd-snoopy.h │ ├── pwd.c │ ├── string-snoopy.h │ ├── string.c │ ├── syslog-snoopy.h │ ├── syslog.c │ ├── systemd-snoopy.h │ ├── systemd.c │ ├── utmp-snoopy.h │ └── utmp.c └── tests ├── Makefile.am ├── _bootstrap-paths.sh.in ├── _bootstrap.sh ├── bin ├── Makefile.am ├── action-common.h ├── action-run-configfile.c ├── action-run-configfile.h ├── action-run-datasource.c ├── action-run-datasource.h ├── action-run-everything.c ├── action-run-everything.h ├── action-run-filter.c ├── action-run-filter.h ├── action-run-filterchain.c ├── action-run-filterchain.h ├── action-run-messageformat.c ├── action-run-messageformat.h ├── action-run-output.c ├── action-run-output.h ├── action-run.c ├── action-run.h ├── action-stress-threads.c ├── action-stress-threads.h ├── action-stress-threadsexec.c ├── action-stress-threadsexec.h ├── action-stress.c ├── action-stress.h ├── action-unit-action-log-message-dispatch.c ├── action-unit-action-log-message-dispatch.h ├── action-unit-action-log-syscall-exec.c ├── action-unit-action-log-syscall-exec.h ├── action-unit-action.c ├── action-unit-action.h ├── action-unit-datasource-cmdline.c ├── action-unit-datasource-cmdline.h ├── action-unit-datasource.c ├── action-unit-datasource.h ├── action-unit-error.c ├── action-unit-error.h ├── action-unit-ext-ini.c ├── action-unit-ext-ini.h ├── action-unit-filterregistry.c ├── action-unit-filterregistry.h ├── action-unit-outputregistry.c ├── action-unit-outputregistry.h ├── action-unit-util-parser.c ├── action-unit-util-parser.h ├── action-unit-util-syslog.c ├── action-unit-util-syslog.h ├── action-unit-util-systemd.c ├── action-unit-util-systemd.h ├── action-unit-util-utmp.c ├── action-unit-util-utmp.h ├── action-unit-util.c ├── action-unit-util.h ├── action-unit.c ├── action-unit.h ├── snoopy-test.c └── spaceparent.c ├── cli ├── Makefile.am ├── _bootstrap.sh ├── cli-action-about.sh ├── cli-action-conf.sh ├── cli-action-disable-1-nofile.sh ├── cli-action-disable-2-emptyfile.sh ├── cli-action-disable-31-only-entry.sh ├── cli-action-disable-32-only-entry-no-newline.sh ├── cli-action-disable-33-only-entry-and-space.sh ├── cli-action-disable-34-only-entry-and-tab.sh ├── cli-action-disable-35-only-entry-and-comment.sh ├── cli-action-disable-41-first.sh ├── cli-action-disable-42-middle.sh ├── cli-action-disable-43-last.sh ├── cli-action-disable-44-last-no-newline.sh ├── cli-action-disable-45-after-identical-comment.sh ├── cli-action-disable-51-dupe-mine.sh ├── cli-action-disable-52-dupe-alien.sh ├── cli-action-disable-53-dupe-mixed.sh ├── cli-action-enable-1-nofile.sh ├── cli-action-enable-2-emptyfile.sh ├── cli-action-enable-31-non-empty.sh ├── cli-action-enable-32-non-empty-no-newline.sh ├── cli-action-enable-45-after-identical-comment.sh ├── cli-action-enable-51-already-enabled.sh ├── cli-action-enable-52-another-instance-enabled.sh ├── cli-action-help.sh ├── cli-action-status-LD_PRELOAD-absent.sh ├── cli-action-status-LD_PRELOAD-present.sh ├── cli-action-status-LD_PRELOAD-set-but-not-present.sh ├── cli-action-status-ld.so.preload-absent.sh ├── cli-action-status-ld.so.preload-alien.sh ├── cli-action-status-ld.so.preload-dupe.sh ├── cli-action-status-ld.so.preload-present.sh ├── cli-action-version-cli.sh ├── cli-action-version-library.sh ├── cli-err-action-missing-msg.sh ├── cli-err-action-missing-status.sh ├── cli-err-action-unknown-msg.sh └── cli-err-action-unknown-status.sh ├── combined ├── Makefile.am ├── _bootstrap.sh ├── combined-filter-exclude_uid-drop.sh ├── combined-filter-exclude_uid-pass.sh ├── combined-filter-only_uid-drop.sh ├── combined-filter-only_uid-pass.sh ├── combined-generic.sh ├── combined-nofilter-1.sh └── combined-nofilter-2.sh ├── configfile ├── Makefile.am ├── _bootstrap.sh ├── configfile-bom.sh ├── configfile-datasource_message_max_length-min.sh ├── configfile-datasource_message_max_length-purenumeric.sh ├── configfile-datasource_message_max_length-suffix-k.sh ├── configfile-datasource_message_max_length-suffix-m-max.sh ├── configfile-error_logging-n1.sh ├── configfile-error_logging-n2.sh ├── configfile-error_logging-n3.sh ├── configfile-error_logging-y1.sh ├── configfile-error_logging-y2.sh ├── configfile-error_logging-y3.sh ├── configfile-filter_chain-1.sh ├── configfile-generic.sh ├── configfile-inline-comment.sh ├── configfile-line-length-1023.sh ├── configfile-line-length-1024.sh ├── configfile-log_message_max_length-min.sh ├── configfile-log_message_max_length-purenumeric.sh ├── configfile-log_message_max_length-suffix-k.sh ├── configfile-log_message_max_length-suffix-m-max.sh ├── configfile-message_format-1.sh ├── configfile-message_format-double-quoted.sh ├── configfile-message_format-single-quoted.sh ├── configfile-message_format-unquoted.sh ├── configfile-output-devlog.sh ├── configfile-output-file.sh ├── configfile-output-invalid.sh ├── configfile-output-socket.sh ├── configfile-syslog_facility.sh ├── configfile-syslog_ident.sh └── configfile-syslog_level.sh ├── datasource ├── Makefile.am ├── _bootstrap.sh ├── datasource_cgroup-name-first.sh ├── datasource_cgroup-name-last.sh ├── datasource_cgroup-name-mid.sh ├── datasource_cgroup-name-notfound.sh ├── datasource_cgroup-name.sh ├── datasource_cgroup-number-notfound.sh ├── datasource_cgroup-number.sh ├── datasource_cmdline.sh ├── datasource_cwd.sh ├── datasource_datetime-fmt-epoch.sh ├── datasource_datetime-fmt-static.sh ├── datasource_datetime-fmt-too-long.sh ├── datasource_datetime-fmt-ymd.sh ├── datasource_datetime.sh ├── datasource_domain.sh ├── datasource_egid.sh ├── datasource_egroup.sh ├── datasource_env-set.sh ├── datasource_env-unset.sh ├── datasource_env_all.sh ├── datasource_euid.sh ├── datasource_eusername.sh ├── datasource_failure.sh ├── datasource_filename.sh ├── datasource_gid.sh ├── datasource_group.sh ├── datasource_hostname.sh ├── datasource_ipaddr.sh ├── datasource_login.sh ├── datasource_pid.sh ├── datasource_ppid.sh ├── datasource_rpname.sh ├── datasource_sid.sh ├── datasource_snoopy_configure_command.sh ├── datasource_snoopy_literal.sh ├── datasource_snoopy_threads.sh ├── datasource_snoopy_version.sh ├── datasource_systemd_unit_name.sh ├── datasource_tid.sh ├── datasource_tid_kernel.sh ├── datasource_timestamp.sh ├── datasource_timestamp_ms.sh ├── datasource_timestamp_us.sh ├── datasource_tty.sh ├── datasource_tty_uid.sh ├── datasource_tty_username.sh ├── datasource_uid.sh └── datasource_username.sh ├── filter ├── Makefile.am ├── _bootstrap.sh ├── filter_exclude_spawns_of-mustdrop-multiarg-first.sh ├── filter_exclude_spawns_of-mustdrop-multiarg-last.sh ├── filter_exclude_spawns_of-mustdrop-multiarg-mid.sh ├── filter_exclude_spawns_of-mustdrop-singlearg.sh ├── filter_exclude_spawns_of-mustdrop-spaceparent.sh ├── filter_exclude_spawns_of-mustlog-multiarg.sh ├── filter_exclude_spawns_of-mustlog-singlearg.sh ├── filter_exclude_spawns_of-mustlog-spaceparent.sh ├── filter_exclude_uid-drop-multi.sh ├── filter_exclude_uid-drop.sh ├── filter_exclude_uid-pass-multi.sh ├── filter_exclude_uid-pass.sh ├── filter_only_tty.sh ├── filter_only_uid-drop-multi.sh ├── filter_only_uid-drop.sh ├── filter_only_uid-pass-multi.sh ├── filter_only_uid-pass.sh ├── filterchain-double-bothdrop.sh ├── filterchain-double-bothpass.sh ├── filterchain-double-firstdrops.sh ├── filterchain-double-seconddrops.sh ├── filterchain-single-drop.sh ├── filterchain-single-pass.sh ├── filterchain-trailing-semicolon-drop.sh ├── filterchain-trailing-semicolon-pass.sh └── filterchain-unknown-filter.sh ├── general ├── Makefile.am ├── _bootstrap.sh └── general-symbol-leaks.sh ├── message ├── Makefile.am ├── _bootstrap.sh ├── message_format-datasource-arg.sh ├── message_format-datasource-noarg.sh ├── message_format-ds-closing-tag-missing.sh ├── message_format-ds-failure.sh ├── message_format-ds-unknown.sh ├── message_format-empty.sh └── message_format-static.sh ├── output ├── Makefile.am ├── _bootstrap.sh ├── output_devnull.sh ├── output_file-dynamic-arg.sh ├── output_file-dynamic.sh ├── output_file.sh ├── output_noop.sh ├── output_socket.sh ├── output_stderr.sh └── output_stdout.sh ├── threads ├── Makefile.am ├── _bootstrap.sh ├── threads_creation.sh ├── threads_fork_exec.sh └── threads_try-to-segfault.sh └── unit ├── Makefile.am ├── _bootstrap.sh ├── unit-action-log-message-dispatch.sh ├── unit-action-log-syscall-exec.sh ├── unit-datasource-cmdline.sh ├── unit-error.sh ├── unit-ext-ini.sh ├── unit-filterregistry.sh ├── unit-outputregistry.sh ├── unit-util-parser.sh ├── unit-util-syslog.sh ├── unit-util-systemd.sh ├── unit-util-utmp-entry-missing.sh ├── unit-util-utmp-entry-without-ip-address.sh ├── unit-util-utmp-ipv4.sh ├── unit-util-utmp-ipv6.sh └── unit-util-utmp-testUtmpFile /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://flattr.com/@bostjan'] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-idea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/ISSUE_TEMPLATE/enhancement-idea.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/ISSUE_TEMPLATE/support-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/build-qa-arch-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/build-qa-arch-matrix.yml -------------------------------------------------------------------------------- /.github/workflows/build-qa-config-matrix-large.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/build-qa-config-matrix-large.yml -------------------------------------------------------------------------------- /.github/workflows/build-qa-config-matrix-small.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/build-qa-config-matrix-small.yml -------------------------------------------------------------------------------- /.github/workflows/build-qa-os-matrix-large.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/build-qa-os-matrix-large.yml -------------------------------------------------------------------------------- /.github/workflows/build-qa-os-matrix-small.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/build-qa-os-matrix-small.yml -------------------------------------------------------------------------------- /.github/workflows/build-qa-out-of-tree-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/build-qa-out-of-tree-build.yml -------------------------------------------------------------------------------- /.github/workflows/build-qa-verify-make-targets-prefix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/build-qa-verify-make-targets-prefix.yml -------------------------------------------------------------------------------- /.github/workflows/code-qa-autoscan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/code-qa-autoscan.yml -------------------------------------------------------------------------------- /.github/workflows/code-qa-codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/code-qa-codeql.yml -------------------------------------------------------------------------------- /.github/workflows/code-qa-coverity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/code-qa-coverity.yml -------------------------------------------------------------------------------- /.github/workflows/code-qa-sonarcloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/code-qa-sonarcloud.yml -------------------------------------------------------------------------------- /.github/workflows/code-qa-valgrind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/code-qa-valgrind.yml -------------------------------------------------------------------------------- /.github/workflows/install-qa-installfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/install-qa-installfile.yml -------------------------------------------------------------------------------- /.github/workflows/install-qa-os-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/install-qa-os-matrix.yml -------------------------------------------------------------------------------- /.github/workflows/install-qa-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/install-qa-readme.yml -------------------------------------------------------------------------------- /.github/workflows/packaging-qa-os-matrix-large.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/packaging-qa-os-matrix-large.yml -------------------------------------------------------------------------------- /.github/workflows/packaging-qa-os-matrix-small.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/packaging-qa-os-matrix-small.yml -------------------------------------------------------------------------------- /.github/workflows/publish-native-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/publish-native-packages.yml -------------------------------------------------------------------------------- /.github/workflows/release-qa-os-matrix-install-from-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/release-qa-os-matrix-install-from-repo.yml -------------------------------------------------------------------------------- /.github/workflows/release-qa-os-matrix-install-from-source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.github/workflows/release-qa-os-matrix-install-from-source.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/configure.ac -------------------------------------------------------------------------------- /configure.scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/configure.scan -------------------------------------------------------------------------------- /dev-tools/_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/_bootstrap.sh -------------------------------------------------------------------------------- /dev-tools/autoscan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/autoscan.sh -------------------------------------------------------------------------------- /dev-tools/build-native-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/build-native-package.sh -------------------------------------------------------------------------------- /dev-tools/build-release-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/build-release-package.sh -------------------------------------------------------------------------------- /dev-tools/clean-git-repository.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/clean-git-repository.sh -------------------------------------------------------------------------------- /dev-tools/create-release-commit-and-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/create-release-commit-and-tag.sh -------------------------------------------------------------------------------- /dev-tools/import-external-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/import-external-lib.sh -------------------------------------------------------------------------------- /dev-tools/install-dev-software.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/install-dev-software.sh -------------------------------------------------------------------------------- /dev-tools/install-packaging-software.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/install-packaging-software.sh -------------------------------------------------------------------------------- /dev-tools/libexec/extract-and-run-install-steps-from-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/libexec/extract-and-run-install-steps-from-readme.sh -------------------------------------------------------------------------------- /dev-tools/libexec/extract-native-package-install-steps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/libexec/extract-native-package-install-steps.sh -------------------------------------------------------------------------------- /dev-tools/libexec/generate-gcov-reports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/libexec/generate-gcov-reports.sh -------------------------------------------------------------------------------- /dev-tools/libexec/get-random-configure-flags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/libexec/get-random-configure-flags.sh -------------------------------------------------------------------------------- /dev-tools/libexec/get-release-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/libexec/get-release-tag.sh -------------------------------------------------------------------------------- /dev-tools/libexec/get-release-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/libexec/get-release-version.sh -------------------------------------------------------------------------------- /dev-tools/libexec/get-sonarcloud-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/libexec/get-sonarcloud-tag.sh -------------------------------------------------------------------------------- /dev-tools/libexec/verify-last-version-everywhere.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/libexec/verify-last-version-everywhere.sh -------------------------------------------------------------------------------- /dev-tools/libexec/verify-last-version-in-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/libexec/verify-last-version-in-changelog.sh -------------------------------------------------------------------------------- /dev-tools/libexec/verify-last-version-in-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/libexec/verify-last-version-in-readme.sh -------------------------------------------------------------------------------- /dev-tools/libexec/verify-make-targets-prefix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/libexec/verify-make-targets-prefix.sh -------------------------------------------------------------------------------- /dev-tools/publish-native-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/publish-native-package.sh -------------------------------------------------------------------------------- /dev-tools/publish-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/publish-release.sh -------------------------------------------------------------------------------- /dev-tools/submit-to-coverity.conf.SAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/submit-to-coverity.conf.SAMPLE -------------------------------------------------------------------------------- /dev-tools/submit-to-coverity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/submit-to-coverity.sh -------------------------------------------------------------------------------- /dev-tools/submit-to-sonarcloud.conf.SAMPLE: -------------------------------------------------------------------------------- 1 | SONAR_TOKEN="" 2 | -------------------------------------------------------------------------------- /dev-tools/submit-to-sonarcloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/submit-to-sonarcloud.sh -------------------------------------------------------------------------------- /dev-tools/test-build-matrix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/dev-tools/test-build-matrix.sh -------------------------------------------------------------------------------- /doc/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/CONTRIBUTING.md -------------------------------------------------------------------------------- /doc/DOCKER-BASED-ISSUE-DEMO-Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/DOCKER-BASED-ISSUE-DEMO-Dockerfile -------------------------------------------------------------------------------- /doc/DOCKER-BASED-ISSUE-DEMO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/DOCKER-BASED-ISSUE-DEMO.md -------------------------------------------------------------------------------- /doc/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/FAQ.md -------------------------------------------------------------------------------- /doc/FILTER_exclude_spawns_of.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/FILTER_exclude_spawns_of.md -------------------------------------------------------------------------------- /doc/GETTING-SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/GETTING-SUPPORT.md -------------------------------------------------------------------------------- /doc/HACKING-INTERNALS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/HACKING-INTERNALS.md -------------------------------------------------------------------------------- /doc/HACKING-OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/HACKING-OVERVIEW.md -------------------------------------------------------------------------------- /doc/HACKING-QA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/HACKING-QA.md -------------------------------------------------------------------------------- /doc/INSTALL-MULTIARCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/INSTALL-MULTIARCH.md -------------------------------------------------------------------------------- /doc/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/INSTALL.md -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/RELEASING-HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/RELEASING-HOWTO.md -------------------------------------------------------------------------------- /doc/install-from-repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/install-from-repo.md -------------------------------------------------------------------------------- /doc/install-from-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/doc/install-from-source.md -------------------------------------------------------------------------------- /etc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/etc/Makefile.am -------------------------------------------------------------------------------- /etc/snoopy.ini.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/etc/snoopy.ini.in -------------------------------------------------------------------------------- /install/install-snoopy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/install/install-snoopy.sh -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/inih/IMPORT.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/lib/inih/IMPORT.defs -------------------------------------------------------------------------------- /lib/inih/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/lib/inih/LICENSE -------------------------------------------------------------------------------- /lib/inih/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/lib/inih/Makefile.am -------------------------------------------------------------------------------- /lib/inih/patches/0001-strip-value-quotes.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/lib/inih/patches/0001-strip-value-quotes.diff -------------------------------------------------------------------------------- /lib/inih/patches/0002-prefix-function-names.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/lib/inih/patches/0002-prefix-function-names.diff -------------------------------------------------------------------------------- /lib/inih/patches/0003-fix-double-cast.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/lib/inih/patches/0003-fix-double-cast.diff -------------------------------------------------------------------------------- /lib/inih/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/lib/inih/src/Makefile.am -------------------------------------------------------------------------------- /lib/inih/src/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/lib/inih/src/ini.c -------------------------------------------------------------------------------- /lib/inih/src/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/lib/inih/src/ini.h -------------------------------------------------------------------------------- /packaging/arch/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/arch/PKGBUILD -------------------------------------------------------------------------------- /packaging/arch/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/arch/env -------------------------------------------------------------------------------- /packaging/arch/snoopy.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/arch/snoopy.install -------------------------------------------------------------------------------- /packaging/deb/README.Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/README.Build.md -------------------------------------------------------------------------------- /packaging/deb/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/README.Debian -------------------------------------------------------------------------------- /packaging/deb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/README.md -------------------------------------------------------------------------------- /packaging/deb/changelog.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/changelog.TEMPLATE -------------------------------------------------------------------------------- /packaging/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /packaging/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/control -------------------------------------------------------------------------------- /packaging/deb/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/copyright -------------------------------------------------------------------------------- /packaging/deb/extra-files/snapd-apparmor-profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/extra-files/snapd-apparmor-profile -------------------------------------------------------------------------------- /packaging/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/rules -------------------------------------------------------------------------------- /packaging/deb/snoopy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/snoopy.config -------------------------------------------------------------------------------- /packaging/deb/snoopy.docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /packaging/deb/snoopy.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/snoopy.lintian-overrides -------------------------------------------------------------------------------- /packaging/deb/snoopy.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/snoopy.postinst -------------------------------------------------------------------------------- /packaging/deb/snoopy.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/snoopy.prerm -------------------------------------------------------------------------------- /packaging/deb/source.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/source.lintian-overrides -------------------------------------------------------------------------------- /packaging/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (git) 2 | -------------------------------------------------------------------------------- /packaging/deb/templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/deb/templates -------------------------------------------------------------------------------- /packaging/rpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/rpm/README.md -------------------------------------------------------------------------------- /packaging/rpm/snoopy.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/packaging/rpm/snoopy.spec -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/action/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/action/Makefile.am -------------------------------------------------------------------------------- /src/action/log-message-dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/action/log-message-dispatch.c -------------------------------------------------------------------------------- /src/action/log-message-dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/action/log-message-dispatch.h -------------------------------------------------------------------------------- /src/action/log-syscall-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/action/log-syscall-exec.c -------------------------------------------------------------------------------- /src/action/log-syscall-exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/action/log-syscall-exec.h -------------------------------------------------------------------------------- /src/cli/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/Makefile.am -------------------------------------------------------------------------------- /src/cli/action-conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/action-conf.c -------------------------------------------------------------------------------- /src/cli/action-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/action-conf.h -------------------------------------------------------------------------------- /src/cli/action-disable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/action-disable.c -------------------------------------------------------------------------------- /src/cli/action-disable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/action-disable.h -------------------------------------------------------------------------------- /src/cli/action-enable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/action-enable.c -------------------------------------------------------------------------------- /src/cli/action-enable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/action-enable.h -------------------------------------------------------------------------------- /src/cli/action-status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/action-status.c -------------------------------------------------------------------------------- /src/cli/action-status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/action-status.h -------------------------------------------------------------------------------- /src/cli/action-version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/action-version.c -------------------------------------------------------------------------------- /src/cli/action-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/action-version.h -------------------------------------------------------------------------------- /src/cli/cli-subroutines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/cli-subroutines.c -------------------------------------------------------------------------------- /src/cli/cli-subroutines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/cli-subroutines.h -------------------------------------------------------------------------------- /src/cli/snoopyctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/cli/snoopyctl.c -------------------------------------------------------------------------------- /src/configfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/configfile.c -------------------------------------------------------------------------------- /src/configfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/configfile.h -------------------------------------------------------------------------------- /src/configuration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/configuration.c -------------------------------------------------------------------------------- /src/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/configuration.h -------------------------------------------------------------------------------- /src/datasource/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/Makefile.am -------------------------------------------------------------------------------- /src/datasource/cgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/cgroup.c -------------------------------------------------------------------------------- /src/datasource/cgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/cgroup.h -------------------------------------------------------------------------------- /src/datasource/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/cmdline.c -------------------------------------------------------------------------------- /src/datasource/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/cmdline.h -------------------------------------------------------------------------------- /src/datasource/cwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/cwd.c -------------------------------------------------------------------------------- /src/datasource/cwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/cwd.h -------------------------------------------------------------------------------- /src/datasource/datasource-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/datasource-common.h -------------------------------------------------------------------------------- /src/datasource/datetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/datetime.c -------------------------------------------------------------------------------- /src/datasource/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/datetime.h -------------------------------------------------------------------------------- /src/datasource/domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/domain.c -------------------------------------------------------------------------------- /src/datasource/domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/domain.h -------------------------------------------------------------------------------- /src/datasource/egid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/egid.c -------------------------------------------------------------------------------- /src/datasource/egid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/egid.h -------------------------------------------------------------------------------- /src/datasource/egroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/egroup.c -------------------------------------------------------------------------------- /src/datasource/egroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/egroup.h -------------------------------------------------------------------------------- /src/datasource/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/env.c -------------------------------------------------------------------------------- /src/datasource/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/env.h -------------------------------------------------------------------------------- /src/datasource/env_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/env_all.c -------------------------------------------------------------------------------- /src/datasource/env_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/env_all.h -------------------------------------------------------------------------------- /src/datasource/euid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/euid.c -------------------------------------------------------------------------------- /src/datasource/euid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/euid.h -------------------------------------------------------------------------------- /src/datasource/eusername.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/eusername.c -------------------------------------------------------------------------------- /src/datasource/eusername.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/eusername.h -------------------------------------------------------------------------------- /src/datasource/failure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/failure.c -------------------------------------------------------------------------------- /src/datasource/failure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/failure.h -------------------------------------------------------------------------------- /src/datasource/filename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/filename.c -------------------------------------------------------------------------------- /src/datasource/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/filename.h -------------------------------------------------------------------------------- /src/datasource/gid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/gid.c -------------------------------------------------------------------------------- /src/datasource/gid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/gid.h -------------------------------------------------------------------------------- /src/datasource/group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/group.c -------------------------------------------------------------------------------- /src/datasource/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/group.h -------------------------------------------------------------------------------- /src/datasource/hostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/hostname.c -------------------------------------------------------------------------------- /src/datasource/hostname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/hostname.h -------------------------------------------------------------------------------- /src/datasource/ipaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/ipaddr.c -------------------------------------------------------------------------------- /src/datasource/ipaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/ipaddr.h -------------------------------------------------------------------------------- /src/datasource/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/login.c -------------------------------------------------------------------------------- /src/datasource/login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/login.h -------------------------------------------------------------------------------- /src/datasource/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/noop.c -------------------------------------------------------------------------------- /src/datasource/noop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/noop.h -------------------------------------------------------------------------------- /src/datasource/pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/pid.c -------------------------------------------------------------------------------- /src/datasource/pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/pid.h -------------------------------------------------------------------------------- /src/datasource/ppid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/ppid.c -------------------------------------------------------------------------------- /src/datasource/ppid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/ppid.h -------------------------------------------------------------------------------- /src/datasource/rpname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/rpname.c -------------------------------------------------------------------------------- /src/datasource/rpname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/rpname.h -------------------------------------------------------------------------------- /src/datasource/sid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/sid.c -------------------------------------------------------------------------------- /src/datasource/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/sid.h -------------------------------------------------------------------------------- /src/datasource/snoopy_configure_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/snoopy_configure_command.c -------------------------------------------------------------------------------- /src/datasource/snoopy_configure_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/snoopy_configure_command.h -------------------------------------------------------------------------------- /src/datasource/snoopy_literal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/snoopy_literal.c -------------------------------------------------------------------------------- /src/datasource/snoopy_literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/snoopy_literal.h -------------------------------------------------------------------------------- /src/datasource/snoopy_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/snoopy_threads.c -------------------------------------------------------------------------------- /src/datasource/snoopy_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/snoopy_threads.h -------------------------------------------------------------------------------- /src/datasource/snoopy_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/snoopy_version.c -------------------------------------------------------------------------------- /src/datasource/snoopy_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/snoopy_version.h -------------------------------------------------------------------------------- /src/datasource/systemd-unit-name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/systemd-unit-name.c -------------------------------------------------------------------------------- /src/datasource/systemd-unit-name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/systemd-unit-name.h -------------------------------------------------------------------------------- /src/datasource/tid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/tid.c -------------------------------------------------------------------------------- /src/datasource/tid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/tid.h -------------------------------------------------------------------------------- /src/datasource/tid_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/tid_kernel.c -------------------------------------------------------------------------------- /src/datasource/tid_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/tid_kernel.h -------------------------------------------------------------------------------- /src/datasource/timestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/timestamp.c -------------------------------------------------------------------------------- /src/datasource/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/timestamp.h -------------------------------------------------------------------------------- /src/datasource/timestamp_ms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/timestamp_ms.c -------------------------------------------------------------------------------- /src/datasource/timestamp_ms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/timestamp_ms.h -------------------------------------------------------------------------------- /src/datasource/timestamp_us.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/timestamp_us.c -------------------------------------------------------------------------------- /src/datasource/timestamp_us.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/timestamp_us.h -------------------------------------------------------------------------------- /src/datasource/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/tty.c -------------------------------------------------------------------------------- /src/datasource/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/tty.h -------------------------------------------------------------------------------- /src/datasource/tty__common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/tty__common.c -------------------------------------------------------------------------------- /src/datasource/tty__common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/tty__common.h -------------------------------------------------------------------------------- /src/datasource/tty_uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/tty_uid.c -------------------------------------------------------------------------------- /src/datasource/tty_uid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/tty_uid.h -------------------------------------------------------------------------------- /src/datasource/tty_username.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/tty_username.c -------------------------------------------------------------------------------- /src/datasource/tty_username.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/tty_username.h -------------------------------------------------------------------------------- /src/datasource/uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/uid.c -------------------------------------------------------------------------------- /src/datasource/uid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/uid.h -------------------------------------------------------------------------------- /src/datasource/username.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/username.c -------------------------------------------------------------------------------- /src/datasource/username.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasource/username.h -------------------------------------------------------------------------------- /src/datasourceregistry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasourceregistry.c -------------------------------------------------------------------------------- /src/datasourceregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/datasourceregistry.h -------------------------------------------------------------------------------- /src/entrypoint/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/entrypoint/Makefile.am -------------------------------------------------------------------------------- /src/entrypoint/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/entrypoint/cli.c -------------------------------------------------------------------------------- /src/entrypoint/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/entrypoint/cli.h -------------------------------------------------------------------------------- /src/entrypoint/execve-wrapper-test-configfile-env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/entrypoint/execve-wrapper-test-configfile-env.c -------------------------------------------------------------------------------- /src/entrypoint/execve-wrapper-test-configfile-env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/entrypoint/execve-wrapper-test-configfile-env.h -------------------------------------------------------------------------------- /src/entrypoint/execve-wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/entrypoint/execve-wrapper.c -------------------------------------------------------------------------------- /src/entrypoint/execve-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/entrypoint/execve-wrapper.h -------------------------------------------------------------------------------- /src/entrypoint/test-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/entrypoint/test-cli.c -------------------------------------------------------------------------------- /src/entrypoint/test-cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/entrypoint/test-cli.h -------------------------------------------------------------------------------- /src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/error.c -------------------------------------------------------------------------------- /src/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/error.h -------------------------------------------------------------------------------- /src/filter/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filter/Makefile.am -------------------------------------------------------------------------------- /src/filter/exclude_spawns_of.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filter/exclude_spawns_of.c -------------------------------------------------------------------------------- /src/filter/exclude_spawns_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filter/exclude_spawns_of.h -------------------------------------------------------------------------------- /src/filter/exclude_uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filter/exclude_uid.c -------------------------------------------------------------------------------- /src/filter/exclude_uid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filter/exclude_uid.h -------------------------------------------------------------------------------- /src/filter/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filter/noop.c -------------------------------------------------------------------------------- /src/filter/noop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filter/noop.h -------------------------------------------------------------------------------- /src/filter/only_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filter/only_root.c -------------------------------------------------------------------------------- /src/filter/only_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filter/only_root.h -------------------------------------------------------------------------------- /src/filter/only_tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filter/only_tty.c -------------------------------------------------------------------------------- /src/filter/only_tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filter/only_tty.h -------------------------------------------------------------------------------- /src/filter/only_uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filter/only_uid.c -------------------------------------------------------------------------------- /src/filter/only_uid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filter/only_uid.h -------------------------------------------------------------------------------- /src/filtering.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filtering.c -------------------------------------------------------------------------------- /src/filtering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filtering.h -------------------------------------------------------------------------------- /src/filterregistry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filterregistry.c -------------------------------------------------------------------------------- /src/filterregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/filterregistry.h -------------------------------------------------------------------------------- /src/genericregistry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/genericregistry.c -------------------------------------------------------------------------------- /src/genericregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/genericregistry.h -------------------------------------------------------------------------------- /src/init-deinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/init-deinit.c -------------------------------------------------------------------------------- /src/init-deinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/init-deinit.h -------------------------------------------------------------------------------- /src/inputdatastorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/inputdatastorage.c -------------------------------------------------------------------------------- /src/inputdatastorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/inputdatastorage.h -------------------------------------------------------------------------------- /src/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/message.c -------------------------------------------------------------------------------- /src/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/message.h -------------------------------------------------------------------------------- /src/output/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/Makefile.am -------------------------------------------------------------------------------- /src/output/devlogoutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/devlogoutput.c -------------------------------------------------------------------------------- /src/output/devlogoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/devlogoutput.h -------------------------------------------------------------------------------- /src/output/devnulloutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/devnulloutput.c -------------------------------------------------------------------------------- /src/output/devnulloutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/devnulloutput.h -------------------------------------------------------------------------------- /src/output/devttyoutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/devttyoutput.c -------------------------------------------------------------------------------- /src/output/devttyoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/devttyoutput.h -------------------------------------------------------------------------------- /src/output/fileoutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/fileoutput.c -------------------------------------------------------------------------------- /src/output/fileoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/fileoutput.h -------------------------------------------------------------------------------- /src/output/noopoutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/noopoutput.c -------------------------------------------------------------------------------- /src/output/noopoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/noopoutput.h -------------------------------------------------------------------------------- /src/output/socketoutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/socketoutput.c -------------------------------------------------------------------------------- /src/output/socketoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/socketoutput.h -------------------------------------------------------------------------------- /src/output/stderroutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/stderroutput.c -------------------------------------------------------------------------------- /src/output/stderroutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/stderroutput.h -------------------------------------------------------------------------------- /src/output/stdoutoutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/stdoutoutput.c -------------------------------------------------------------------------------- /src/output/stdoutoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/stdoutoutput.h -------------------------------------------------------------------------------- /src/output/syslogoutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/syslogoutput.c -------------------------------------------------------------------------------- /src/output/syslogoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/output/syslogoutput.h -------------------------------------------------------------------------------- /src/outputregistry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/outputregistry.c -------------------------------------------------------------------------------- /src/outputregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/outputregistry.h -------------------------------------------------------------------------------- /src/snoopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/snoopy.h -------------------------------------------------------------------------------- /src/tsrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/tsrm.c -------------------------------------------------------------------------------- /src/tsrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/tsrm.h -------------------------------------------------------------------------------- /src/util/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/Makefile.am -------------------------------------------------------------------------------- /src/util/file-snoopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/file-snoopy.h -------------------------------------------------------------------------------- /src/util/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/file.c -------------------------------------------------------------------------------- /src/util/list-snoopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/list-snoopy.h -------------------------------------------------------------------------------- /src/util/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/list.c -------------------------------------------------------------------------------- /src/util/parser-snoopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/parser-snoopy.h -------------------------------------------------------------------------------- /src/util/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/parser.c -------------------------------------------------------------------------------- /src/util/pwd-snoopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/pwd-snoopy.h -------------------------------------------------------------------------------- /src/util/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/pwd.c -------------------------------------------------------------------------------- /src/util/string-snoopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/string-snoopy.h -------------------------------------------------------------------------------- /src/util/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/string.c -------------------------------------------------------------------------------- /src/util/syslog-snoopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/syslog-snoopy.h -------------------------------------------------------------------------------- /src/util/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/syslog.c -------------------------------------------------------------------------------- /src/util/systemd-snoopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/systemd-snoopy.h -------------------------------------------------------------------------------- /src/util/systemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/systemd.c -------------------------------------------------------------------------------- /src/util/utmp-snoopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/utmp-snoopy.h -------------------------------------------------------------------------------- /src/util/utmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/src/util/utmp.c -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/_bootstrap-paths.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/_bootstrap-paths.sh.in -------------------------------------------------------------------------------- /tests/_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/_bootstrap.sh -------------------------------------------------------------------------------- /tests/bin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/Makefile.am -------------------------------------------------------------------------------- /tests/bin/action-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-common.h -------------------------------------------------------------------------------- /tests/bin/action-run-configfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-configfile.c -------------------------------------------------------------------------------- /tests/bin/action-run-configfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-configfile.h -------------------------------------------------------------------------------- /tests/bin/action-run-datasource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-datasource.c -------------------------------------------------------------------------------- /tests/bin/action-run-datasource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-datasource.h -------------------------------------------------------------------------------- /tests/bin/action-run-everything.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-everything.c -------------------------------------------------------------------------------- /tests/bin/action-run-everything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-everything.h -------------------------------------------------------------------------------- /tests/bin/action-run-filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-filter.c -------------------------------------------------------------------------------- /tests/bin/action-run-filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-filter.h -------------------------------------------------------------------------------- /tests/bin/action-run-filterchain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-filterchain.c -------------------------------------------------------------------------------- /tests/bin/action-run-filterchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-filterchain.h -------------------------------------------------------------------------------- /tests/bin/action-run-messageformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-messageformat.c -------------------------------------------------------------------------------- /tests/bin/action-run-messageformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-messageformat.h -------------------------------------------------------------------------------- /tests/bin/action-run-output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-output.c -------------------------------------------------------------------------------- /tests/bin/action-run-output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run-output.h -------------------------------------------------------------------------------- /tests/bin/action-run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run.c -------------------------------------------------------------------------------- /tests/bin/action-run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-run.h -------------------------------------------------------------------------------- /tests/bin/action-stress-threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-stress-threads.c -------------------------------------------------------------------------------- /tests/bin/action-stress-threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-stress-threads.h -------------------------------------------------------------------------------- /tests/bin/action-stress-threadsexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-stress-threadsexec.c -------------------------------------------------------------------------------- /tests/bin/action-stress-threadsexec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-stress-threadsexec.h -------------------------------------------------------------------------------- /tests/bin/action-stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-stress.c -------------------------------------------------------------------------------- /tests/bin/action-stress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-stress.h -------------------------------------------------------------------------------- /tests/bin/action-unit-action-log-message-dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-action-log-message-dispatch.c -------------------------------------------------------------------------------- /tests/bin/action-unit-action-log-message-dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-action-log-message-dispatch.h -------------------------------------------------------------------------------- /tests/bin/action-unit-action-log-syscall-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-action-log-syscall-exec.c -------------------------------------------------------------------------------- /tests/bin/action-unit-action-log-syscall-exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-action-log-syscall-exec.h -------------------------------------------------------------------------------- /tests/bin/action-unit-action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-action.c -------------------------------------------------------------------------------- /tests/bin/action-unit-action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-action.h -------------------------------------------------------------------------------- /tests/bin/action-unit-datasource-cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-datasource-cmdline.c -------------------------------------------------------------------------------- /tests/bin/action-unit-datasource-cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-datasource-cmdline.h -------------------------------------------------------------------------------- /tests/bin/action-unit-datasource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-datasource.c -------------------------------------------------------------------------------- /tests/bin/action-unit-datasource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-datasource.h -------------------------------------------------------------------------------- /tests/bin/action-unit-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-error.c -------------------------------------------------------------------------------- /tests/bin/action-unit-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-error.h -------------------------------------------------------------------------------- /tests/bin/action-unit-ext-ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-ext-ini.c -------------------------------------------------------------------------------- /tests/bin/action-unit-ext-ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-ext-ini.h -------------------------------------------------------------------------------- /tests/bin/action-unit-filterregistry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-filterregistry.c -------------------------------------------------------------------------------- /tests/bin/action-unit-filterregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-filterregistry.h -------------------------------------------------------------------------------- /tests/bin/action-unit-outputregistry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-outputregistry.c -------------------------------------------------------------------------------- /tests/bin/action-unit-outputregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-outputregistry.h -------------------------------------------------------------------------------- /tests/bin/action-unit-util-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-util-parser.c -------------------------------------------------------------------------------- /tests/bin/action-unit-util-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-util-parser.h -------------------------------------------------------------------------------- /tests/bin/action-unit-util-syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-util-syslog.c -------------------------------------------------------------------------------- /tests/bin/action-unit-util-syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-util-syslog.h -------------------------------------------------------------------------------- /tests/bin/action-unit-util-systemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-util-systemd.c -------------------------------------------------------------------------------- /tests/bin/action-unit-util-systemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-util-systemd.h -------------------------------------------------------------------------------- /tests/bin/action-unit-util-utmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-util-utmp.c -------------------------------------------------------------------------------- /tests/bin/action-unit-util-utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-util-utmp.h -------------------------------------------------------------------------------- /tests/bin/action-unit-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-util.c -------------------------------------------------------------------------------- /tests/bin/action-unit-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit-util.h -------------------------------------------------------------------------------- /tests/bin/action-unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit.c -------------------------------------------------------------------------------- /tests/bin/action-unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/action-unit.h -------------------------------------------------------------------------------- /tests/bin/snoopy-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/snoopy-test.c -------------------------------------------------------------------------------- /tests/bin/spaceparent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/bin/spaceparent.c -------------------------------------------------------------------------------- /tests/cli/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/Makefile.am -------------------------------------------------------------------------------- /tests/cli/_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/_bootstrap.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-about.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-about.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-conf.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-1-nofile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-1-nofile.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-2-emptyfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-2-emptyfile.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-31-only-entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-31-only-entry.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-32-only-entry-no-newline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-32-only-entry-no-newline.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-33-only-entry-and-space.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-33-only-entry-and-space.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-34-only-entry-and-tab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-34-only-entry-and-tab.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-35-only-entry-and-comment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-35-only-entry-and-comment.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-41-first.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-41-first.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-42-middle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-42-middle.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-43-last.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-43-last.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-44-last-no-newline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-44-last-no-newline.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-45-after-identical-comment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-45-after-identical-comment.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-51-dupe-mine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-51-dupe-mine.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-52-dupe-alien.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-52-dupe-alien.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-disable-53-dupe-mixed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-disable-53-dupe-mixed.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-enable-1-nofile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-enable-1-nofile.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-enable-2-emptyfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-enable-2-emptyfile.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-enable-31-non-empty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-enable-31-non-empty.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-enable-32-non-empty-no-newline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-enable-32-non-empty-no-newline.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-enable-45-after-identical-comment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-enable-45-after-identical-comment.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-enable-51-already-enabled.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-enable-51-already-enabled.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-enable-52-another-instance-enabled.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-enable-52-another-instance-enabled.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-help.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-status-LD_PRELOAD-absent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-status-LD_PRELOAD-absent.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-status-LD_PRELOAD-present.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-status-LD_PRELOAD-present.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-status-LD_PRELOAD-set-but-not-present.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-status-LD_PRELOAD-set-but-not-present.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-status-ld.so.preload-absent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-status-ld.so.preload-absent.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-status-ld.so.preload-alien.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-status-ld.so.preload-alien.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-status-ld.so.preload-dupe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-status-ld.so.preload-dupe.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-status-ld.so.preload-present.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-status-ld.so.preload-present.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-version-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-version-cli.sh -------------------------------------------------------------------------------- /tests/cli/cli-action-version-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-action-version-library.sh -------------------------------------------------------------------------------- /tests/cli/cli-err-action-missing-msg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-err-action-missing-msg.sh -------------------------------------------------------------------------------- /tests/cli/cli-err-action-missing-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-err-action-missing-status.sh -------------------------------------------------------------------------------- /tests/cli/cli-err-action-unknown-msg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-err-action-unknown-msg.sh -------------------------------------------------------------------------------- /tests/cli/cli-err-action-unknown-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/cli/cli-err-action-unknown-status.sh -------------------------------------------------------------------------------- /tests/combined/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/combined/Makefile.am -------------------------------------------------------------------------------- /tests/combined/_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/combined/_bootstrap.sh -------------------------------------------------------------------------------- /tests/combined/combined-filter-exclude_uid-drop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/combined/combined-filter-exclude_uid-drop.sh -------------------------------------------------------------------------------- /tests/combined/combined-filter-exclude_uid-pass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/combined/combined-filter-exclude_uid-pass.sh -------------------------------------------------------------------------------- /tests/combined/combined-filter-only_uid-drop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/combined/combined-filter-only_uid-drop.sh -------------------------------------------------------------------------------- /tests/combined/combined-filter-only_uid-pass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/combined/combined-filter-only_uid-pass.sh -------------------------------------------------------------------------------- /tests/combined/combined-generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/combined/combined-generic.sh -------------------------------------------------------------------------------- /tests/combined/combined-nofilter-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/combined/combined-nofilter-1.sh -------------------------------------------------------------------------------- /tests/combined/combined-nofilter-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/combined/combined-nofilter-2.sh -------------------------------------------------------------------------------- /tests/configfile/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/Makefile.am -------------------------------------------------------------------------------- /tests/configfile/_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/_bootstrap.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-bom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-bom.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-datasource_message_max_length-min.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-datasource_message_max_length-min.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-datasource_message_max_length-purenumeric.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-datasource_message_max_length-purenumeric.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-datasource_message_max_length-suffix-k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-datasource_message_max_length-suffix-k.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-datasource_message_max_length-suffix-m-max.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-datasource_message_max_length-suffix-m-max.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-error_logging-n1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-error_logging-n1.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-error_logging-n2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-error_logging-n2.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-error_logging-n3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-error_logging-n3.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-error_logging-y1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-error_logging-y1.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-error_logging-y2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-error_logging-y2.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-error_logging-y3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-error_logging-y3.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-filter_chain-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-filter_chain-1.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-generic.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-inline-comment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-inline-comment.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-line-length-1023.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-line-length-1023.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-line-length-1024.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-line-length-1024.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-log_message_max_length-min.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-log_message_max_length-min.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-log_message_max_length-purenumeric.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-log_message_max_length-purenumeric.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-log_message_max_length-suffix-k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-log_message_max_length-suffix-k.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-log_message_max_length-suffix-m-max.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-log_message_max_length-suffix-m-max.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-message_format-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-message_format-1.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-message_format-double-quoted.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-message_format-double-quoted.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-message_format-single-quoted.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-message_format-single-quoted.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-message_format-unquoted.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-message_format-unquoted.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-output-devlog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-output-devlog.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-output-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-output-file.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-output-invalid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-output-invalid.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-output-socket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-output-socket.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-syslog_facility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-syslog_facility.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-syslog_ident.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-syslog_ident.sh -------------------------------------------------------------------------------- /tests/configfile/configfile-syslog_level.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/configfile/configfile-syslog_level.sh -------------------------------------------------------------------------------- /tests/datasource/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/Makefile.am -------------------------------------------------------------------------------- /tests/datasource/_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/_bootstrap.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_cgroup-name-first.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_cgroup-name-first.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_cgroup-name-last.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_cgroup-name-last.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_cgroup-name-mid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_cgroup-name-mid.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_cgroup-name-notfound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_cgroup-name-notfound.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_cgroup-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_cgroup-name.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_cgroup-number-notfound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_cgroup-number-notfound.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_cgroup-number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_cgroup-number.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_cmdline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_cmdline.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_cwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_cwd.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_datetime-fmt-epoch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_datetime-fmt-epoch.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_datetime-fmt-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_datetime-fmt-static.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_datetime-fmt-too-long.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_datetime-fmt-too-long.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_datetime-fmt-ymd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_datetime-fmt-ymd.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_datetime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_datetime.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_domain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_domain.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_egid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_egid.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_egroup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_egroup.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_env-set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_env-set.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_env-unset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_env-unset.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_env_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_env_all.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_euid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_euid.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_eusername.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_eusername.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_failure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_failure.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_filename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_filename.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_gid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_gid.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_group.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_group.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_hostname.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_ipaddr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_ipaddr.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_login.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_pid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_pid.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_ppid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_ppid.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_rpname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_rpname.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_sid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_sid.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_snoopy_configure_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_snoopy_configure_command.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_snoopy_literal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_snoopy_literal.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_snoopy_threads.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_snoopy_threads.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_snoopy_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_snoopy_version.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_systemd_unit_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_systemd_unit_name.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_tid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_tid.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_tid_kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_tid_kernel.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_timestamp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_timestamp.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_timestamp_ms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_timestamp_ms.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_timestamp_us.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_timestamp_us.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_tty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_tty.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_tty_uid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_tty_uid.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_tty_username.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_tty_username.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_uid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_uid.sh -------------------------------------------------------------------------------- /tests/datasource/datasource_username.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/datasource/datasource_username.sh -------------------------------------------------------------------------------- /tests/filter/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/Makefile.am -------------------------------------------------------------------------------- /tests/filter/_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/_bootstrap.sh -------------------------------------------------------------------------------- /tests/filter/filter_exclude_spawns_of-mustdrop-multiarg-first.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_exclude_spawns_of-mustdrop-multiarg-first.sh -------------------------------------------------------------------------------- /tests/filter/filter_exclude_spawns_of-mustdrop-multiarg-last.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_exclude_spawns_of-mustdrop-multiarg-last.sh -------------------------------------------------------------------------------- /tests/filter/filter_exclude_spawns_of-mustdrop-multiarg-mid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_exclude_spawns_of-mustdrop-multiarg-mid.sh -------------------------------------------------------------------------------- /tests/filter/filter_exclude_spawns_of-mustdrop-singlearg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_exclude_spawns_of-mustdrop-singlearg.sh -------------------------------------------------------------------------------- /tests/filter/filter_exclude_spawns_of-mustdrop-spaceparent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_exclude_spawns_of-mustdrop-spaceparent.sh -------------------------------------------------------------------------------- /tests/filter/filter_exclude_spawns_of-mustlog-multiarg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_exclude_spawns_of-mustlog-multiarg.sh -------------------------------------------------------------------------------- /tests/filter/filter_exclude_spawns_of-mustlog-singlearg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_exclude_spawns_of-mustlog-singlearg.sh -------------------------------------------------------------------------------- /tests/filter/filter_exclude_spawns_of-mustlog-spaceparent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_exclude_spawns_of-mustlog-spaceparent.sh -------------------------------------------------------------------------------- /tests/filter/filter_exclude_uid-drop-multi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_exclude_uid-drop-multi.sh -------------------------------------------------------------------------------- /tests/filter/filter_exclude_uid-drop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_exclude_uid-drop.sh -------------------------------------------------------------------------------- /tests/filter/filter_exclude_uid-pass-multi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_exclude_uid-pass-multi.sh -------------------------------------------------------------------------------- /tests/filter/filter_exclude_uid-pass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_exclude_uid-pass.sh -------------------------------------------------------------------------------- /tests/filter/filter_only_tty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_only_tty.sh -------------------------------------------------------------------------------- /tests/filter/filter_only_uid-drop-multi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_only_uid-drop-multi.sh -------------------------------------------------------------------------------- /tests/filter/filter_only_uid-drop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_only_uid-drop.sh -------------------------------------------------------------------------------- /tests/filter/filter_only_uid-pass-multi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_only_uid-pass-multi.sh -------------------------------------------------------------------------------- /tests/filter/filter_only_uid-pass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filter_only_uid-pass.sh -------------------------------------------------------------------------------- /tests/filter/filterchain-double-bothdrop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filterchain-double-bothdrop.sh -------------------------------------------------------------------------------- /tests/filter/filterchain-double-bothpass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filterchain-double-bothpass.sh -------------------------------------------------------------------------------- /tests/filter/filterchain-double-firstdrops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filterchain-double-firstdrops.sh -------------------------------------------------------------------------------- /tests/filter/filterchain-double-seconddrops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filterchain-double-seconddrops.sh -------------------------------------------------------------------------------- /tests/filter/filterchain-single-drop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filterchain-single-drop.sh -------------------------------------------------------------------------------- /tests/filter/filterchain-single-pass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filterchain-single-pass.sh -------------------------------------------------------------------------------- /tests/filter/filterchain-trailing-semicolon-drop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filterchain-trailing-semicolon-drop.sh -------------------------------------------------------------------------------- /tests/filter/filterchain-trailing-semicolon-pass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filterchain-trailing-semicolon-pass.sh -------------------------------------------------------------------------------- /tests/filter/filterchain-unknown-filter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/filter/filterchain-unknown-filter.sh -------------------------------------------------------------------------------- /tests/general/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/general/Makefile.am -------------------------------------------------------------------------------- /tests/general/_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/general/_bootstrap.sh -------------------------------------------------------------------------------- /tests/general/general-symbol-leaks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/general/general-symbol-leaks.sh -------------------------------------------------------------------------------- /tests/message/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/message/Makefile.am -------------------------------------------------------------------------------- /tests/message/_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/message/_bootstrap.sh -------------------------------------------------------------------------------- /tests/message/message_format-datasource-arg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/message/message_format-datasource-arg.sh -------------------------------------------------------------------------------- /tests/message/message_format-datasource-noarg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/message/message_format-datasource-noarg.sh -------------------------------------------------------------------------------- /tests/message/message_format-ds-closing-tag-missing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/message/message_format-ds-closing-tag-missing.sh -------------------------------------------------------------------------------- /tests/message/message_format-ds-failure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/message/message_format-ds-failure.sh -------------------------------------------------------------------------------- /tests/message/message_format-ds-unknown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/message/message_format-ds-unknown.sh -------------------------------------------------------------------------------- /tests/message/message_format-empty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/message/message_format-empty.sh -------------------------------------------------------------------------------- /tests/message/message_format-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/message/message_format-static.sh -------------------------------------------------------------------------------- /tests/output/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/output/Makefile.am -------------------------------------------------------------------------------- /tests/output/_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/output/_bootstrap.sh -------------------------------------------------------------------------------- /tests/output/output_devnull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/output/output_devnull.sh -------------------------------------------------------------------------------- /tests/output/output_file-dynamic-arg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/output/output_file-dynamic-arg.sh -------------------------------------------------------------------------------- /tests/output/output_file-dynamic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/output/output_file-dynamic.sh -------------------------------------------------------------------------------- /tests/output/output_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/output/output_file.sh -------------------------------------------------------------------------------- /tests/output/output_noop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/output/output_noop.sh -------------------------------------------------------------------------------- /tests/output/output_socket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/output/output_socket.sh -------------------------------------------------------------------------------- /tests/output/output_stderr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/output/output_stderr.sh -------------------------------------------------------------------------------- /tests/output/output_stdout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/output/output_stdout.sh -------------------------------------------------------------------------------- /tests/threads/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/threads/Makefile.am -------------------------------------------------------------------------------- /tests/threads/_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/threads/_bootstrap.sh -------------------------------------------------------------------------------- /tests/threads/threads_creation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/threads/threads_creation.sh -------------------------------------------------------------------------------- /tests/threads/threads_fork_exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/threads/threads_fork_exec.sh -------------------------------------------------------------------------------- /tests/threads/threads_try-to-segfault.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/threads/threads_try-to-segfault.sh -------------------------------------------------------------------------------- /tests/unit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/Makefile.am -------------------------------------------------------------------------------- /tests/unit/_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/_bootstrap.sh -------------------------------------------------------------------------------- /tests/unit/unit-action-log-message-dispatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-action-log-message-dispatch.sh -------------------------------------------------------------------------------- /tests/unit/unit-action-log-syscall-exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-action-log-syscall-exec.sh -------------------------------------------------------------------------------- /tests/unit/unit-datasource-cmdline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-datasource-cmdline.sh -------------------------------------------------------------------------------- /tests/unit/unit-error.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-error.sh -------------------------------------------------------------------------------- /tests/unit/unit-ext-ini.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-ext-ini.sh -------------------------------------------------------------------------------- /tests/unit/unit-filterregistry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-filterregistry.sh -------------------------------------------------------------------------------- /tests/unit/unit-outputregistry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-outputregistry.sh -------------------------------------------------------------------------------- /tests/unit/unit-util-parser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-util-parser.sh -------------------------------------------------------------------------------- /tests/unit/unit-util-syslog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-util-syslog.sh -------------------------------------------------------------------------------- /tests/unit/unit-util-systemd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-util-systemd.sh -------------------------------------------------------------------------------- /tests/unit/unit-util-utmp-entry-missing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-util-utmp-entry-missing.sh -------------------------------------------------------------------------------- /tests/unit/unit-util-utmp-entry-without-ip-address.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-util-utmp-entry-without-ip-address.sh -------------------------------------------------------------------------------- /tests/unit/unit-util-utmp-ipv4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-util-utmp-ipv4.sh -------------------------------------------------------------------------------- /tests/unit/unit-util-utmp-ipv6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-util-utmp-ipv6.sh -------------------------------------------------------------------------------- /tests/unit/unit-util-utmp-testUtmpFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2o/snoopy/HEAD/tests/unit/unit-util-utmp-testUtmpFile --------------------------------------------------------------------------------