From 00652c2e72bbcae58d889761fd059a88c4f07611 Mon Sep 17 00:00:00 2001 From: Frans Meulenbroeks Date: Sun, 26 Sep 2010 13:15:19 +0200 Subject: pdm : moved unused files to obsolete dir Signed-off-by: Frans Meulenbroeks --- recipes/obsolete/pdm/pdm-1.0/setuid.patch | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 recipes/obsolete/pdm/pdm-1.0/setuid.patch (limited to 'recipes/obsolete/pdm') diff --git a/recipes/obsolete/pdm/pdm-1.0/setuid.patch b/recipes/obsolete/pdm/pdm-1.0/setuid.patch new file mode 100644 index 0000000000..17dbc00279 --- /dev/null +++ b/recipes/obsolete/pdm/pdm-1.0/setuid.patch @@ -0,0 +1,42 @@ +--- pdm-1.0/main.c 2003-12-09 11:43:22.000000000 -0700 ++++ pdm-1.0.new/main.c 2004-05-25 09:01:53.897999256 -0700 +@@ -80,10 +80,10 @@ + + /* spawn_session() + Spawns a new session based on the given name under the authority +- of the given UID. ++ of the given UID/GID. + */ + +-static pid_t spawn_session(char *app, uid_t uid) { ++static pid_t spawn_session(char *app, uid_t uid, gid_t gid) { + + char *argv[2] = { 0, 0 }; + pid_t pid = 0; +@@ -103,10 +103,13 @@ + /* If a different UID was specified, then try to change to that UID */ + + if (uid != getuid()) { +- if (seteuid(uid) == -1) { ++ if (setresuid(uid, uid, uid) == -1) { + fprintf(stderr, "Error: Unable to set the UID of the process.\n"); + exit(-1); + } ++ if (setresgid(gid,gid,gid) == -1) { ++ fprintf(stderr, "Error: Unable to set the GID of the process.\n"); ++ } + } + + argv[0] = app; +@@ -319,7 +322,10 @@ + + /* Start the session */ + VERBOSE("Spawning session '%s'\n", session); +- session_pid = spawn_session(session, curuser ? curuser->pw_uid : getuid()); ++ ++ session_pid = spawn_session(session, ++ curuser ? curuser->pw_uid : getuid(), ++ curuser ? curuser->pw_gid : getgid()); + + if (session_pid == -1) { + fprintf(stderr, "Fatal: Unable to spawn the session '%s'.\n", session); -- cgit 1.2.3-korg