blob: 3f3d68b8721c75dd3f4c026074474012efde4d16 [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/*
Erik Andersen029011b2000-03-04 21:19:32 +00003 * Mini update implementation for busybox; much pasted from update-2.11
Eric Andersenc4996011999-10-20 22:08:37 +00004 *
5 *
6 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Erik Andersen029011b2000-03-04 21:19:32 +00007 * Copyright (c) 1996, 1997, 1999 Torsten Poulin.
8 * Copyright (c) 2000 by Karl M. Hegbloom <karlheg@debian.org>
Eric Andersenc4996011999-10-20 22:08:37 +00009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 */
25
Mark Whitley1ac435c2000-07-20 23:06:27 +000026/*
27 * Note: This program is only necessary if you are running a 2.0.x (or
28 * earlier) kernel. 2.2.x and higher flush filesystem buffers automatically.
29 */
30
Eric Andersencc8ed391999-10-05 16:24:54 +000031#include "internal.h"
Erik Andersen029011b2000-03-04 21:19:32 +000032#include <sys/param.h>
33#include <sys/syslog.h>
Mark Whitley1ac435c2000-07-20 23:06:27 +000034#include <unistd.h> /* for getopt() */
Eric Andersencc8ed391999-10-05 16:24:54 +000035
Eric Andersena15cd0b2000-06-19 18:14:20 +000036
Eric Andersencc8ed391999-10-05 16:24:54 +000037#if defined(__GLIBC__)
38#include <sys/kdaemon.h>
39#else
Eric Andersena15cd0b2000-06-19 18:14:20 +000040static _syscall2(int, bdflush, int, func, int, data);
Mark Whitley1ac435c2000-07-20 23:06:27 +000041#endif /* __GLIBC__ */
Eric Andersencc8ed391999-10-05 16:24:54 +000042
Erik Andersen029011b2000-03-04 21:19:32 +000043static unsigned int sync_duration = 30;
44static unsigned int flush_duration = 5;
45static int use_sync = 0;
46
Erik Andersene49d5ec2000-02-08 19:58:47 +000047extern int update_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000048{
Erik Andersene49d5ec2000-02-08 19:58:47 +000049 int pid;
Mark Whitley1ac435c2000-07-20 23:06:27 +000050 int opt;
Eric Andersencc8ed391999-10-05 16:24:54 +000051
Mark Whitley1ac435c2000-07-20 23:06:27 +000052 while ((opt = getopt(argc, argv, "Ss:f:")) > 0) {
53 switch (opt) {
Erik Andersen029011b2000-03-04 21:19:32 +000054 case 'S':
55 use_sync = 1;
56 break;
57 case 's':
Mark Whitley1ac435c2000-07-20 23:06:27 +000058 sync_duration = atoi(optarg);
Erik Andersen029011b2000-03-04 21:19:32 +000059 break;
60 case 'f':
Mark Whitley1ac435c2000-07-20 23:06:27 +000061 flush_duration = atoi(optarg);
Erik Andersen029011b2000-03-04 21:19:32 +000062 break;
Erik Andersene5b6c7d2000-04-17 16:16:10 +000063 default:
64 usage(update_usage);
Erik Andersen029011b2000-03-04 21:19:32 +000065 }
Erik Andersen029011b2000-03-04 21:19:32 +000066 }
67
Eric Andersencc8ed391999-10-05 16:24:54 +000068 pid = fork();
Erik Andersene49d5ec2000-02-08 19:58:47 +000069 if (pid < 0)
Erik Andersen029011b2000-03-04 21:19:32 +000070 exit(FALSE);
Erik Andersene49d5ec2000-02-08 19:58:47 +000071 else if (pid == 0) {
Erik Andersen029011b2000-03-04 21:19:32 +000072 /* Become a proper daemon */
73 setsid();
74 chdir("/");
75 for (pid = 0; pid < OPEN_MAX; pid++) close(pid);
76
Eric Andersencc8ed391999-10-05 16:24:54 +000077 /*
78 * This is no longer necessary since 1.3.5x, but it will harmlessly
79 * exit if that is the case.
80 */
Mark Whitley1ac435c2000-07-20 23:06:27 +000081
82 /* set the program name that will show up in a 'ps' listing */
Erik Andersen029011b2000-03-04 21:19:32 +000083 argv[0] = "bdflush (update)";
84 argv[1] = NULL;
85 argv[2] = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +000086 for (;;) {
Erik Andersen029011b2000-03-04 21:19:32 +000087 if (use_sync) {
88 sleep(sync_duration);
89 sync();
90 } else {
91 sleep(flush_duration);
92 if (bdflush(1, 0) < 0) {
93 openlog("update", LOG_CONS, LOG_DAEMON);
94 syslog(LOG_INFO,
95 "This kernel does not need update(8). Exiting.");
96 closelog();
97 exit(TRUE);
98 }
99 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000100 }
101 }
Eric Andersena15cd0b2000-06-19 18:14:20 +0000102 return( TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000103}
Erik Andersen029011b2000-03-04 21:19:32 +0000104
105/*
106Local Variables:
107c-file-style: "linux"
108c-basic-offset: 4
109tab-width: 4
110End:
111*/