blob: 974e904520cefd7f9449593745835c95008938c5 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenc4996011999-10-20 22:08:37 +00002/*
3 * Mini sync implementation for busybox
4 *
Eric Andersenc4996011999-10-20 22:08:37 +00005 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +02006 * Copyright (C) 2015 by Ari Sundholm <ari@tuxera.com>
Eric Andersenc4996011999-10-20 22:08:37 +00007 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02008 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersenc4996011999-10-20 22:08:37 +00009 */
10
Manuel Novoa III cad53642003-03-19 09:13:01 +000011/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020012//config:config SYNC
13//config: bool "sync"
14//config: default y
15//config: help
16//config: sync is used to flush filesystem buffers.
17//config:config FEATURE_SYNC_FANCY
18//config: bool "Enable -d and -f flags (requres syncfs(2) in libc)"
19//config: default y
20//config: depends on SYNC
21//config: help
22//config: sync -d FILE... executes fdatasync() on each FILE.
23//config: sync -f FILE... executes syncfs() on each FILE.
24
25//kbuild:lib-$(CONFIG_SYNC) += sync.o
26//applet:IF_SYNC(APPLET_NOFORK(sync, sync, BB_DIR_BIN, BB_SUID_DROP, sync))
Manuel Novoa III cad53642003-03-19 09:13:01 +000027
Pere Orga34425382011-03-31 14:43:25 +020028//usage:#define sync_trivial_usage
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020029//usage: ""IF_FEATURE_SYNC_FANCY("[-df] [FILE]...")
Pere Orga34425382011-03-31 14:43:25 +020030//usage:#define sync_full_usage "\n\n"
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020031//usage: IF_NOT_FEATURE_SYNC_FANCY(
Pere Orga34425382011-03-31 14:43:25 +020032//usage: "Write all buffered blocks to disk"
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020033//usage: )
34//usage: IF_FEATURE_SYNC_FANCY(
35//usage: "Write all buffered blocks (in FILEs) to disk"
36//usage: "\n -d Avoid syncing metadata"
37//usage: "\n -f Sync filesystems underlying FILEs"
38//usage: )
Pere Orga34425382011-03-31 14:43:25 +020039
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000040#include "libbb.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000041
Denis Vlasenko99912ca2007-04-10 15:43:37 +000042/* This is a NOFORK applet. Be very careful! */
43
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000044int sync_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenkobb16f572010-01-13 22:43:13 +010045int sync_main(int argc UNUSED_PARAM, char **argv IF_NOT_DESKTOP(UNUSED_PARAM))
Eric Andersencc8ed391999-10-05 16:24:54 +000046{
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020047#if !ENABLE_FEATURE_SYNC_FANCY
Denis Vlasenko68404f12008-03-17 09:00:54 +000048 /* coreutils-6.9 compat */
Denys Vlasenkoa355da02010-01-04 13:16:08 +010049 bb_warn_ignoring_args(argv[1]);
Glenn L McGratha9c69762001-02-16 10:21:35 +000050 sync();
Denis Vlasenko079f8af2006-11-27 16:49:31 +000051 return EXIT_SUCCESS;
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020052#else
53 unsigned opts;
54 int ret = EXIT_SUCCESS;
55
56 enum {
57 OPT_DATASYNC = (1 << 0),
58 OPT_SYNCFS = (1 << 1),
59 };
60
61 opt_complementary = "d--f:f--d";
62 opts = getopt32(argv, "df");
63 argv += optind;
64
65 /* Handle the no-argument case. */
66 if (!argv[0])
67 sync();
68
69 while (*argv) {
70 int fd = open_or_warn(*argv, O_RDONLY);
71
72 if (fd < 0) {
73 ret = EXIT_FAILURE;
74 goto next;
75 }
76 if (opts & OPT_DATASYNC) {
77 if (fdatasync(fd))
78 goto err;
79 goto do_close;
80 }
81 if (opts & OPT_SYNCFS) {
82 /*
83 * syncfs is documented to only fail with EBADF,
84 * which can't happen here. So, no error checks.
85 */
86 syncfs(fd);
87 goto do_close;
88 }
89 if (fsync(fd)) {
90 err:
91 bb_simple_perror_msg(*argv);
92 ret = EXIT_FAILURE;
93 }
94 do_close:
95 close(fd);
96 next:
97 ++argv;
98 }
99
100 return ret;
101#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000102}