blob: 9be47ab64be4e5158df6841a7812d724689d0675 [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 */
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020010//config:config SYNC
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020011//config: bool "sync (769 bytes)"
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020012//config: default y
13//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020014//config: sync is used to flush filesystem buffers.
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020015//config:config FEATURE_SYNC_FANCY
Denys Vlasenkoe695ac92016-07-19 17:48:55 +020016//config: bool "Enable -d and -f flags (requires syncfs(2) in libc)"
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020017//config: default y
18//config: depends on SYNC
19//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020020//config: sync -d FILE... executes fdatasync() on each FILE.
21//config: sync -f FILE... executes syncfs() on each FILE.
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020022
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020023//applet:IF_SYNC(APPLET_NOFORK(sync, sync, BB_DIR_BIN, BB_SUID_DROP, sync))
Manuel Novoa III cad53642003-03-19 09:13:01 +000024
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010025//kbuild:lib-$(CONFIG_SYNC) += sync.o
26
27/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
28
Pere Orga34425382011-03-31 14:43:25 +020029//usage:#define sync_trivial_usage
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020030//usage: ""IF_FEATURE_SYNC_FANCY("[-df] [FILE]...")
Pere Orga34425382011-03-31 14:43:25 +020031//usage:#define sync_full_usage "\n\n"
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020032//usage: IF_NOT_FEATURE_SYNC_FANCY(
Pere Orga34425382011-03-31 14:43:25 +020033//usage: "Write all buffered blocks to disk"
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020034//usage: )
35//usage: IF_FEATURE_SYNC_FANCY(
36//usage: "Write all buffered blocks (in FILEs) to disk"
37//usage: "\n -d Avoid syncing metadata"
38//usage: "\n -f Sync filesystems underlying FILEs"
39//usage: )
Pere Orga34425382011-03-31 14:43:25 +020040
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000041#include "libbb.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000042
Denis Vlasenko99912ca2007-04-10 15:43:37 +000043/* This is a NOFORK applet. Be very careful! */
44
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000045int sync_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenkobb16f572010-01-13 22:43:13 +010046int sync_main(int argc UNUSED_PARAM, char **argv IF_NOT_DESKTOP(UNUSED_PARAM))
Eric Andersencc8ed391999-10-05 16:24:54 +000047{
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020048#if !ENABLE_FEATURE_SYNC_FANCY
Denis Vlasenko68404f12008-03-17 09:00:54 +000049 /* coreutils-6.9 compat */
Denys Vlasenkoa355da02010-01-04 13:16:08 +010050 bb_warn_ignoring_args(argv[1]);
Glenn L McGratha9c69762001-02-16 10:21:35 +000051 sync();
Denis Vlasenko079f8af2006-11-27 16:49:31 +000052 return EXIT_SUCCESS;
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020053#else
54 unsigned opts;
55 int ret = EXIT_SUCCESS;
56
57 enum {
58 OPT_DATASYNC = (1 << 0),
59 OPT_SYNCFS = (1 << 1),
60 };
61
Denys Vlasenko22542ec2017-08-08 21:55:02 +020062 opts = getopt32(argv, "^" "df" "\0" "d--f:f--d");
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020063 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}