kubernetes/vendor/github.com/seccomp/libseccomp-golang
Elana Hashman 07af1bab70
deps: update runc to 1.1.0
This updates vendored runc/libcontainer to 1.1.0,
and google/cadvisor to a version updated to runc 1.1.0
(google/cadvisor#3048).

Changes in vendor are generated by (roughly):

        ./hack/pin-dependency.sh github.com/google/cadvisor v0.44.0
        ./hack/pin-dependency.sh github.com/opencontainers/runc v1.1.0
        ./hack/update-vendor.sh
        ./hack/lint-dependencies.sh # And follow all its recommendations.
        ./hack/update-vendor.sh
        ./hack/update-internal-modules.sh
        ./hack/lint-dependencies.sh # Re-check everything again.

Co-Authored-By: Kir Kolyshkin <kolyshkin@gmail.com>
2022-03-28 16:23:18 -07:00
..
.gitignore update libssecomp-golang to v0.9.1 2019-06-24 11:11:44 -07:00
.travis.yml deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
CHANGELOG update libssecomp-golang to v0.9.1 2019-06-24 11:11:44 -07:00
CONTRIBUTING.md deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
go.mod deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
go.sum deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
LICENSE
Makefile deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
README.md deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
seccomp_internal.go deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00
seccomp.go deps: update runc to 1.1.0 2022-03-28 16:23:18 -07:00

libseccomp Golang Bindings

https://github.com/seccomp/libseccomp-golang

Build Status

The libseccomp library provides an easy to use, platform independent, interface to the Linux Kernel's syscall filtering mechanism. The libseccomp API is designed to abstract away the underlying BPF based syscall filter language and present a more conventional function-call based filtering interface that should be familiar to, and easily adopted by, application developers.

The libseccomp-golang library provides a Go based interface to the libseccomp library.

Online Resources

The library source repository currently lives on GitHub at the following URLs:

The project mailing list is currently hosted on Google Groups at the URL below, please note that a Google account is not required to subscribe to the mailing list.

Documentation is also available at:

Installing the package

The libseccomp-golang bindings require at least Go v1.2.1 and GCC v4.8.4; earlier versions may yield unpredictable results. If you meet these requirements you can install this package using the command below:

# go get github.com/seccomp/libseccomp-golang

Testing the Library

A number of tests and lint related recipes are provided in the Makefile, if you want to run the standard regression tests, you can excute the following:

# make check

In order to execute the 'make lint' recipe the 'golint' tool is needed, it can be found at: