sync.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Mini sync implementation for busybox
  4. *
  5. * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
  6. * Copyright (C) 2015 by Ari Sundholm <ari@tuxera.com>
  7. *
  8. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  9. */
  10. //config:config SYNC
  11. //config: bool "sync (3.8 kb)"
  12. //config: default y
  13. //config: help
  14. //config: sync is used to flush filesystem buffers.
  15. //config:config FEATURE_SYNC_FANCY
  16. //config: bool "Enable -d and -f flags (requires syncfs(2) in libc)"
  17. //config: default y
  18. //config: depends on SYNC
  19. //config: help
  20. //config: sync -d FILE... executes fdatasync() on each FILE.
  21. //config: sync -f FILE... executes syncfs() on each FILE.
  22. //applet:IF_SYNC(APPLET_NOFORK(sync, sync, BB_DIR_BIN, BB_SUID_DROP, sync))
  23. //kbuild:lib-$(CONFIG_SYNC) += sync.o
  24. /* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
  25. //usage:#define sync_trivial_usage
  26. //usage: ""IF_FEATURE_SYNC_FANCY("[-df] [FILE]...")
  27. //usage:#define sync_full_usage "\n\n"
  28. //usage: IF_NOT_FEATURE_SYNC_FANCY(
  29. //usage: "Write all buffered blocks to disk"
  30. //usage: )
  31. //usage: IF_FEATURE_SYNC_FANCY(
  32. //usage: "Write all buffered blocks (in FILEs) to disk"
  33. //usage: "\n -d Avoid syncing metadata"
  34. //usage: "\n -f Sync filesystems underlying FILEs"
  35. //usage: )
  36. #include "libbb.h"
  37. /* This is a NOFORK applet. Be very careful! */
  38. int sync_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  39. int sync_main(int argc UNUSED_PARAM, char **argv IF_NOT_DESKTOP(UNUSED_PARAM))
  40. {
  41. #if !ENABLE_FEATURE_SYNC_FANCY
  42. /* coreutils-6.9 compat */
  43. bb_warn_ignoring_args(argv[1]);
  44. sync();
  45. return EXIT_SUCCESS;
  46. #else
  47. unsigned opts;
  48. int ret = EXIT_SUCCESS;
  49. enum {
  50. OPT_DATASYNC = (1 << 0),
  51. OPT_SYNCFS = (1 << 1),
  52. };
  53. opts = getopt32(argv, "^" "df" "\0" "d--f:f--d");
  54. argv += optind;
  55. /* Handle the no-argument case. */
  56. if (!argv[0])
  57. sync();
  58. while (*argv) {
  59. int fd = open_or_warn(*argv, O_RDONLY);
  60. if (fd < 0) {
  61. ret = EXIT_FAILURE;
  62. goto next;
  63. }
  64. if (opts & OPT_DATASYNC) {
  65. if (fdatasync(fd))
  66. goto err;
  67. goto do_close;
  68. }
  69. if (opts & OPT_SYNCFS) {
  70. /*
  71. * syncfs is documented to only fail with EBADF,
  72. * which can't happen here. So, no error checks.
  73. */
  74. syncfs(fd);
  75. goto do_close;
  76. }
  77. if (fsync(fd)) {
  78. err:
  79. bb_simple_perror_msg(*argv);
  80. ret = EXIT_FAILURE;
  81. }
  82. do_close:
  83. close(fd);
  84. next:
  85. ++argv;
  86. }
  87. return ret;
  88. #endif
  89. }