.
OBS-URL: https://build.opensuse.org/package/show/Base:System/psmisc?expand=0&rev=46
This commit is contained in:
parent
9e76689168
commit
25cf8e9598
@ -120,7 +120,7 @@ diff --git a/src/timeout.c b/src/timeout.c
|
||||
index e69de29..3b582a3 100644
|
||||
--- a/src/timeout.c
|
||||
+++ b/src/timeout.c
|
||||
@@ -0,0 +1,208 @@
|
||||
@@ -0,0 +1,215 @@
|
||||
+/*
|
||||
+ * timout.c Advanced timeout handling for file system calls
|
||||
+ * to avoid deadlocks on remote file shares.
|
||||
@ -141,6 +141,8 @@ index e69de29..3b582a3 100644
|
||||
+#define _GNU_SOURCE
|
||||
+#endif
|
||||
+
|
||||
+#include "config.h" /* For _FILE_OFFSET_BITS */
|
||||
+
|
||||
+#include <errno.h>
|
||||
+#include <pthread.h>
|
||||
+#include <setjmp.h>
|
||||
@ -164,6 +166,9 @@ index e69de29..3b582a3 100644
|
||||
+# ifndef constructor
|
||||
+# define constructor __constructor__
|
||||
+# endif
|
||||
+# ifndef packed
|
||||
+# define packed __packed__
|
||||
+# endif
|
||||
+# ifndef inline
|
||||
+# define inline __inline__
|
||||
+# endif
|
||||
@ -187,8 +192,7 @@ index e69de29..3b582a3 100644
|
||||
+ int errcode;
|
||||
+ struct stat argument;
|
||||
+ stat_t function;
|
||||
+ char *path;
|
||||
+} handle_t;
|
||||
+} attribute((packed)) handle_t;
|
||||
+
|
||||
+static volatile handle_t handle;
|
||||
+
|
||||
@ -205,6 +209,7 @@ index e69de29..3b582a3 100644
|
||||
+static void attribute((constructor)) start(void)
|
||||
+{
|
||||
+ sigset_t sigset, oldset;
|
||||
+ char path[PATH_MAX];
|
||||
+ handle_t handle;
|
||||
+ ssize_t in;
|
||||
+
|
||||
@ -234,12 +239,10 @@ index e69de29..3b582a3 100644
|
||||
+ pipes[0] = pipes[3] = -1;
|
||||
+
|
||||
+ while ((in = read(0, &handle, sizeof(handle_t))) == sizeof(handle_t) &&
|
||||
+ (handle.path = (char*)malloc(handle.len)) &&
|
||||
+ (in = read(0, handle.path, handle.len)) == handle.len) {
|
||||
+ if (handle.function(handle.path, &handle.argument) < 0)
|
||||
+ (in = read(0, path, handle.len)) == handle.len) {
|
||||
+ if (handle.function(path, &handle.argument) < 0)
|
||||
+ handle.errcode = errno;
|
||||
+ write(1, &handle.errcode, sizeof(handle.errcode)+sizeof(handle.argument));
|
||||
+ free(handle.path);
|
||||
+ }
|
||||
+ sigprocmask(SIG_SETMASK, &oldset, NULL);
|
||||
+ exit(0);
|
||||
@ -273,7 +276,6 @@ index e69de29..3b582a3 100644
|
||||
+{
|
||||
+ struct sigaction old_act, new_act;
|
||||
+ sigset_t sigset, oldset;
|
||||
+ handle_t handle;
|
||||
+
|
||||
+ if (active <= 0) { /* Oops, last one failed therefore clear status and restart */
|
||||
+ int status;
|
||||
@ -282,10 +284,13 @@ index e69de29..3b582a3 100644
|
||||
+ }
|
||||
+
|
||||
+ handle.len = strlen(path) + 1;
|
||||
+ if (handle.len >= PATH_MAX) {
|
||||
+ errno = ENAMETOOLONG;
|
||||
+ goto error;
|
||||
+ }
|
||||
+ handle.errcode = 0;
|
||||
+ handle.argument = *argument;
|
||||
+ handle.function = function;
|
||||
+ handle.path = (char*)0;
|
||||
+
|
||||
+ sigemptyset(&sigset);
|
||||
+ sigaddset(&sigset, SIGALRM);
|
||||
@ -314,8 +319,10 @@ index e69de29..3b582a3 100644
|
||||
+ errno = handle.errcode;
|
||||
+ goto error;
|
||||
+ }
|
||||
+
|
||||
+ *argument = handle.argument;
|
||||
+ sigprocmask(SIG_SETMASK, &oldset, NULL);
|
||||
+
|
||||
+ return 0;
|
||||
+timed:
|
||||
+ (void) alarm(0);
|
||||
@ -333,7 +340,7 @@ diff --git a/src/timeout.h b/src/timeout.h
|
||||
index e69de29..50dd135 100644
|
||||
--- a/src/timeout.h
|
||||
+++ b/src/timeout.h
|
||||
@@ -0,0 +1,33 @@
|
||||
@@ -0,0 +1,36 @@
|
||||
+/*
|
||||
+ * timout.h Advanced timeout handling for file system calls
|
||||
+ * to avoid deadlocks on remote file shares.
|
||||
@ -353,9 +360,12 @@ index e69de29..50dd135 100644
|
||||
+#ifndef _TIMEOUT_H
|
||||
+#define _TIMEOUT_H
|
||||
+
|
||||
+#include "config.h" /* For _FILE_OFFSET_BITS */
|
||||
+
|
||||
+#include <sys/types.h>
|
||||
+#include <sys/stat.h>
|
||||
+#include <time.h>
|
||||
+#include <limits.h>
|
||||
+
|
||||
+#if !defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L)
|
||||
+# ifndef restrict
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 5 09:47:38 UTC 2011 - werner@suse.de
|
||||
|
||||
- Handle internal size of structure stat by including config.h
|
||||
to avoid size missmatch during copy result back (bnc#720882)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 3 10:56:19 UTC 2011 - mmarek@suse.cz
|
||||
|
||||
|
@ -51,7 +51,7 @@ processes that are using specified files or filesystems.
|
||||
%prep
|
||||
%setup -q
|
||||
%patch42 -p1
|
||||
#%patch43 -p1
|
||||
%patch43 -p1 -b .to
|
||||
%patch1 -p0 -b .tigetstr
|
||||
%patch2 -p0 -b .pstree
|
||||
%patch0 -p0 -b .0
|
||||
|
Loading…
Reference in New Issue
Block a user