all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 074eac5542d3f2c773eb06c460af510b180b996d 8577 bytes (raw)
name: gnu/packages/patches/restartd-add-error-handling-for-robustness.patch 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
 
From ec606eb15091ff8ffa672500413128c29814f8ad Mon Sep 17 00:00:00 2001
From: Maxime Devos <maximedevos@telenet.be>, Yin Kangkai <yinkangkai@xiaomi.com>
Date: Thu, 25 Aug 2022 14:29:25 +0200
Subject: [PATCH] Add some error handling for robustness.

This patch is a merge of two pull requests for the restartd project.

Maxime Devos <maximedevos@telenet.be>
https://github.com/ajraymond/restartd/pull/8

This makes the code a little more robust. What if /var/run does not
exist, or we do not have permission to open
/var/run/restartd.pid (EPERM?) due to SELinux misconfiguration?

Yin Kangkai <yinkangkai@xiaomi.com>
https://github.com/ajraymond/restartd/pull/6

This patch also avoids segmentation fault when run from non-root user.

---
 config.c   | 19 ++++++++++----
 config.h   |  2 ++
 restartd.c | 73 ++++++++++++++++++++++++++++++++++++++++++++++--------
 3 files changed, 79 insertions(+), 15 deletions(-)

diff --git a/config.c b/config.c
index f307b8a..94907e3 100644
--- a/config.c
+++ b/config.c
@@ -57,7 +57,11 @@ int read_config(void)
     config_process_number = 0;

     line1 = (char *) malloc(MAX_LINE_LENGTH);
+    if (!line1)
+      oom_failure();
     line2 = (char *) malloc(MAX_LINE_LENGTH);
+    if (!line2)
+      oom_failure();

     if ((config_fd = fopen(config_file, "rt")) == NULL) {
         fprintf(stderr, "Error at opening config file: %s\n", config_file);
@@ -155,11 +159,16 @@ void dump_config(void) {
     int i;

     for(i=0; i<config_process_number; i++) {
-        printf("ID=%d\n  name=%s\n  regexp=%s\n  running=%s\n  not_running=%s\n", i,
-            config_process[i].name,
-            config_process[i].regexp,
-            config_process[i].running,
-            config_process[i].not_running);
+      if (printf("ID=%d\n  name=%s\n  regexp=%s\n  running=%s\n  not_running=%s\n", i,
+		 config_process[i].name,
+		 config_process[i].regexp,
+		 config_process[i].running,
+		 config_process[i].not_running) < 0) {
+	/* Maybe stdout points to a file and a file system quotum was exceeded? */
+	fprintf(stderr, "Failed to dump the configuration. Exiting.\n");
+	syslog(LOG_ERR, "Failed to dump the configuration. Exiting.");
+	exit(1);
+      }
     }

 }
diff --git a/config.h b/config.h
index fabaa2b..b5a134a 100644
--- a/config.h
+++ b/config.h
@@ -1,6 +1,7 @@
 /* restartd - Process checker and/or restarter daemon
  * Copyright (C) 2000-2002 Tibor Koleszar <oldw@debian.org>
  * Copyright (C) 2006 Aurélien GÉRÔME <ag@roxor.cx>
+ * Copyright (C) 2022 Maxime Devos <maximedevos@telenet.be>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -43,5 +44,6 @@ typedef struct config_process_type {

 int read_config(/* char *config_file */);
 void dump_config(void);
+void oom_failure(void);

 #endif /* RESTARTD_CONFIG_H */
diff --git a/restartd.c b/restartd.c
index 2aa720c..df0a6eb 100644
--- a/restartd.c
+++ b/restartd.c
@@ -1,6 +1,8 @@
 /* restartd - Process checker and/or restarter daemon
  * Copyright (C) 2000-2002 Tibor Koleszar <oldw@debian.org>
  * Copyright (C) 2006 Aurélien GÉRÔME <ag@roxor.cx>
+ * Copyright (C) 2016 Yin Kangkai <yinkangkai@xiaomi.com>
+ * Copyright (C) 2022 Maxime Devos <maximedevos@telenet.be>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -52,6 +54,17 @@ void got_signal(int sig)
     }
 }

+/* Ignoring out-of-memory failures is risky on systems without virtual memory
+   where additionally at address 0 there is actually something important
+   mapped. Additionally, while often on Linux the OOM killer will kill processes
+   where an OOM happens, this is not always the case and there exist other systems
+   without an OOM killer (e.g. the Hurd). */
+void oom_failure()
+{
+  syslog(LOG_ERR, "Failed to allocate memory. Exiting.");
+  exit(1);
+}
+
 int main(int argc, char *argv[])
 {
     DIR *procdir_id;
@@ -75,15 +88,21 @@ int main(int argc, char *argv[])

     /* Options */
     config_file = strdup(DEFAULT_CONFIG);
+    if (!config_file)
+      oom_failure();
+
     list_only = 0;

     for(i = 0; i < argc; i++) {
         if (!strcmp(argv[i], "-c") || !strcmp(argv[i], "--config")) {
             config_file = strdup(argv[i + 1]);
+	    if (!config_file)
+	      oom_failure();
         }
         if (!strcmp(argv[i], "-v") || !strcmp(argv[i], "--version")) {
             printf("restard %s - Copyright 2000-2002 Tibor Koleszar <oldw@debian.org>\n"
-                   "                Copyright 2006 Aurélien GÉRÔME <ag@roxor.cx>\n",
+                   "                Copyright 2006 Aurélien GÉRÔME <ag@roxor.cx>\n"
+                   "                Copyright 2022 Maxime Devos <maximedevos@telenet.be>\n",
                    VERSION);
             exit(0);
         }
@@ -118,10 +137,13 @@ int main(int argc, char *argv[])
                     "  -i <interval_sec>: the check interval in second\n"
                     "  -l               : list configuration options\n"
                     "  -h               : help\n\n", VERSION);
+	    exit(0);
         }
     }

     config_process = malloc(sizeof(struct config_process_type) * 128);
+    if (!config_process)
+      oom_failure();

     read_config();
     if (list_only) {
@@ -133,9 +155,17 @@ int main(int argc, char *argv[])
            config_process_number);

     procdir_dirent = malloc(sizeof(struct dirent));
+    if (!procdir_dirent)
+      oom_failure();
     proc_cmdline_str = (char *) malloc(1024);
+    if (!proc_cmdline_str)
+      oom_failure();
     proc_cmdline_name = (char *) malloc(1024);
+    if (!proc_cmdline_name)
+      oom_failure();
     regc = malloc(1024);
+    if (!regc)
+      oom_failure();

     /* Catch signals */
     signal(SIGTERM, got_signal);
@@ -187,8 +217,18 @@ int main(int argc, char *argv[])
         }

         out_proc = fopen("/var/run/restartd.pid", "wt");
-        fprintf(out_proc, "%d", getpid());
-        fclose(out_proc);
+	if (!out_proc) {
+	  syslog(LOG_ERR, "Failed to open /var/run/restartd.pid");
+	  return -1;
+	}
+        if (fprintf(out_proc, "%d", getpid()) < 0) {
+	  syslog(LOG_ERR, "Failed to write to /var/run/restartd.pid. Exiting.");
+	  return -1;
+	}
+        if (fclose(out_proc) < 0) { /* errors can happen when flushing the buffer */
+	  syslog(LOG_ERR, "Failed to write to /var/run/restartd.pid. Exiting.");
+	  return -1;
+	}

         while(1) {
             if ((procdir_id = opendir("/proc")) == NULL) {
@@ -237,16 +277,23 @@ int main(int argc, char *argv[])
            now = time(NULL);

            out_proc = fopen("/var/run/restartd", "wt");
+	   if (!out_proc) {
+	     syslog(LOG_ERR, "Failed to open /var/run/restartd");
+	     return -1;
+	   }

-           fprintf(out_proc, "%s\n", ctime(&now));
+           if (fprintf(out_proc, "%s\n", ctime(&now)) < 0) {
+	     syslog(LOG_ERR, "Failed to write to /var/run/restartd. Exiting.");
+	     return -1;
+	   }

            for(i=0; i<config_process_number; i++) {
                if (strlen(config_process[i].processes) > 0) {
                    if (strlen(config_process[i].running) > 0) {
                        strcpy(config_process[i].status, "running");
-                       syslog(LOG_INFO, "%s is running, executing '%s'",
+                       /* syslog(LOG_INFO, "%s is running, executing '%s'",
                               config_process[i].name,
-                              config_process[i].running);
+                              config_process[i].running); */
                        system(config_process[i].running);
                     } else {
                         strcpy(config_process[i].status, "running");
@@ -267,12 +314,18 @@ int main(int argc, char *argv[])
                     strcpy(config_process[i].status, "not running");
                 }

-                fprintf(out_proc, "%-12s %-12s      %s\n",
-                        config_process[i].name, config_process[i].status,
-                        config_process[i].processes);
+		if (fprintf(out_proc, "%-12s %-12s      %s\n",
+			    config_process[i].name, config_process[i].status,
+			    config_process[i].processes) < 0) {
+		  syslog(LOG_ERR, "Failed to write to /var/run/restartd. Exiting.");
+		  return -1;
+		}
             }

-            fclose(out_proc);
+	    if (fclose(out_proc) < 0) {
+	      syslog(LOG_ERR, "Failed to write to /var/run/restartd.pid. Exiting.");
+	      return -1;
+	    }

             sleep(check_interval);
         }
--
2.37.2


debug log:

solving 33f5f06555 ...
found 33f5f06555 in https://yhetil.org/guix/87a67qsl9y.fsf@ngraves.fr/

applying [1/1] https://yhetil.org/guix/87a67qsl9y.fsf@ngraves.fr/
diff --git a/gnu/packages/patches/restartd-add-error-handling-for-robustness.patch b/gnu/packages/patches/restartd-add-error-handling-for-robustness.patch
new file mode 100644
index 0000000000..33f5f06555

Checking patch gnu/packages/patches/restartd-add-error-handling-for-robustness.patch...
1:248: new blank line at EOF.
+
Applied patch gnu/packages/patches/restartd-add-error-handling-for-robustness.patch cleanly.
warning: 1 line adds whitespace errors.

index at:
100644 074eac5542d3f2c773eb06c460af510b180b996d	gnu/packages/patches/restartd-add-error-handling-for-robustness.patch

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.