logo

utils-std

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

rm.c (5145B)


  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 "../lib/consent.h"
  10. #include "../lib/getopt_nolong.h"
  11. #include <ctype.h> // isprint
  12. #include <dirent.h> // fdopendir, readdir, closedir
  13. #include <errno.h> // errno
  14. #include <fcntl.h> // AT_FDCWD
  15. #include <limits.h> // PATH_MAX
  16. #include <locale.h> // setlocale
  17. #include <stdarg.h> // va_list
  18. #include <stdbool.h>
  19. #include <stdio.h> // fprintf, getline
  20. #include <stdlib.h> // free
  21. #include <string.h> // strerror
  22. #include <sys/stat.h> // chmod, fstatat, S_ISDIR
  23. #include <unistd.h> // unlink, isatty
  24. bool opt_d = false, force = false, recurse = false, verbose = false, opt_i = false;
  25. const char *argv0 = "rm";
  26. static int
  27. do_unlinkat(int fd, char *name, char *acc_path)
  28. {
  29. struct stat stats;
  30. int err = 0;
  31. if(fstatat(fd, name, &stats, AT_SYMLINK_NOFOLLOW) != 0)
  32. {
  33. if(force && errno == ENOENT)
  34. {
  35. errno = 0;
  36. return 0;
  37. }
  38. fprintf(stderr, "rm: error: Failed getting status for '%s': %s\n", acc_path, strerror(errno));
  39. errno = 0;
  40. return 1;
  41. }
  42. bool is_dir = S_ISDIR(stats.st_mode);
  43. if(is_dir && !opt_d)
  44. {
  45. if(!recurse)
  46. {
  47. fprintf(stderr, "rm: error: Is a directory, pass -r or -d to remove: %s\n", acc_path);
  48. return 1;
  49. }
  50. if(!force && opt_i)
  51. if(!consentf("rm: Recurse into '%s' ? [y/N] ", acc_path)) return 0;
  52. int dir = openat(fd, name, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
  53. if(dir == -1)
  54. {
  55. fprintf(
  56. stderr, "rm: error: Couldn't open '%s' as directory: %s\n", acc_path, strerror(errno));
  57. errno = 0;
  58. return 1;
  59. }
  60. DIR *dirp = fdopendir(dir);
  61. if(dirp == NULL)
  62. {
  63. fprintf(stderr,
  64. "rm: error: Couldn't get DIR entry for opened '%s': %s\n",
  65. acc_path,
  66. strerror(errno));
  67. errno = 0;
  68. return 1;
  69. }
  70. while(true)
  71. {
  72. struct dirent *dp = readdir(dirp);
  73. if(dp == NULL)
  74. {
  75. if(errno == 0) break;
  76. fprintf(
  77. stderr, "rm: error: Failed reading directory '%s': %s\n", acc_path, strerror(errno));
  78. closedir(dirp); // error ignored
  79. errno = 0;
  80. return 1;
  81. }
  82. if(strcmp(dp->d_name, ".") == 0) continue;
  83. if(strcmp(dp->d_name, "..") == 0) continue;
  84. char new_path[PATH_MAX] = "";
  85. if(snprintf(new_path, PATH_MAX, "%s/%s", acc_path, dp->d_name) < 0)
  86. {
  87. fprintf(stderr,
  88. "rm: error: Couldn't concatenate '%s' into parent '%s', skipping to next entry: %s",
  89. name,
  90. acc_path,
  91. strerror(errno));
  92. err = 1;
  93. errno = 0;
  94. continue;
  95. }
  96. // No depth counter for now, unlikely to be a problem
  97. int ret = do_unlinkat(dir, dp->d_name, new_path);
  98. if(ret != 0) err = 1;
  99. }
  100. // fdopendir allocates memory for DIR, needs closedir
  101. if(closedir(dirp) != 0)
  102. {
  103. fprintf(stderr,
  104. "rm: error: Deallocating directory entry for '%s' failed: %s\n",
  105. acc_path,
  106. strerror(errno));
  107. errno = 0;
  108. return 1;
  109. }
  110. }
  111. if(!force)
  112. {
  113. if(opt_i)
  114. {
  115. if(!consentf("rm: Remove '%s' ? [y/N] ", acc_path)) return 0;
  116. }
  117. else
  118. {
  119. // Don't check symbolic links, would need AT_SYMLINK_NOFOLLOW on faccessat which isn't portable
  120. // Can assume symbolic links are 0777 anyway
  121. if(!S_ISLNK(stats.st_mode) && faccessat(fd, name, W_OK, 0) != 0)
  122. {
  123. errno = 0;
  124. if(!consentf("rm: Remove non-writable '%s' ? [y/N] ", acc_path)) return 0;
  125. }
  126. }
  127. }
  128. if(unlinkat(fd, name, is_dir ? AT_REMOVEDIR : 0) != 0)
  129. {
  130. fprintf(stderr, "rm: error: Couldn't remove '%s': %s\n", acc_path, strerror(errno));
  131. errno = 0;
  132. return 1;
  133. }
  134. else if(verbose)
  135. {
  136. fprintf(stderr, "rm: Removed: %s\n", acc_path);
  137. }
  138. return err;
  139. }
  140. static void
  141. usage(void)
  142. {
  143. fprintf(stderr, "Usage: rm [-firRv] [files ...]\n");
  144. }
  145. int
  146. main(int argc, char *argv[])
  147. {
  148. for(int c = -1; (c = getopt_nolong(argc, argv, ":dfirRv")) != -1;)
  149. {
  150. switch(c)
  151. {
  152. case 'd':
  153. opt_d = true;
  154. break;
  155. case 'f':
  156. force = true;
  157. break;
  158. case 'i':
  159. opt_i = true;
  160. break;
  161. case 'r':
  162. recurse = true;
  163. break;
  164. case 'R':
  165. recurse = true;
  166. break;
  167. case 'v':
  168. verbose = true;
  169. break;
  170. case ':':
  171. fprintf(stderr, "rm: error: Missing operand for option: '-%c'\n", optopt);
  172. usage();
  173. return 1;
  174. case '?':
  175. if(!got_long_opt) fprintf(stderr, "rm: error: Unrecognised option: '-%c'\n", optopt);
  176. usage();
  177. return 1;
  178. default:
  179. abort();
  180. }
  181. }
  182. argc -= optind;
  183. argv += optind;
  184. char *lc_all = setlocale(LC_ALL, "");
  185. if(lc_all == NULL)
  186. {
  187. fprintf(stderr,
  188. "%s: warning: Failed loading locales. setlocale(LC_ALL, \"\"): %s\n",
  189. argv0,
  190. strerror(errno));
  191. }
  192. errno = 0;
  193. consent_init();
  194. if(argc == 0 && !force)
  195. {
  196. fprintf(stderr, "rm: error: missing operand\n");
  197. usage();
  198. return 1;
  199. }
  200. int err = 0;
  201. for(int i = 0; i < argc; i++)
  202. {
  203. int ret = do_unlinkat(AT_FDCWD, argv[i], argv[i]);
  204. if(ret != 0) err = 1;
  205. }
  206. consent_finish();
  207. return err;
  208. }