blob: 42fd8e13edd9e4ffe4c0929fca8ac7f1e8ff598a (
plain)
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
|
--- vixie-cron-4.1/do_command.c 2006-05-25 16:44:26.000000000 +0400
+++ vixie-cron-4.1.lk/do_command.c 2006-05-25 16:42:25.000000000 +0400
@@ -240,12 +240,23 @@
}
}
#else
- setgid(e->pwd->pw_gid);
+
initgroups(usernm, e->pwd->pw_gid);
#if (defined(BSD)) && (BSD >= 199103)
setlogin(usernm);
#endif /* BSD */
- setuid(e->pwd->pw_uid); /* we aren't root after this... */
+ // setuid(e->pwd->pw_uid); /* we aren't root after this... */
+
+ if ( setgid(e->pwd->pw_gid) == -1 ) {
+ fprintf(stderr,"can't set gid for %s\n", e->pwd->pw_name);
+ _exit(1);
+ }
+
+ if ( setuid(e->pwd->pw_uid) == -1 ) {
+ fprintf(stderr,"can't set uid for %s\n", e->pwd->pw_name);
+ _exit(1);
+ }
+
#endif /* LOGIN_CAP */
chdir(env_get("HOME", e->envp));
|