rebase upstream patch about fix systemd read PID file failed
This commit is contained in:
parent
2ee14f5c8f
commit
4267eb1b10
@ -0,0 +1,34 @@
|
|||||||
|
From 25f16b1de313ce0d411f754572f94f051bfbe3c8 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
||||||
|
Date: Tue, 16 Mar 2021 17:28:15 +0100
|
||||||
|
Subject: [PATCH] quota_nld: Initialize sa_mask when registering PID file
|
||||||
|
removal
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
term_action.sa_mask is an automatic variable and and thus unitialized.
|
||||||
|
This patch empties the signal mask.
|
||||||
|
|
||||||
|
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
||||||
|
Signed-off-by: Jan Kara <jack@suse.cz>
|
||||||
|
---
|
||||||
|
quota_nld.c | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/quota_nld.c b/quota_nld.c
|
||||||
|
index 72d99a9..09c4775 100644
|
||||||
|
--- a/quota_nld.c
|
||||||
|
+++ b/quota_nld.c
|
||||||
|
@@ -466,7 +466,7 @@ static void use_pid_file(void)
|
||||||
|
|
||||||
|
term_action.sa_handler = remove_pid;
|
||||||
|
term_action.sa_flags = 0;
|
||||||
|
- if (sigaction(SIGTERM, &term_action, NULL))
|
||||||
|
+ if (sigemptyset(&term_action.sa_mask) || sigaction(SIGTERM, &term_action, NULL))
|
||||||
|
errstr(_("Could not register PID file removal on SIGTERM.\n"));
|
||||||
|
if (store_pid())
|
||||||
|
errstr(_("Could not store my PID %jd.\n"), (intmax_t )getpid());
|
||||||
|
--
|
||||||
|
1.8.3.1
|
||||||
|
|
||||||
@ -1,105 +1,110 @@
|
|||||||
From 09b60c7787dfd31c17bfc2c2560bc561b141c207 Mon Sep 17 00:00:00 2001
|
From 06b93e5c1caf5d36d51132cb85c11a96cbdae023 Mon Sep 17 00:00:00 2001
|
||||||
From: lihaoxiang <lihaoxiang9@huawei.com>
|
From: "lihaoxiang (F)" <lihaoxiang9@huawei.com>
|
||||||
Date: Thu, 1 Dec 2022 09:32:09 +0800
|
Date: Thu, 1 Dec 2022 12:10:49 +0800
|
||||||
Subject: [PATCH] quota-nld: fix open PID file failed when systemd read it
|
Subject: [PATCH] quota-nld: fix open PID file failed when systemd read it
|
||||||
|
|
||||||
Running quota_nld by systemd might cause the problem that systemd
|
Running quota_nld by systemd might cause the problem that systemd
|
||||||
couldn't open the PID file generated by quota_nld. In fact, the PID
|
couldn't open the PID file generated by quota_nld. In fact, the PID
|
||||||
file hasn't existed yet because it originates from the child process
|
file hasn't existed yet because it originates from the child process
|
||||||
of quota_nld which is a daemon process. As the main process exit,
|
of quota_nld which is a daemon process. As the main process exit,
|
||||||
systemd try to access the PID file but the daemon hadn't create it
|
systemd try to access the PID file but the daemon hadn't create it
|
||||||
that time.
|
that time.
|
||||||
|
|
||||||
In this situation, we move the procedure of creating PID file into the
|
In this situation, we move the procedure of creating PID file into the
|
||||||
parent process to ensure the PID file must existed when quota_nld exit.
|
parent process to ensure the PID file must existed when quota_nld exit.
|
||||||
After that, the above problem would never occur again.
|
After that, the above problem would never occur again.
|
||||||
|
|
||||||
Signed-off-by: lihaoxiang <lihaoxiang9@huawei.com>
|
[JK: Fixed up SIGTERM handling and format strings]
|
||||||
---
|
|
||||||
quota_nld.c | 43 +++++++++++++++++++++++++++++++++----------
|
Signed-off-by: lihaoxiang <lihaoxiang9@huawei.com>
|
||||||
1 file changed, 33 insertions(+), 10 deletions(-)
|
Signed-off-by: Jan Kara <jack@suse.cz>
|
||||||
|
---
|
||||||
diff --git a/quota_nld.c b/quota_nld.c
|
quota_nld.c | 44 ++++++++++++++++++++++++++++++++++----------
|
||||||
index 72d99a9..ae90bd0 100644
|
1 file changed, 34 insertions(+), 10 deletions(-)
|
||||||
--- a/quota_nld.c
|
|
||||||
+++ b/quota_nld.c
|
diff --git a/quota_nld.c b/quota_nld.c
|
||||||
@@ -413,7 +413,7 @@ static char *build_pid_file_name(void)
|
index 09c4775..82e60c2 100644
|
||||||
}
|
--- a/quota_nld.c
|
||||||
|
+++ b/quota_nld.c
|
||||||
/* Store daemon's PID to file */
|
@@ -413,7 +413,7 @@ static char *build_pid_file_name(void)
|
||||||
-static int store_pid(void)
|
}
|
||||||
+static int store_pid(pid_t pid)
|
|
||||||
{
|
/* Store daemon's PID to file */
|
||||||
FILE *pid_file;
|
-static int store_pid(void)
|
||||||
char *pid_name;
|
+static int store_pid(pid_t pid)
|
||||||
@@ -429,7 +429,7 @@ static int store_pid(void)
|
{
|
||||||
free(pid_name);
|
FILE *pid_file;
|
||||||
return -1;
|
char *pid_name;
|
||||||
}
|
@@ -429,7 +429,7 @@ static int store_pid(void)
|
||||||
- if (fprintf(pid_file, "%jd\n", (intmax_t)getpid()) < 0) {
|
free(pid_name);
|
||||||
+ if (fprintf(pid_file, "%jd\n", pid) < 0) {
|
return -1;
|
||||||
errstr(_("Could not write daemon's PID into '%s'.\n"),
|
}
|
||||||
pid_name);
|
- if (fprintf(pid_file, "%jd\n", (intmax_t)getpid()) < 0) {
|
||||||
fclose(pid_file);
|
+ if (fprintf(pid_file, "%d\n", (int)pid) < 0) {
|
||||||
@@ -460,7 +460,7 @@ static void remove_pid(int signal)
|
errstr(_("Could not write daemon's PID into '%s'.\n"),
|
||||||
}
|
pid_name);
|
||||||
|
fclose(pid_file);
|
||||||
/* Store daemon's PID into file and register its removal on SIGTERM */
|
@@ -460,7 +460,7 @@ static void remove_pid(int signal)
|
||||||
-static void use_pid_file(void)
|
}
|
||||||
+static void use_pid_file(pid_t pid)
|
|
||||||
{
|
/* Store daemon's PID into file and register its removal on SIGTERM */
|
||||||
struct sigaction term_action;
|
-static void use_pid_file(void)
|
||||||
|
+static void setup_sigterm_handler(void)
|
||||||
@@ -468,8 +468,35 @@ static void use_pid_file(void)
|
{
|
||||||
term_action.sa_flags = 0;
|
struct sigaction term_action;
|
||||||
if (sigaction(SIGTERM, &term_action, NULL))
|
|
||||||
errstr(_("Could not register PID file removal on SIGTERM.\n"));
|
@@ -468,8 +468,36 @@ static void use_pid_file(void)
|
||||||
- if (store_pid())
|
term_action.sa_flags = 0;
|
||||||
- errstr(_("Could not store my PID %jd.\n"), (intmax_t )getpid());
|
if (sigemptyset(&term_action.sa_mask) || sigaction(SIGTERM, &term_action, NULL))
|
||||||
+ if (store_pid(pid))
|
errstr(_("Could not register PID file removal on SIGTERM.\n"));
|
||||||
+ errstr(_("Could not store my PID %jd.\n"), pid);
|
- if (store_pid())
|
||||||
+}
|
- errstr(_("Could not store my PID %jd.\n"), (intmax_t )getpid());
|
||||||
+
|
+}
|
||||||
+static void fork_daemon()
|
+
|
||||||
+{
|
+static void fork_daemon(void)
|
||||||
+ pid_t pid = fork();
|
+{
|
||||||
+ if (pid < 0) {
|
+ pid_t pid = fork();
|
||||||
+ errstr(_("Failed to daemonize: fork error with %s\n"), strerror(errno));
|
+ if (pid < 0) {
|
||||||
+ exit(1);
|
+ errstr(_("Failed to daemonize: fork: %s\n"), strerror(errno));
|
||||||
+ } else if (pid != 0) {
|
+ exit(1);
|
||||||
+ use_pid_file(pid);
|
+ } else if (pid != 0) {
|
||||||
+ exit(0);
|
+ if (store_pid(pid)) {
|
||||||
+ }
|
+ errstr(_("Could not store my PID %d.\n"), (int)pid);
|
||||||
+
|
+ kill(pid, SIGKILL);
|
||||||
+ if (setsid() == -1) {
|
+ }
|
||||||
+ errstr(_("Failed to daemonize: setsid error with %s\n"), strerror(errno));
|
+ exit(0);
|
||||||
+ exit(1);
|
+ }
|
||||||
+ }
|
+
|
||||||
+ if (chdir("/"))
|
+ setup_sigterm_handler();
|
||||||
+ errstr(_("Failed to chdir in daemonize \n"));
|
+ if (setsid() < 0) {
|
||||||
+ int fd = open("/dev/null", O_RDWR, 0);
|
+ errstr(_("Failed to daemonize: setsid: %s\n"), strerror(errno));
|
||||||
+ if (fd >= 0) {
|
+ exit(1);
|
||||||
+ (void)dup2(fd, STDIN_FILENO);
|
+ }
|
||||||
+ (void)dup2(fd, STDOUT_FILENO);
|
+ if (chdir("/") < 0)
|
||||||
+ (void)dup2(fd, STDERR_FILENO);
|
+ errstr(_("Failed to chdir in daemonize\n"));
|
||||||
+
|
+ int fd = open("/dev/null", O_RDWR, 0);
|
||||||
+ (void)close(fd);
|
+ if (fd >= 0) {
|
||||||
+ }
|
+ dup2(fd, STDIN_FILENO);
|
||||||
}
|
+ dup2(fd, STDOUT_FILENO);
|
||||||
|
+ dup2(fd, STDERR_FILENO);
|
||||||
int main(int argc, char **argv)
|
+ close(fd);
|
||||||
@@ -485,11 +512,7 @@ int main(int argc, char **argv)
|
+ }
|
||||||
dhandle = init_dbus();
|
}
|
||||||
if (!(flags & FL_NODAEMON)) {
|
|
||||||
use_syslog();
|
int main(int argc, char **argv)
|
||||||
- if (daemon(0, 0)) {
|
@@ -485,11 +513,7 @@ int main(int argc, char **argv)
|
||||||
- errstr(_("Failed to daemonize: %s\n"), strerror(errno));
|
dhandle = init_dbus();
|
||||||
- exit(1);
|
if (!(flags & FL_NODAEMON)) {
|
||||||
- };
|
use_syslog();
|
||||||
- use_pid_file();
|
- if (daemon(0, 0)) {
|
||||||
+ fork_daemon();
|
- errstr(_("Failed to daemonize: %s\n"), strerror(errno));
|
||||||
}
|
- exit(1);
|
||||||
run(nsock);
|
- };
|
||||||
return 0;
|
- use_pid_file();
|
||||||
--
|
+ fork_daemon();
|
||||||
2.37.0.windows.1
|
}
|
||||||
|
run(nsock);
|
||||||
|
return 0;
|
||||||
|
--
|
||||||
|
1.8.3.1
|
||||||
|
|
||||||
11
quota.spec
11
quota.spec
@ -1,7 +1,7 @@
|
|||||||
Name: quota
|
Name: quota
|
||||||
Version: 4.06
|
Version: 4.06
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Release: 6
|
Release: 7
|
||||||
Summary: Linux Diskquota system as part of the Linux kernel
|
Summary: Linux Diskquota system as part of the Linux kernel
|
||||||
License: BSD and GPLv2 and GPLv2+ and LGPLv2+
|
License: BSD and GPLv2 and GPLv2+ and LGPLv2+
|
||||||
URL: http://sourceforge.net/projects/linuxquota/
|
URL: http://sourceforge.net/projects/linuxquota/
|
||||||
@ -16,7 +16,8 @@ Patch0: 0000-Limit-number-of-comparison-characters-to-4.patch
|
|||||||
Patch1: 0001-Limit-maximum-of-RPC-port.patch
|
Patch1: 0001-Limit-maximum-of-RPC-port.patch
|
||||||
Patch2: 0002-quotaio_xfs-Warn-when-large-kernel-timestamps-cannot.patch
|
Patch2: 0002-quotaio_xfs-Warn-when-large-kernel-timestamps-cannot.patch
|
||||||
Patch3: 0003-quota-Add-sw64-architecture.patch
|
Patch3: 0003-quota-Add-sw64-architecture.patch
|
||||||
Patch4: 0004-quota-nld-fix-open-PID-file-failed-when-systemd-read.patch
|
Patch4: 0004-quota_nld-Initialize-sa_mask-when-registering-PID-fi.patch
|
||||||
|
Patch5: 0005-quota-nld-fix-open-PID-file-failed-when-systemd-read.patch
|
||||||
|
|
||||||
BuildRequires: autoconf, automake, coreutils, rpcgen, systemd, gcc
|
BuildRequires: autoconf, automake, coreutils, rpcgen, systemd, gcc
|
||||||
BuildRequires: e2fsprogs-devel, gettext-devel, openldap-devel
|
BuildRequires: e2fsprogs-devel, gettext-devel, openldap-devel
|
||||||
@ -125,6 +126,12 @@ make check
|
|||||||
%{_mandir}/man*/*
|
%{_mandir}/man*/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Dec 6 2022 lihaoxiang <lihaoxiang9@huawei.com> - 1:4.06-7
|
||||||
|
- Type:bugfix
|
||||||
|
- ID:NA
|
||||||
|
- SUG:NA
|
||||||
|
- DESC:rebase upstream patch about fix systemd read PID file failed
|
||||||
|
|
||||||
* Thu Dec 1 2022 lihaoxiang <lihaoxiang9@huawei.com> - 1:4.06-6
|
* Thu Dec 1 2022 lihaoxiang <lihaoxiang9@huawei.com> - 1:4.06-6
|
||||||
- Type:bugfix
|
- Type:bugfix
|
||||||
- ID:NA
|
- ID:NA
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user