logo

utils-std

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

sync.c (2048B)


  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. #define _GNU_SOURCE // syncfs
  6. #define _XOPEN_SOURCE 700 // sync
  7. #include "../config.h" // HAS_*
  8. #include "../lib/getopt_nolong.h"
  9. #include <errno.h>
  10. #include <fcntl.h> // open, O_*
  11. #include <stdbool.h>
  12. #include <stdio.h> // fprintf
  13. #include <stdlib.h> // abort
  14. #include <string.h> // strerror
  15. #include <unistd.h> // fsync, sync, getopt, syncfs
  16. const char *argv0 = "sync";
  17. int
  18. main(int argc, char *argv[])
  19. {
  20. int err = 0;
  21. int (*sync_func)(int) = fsync;
  22. for(int c = -1; (c = getopt_nolong(argc, argv, ":df")) != -1;)
  23. {
  24. switch(c)
  25. {
  26. case 'd':
  27. sync_func = fdatasync;
  28. break;
  29. case 'f':
  30. #ifdef HAS_SYNCFS
  31. sync_func = syncfs;
  32. break;
  33. #else
  34. fprintf(stderr,
  35. "sync: error: System doesn't supports syncfs(3), continuing with error status set\n");
  36. err = 1;
  37. break;
  38. #endif
  39. case '?':
  40. if(!got_long_opt)
  41. fprintf(stderr,
  42. "sync: error: Unrecognized option '-%c', continuing with error status set\n",
  43. optopt);
  44. err = 1;
  45. break;
  46. default:
  47. abort();
  48. }
  49. }
  50. argc -= optind;
  51. argv += optind;
  52. if(argc == 0)
  53. {
  54. #ifdef HAS_SYNCFS
  55. if(sync_func == syncfs) fprintf(stderr, "sync: warning: Option -f passed without arguments\n");
  56. #endif
  57. sync();
  58. return err;
  59. }
  60. for(int i = 0; i < argc; i++)
  61. {
  62. int fd = open(argv[i], O_RDONLY);
  63. if(fd < 0)
  64. {
  65. fprintf(stderr, "sync: error: Failed opening file '%s': %s\n", argv[i], strerror(errno));
  66. return 1;
  67. }
  68. if(sync_func(fd) < 0)
  69. {
  70. fprintf(stderr,
  71. "sync: error: Failed synchronizing changes related to file '%s': %s\n",
  72. argv[i],
  73. strerror(errno));
  74. return 1;
  75. }
  76. if(close(fd) < 0)
  77. {
  78. fprintf(stderr,
  79. "sync: error: Failed closing file-descriptor of file '%s': %s\n",
  80. argv[i],
  81. strerror(errno));
  82. return 1;
  83. }
  84. }
  85. return err;
  86. }