logo

utils-std

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

which.c (1618B)


  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. #include "../lib/getopt_nolong.h"
  6. #include <limits.h> // PATH_MAX
  7. #include <stdbool.h>
  8. #include <stdio.h> // fprintf
  9. #include <stdlib.h> // getenv
  10. #include <string.h> // strtok
  11. #include <unistd.h> // access, getopt
  12. const char *argv0 = "which";
  13. int
  14. main(int argc, char *argv[])
  15. {
  16. bool opt_a = false, opt_s = false;
  17. int missing = 0;
  18. char *path = getenv("PATH");
  19. if(path == NULL)
  20. {
  21. fputs("which: error: $PATH environment unset", stderr);
  22. return 1;
  23. }
  24. for(int c = -1; (c = getopt_nolong(argc, argv, "as")) != -1;)
  25. {
  26. switch(c)
  27. {
  28. case 'a':
  29. opt_a = true;
  30. break;
  31. case 's':
  32. opt_s = true;
  33. break;
  34. case '?':
  35. if(!got_long_opt) fprintf(stderr, "which: error: Unrecognised option: '-%c'\n", optopt);
  36. return 1;
  37. default:
  38. abort();
  39. }
  40. }
  41. argc -= optind;
  42. argv += optind;
  43. if(argc <= 0) return 1;
  44. for(int i = 0; i < argc; i++)
  45. {
  46. char *cmd = argv[i];
  47. bool found = false;
  48. char *state = NULL;
  49. char *hay = strdup(path);
  50. if(hay == NULL)
  51. {
  52. perror("which: error: Failed duplicating $PATH");
  53. return 1;
  54. }
  55. for(char *tok = strtok_r(hay, ":", &state); tok != NULL; tok = strtok_r(NULL, ":", &state))
  56. {
  57. char buf[PATH_MAX] = "";
  58. snprintf(buf, PATH_MAX, "%s/%s", tok, cmd);
  59. if(access(buf, X_OK) == 0)
  60. {
  61. if(!opt_s) puts(buf);
  62. found = true;
  63. if(!opt_a) break;
  64. }
  65. }
  66. if(!found) missing++;
  67. free(hay);
  68. }
  69. return missing;
  70. }