594 lines
17 KiB
RPMSpec
594 lines
17 KiB
RPMSpec
Name: docker-engine
|
|
Version: 18.09.0
|
|
Release: 342
|
|
Epoch: 2
|
|
Summary: The open-source application container engine
|
|
Group: Tools/Docker
|
|
|
|
License: ASL 2.0
|
|
Source0: https://github.com/docker/docker-ce/archive/v18.09.0.tar.gz
|
|
Source1: patch.tar.gz
|
|
Source2: apply-patches
|
|
Source3: git-commit
|
|
Source4: series.conf
|
|
Source5: VERSION-vendor
|
|
Source6: gen-commit.sh
|
|
Source7: net.tar.gz
|
|
Source8: sys.tar.gz
|
|
|
|
URL: https://mobyproject.org
|
|
|
|
%global is_systemd 1
|
|
|
|
# required packages for build
|
|
# most are already in the container (see contrib/builder/rpm/ARCH/generate.sh)
|
|
BuildRequires: pkgconfig(systemd) golang >= 1.8.3 btrfs-progs-devel device-mapper-devel glibc-static libseccomp-devel
|
|
BuildRequires: libselinux-devel libtool-ltdl-devel pkgconfig selinux-policy selinux-policy-devel sqlite-devel systemd-devel
|
|
BuildRequires: tar containerd runc docker-proxy git
|
|
|
|
# required packages on install
|
|
Requires: /bin/sh iptables tar xz device-mapper-libs >= 1.02.90-1 systemd-units
|
|
|
|
# conflicting packages
|
|
Provides: docker
|
|
Conflicts: docker-io
|
|
Conflicts: docker-engine-cs
|
|
|
|
%description
|
|
Docker is an open source project to build, ship and run any application as a
|
|
lightweight container.
|
|
|
|
Docker containers are both hardware-agnostic and platform-agnostic. This means
|
|
they can run anywhere, from your laptop to the largest EC2 compute instance and
|
|
everything in between - and they don't require you to use a particular
|
|
language, framework or packaging system. That makes them great building blocks
|
|
for deploying and scaling web apps, databases, and backend services without
|
|
depending on a particular stack or provider.
|
|
|
|
%debug_package
|
|
|
|
%prep
|
|
cp %{SOURCE0} .
|
|
cp %{SOURCE1} .
|
|
cp %{SOURCE2} .
|
|
cp %{SOURCE3} .
|
|
cp %{SOURCE4} .
|
|
cp %{SOURCE5} .
|
|
|
|
%build
|
|
|
|
sh ./apply-patches
|
|
|
|
# for golang 1.17.3, we need set GO111MODULE=off
|
|
export GO111MODULE=off
|
|
|
|
# build docker engine
|
|
WORKDIR=$(pwd)
|
|
export VERSION=$(cat VERSION)
|
|
export DOCKER_GITCOMMIT=$(cat git-commit | head -c 7)
|
|
export AUTO_GOPATH=1
|
|
export DOCKER_BUILDTAGS="pkcs11 seccomp selinux"
|
|
cd ${WORKDIR}/components/engine
|
|
%ifarch loongarch64
|
|
rm -rf vendor/golang.org/x/sys
|
|
rm -rf vendor/golang.org/x/net
|
|
tar -xf %{SOURCE7} -C vendor/golang.org/x/
|
|
tar -xf %{SOURCE8} -C vendor/golang.org/x/
|
|
%endif
|
|
./hack/make.sh dynbinary
|
|
|
|
# buid docker cli
|
|
cd ${WORKDIR}/components/cli
|
|
mkdir -p .gopath/src/github.com/docker
|
|
export GOPATH=`pwd`/.gopath
|
|
ln -sf `pwd` .gopath/src/github.com/docker/cli
|
|
ln -sf ${WORKDIR}/components/engine .gopath/src/github.com/docker/docker
|
|
%ifarch loongarch64
|
|
rm -rf vendor/golang.org/x/sys
|
|
rm -rf vendor/golang.org/x/net
|
|
tar -xf %{SOURCE7} -C vendor/golang.org/x/
|
|
tar -xf %{SOURCE8} -C vendor/golang.org/x/
|
|
%endif
|
|
cd .gopath/src/github.com/docker/cli
|
|
make dynbinary
|
|
|
|
# man is provided in docker --help and dockerd --help
|
|
# ./man/md2man-all.sh runs outside the build container (if at all), since we don't have go-md2man here
|
|
# ./man/md2man-all.sh -q
|
|
|
|
rm -rf .gopath
|
|
cd ${WORKDIR}
|
|
|
|
%check
|
|
./components/engine/bundles/dynbinary-daemon/dockerd -v
|
|
./components/cli/build/docker -v
|
|
|
|
%install
|
|
# install binary
|
|
install -d $RPM_BUILD_ROOT/%{_bindir}
|
|
install -p -m 755 components/engine/bundles/dynbinary-daemon/dockerd $RPM_BUILD_ROOT/%{_bindir}/dockerd
|
|
|
|
# install cli
|
|
install -p -m 755 components/cli/build/docker $RPM_BUILD_ROOT/%{_bindir}/docker
|
|
|
|
# install proxy
|
|
install -p -m 755 /usr/bin/docker-proxy $RPM_BUILD_ROOT/%{_bindir}/docker-proxy
|
|
|
|
# install containerd
|
|
install -p -m 755 /usr/bin/containerd $RPM_BUILD_ROOT/%{_bindir}/containerd
|
|
install -p -m 755 /usr/bin/containerd-shim $RPM_BUILD_ROOT/%{_bindir}/containerd-shim
|
|
|
|
# install runc
|
|
install -p -m 755 /usr/bin/runc $RPM_BUILD_ROOT/%{_bindir}/runc
|
|
|
|
# install udev rules
|
|
install -d $RPM_BUILD_ROOT/%{_sysconfdir}/udev/rules.d
|
|
install -p -m 644 components/engine/contrib/udev/80-docker.rules $RPM_BUILD_ROOT/%{_sysconfdir}/udev/rules.d/80-docker.rules
|
|
|
|
# add init scripts
|
|
install -d $RPM_BUILD_ROOT/etc/sysconfig
|
|
install -d $RPM_BUILD_ROOT/%{_initddir}
|
|
install -p -m 644 components/engine/contrib/init/sysvinit-redhat/docker.sysconfig $RPM_BUILD_ROOT/etc/sysconfig/docker
|
|
install -p -m 644 components/engine/contrib/init/sysvinit-redhat/docker-network $RPM_BUILD_ROOT/etc/sysconfig/docker-network
|
|
install -p -m 644 components/engine/contrib/init/sysvinit-redhat/docker-storage $RPM_BUILD_ROOT/etc/sysconfig/docker-storage
|
|
|
|
install -d $RPM_BUILD_ROOT/%{_unitdir}
|
|
install -p -m 644 components/engine/contrib/init/systemd/docker.service $RPM_BUILD_ROOT/%{_unitdir}/docker.service
|
|
# add bash, zsh, and fish completions
|
|
install -d $RPM_BUILD_ROOT/usr/share/bash-completion/completions
|
|
install -d $RPM_BUILD_ROOT/usr/share/zsh/vendor-completions
|
|
install -d $RPM_BUILD_ROOT/usr/share/fish/vendor_completions.d
|
|
install -p -m 644 components/cli/contrib/completion/bash/docker $RPM_BUILD_ROOT/usr/share/bash-completion/completions/docker
|
|
install -p -m 644 components/cli/contrib/completion/zsh/_docker $RPM_BUILD_ROOT/usr/share/zsh/vendor-completions/_docker
|
|
install -p -m 644 components/cli/contrib/completion/fish/docker.fish $RPM_BUILD_ROOT/usr/share/fish/vendor_completions.d/docker.fish
|
|
|
|
# install manpages
|
|
# install -d %{buildroot}%{_mandir}/man1
|
|
# install -p -m 644 components/cli/man/man1/*.1 $RPM_BUILD_ROOT/%{_mandir}/man1
|
|
# install -d %{buildroot}%{_mandir}/man5
|
|
# install -p -m 644 components/cli/man/man5/*.5 $RPM_BUILD_ROOT/%{_mandir}/man5
|
|
# install -d %{buildroot}%{_mandir}/man8
|
|
# install -p -m 644 components/cli/man/man8/*.8 $RPM_BUILD_ROOT/%{_mandir}/man8
|
|
|
|
# add vimfiles
|
|
install -d $RPM_BUILD_ROOT/usr/share/vim/vimfiles/doc
|
|
install -d $RPM_BUILD_ROOT/usr/share/vim/vimfiles/ftdetect
|
|
install -d $RPM_BUILD_ROOT/usr/share/vim/vimfiles/syntax
|
|
install -p -m 644 components/engine/contrib/syntax/vim/doc/dockerfile.txt $RPM_BUILD_ROOT/usr/share/vim/vimfiles/doc/dockerfile.txt
|
|
install -p -m 644 components/engine/contrib/syntax/vim/ftdetect/dockerfile.vim $RPM_BUILD_ROOT/usr/share/vim/vimfiles/ftdetect/dockerfile.vim
|
|
install -p -m 644 components/engine/contrib/syntax/vim/syntax/dockerfile.vim $RPM_BUILD_ROOT/usr/share/vim/vimfiles/syntax/dockerfile.vim
|
|
|
|
# add nano
|
|
install -d $RPM_BUILD_ROOT/usr/share/nano
|
|
install -p -m 644 components/engine/contrib/syntax/nano/Dockerfile.nanorc $RPM_BUILD_ROOT/usr/share/nano/Dockerfile.nanorc
|
|
|
|
# list files owned by the package here
|
|
%files
|
|
%doc components/engine/AUTHORS components/engine/CHANGELOG.md components/engine/CONTRIBUTING.md components/engine/LICENSE components/engine/MAINTAINERS components/engine/NOTICE components/engine/README.md
|
|
/%{_bindir}/docker
|
|
/%{_bindir}/dockerd
|
|
/%{_bindir}/containerd
|
|
/%{_bindir}/docker-proxy
|
|
/%{_bindir}/containerd-shim
|
|
/%{_bindir}/runc
|
|
/%{_sysconfdir}/udev/rules.d/80-docker.rules
|
|
%if 0%{?is_systemd}
|
|
/%{_unitdir}/docker.service
|
|
%else
|
|
/%{_initddir}/docker
|
|
%endif
|
|
/usr/share/bash-completion/completions/docker
|
|
/usr/share/zsh/vendor-completions/_docker
|
|
/usr/share/fish/vendor_completions.d/docker.fish
|
|
%doc
|
|
|
|
%config(noreplace,missingok) /etc/sysconfig/docker
|
|
%config(noreplace,missingok) /etc/sysconfig/docker-storage
|
|
%config(noreplace,missingok) /etc/sysconfig/docker-network
|
|
|
|
/usr/share/vim/vimfiles/doc/dockerfile.txt
|
|
/usr/share/vim/vimfiles/ftdetect/dockerfile.vim
|
|
/usr/share/vim/vimfiles/syntax/dockerfile.vim
|
|
/usr/share/nano/Dockerfile.nanorc
|
|
|
|
%post
|
|
if ! getent group docker > /dev/null; then
|
|
groupadd --system docker
|
|
fi
|
|
%if 0%{?is_systemd}
|
|
#%systemd_post docker
|
|
systemctl enable docker
|
|
systemctl start docker
|
|
%else
|
|
# This adds the proper /etc/rc*.d links for the script
|
|
/sbin/chkconfig --add docker
|
|
%endif
|
|
if ! getent group docker > /dev/null; then
|
|
groupadd --system docker
|
|
fi
|
|
|
|
%preun
|
|
%if 0%{?is_systemd}
|
|
%systemd_preun docker
|
|
%else
|
|
if [ $1 -eq 0 ] ; then
|
|
/sbin/service docker stop >/dev/null 2>&1
|
|
/sbin/chkconfig --del docker
|
|
fi
|
|
%endif
|
|
|
|
%postun
|
|
%if 0%{?is_systemd}
|
|
%systemd_postun_with_restart docker
|
|
%else
|
|
if [ "$1" -ge "1" ] ; then
|
|
/sbin/service docker condrestart >/dev/null 2>&1 || :
|
|
fi
|
|
%endif
|
|
|
|
%changelog
|
|
* Fri Oct 25 2024 zhongjiawei<zhongjiawei1@huawei.com> - 2:18.09.0-342
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:support calling clone when clone3 is not support
|
|
|
|
* Sat Aug 31 2024 zhongjiawei<zhongjiawei1@huawei.com> - 2:18.09.0-341
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:try to reconnect when containerd grpc return unexpected EOF
|
|
|
|
* Fri Aug 02 2024 zhongjiawei<zhongjiawei1@huawei.com> - 2:18.09.0-340
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:add clone3 seccomp whitelist for arm64
|
|
|
|
* Fri Jul 26 2024 zhongjiawei<zhongjiawei1@huawei.com> - 18.09.0-339
|
|
- Type:CVE
|
|
- CVE:CVE-2024-41110
|
|
- SUG:NA
|
|
- DESC:fix CVE-2024-41110
|
|
|
|
* Mon Jul 15 2024 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-338
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:Ignore SIGURG on Linux
|
|
|
|
* Fri Jun 07 2024 suoxiaocong <suoxiaocong@kylinos.cn> - 18.09.0-337
|
|
- Type:BUG
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:remove ifarch condition check when addding source, this causes src.rpm missing files
|
|
|
|
* Wed May 08 2024 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-336
|
|
- Type:CVE
|
|
- CVE:CVE-2024-32473
|
|
- SUG:NA
|
|
- DESC:fix CVE-2024-32473
|
|
|
|
* Fri Apr 12 2024 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-335
|
|
- Type:CVE
|
|
- CVE:CVE-2024-29018
|
|
- SUG:NA
|
|
- DESC:fix CVE-2024-29018
|
|
|
|
* Tue Mar 19 2024 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-334
|
|
- Type:CVE
|
|
- CVE:CVE-2024-24557
|
|
- SUG:NA
|
|
- DESC:fix CVE-2024-24557
|
|
|
|
* Fri Dec 22 2023 Lu Jingxiao<lujingxiao@huawei.com> - 2:18.09.0-333
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:sync patches from upstream
|
|
|
|
* Fri Nov 17 2023 zhongjiawei<zhongjiawei1@huawei.com> - 2:18.09.0-332
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:modify runc rpm package name to runc
|
|
|
|
* Thu Oct 12 2023 zhongjiawei<zhongjiawei1@huawei.com> - 18.09.0-331
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:add delay after freeze
|
|
|
|
* Mon Oct 09 2023 Lu Jingxiao<lujingxiao@huawei.com> - 18.09.0-330
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:fix COPY --from should preserve ownership
|
|
|
|
* Sat Aug 26 2023 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-329
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:remove useless mount point dir
|
|
|
|
* Fri Jul 28 2023 jingxiaolu<lujingxiao@huawei.com> - 18.09.0-328
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:define a dummy hostname to use for local connections
|
|
|
|
* Wed Jul 12 2023 zhongjiawei<zhongjiawei1@huawei.com> - 18.09.0-327
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:remove invalid libcgroup dependencies
|
|
|
|
* Thu Jun 29 2023 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-326
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:repalce unix.Rmdir with os.RemoveAll when remove mount point dir
|
|
|
|
* Tue Jun 27 2023 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-325
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:fix blockThreshold full bug
|
|
|
|
* Thu Jun 08 2023 zhongjiawei<zhongjiawei1@huawei.com> - 18.09.0-324
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:thinpool full because docker daemon restart when docker pull
|
|
|
|
* Thu Apr 06 2023 zhongjiawei<zhongjiawei1@huawei.com> - 18.09.0-323
|
|
- Type:CVE
|
|
- CVE:CVE-2023-28840,CVE-2023-28841,CVE-2023-28842
|
|
- SUG:NA
|
|
- DESC:fix CVE-2023-28840,CVE-2023-28841,CVE-2023-28842
|
|
|
|
* Wed Mar 29 2023 zhongjiawei<zhongjiawei1@huawei.com> - 18.09.0-322
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:sync some patches
|
|
|
|
* Thu Mar 16 2023 zhaozhen <zhaozhen@loongson.cn> - 2:18.09.0-321
|
|
- Type:feature
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:add loongarch64 support for docker
|
|
|
|
* Wed Mar 15 2023 zhongjiawei<zhongjiawei1@huawei.com> - 18.09.0-320
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:try http for docker manifest insecure
|
|
|
|
* Tue Mar 14 2023 JackChan8<chenjiankun1@huawei.com> - 18.09.0-319
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:fix container missing after restarting dockerd twice
|
|
|
|
* Fri Mar 10 2023 Song Zhang<zhangsong34@huawei.com> - 18.09.0-318
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:docker stats: fix 'panic: close of closed channel'
|
|
|
|
* Fri Feb 17 2023 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-317
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:set freezer.state to Thawed to increase freeze chances
|
|
|
|
* Thu Dec 01 2022 zhongjiawei<zhongjiawei1@huawei.com> - 18.09.0-316
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:do not stop health check before sending signal
|
|
|
|
* Thu Nov 24 2022 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-315
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:using VERSION-vendor to record version
|
|
|
|
* Tue Nov 22 2022 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-314
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:fix dockerd core when release network
|
|
|
|
* Tue Nov 22 2022 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-313
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:cleanup netns file when stop docker daemon
|
|
|
|
* Mon Oct 17 2022 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-312
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:change runc original install location (/usr/local/bin --> /usr/bin) to fix compile problem
|
|
|
|
* Wed Sep 21 2022 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-311
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:add epoch for easy upgrade
|
|
|
|
* Thu Sep 15 2022 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-310
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:ensure layer digest folder removed if ls.driver.Remove fails
|
|
|
|
* Thu Sep 15 2022 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-309
|
|
- Type:CVE
|
|
- CVE:CVE-2022-36109
|
|
- SUG:NA
|
|
- DESC:fix CVE-2022-36109
|
|
|
|
* Tue Sep 13 2022 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-308
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:Add an ExitPid field for State struct to record exit process id
|
|
|
|
* Tue Sep 13 2022 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-307
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:fix terminal abnormal after docker run
|
|
|
|
* Wed Jun 29 2022 zjw<zhongjiawei1@huawei.com> - 18.09.0-306
|
|
- Type:CVE
|
|
- CVE:CVE-2021-41092
|
|
- SUG:NA
|
|
- DESC:fix CVE-2021-41092
|
|
|
|
* Wed Jun 29 2022 zjw<zhongjiawei1@huawei.com> - 18.09.0-305
|
|
- Type:CVE
|
|
- CVE:CVE-2021-41091
|
|
- SUG:NA
|
|
- DESC:fix CVE-2021-41091
|
|
|
|
* Wed Jun 29 2022 zjw<zhongjiawei1@huawei.com> - 18.09.0-304
|
|
- Type:CVE
|
|
- CVE:CVE-2021-41089
|
|
- SUG:NA
|
|
- DESC:fix CVE-2021-41089
|
|
|
|
* Wed Jun 29 2022 zjw<zhongjiawei1@huawei.com> - 18.09.0-303
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:close channel in write side to avoid panic in docker stats
|
|
|
|
* Tue Jun 28 2022 zjw<zhongjiawei1@huawei.com> - 18.09.0-302
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:fix status inconsistent after restart container
|
|
|
|
* Thu Jun 16 2022 duyiwei <duyiwei@kylinos.cn> - 18.09.0-301
|
|
- Type:bugfix
|
|
- CVE:CVE-2022-24769
|
|
- SUG:NA
|
|
- DESC:fix CVE-2022-24769
|
|
|
|
* Tue Mar 22 2022 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-300
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:sync from internal
|
|
|
|
* Wed Mar 02 2022 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-120
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:Use original process spec for execs
|
|
|
|
* Tue Dec 28 2021 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-119
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:disable go module build
|
|
|
|
* Sun Sep 26 2021 xiadanni<xiadanni1@huawei.com> - 18.09.0-118
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:update seccomp whitelist to Linux 5.10 syscall list
|
|
|
|
* Wed Sep 08 2021 xiadanni<xiadanni1@huawei.com> - 18.09.0-117
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:add clone3 to seccomp whitelist to fix curl failed in X86
|
|
|
|
* Fri Sep 03 2021 chenjiankun<chenjiankun1@huawei.com> - 18.09.0-116
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:enable debuginfo
|
|
|
|
* Thu Apr 01 2021 wangfengtu<wangfengtu@huawei.com> - 18.09.0-115
|
|
- Type:bugfix
|
|
- CVE:NA
|
|
- SUG:NA
|
|
- DESC:rollback if docker restart when doing BlkDiscard
|
|
|
|
* Thu Mar 18 2021 xiadanni<xiadanni1@huawei.com> - 18.09.0-114
|
|
- Type:bugfix
|
|
- CVE:CVE-2021-21284,CVE-2021-21285
|
|
- SUG:NA
|
|
- DESC:sync bugfix, include:
|
|
1.fix execCommands leak in health-check
|
|
2.check containerd pid before kill it
|
|
3.fix CVE-2021-21284
|
|
4.fix CVE-2021-21285
|
|
|
|
* Tue Feb 09 2021 lixiang<lixiang172@huawei.com> - 18.09.0-113
|
|
- Type:enhancement
|
|
- CVE:NA
|
|
- SUG:restart
|
|
- DESC:remove go-md2man build require
|
|
|
|
* Mon Jan 18 2021 yangyanchao<yangyanchao6@huawei.com> - 18.09.0-111
|
|
- Type:requirement
|
|
- ID:NA
|
|
- CVE:NA
|
|
- SUG:restart
|
|
- docker:components:add config files for riscv
|
|
|
|
* Mon Jan 4 2021 jingrui<jingrui@huawei.com> - 18.09.0-107
|
|
- Type:bugfix
|
|
- ID:NA
|
|
- SUG:NA
|
|
- DESC:sync bugfix include
|
|
1. fix image cleanup failed.
|
|
2. cleanup load tmp files.
|
|
3. kill residual container process.
|
|
4. resume suspend dm device.
|
|
5. dont kill containerd during dockerd starting.
|
|
6. handle exit event for restore failed container.
|
|
7. wait io with timeout when start failed.
|
|
8. support hostname mirror registry.
|
|
9. mask unused proc files.
|
|
|
|
* Tue Dec 8 2020 xiadanni<xiadanni1@huawei.com> - 18.09.0-104
|
|
- Type:bugfix
|
|
- ID:NA
|
|
- SUG:NA
|
|
- DESC:runc don't deny all devices when update cgroup resource
|
|
|
|
* Thu Dec 3 2020 xiadanni<xiadanni1@huawei.com> - 18.09.0-103
|
|
- Type:bugfix
|
|
- ID:NA
|
|
- SUG:restart
|
|
- DESC:containerd fix CVE-2020-15257
|
|
|
|
* Fri Nov 27 2020 liuzekun<liuzekun@huawei.com> - 18.09.0-102
|
|
- Type:bugfix
|
|
- ID:NA
|
|
- CVE:NA
|
|
- SUG:restart
|
|
- DESC:
|
|
1.delete stale containerd object on start failure
|
|
2.remove redundant word item
|
|
3.delete event is not need to process
|
|
4.stat process exit file when kill process dire
|
|
5.sync cli vendor
|
|
6.fix CVE-2020-13401
|
|
7.do not add w to LDFLAGS
|
|
8.add files in proc for mask
|
|
9.fix docker load files leak
|
|
10.do not sync if BYPAAS_SYNC is false
|
|
11.fix panic on single character volumes
|
|
12.fix stats memory usage display error
|
|
13.add more messages for ops when device not found
|
|
14.mask proc pin_memory
|