debloat code that depends on /proc/self/fd/%d with shared function
I intend to add more Linux workarounds that depend on using these pathnames, and some of them will be in "syscall" functions that, from an anti-bloat standpoint, should not depend on the whole snprintf framework.
This commit is contained in:
parent
0dc4824479
commit
c8c0844f7f
5 changed files with 26 additions and 6 deletions
|
|
@ -2,11 +2,12 @@
|
|||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
|
||||
void __procfdname(char *, unsigned);
|
||||
|
||||
int fexecve(int fd, char *const argv[], char *const envp[])
|
||||
{
|
||||
static const char proc[] = "/proc/self/fd/%d";
|
||||
char buf[sizeof proc + 3*sizeof(int)];
|
||||
snprintf(buf, sizeof buf, proc, fd);
|
||||
char buf[15 + 3*sizeof(int)];
|
||||
__procfdname(buf, fd);
|
||||
execve(buf, argv, envp);
|
||||
if (errno == ENOENT) errno = EBADF;
|
||||
return -1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue