blob: ea328a54c5141e3c44ad482bcf109a2684b99701 [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 Vlasenkob097a842018-12-28 03:20:17 +010011//config: bool "sync (3.8 kb)"
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 Vlasenko4f74bb62019-04-02 14:39:56 +020023// APPLET_NOFORK:name main location suid_type help
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020024//applet:IF_SYNC(APPLET_NOFORK(sync, sync, BB_DIR_BIN, BB_SUID_DROP, sync))
Manuel Novoa III cad53642003-03-19 09:13:01 +000025
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010026//kbuild:lib-$(CONFIG_SYNC) += sync.o
27
28/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
29
Pere Orga34425382011-03-31 14:43:25 +020030//usage:#define sync_trivial_usage
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020031//usage: ""IF_FEATURE_SYNC_FANCY("[-df] [FILE]...")
Pere Orga34425382011-03-31 14:43:25 +020032//usage:#define sync_full_usage "\n\n"
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020033//usage: IF_NOT_FEATURE_SYNC_FANCY(
Pere Orga34425382011-03-31 14:43:25 +020034//usage: "Write all buffered blocks to disk"
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020035//usage: )
36//usage: IF_FEATURE_SYNC_FANCY(
37//usage: "Write all buffered blocks (in FILEs) to disk"
38//usage: "\n -d Avoid syncing metadata"
39//usage: "\n -f Sync filesystems underlying FILEs"
40//usage: )
Pere Orga34425382011-03-31 14:43:25 +020041
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000042#include "libbb.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000043
Denis Vlasenko99912ca2007-04-10 15:43:37 +000044/* This is a NOFORK applet. Be very careful! */
45
Denys Vlasenko2f28b2b2019-04-02 14:54:56 +020046#if ENABLE_FEATURE_SYNC_FANCY || ENABLE_FSYNC
47static int sync_common(int opts, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000048{
Denys Vlasenko4f74bb62019-04-02 14:39:56 +020049 int ret;
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020050 enum {
51 OPT_DATASYNC = (1 << 0),
52 OPT_SYNCFS = (1 << 1),
53 };
54
Denys Vlasenko4f74bb62019-04-02 14:39:56 +020055 ret = EXIT_SUCCESS;
Denys Vlasenko2f28b2b2019-04-02 14:54:56 +020056 do {
Denys Vlasenko4f74bb62019-04-02 14:39:56 +020057 /* GNU "sync FILE" uses O_NONBLOCK open */
58 int fd = open_or_warn(*argv, /*O_NOATIME |*/ O_NOCTTY | O_RDONLY | O_NONBLOCK);
59 /* open(NOATIME) can only be used by owner or root, don't use NOATIME here */
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020060
61 if (fd < 0) {
62 ret = EXIT_FAILURE;
63 goto next;
64 }
Denys Vlasenko2f28b2b2019-04-02 14:54:56 +020065# if ENABLE_FEATURE_SYNC_FANCY
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020066 if (opts & OPT_SYNCFS) {
67 /*
68 * syncfs is documented to only fail with EBADF,
69 * which can't happen here. So, no error checks.
70 */
71 syncfs(fd);
Denys Vlasenko4f74bb62019-04-02 14:39:56 +020072 } else
Denys Vlasenko2f28b2b2019-04-02 14:54:56 +020073# endif
Denys Vlasenko4f74bb62019-04-02 14:39:56 +020074 if (((opts & OPT_DATASYNC) ? fdatasync(fd) : fsync(fd)) != 0) {
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020075 bb_simple_perror_msg(*argv);
76 ret = EXIT_FAILURE;
77 }
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020078 close(fd);
79 next:
Denys Vlasenko4f74bb62019-04-02 14:39:56 +020080 argv++;
Denys Vlasenko2f28b2b2019-04-02 14:54:56 +020081 } while (*argv);
Denys Vlasenko35ae2cc2015-07-21 19:50:48 +020082
83 return ret;
Eric Andersencc8ed391999-10-05 16:24:54 +000084}
Denys Vlasenko2f28b2b2019-04-02 14:54:56 +020085#endif
86
87#if ENABLE_SYNC
88int sync_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
89int sync_main(int argc UNUSED_PARAM, char **argv IF_NOT_DESKTOP(UNUSED_PARAM))
90{
91# if !ENABLE_FEATURE_SYNC_FANCY
92 /* coreutils-6.9 compat */
93 bb_warn_ignoring_args(argv[1]);
94 sync();
95 return EXIT_SUCCESS;
96# else
97 unsigned opts = getopt32(argv, "^" "df" "\0" "d--f:f--d");
98 argv += optind;
99 if (!argv[0]) {
100 sync();
101 return EXIT_SUCCESS;
102 }
103 return sync_common(opts, argv);
104# endif
105}
106#endif
107
108/*
109 * Mini fsync implementation for busybox
110 *
111 * Copyright (C) 2008 Nokia Corporation. All rights reserved.
112 *
113 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
114 */
115//config:config FSYNC
116//config: bool "fsync (3.6 kb)"
117//config: default y
118//config: help
119//config: fsync is used to flush file-related cached blocks to disk.
120
121// APPLET_NOFORK:name main location suid_type help
122//applet:IF_FSYNC(APPLET_NOFORK(fsync, fsync, BB_DIR_BIN, BB_SUID_DROP, fsync))
123
124//kbuild:lib-$(CONFIG_FSYNC) += sync.o
125
126//usage:#define fsync_trivial_usage
127//usage: "[-d] FILE..."
128//usage:#define fsync_full_usage "\n\n"
129//usage: "Write all buffered blocks in FILEs to disk\n"
130//usage: "\n -d Avoid syncing metadata"
131
132#if ENABLE_FSYNC
133int fsync_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
134int fsync_main(int argc UNUSED_PARAM, char **argv)
135{
136 int opts = getopt32(argv, "^" "d" "\0" "-1"/*min 1 arg*/);
137 argv += optind;
138 return sync_common(opts, argv);
139}
140#endif