* [PATCH] misc-progs: Add path to executable to argv
@ 2022-06-15 9:53 Michael Tremer
2022-06-17 8:52 ` Peter Müller
0 siblings, 1 reply; 2+ messages in thread
From: Michael Tremer @ 2022-06-15 9:53 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1250 bytes --]
Otherwise, the first argument would always be swollowed :(
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
src/misc-progs/setuid.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/src/misc-progs/setuid.c b/src/misc-progs/setuid.c
index 831fb1f90..17b0e7066 100644
--- a/src/misc-progs/setuid.c
+++ b/src/misc-progs/setuid.c
@@ -61,10 +61,8 @@ static int system_core(char* command, char** args, uid_t uid, gid_t gid, char *e
if(!command)
return 1;
-#if 0
// Add command as first element to argv
argv[argc++] = command;
-#endif
// Add all other arguments
if (args) {
@@ -138,7 +136,7 @@ int safe_system(char* command) {
NULL,
};
- return system_core(argv[0], argv, 0, 0, "safe_system");
+ return system_core(argv[0], argv + 1, 0, 0, "safe_system");
}
/* Much like safe_system but lets you specify a non-root uid and gid to run
@@ -151,7 +149,7 @@ int unpriv_system(char* command, uid_t uid, gid_t gid) {
NULL,
};
- return system_core(argv[0], argv, uid, gid, "unpriv_system");
+ return system_core(argv[0], argv + 1, uid, gid, "unpriv_system");
}
/* General routine to initialise a setuid root program, and put the
--
2.30.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] misc-progs: Add path to executable to argv
2022-06-15 9:53 [PATCH] misc-progs: Add path to executable to argv Michael Tremer
@ 2022-06-17 8:52 ` Peter Müller
0 siblings, 0 replies; 2+ messages in thread
From: Peter Müller @ 2022-06-17 8:52 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1393 bytes --]
Acked-by: Peter Müller <peter.mueller(a)ipfire.org>
> Otherwise, the first argument would always be swollowed :(
>
> Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
> ---
> src/misc-progs/setuid.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/src/misc-progs/setuid.c b/src/misc-progs/setuid.c
> index 831fb1f90..17b0e7066 100644
> --- a/src/misc-progs/setuid.c
> +++ b/src/misc-progs/setuid.c
> @@ -61,10 +61,8 @@ static int system_core(char* command, char** args, uid_t uid, gid_t gid, char *e
> if(!command)
> return 1;
>
> -#if 0
> // Add command as first element to argv
> argv[argc++] = command;
> -#endif
>
> // Add all other arguments
> if (args) {
> @@ -138,7 +136,7 @@ int safe_system(char* command) {
> NULL,
> };
>
> - return system_core(argv[0], argv, 0, 0, "safe_system");
> + return system_core(argv[0], argv + 1, 0, 0, "safe_system");
> }
>
> /* Much like safe_system but lets you specify a non-root uid and gid to run
> @@ -151,7 +149,7 @@ int unpriv_system(char* command, uid_t uid, gid_t gid) {
> NULL,
> };
>
> - return system_core(argv[0], argv, uid, gid, "unpriv_system");
> + return system_core(argv[0], argv + 1, uid, gid, "unpriv_system");
> }
>
> /* General routine to initialise a setuid root program, and put the
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-06-17 8:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-15 9:53 [PATCH] misc-progs: Add path to executable to argv Michael Tremer
2022-06-17 8:52 ` Peter Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox