aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/setfsuid.c
blob: 423ca030e328b929097161fa7e9e0e22f5c729aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * static int
 * wrap_setfsuid(uid_t fsuid) {
 *	int rc = -1;
 */
	if (pseudo_euid == 0 ||
	    pseudo_euid == fsuid || pseudo_ruid == fsuid || pseudo_suid == fsuid) {
		pseudo_fuid = fsuid;
		rc = 0;
	} else {
		rc = -1;
		errno = EPERM;
	}
/*	return rc;
 * }
 */