Import from AlmaLinux stable repository
This commit is contained in:
parent
c24e4dbe90
commit
14b86b1b5f
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/stalld-1.17.1.tar.bz2
|
SOURCES/stalld-1.19.1.tar.bz2
|
||||||
|
@ -1 +1 @@
|
|||||||
449566fc8c5f8568a92ed0a04d15c31d64878741 SOURCES/stalld-1.17.1.tar.bz2
|
5830e75cdc32cf0953ce9f223c9074681211c0d8 SOURCES/stalld-1.19.1.tar.bz2
|
||||||
|
@ -0,0 +1,34 @@
|
|||||||
|
From f9c0ade7cd9a514d4ca6f81f797284e11c56b31a Mon Sep 17 00:00:00 2001
|
||||||
|
From: Chris White <chwhite@redhat.com>
|
||||||
|
Date: Wed, 21 Feb 2024 15:22:44 -0500
|
||||||
|
Subject: [PATCH] Make fill_process_comm() open comm file as READ_ONLY
|
||||||
|
|
||||||
|
The fill_process_comm() opens the comm file using O_RDWR. The
|
||||||
|
function itself does not perform a write operation on the file,
|
||||||
|
and opening this in read and write mode can cause selinux policy
|
||||||
|
violations where opening the file with write permission is
|
||||||
|
restricted. Since the function itself only needs to read from this
|
||||||
|
fd, changing this to READ_ONLY (O_RDONLY)
|
||||||
|
|
||||||
|
Signed-off-by: Chris White <chwhite@redhat.com>
|
||||||
|
Signed-off-by: John Kacur <jkacur@redhat.com>
|
||||||
|
---
|
||||||
|
src/utils.c | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/utils.c b/src/utils.c
|
||||||
|
index f6feca7040d8..898f4a5d06a7 100644
|
||||||
|
--- a/src/utils.c
|
||||||
|
+++ b/src/utils.c
|
||||||
|
@@ -55,7 +55,7 @@ int fill_process_comm(int tgid, int pid, char *comm, int comm_size)
|
||||||
|
if (retval < 0)
|
||||||
|
goto out_error;
|
||||||
|
|
||||||
|
- fd = open(path, O_RDWR);
|
||||||
|
+ fd = open(path, O_RDONLY);
|
||||||
|
if (fd < 0) {
|
||||||
|
log_msg("failed to open comm file at %s\n", path);
|
||||||
|
goto out_error;
|
||||||
|
--
|
||||||
|
2.43.0
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
Name: stalld
|
Name: stalld
|
||||||
Version: 1.17.1
|
Version: 1.19.1
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Daemon that finds starving tasks and gives them a temporary boost
|
Summary: Daemon that finds starving tasks and gives them a temporary boost
|
||||||
|
|
||||||
License: GPLv2
|
License: GPLv2
|
||||||
@ -14,6 +14,17 @@ BuildRequires: systemd-rpm-macros
|
|||||||
|
|
||||||
Requires: systemd
|
Requires: systemd
|
||||||
|
|
||||||
|
%ifnarch i686
|
||||||
|
BuildRequires: bpftool
|
||||||
|
BuildRequires: clang
|
||||||
|
BuildRequires: libbpf-devel
|
||||||
|
|
||||||
|
Requires: libbpf
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# Patches
|
||||||
|
Patch1: Make-fill_process_comm-open-comm-file-as-READ_ONLY.patch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The stalld program monitors the set of system threads,
|
The stalld program monitors the set of system threads,
|
||||||
looking for threads that are ready-to-run but have not
|
looking for threads that are ready-to-run but have not
|
||||||
@ -23,14 +34,14 @@ boost using the SCHED_DEADLINE policy. The default is to
|
|||||||
allow 10 microseconds of runtime for 1 second of clock time.
|
allow 10 microseconds of runtime for 1 second of clock time.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup
|
%autosetup -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%make_build CFLAGS="%{optflags} %{build_cflags} -DVERSION="\\\"%{version}\\\""" LDFLAGS="%{build_ldflags}"
|
%make_build CFLAGS="%{optflags} %{build_cflags} -DVERSION="\\\"%{version}\\\""" LDFLAGS="%{build_ldflags}"
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install DOCDIR=%{_docdir} MANDIR=%{_mandir} BINDIR=%{_bindir} DATADIR=%{_datadir} VERSION=%{version}
|
%make_install DOCDIR=%{_docdir} MANDIR=%{_mandir} BINDIR=%{_bindir} DATADIR=%{_datadir} VERSION=%{version}
|
||||||
%make_install -C redhat UNITDIR=%{_unitdir}
|
%make_install -C systemd UNITDIR=%{_unitdir}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
@ -51,11 +62,19 @@ allow 10 microseconds of runtime for 1 second of clock time.
|
|||||||
%systemd_postun_with_restart %{name}.service
|
%systemd_postun_with_restart %{name}.service
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Oct 21 2022 Leah Leshchinsky <lleshchi@redhat.com> - 1.17.1-1
|
* Wed Feb 21 2024 John Kacur <jkacur@redhat.com> - 1.19.1-2
|
||||||
|
- Make fill_process_comm() open comm file as READ_ONLY
|
||||||
|
Resolves: RHEL-25846
|
||||||
|
|
||||||
|
* Fri Feb 09 2024 John Kacur <jkacur@redhat.com> - 1.19.1-1
|
||||||
|
- Rebase to upstream stalld-1.19.1
|
||||||
|
Resolves: RHEL-7865
|
||||||
|
|
||||||
|
* Tue Oct 18 2022 Leah Leshchinsky <lleshchi@redhat.com> - 1.17.1-1
|
||||||
- stalld: Fix memory leak in print_boosted_info()
|
- stalld: Fix memory leak in print_boosted_info()
|
||||||
- utils: Check if the system is in lockdown mode
|
- utils: Check if the system is in lockdown mode
|
||||||
- stalld: print process comm and cpu when boosting
|
- stalld: print process comm and cpu when boosting
|
||||||
Resolves: rhbz#2136572
|
Resolves: rhbz#2120799
|
||||||
|
|
||||||
* Thu Jul 14 2022 John Kacur <jkacur@redhat.com> - 1.17-1
|
* Thu Jul 14 2022 John Kacur <jkacur@redhat.com> - 1.17-1
|
||||||
- rebase to upstream v1.17
|
- rebase to upstream v1.17
|
||||||
|
Loading…
Reference in New Issue
Block a user