logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/

chown.c (7110B)


  1. // utils-std: Collection of commonly available Unix tools
  2. // SPDX-FileCopyrightText: 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
  3. // SPDX-License-Identifier: MPL-2.0
  4. #define _POSIX_C_SOURCE 200809L
  5. // NetBSD <10 hides fdopendir behind _NETBSD_SOURCE
  6. #if __NetBSD_Version__ < 1000000000
  7. #define _NETBSD_SOURCE
  8. #endif
  9. #include "../config.h" // HAS_*
  10. #include "../lib/fs.h"
  11. #include "../lib/getopt_nolong.h"
  12. #include "../lib/user_group_parse.h"
  13. #include <dirent.h> // fdopendir, readdir, closedir
  14. #include <errno.h>
  15. #include <fcntl.h> // AT_FDCWD, fchownat
  16. #include <limits.h> // PATH_MAX
  17. #include <stdbool.h>
  18. #include <stdio.h> // fprintf
  19. #include <stdlib.h> // abort, exit
  20. #include <string.h> // strerror, strcmp
  21. #include <sys/stat.h> // fstatat, S_ISDIR
  22. #include <unistd.h> // getopt
  23. #ifdef HAS_GETOPT_LONG
  24. #include <getopt.h>
  25. #endif
  26. const char *argv0 = NULL;
  27. static uid_t user = (uid_t)-1;
  28. static uid_t group = (uid_t)-1;
  29. static bool opt_v = false, opt_R = false;
  30. enum chown_follow_symlinks
  31. {
  32. CHOWN_FOLLOW_UNK_SYMLINKS,
  33. CHOWN_FOLLOW_ALL_SYMLINKS,
  34. CHOWN_FOLLOW_NO_SYMLINK,
  35. CHOWN_FOLLOW_ONE_SYMLINK,
  36. };
  37. static int
  38. do_fchownat(int fd, char *name, char *acc_path, enum chown_follow_symlinks follow_symlinks)
  39. {
  40. struct stat stats;
  41. int err = 0;
  42. int stat_opts = (follow_symlinks == CHOWN_FOLLOW_NO_SYMLINK) ? AT_SYMLINK_NOFOLLOW : 0;
  43. int chown_opts = (follow_symlinks == CHOWN_FOLLOW_NO_SYMLINK) ? AT_SYMLINK_NOFOLLOW : 0;
  44. if(fstatat(fd, name, &stats, stat_opts) != 0)
  45. {
  46. fprintf(stderr,
  47. "%s: error: Failed getting status for '%s': %s\n",
  48. argv0,
  49. acc_path,
  50. strerror(errno));
  51. errno = 0;
  52. return 1;
  53. }
  54. bool change = false;
  55. if(user != (uid_t)-1 && stats.st_uid != user) change = true;
  56. if(group != (uid_t)-1 && stats.st_gid != group) change = true;
  57. if(change)
  58. {
  59. if(fchownat(fd, name, user, group, chown_opts) != 0)
  60. {
  61. fprintf(stderr,
  62. "%s: error: Failed setting ownership to '%d:%d' for '%s': %s\n",
  63. argv0,
  64. user,
  65. group,
  66. acc_path,
  67. strerror(errno));
  68. errno = 0;
  69. return 1;
  70. }
  71. if(opt_v)
  72. printf("%s: Ownership changed from %d:%d to %d:%d for '%s'\n",
  73. argv0,
  74. stats.st_uid,
  75. stats.st_gid,
  76. user,
  77. group,
  78. acc_path);
  79. }
  80. else
  81. {
  82. if(opt_v)
  83. printf("%s: Ownership already set to %d:%d for '%s'\n",
  84. argv0,
  85. stats.st_uid,
  86. stats.st_gid,
  87. acc_path);
  88. }
  89. if(opt_R && S_ISDIR(stats.st_mode))
  90. {
  91. int dir = openat(fd, name, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
  92. if(dir == -1)
  93. {
  94. fprintf(stderr,
  95. "%s: error: Couldn't open '%s' as directory: %s\n",
  96. argv0,
  97. acc_path,
  98. strerror(errno));
  99. errno = 0;
  100. return 1;
  101. }
  102. DIR *dirp = fdopendir(dir);
  103. if(dirp == NULL)
  104. {
  105. fprintf(stderr,
  106. "%s: error: Couldn't get DIR entry for opened '%s': %s\n",
  107. argv0,
  108. acc_path,
  109. strerror(errno));
  110. errno = 0;
  111. return 1;
  112. }
  113. while(true)
  114. {
  115. struct dirent *dp = readdir(dirp);
  116. if(dp == NULL)
  117. {
  118. if(errno == 0) break;
  119. fprintf(stderr,
  120. "%s: error: Failed reading directory '%s': %s\n",
  121. argv0,
  122. acc_path,
  123. strerror(errno));
  124. closedir(dirp); // FIXME: unhandled error
  125. errno = 0;
  126. return 1;
  127. }
  128. if(strcmp(dp->d_name, ".") == 0) continue;
  129. if(strcmp(dp->d_name, "..") == 0) continue;
  130. char new_path[PATH_MAX] = "";
  131. if(snprintf(new_path, PATH_MAX, "%s/%s", acc_path, dp->d_name) < 0)
  132. {
  133. fprintf(stderr,
  134. "%s: error: Couldn't concatenate '%s' into parent '%s', skipping to next entry: %s",
  135. argv0,
  136. name,
  137. acc_path,
  138. strerror(errno));
  139. err++;
  140. errno = 0;
  141. continue;
  142. }
  143. enum chown_follow_symlinks child_follow_symlinks =
  144. (follow_symlinks == CHOWN_FOLLOW_ONE_SYMLINK) ? CHOWN_FOLLOW_NO_SYMLINK : follow_symlinks;
  145. // No depth counter for now, unlikely to be a problem as symlinks aren't followed
  146. int ret = do_fchownat(dir, dp->d_name, new_path, child_follow_symlinks);
  147. if(ret != 0) return ret;
  148. }
  149. // fdopendir allocates memory for DIR, needs closedir
  150. if(closedir(dirp) != 0)
  151. {
  152. fprintf(stderr,
  153. "%s: error: Deallocating directory entry for '%s' failed: %s\n",
  154. argv0,
  155. acc_path,
  156. strerror(errno));
  157. errno = 0;
  158. return 1;
  159. }
  160. }
  161. return err;
  162. }
  163. static void
  164. usage(void)
  165. {
  166. if(strcmp(argv0, "chown") == 0)
  167. fprintf(stderr, "Usage: %s [-h | -R [-H|-L|-P]] owner[:group] file...\n", argv0);
  168. else if(strcmp(argv0, "chgrp") == 0)
  169. fprintf(stderr, "Usage: %s [-h | -R [-H|-L|-P]] group file...\n", argv0);
  170. else
  171. {
  172. fprintf(
  173. stderr, "%s: error: Unknown utility '%s' expected either chown or chgrp\n", argv0, argv0);
  174. exit(1);
  175. }
  176. }
  177. int
  178. main(int argc, char *argv[])
  179. {
  180. argv0 = static_basename(argv[0]);
  181. enum chown_follow_symlinks follow_symlinks = CHOWN_FOLLOW_UNK_SYMLINKS;
  182. #ifdef HAS_GETOPT_LONG
  183. // Strictly for GNUisms compatibility so no long-only options
  184. // clang-format off
  185. static struct option opts[] = {
  186. {"no-dereference", no_argument, 0, 'h'},
  187. {"recursive", no_argument, 0, 'R'},
  188. {"verbose", no_argument, 0, 'v'},
  189. {0, 0, 0, 0},
  190. };
  191. // clang-format on
  192. // Need + as first character to get POSIX-style option parsing
  193. for(int c = -1; (c = getopt_long(argc, argv, "+:hRHLPv", opts, NULL)) != -1;)
  194. #else
  195. for(int c = -1; (c = getopt_nolong(argc, argv, ":hRHLPv")) != -1;)
  196. #endif
  197. {
  198. switch(c)
  199. {
  200. case 'h':
  201. follow_symlinks = CHOWN_FOLLOW_NO_SYMLINK;
  202. break;
  203. case 'R':
  204. opt_R = true;
  205. break;
  206. case 'H':
  207. follow_symlinks = CHOWN_FOLLOW_ONE_SYMLINK;
  208. break;
  209. case 'L':
  210. follow_symlinks = CHOWN_FOLLOW_ALL_SYMLINKS;
  211. break;
  212. case 'P':
  213. follow_symlinks = CHOWN_FOLLOW_NO_SYMLINK;
  214. break;
  215. case 'v':
  216. opt_v = true;
  217. break;
  218. case ':':
  219. fprintf(stderr, "%s: error: Missing operand for option: '-%c'\n", argv0, optopt);
  220. usage();
  221. return 1;
  222. case '?':
  223. if(!got_long_opt) fprintf(stderr, "%s: error: Unrecognised option: '-%c'\n", argv0, optopt);
  224. usage();
  225. return 1;
  226. default:
  227. abort();
  228. }
  229. }
  230. argc -= optind;
  231. argv += optind;
  232. if(follow_symlinks == CHOWN_FOLLOW_UNK_SYMLINKS)
  233. follow_symlinks = opt_R ? CHOWN_FOLLOW_NO_SYMLINK : CHOWN_FOLLOW_ALL_SYMLINKS;
  234. if(argc < 2)
  235. {
  236. fprintf(stderr, "%s: error: Expects >=2 arguments, %d given\n", argv0, argc);
  237. usage();
  238. return 1;
  239. }
  240. if(strcmp(argv0, "chown") == 0)
  241. {
  242. char *gname = strchr(argv[0], ':');
  243. if(gname != NULL)
  244. {
  245. gname[0] = 0;
  246. gname++;
  247. if(parse_group(gname, &group) < 0) return 1;
  248. }
  249. if(parse_user(argv[0], &user) < 0) return 1;
  250. }
  251. else if(strcmp(argv0, "chgrp") == 0)
  252. {
  253. if(parse_group(argv[0], &group) < 0) return 1;
  254. }
  255. else
  256. {
  257. fprintf(
  258. stderr, "%s: error: Unknown utility '%s' expected either chown or chgrp\n", argv0, argv0);
  259. return 1;
  260. }
  261. for(int i = 1; i < argc; i++)
  262. {
  263. int ret = do_fchownat(AT_FDCWD, argv[i], argv[i], follow_symlinks);
  264. if(ret != 0) return ret;
  265. }
  266. return 0;
  267. }