| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #include <config.h> |
| |
| #ident "$Id$" |
| |
| #include <sys/types.h> |
| #include <sys/stat.h> |
| #include "prototypes.h" |
| #include "defines.h" |
| #include <fcntl.h> |
| #include <stdio.h> |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| int chown_tree (const char *root, |
| uid_t old_uid, |
| uid_t new_uid, |
| gid_t old_gid, |
| gid_t new_gid) |
| { |
| char *new_name; |
| size_t new_name_len; |
| int rc = 0; |
| struct DIRECT *ent; |
| struct stat sb; |
| DIR *dir; |
| |
| new_name = malloc (1024); |
| if (NULL == new_name) { |
| return -1; |
| } |
| new_name_len = 1024; |
| |
| |
| |
| |
| |
| |
| if (access (root, F_OK) != 0) { |
| free (new_name); |
| return -1; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| dir = opendir (root); |
| if (NULL == dir) { |
| free (new_name); |
| return -1; |
| } |
| |
| while ((ent = readdir (dir))) { |
| size_t ent_name_len; |
| uid_t tmpuid = (uid_t) -1; |
| gid_t tmpgid = (gid_t) -1; |
| |
| |
| |
| |
| |
| if ( (strcmp (ent->d_name, ".") == 0) |
| || (strcmp (ent->d_name, "..") == 0)) { |
| continue; |
| } |
| |
| |
| |
| |
| |
| |
| ent_name_len = strlen (root) + strlen (ent->d_name) + 2; |
| if (ent_name_len > new_name_len) { |
| char *tmp = realloc (new_name, ent_name_len); |
| if (NULL == tmp) { |
| rc = -1; |
| break; |
| } |
| new_name = tmp; |
| new_name_len = ent_name_len; |
| } |
| |
| (void) snprintf (new_name, new_name_len, "%s/%s", root, ent->d_name); |
| |
| |
| if (LSTAT (new_name, &sb) == -1) { |
| continue; |
| } |
| |
| if (S_ISDIR (sb.st_mode) && !S_ISLNK (sb.st_mode)) { |
| |
| |
| |
| |
| |
| rc = chown_tree (new_name, old_uid, new_uid, |
| old_gid, new_gid); |
| if (0 != rc) { |
| break; |
| } |
| } |
| #ifndef HAVE_LCHOWN |
| |
| if (S_ISLNK (sb.st_mode)) { |
| continue; |
| } |
| #endif |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| if (((uid_t) -1 == old_uid) || (sb.st_uid == old_uid)) { |
| tmpuid = new_uid; |
| } |
| if (((gid_t) -1 == old_gid) || (sb.st_gid == old_gid)) { |
| tmpgid = new_gid; |
| } |
| if (((uid_t) -1 != tmpuid) || ((gid_t) -1 != tmpgid)) { |
| rc = LCHOWN (new_name, tmpuid, tmpgid); |
| if (0 != rc) { |
| break; |
| } |
| } |
| } |
| |
| free (new_name); |
| (void) closedir (dir); |
| |
| |
| |
| |
| |
| if ((0 == rc) && (stat (root, &sb) == 0)) { |
| uid_t tmpuid = (uid_t) -1; |
| gid_t tmpgid = (gid_t) -1; |
| if (((uid_t) -1 == old_uid) || (sb.st_uid == old_uid)) { |
| tmpuid = new_uid; |
| } |
| if (((gid_t) -1 == old_gid) || (sb.st_gid == old_gid)) { |
| tmpgid = new_gid; |
| } |
| if (((uid_t) -1 != tmpuid) || ((gid_t) -1 != tmpgid)) { |
| rc = LCHOWN (root, tmpuid, tmpgid); |
| } |
| } else { |
| rc = -1; |
| } |
| |
| return rc; |
| } |
| |