Revisions of runc

buildservice-autocommit accepted request 965511 from Aleksa Sarai's avatar Aleksa Sarai (cyphar) (revision 61)
baserev update by copy to link target
Aleksa Sarai's avatar Aleksa Sarai (cyphar) committed (revision 60)
- Update to runc v1.1.1. Upstream changelog is available from
  https://github.com/opencontainers/runc/releases/tag/v1.1.1.

  * runc run/start can now run a container with read-only /dev in OCI spec,
    rather than error out. (#3355)
  * runc exec now ensures that --cgroup argument is a sub-cgroup. (#3403)
    libcontainer systemd v2 manager no longer errors out if one of the files
    listed in /sys/kernel/cgroup/delegate do not exist in container's
    cgroup. (#3387, #3404)
  * Loosen OCI spec validation to avoid bogus "Intel RDT is not supported"
    error. (#3406)
  * libcontainer/cgroups no longer panics in cgroup v1 managers if stat
    of /sys/fs/cgroup/unified returns an error other than ENOENT. (#3435)
buildservice-autocommit accepted request 947075 from Aleksa Sarai's avatar Aleksa Sarai (cyphar) (revision 59)
baserev update by copy to link target
Aleksa Sarai's avatar Aleksa Sarai (cyphar) committed (revision 58)
Update .tar.xz.
Aleksa Sarai's avatar Aleksa Sarai (cyphar) committed (revision 57)
- Update to runc v1.1.0. Upstream changelog is available from
  https://github.com/opencontainers/runc/releases/tag/v1.1.0.

  - libcontainer will now refuse to build without the nsenter package being
    correctly compiled (specifically this requires CGO to be enabled). This
    should avoid folks accidentally creating broken runc binaries (and
    incorrectly importing our internal libraries into their projects). (#3331)
buildservice-autocommit accepted request 940368 from Aleksa Sarai's avatar Aleksa Sarai (cyphar) (revision 56)
baserev update by copy to link target
Aleksa Sarai's avatar Aleksa Sarai (cyphar) committed (revision 55)
- Update version data embedded in binary to correctly include the git commit of
  the release.
- Drop runc-rpmlintrc because we don't have runc-test anymore.
Aleksa Sarai's avatar Aleksa Sarai (cyphar) committed (revision 54)
Update to Go 1.17.
Aleksa Sarai's avatar Aleksa Sarai (cyphar) committed (revision 53)
- Update to runc v1.1.0~rc1. Upstream changelog is available from
  https://github.com/opencontainers/runc/releases/tag/v1.1.0-rc.1.
  + Add support for RDMA cgroup added in Linux 4.11.
  * runc exec now produces exit code of 255 when the exec failed.
    This may help in distinguishing between runc exec failures
    (such as invalid options, non-running container or non-existent
    binary etc.) and failures of the command being executed.
  + runc run: new --keep option to skip removal exited containers artefacts.
    This might be useful to check the state (e.g. of cgroup controllers) after
    the container hasexited.
  + seccomp: add support for SCMP_ACT_KILL_PROCESS and SCMP_ACT_KILL_THREAD
    (the latter is just an alias for SCMP_ACT_KILL).
  + seccomp: add support for SCMP_ACT_NOTIFY (seccomp actions). This allows
    users to create sophisticated seccomp filters where syscalls can be
    efficiently emulated by privileged processes on the host.
  + checkpoint/restore: add an option (--lsm-mount-context) to set
    a different LSM mount context on restore.
  + intelrdt: support ClosID parameter.
  + runc exec --cgroup: an option to specify a (non-top) in-container cgroup
    to use for the process being executed.
  + cgroup v1 controllers now support hybrid hierarchy (i.e. when on a cgroup v1
    machine a cgroup2 filesystem is mounted to /sys/fs/cgroup/unified, runc
    run/exec now adds the container to the appropriate cgroup under it).
  + sysctl: allow slashes in sysctl names, to better match sysctl(8)'s
    behaviour.
  + mounts: add support for bind-mounts which are inaccessible after switching
    the user namespace. Note that this does not permit the container any
    additional access to the host filesystem, it simply allows containers to
    have bind-mounts configured for paths the user can access but have
    restrictive access control settings for other users.
buildservice-autocommit accepted request 935874 from Aleksa Sarai's avatar Aleksa Sarai (cyphar) (revision 52)
baserev update by copy to link target
Aleksa Sarai's avatar Aleksa Sarai (cyphar) committed (revision 51)
Fixup changelog whitespace.
Aleksa Sarai's avatar Aleksa Sarai (cyphar) committed (revision 50)
- Update to runc v1.0.3. Upstream changelog is available from
  https://github.com/opencontainers/runc/releases/tag/v1.0.3. CVE-2021-43784
  * A potential vulnerability was discovered in runc (related to an internal
    usage of netlink), however upon further investigation we discovered that
    while this bug was exploitable on the master branch of runc, no released
    version of runc could be exploited using this bug. The exploit required
    being able to create a netlink attribute with a length that would overflow a
    uint16 but this was not possible in any released version of runc. For more
    information see GHSA-v95c-p5hm-xq8f and CVE-2021-43784.
    Due to an abundance of caution we decided to do an emergency release with
    this fix, but to reiterate we do not believe this vulnerability was
    possible to exploit. Thanks to Felix Wilhelm from Google Project Zero for
    discovering and reporting this vulnerability so quickly.
  * Fixed inability to start a container with read-write bind mount of a
	read-only fuse host mount.
  * Fixed inability to start when read-only /dev in set in spec.
  * Fixed not removing sub-cgroups upon container delete, when rootless cgroup
	v2 is used with older systemd.
  * Fixed returning error from GetStats when hugetlb is unsupported (which
	causes excessive logging for kubernetes).
buildservice-autocommit accepted request 913731 from Aleksa Sarai's avatar Aleksa Sarai (cyphar) (revision 49)
baserev update by copy to link target
Aleksa Sarai's avatar Aleksa Sarai (cyphar) committed (revision 48)
- Update to runc v1.0.2. Upstream changelog is available from
  https://github.com/opencontainers/runc/releases/tag/v1.0.2

  * Fixed a failure to set CPU quota period in some cases on cgroup v1.
  * Fixed the inability to start a container with the "adding seccomp filter
    rule for syscall ..." error, caused by redundant seccomp rules (i.e. those
    that has action equal to the default one). Such redundant rules are now
    skipped.
  * Made release builds reproducible from now on.
  * Fixed a rare debug log race in runc init, which can result in occasional
    harmful "failed to decode ..." errors from runc run or exec.
  * Fixed the check in cgroup v1 systemd manager if a container needs to be
    frozen before Set, and add a setting to skip such freeze unconditionally.
    The previous fix for that issue, done in runc 1.0.1, was not working.
buildservice-autocommit accepted request 907285 from Aleksa Sarai's avatar Aleksa Sarai (cyphar) (revision 47)
baserev update by copy to link target
Aleksa Sarai's avatar Aleksa Sarai (cyphar) committed (revision 46)
Remove patch from spec.
Aleksa Sarai's avatar Aleksa Sarai (cyphar) committed (revision 45)
- Update to runc v1.0.1. Upstream changelog is available from
  https://github.com/opencontainers/runc/releases/tag/v1.0.1
  * Fixed occasional runc exec/run failure ("interrupted system call") on an
    Azure volume.
  * Fixed "unable to find groups ... token too long" error with /etc/group
    containing lines longer than 64K characters.
  * cgroup/systemd/v1: fix leaving cgroup frozen after Set if a parent cgroup is
    frozen. This is a regression in 1.0.0, not affecting runc itself but some
    of libcontainer users (e.g Kubernetes).
  * cgroupv2: bpf: Ignore inaccessible existing programs in case of
    permission error when handling replacement of existing bpf cgroup
    programs. This fixes a regression in 1.0.0, where some SELinux
    policies would block runc from being able to run entirely.
  * cgroup/systemd/v2: don't freeze cgroup on Set.
  * cgroup/systemd/v1: avoid unnecessary freeze on Set.
- Remove upstreamed patches:
  + boo1187704-0001-cgroupv2-ebpf-ignore-inaccessible-existing-programs.patch
buildservice-autocommit accepted request 903380 from Aleksa Sarai's avatar Aleksa Sarai (cyphar) (revision 44)
baserev update by copy to link target
Aleksa Sarai's avatar Aleksa Sarai (cyphar) committed (revision 43)
Rebase patch on 1.0.0.
buildservice-autocommit accepted request 903342 from Aleksa Sarai's avatar Aleksa Sarai (cyphar) (revision 42)
baserev update by copy to link target
Displaying revisions 41 - 60 of 101
openSUSE Build Service is sponsored by