mailing list of musl libc
 help / color / mirror / code / Atom feed
62eba5f337f876bb4e29cd95e1627909a627db17 blob 1218 bytes (raw)

 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
 
#include <sys/resource.h>
#include <errno.h>
#include "syscall.h"
#include "libc.h"

#define MIN(a, b) ((a)<(b) ? (a) : (b))
#define FIX(x) do{ if ((x)>=SYSCALL_RLIM_INFINITY) (x)=RLIM_INFINITY; }while(0)

static int __setrlimit(int resource, const struct rlimit *rlim)
{
	struct rlimit tmp;
	if (SYSCALL_RLIM_INFINITY != RLIM_INFINITY) {
		tmp = *rlim;
		FIX(tmp.rlim_cur);
		FIX(tmp.rlim_max);
		rlim = &tmp;
	}
	int ret = __syscall(SYS_prlimit64, 0, resource, rlim, 0);
#ifdef SYS_setrlimit
	unsigned long k_rlim[2];
	if (ret != -ENOSYS) return ret;
	k_rlim[0] = MIN(rlim->rlim_cur, MIN(-1UL, SYSCALL_RLIM_INFINITY));
	k_rlim[1] = MIN(rlim->rlim_max, MIN(-1UL, SYSCALL_RLIM_INFINITY));
	return __syscall(SYS_setrlimit, resource, k_rlim);
#else
	return ret;
#endif
}

struct ctx {
	const struct rlimit *rlim;
	int res;
	int err;
};

static void do_setrlimit(void *p)
{
	struct ctx *c = p;
	if (c->err>0) return;
	c->err = -__setrlimit(c->res, c->rlim);
}

int setrlimit(int resource, const struct rlimit *rlim)
{
	struct ctx c = { .res = resource, .rlim = rlim, .err = -1 };
	__synccall(do_setrlimit, &c);
	if (c.err) {
		if (c.err>0) errno = c.err;
		return -1;
	}
	return 0;
}

weak_alias(setrlimit, setrlimit64);
debug log:

solving 62eba5f3 ...
found 62eba5f3 in https://inbox.vuxu.org/musl/20200903112309.102601-4-sorear@fastmail.com/ ||
	https://inbox.vuxu.org/musl/e792658a-fbaa-48bd-8704-7f9d2ec5a4ef@www.fastmail.com/
found 7a66ab29 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 7a66ab29756b4a179a8077d7b4f50598b639e9da	src/misc/setrlimit.c

applying [1/2] https://inbox.vuxu.org/musl/20200903112309.102601-4-sorear@fastmail.com/
diff --git a/src/misc/setrlimit.c b/src/misc/setrlimit.c
index 7a66ab29..62eba5f3 100644

Checking patch src/misc/setrlimit.c...
Applied patch src/misc/setrlimit.c cleanly.

skipping https://inbox.vuxu.org/musl/e792658a-fbaa-48bd-8704-7f9d2ec5a4ef@www.fastmail.com/ for 62eba5f3
index at:
100644 62eba5f337f876bb4e29cd95e1627909a627db17	src/misc/setrlimit.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).