Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 2 | /* |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 3 | * Mini update implementation for busybox; much pasted from update-2.11 |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 4 | * |
| 5 | * |
| 6 | * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 7 | * Copyright (c) 1996, 1997, 1999 Torsten Poulin. |
| 8 | * Copyright (c) 2000 by Karl M. Hegbloom <karlheg@debian.org> |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 9 | * |
| 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 Whitley | 1ac435c | 2000-07-20 23:06:27 +0000 | [diff] [blame] | 26 | /* |
| 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 | |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 31 | #include <sys/param.h> |
| 32 | #include <sys/syslog.h> |
Mark Whitley | 1ac435c | 2000-07-20 23:06:27 +0000 | [diff] [blame] | 33 | #include <unistd.h> /* for getopt() */ |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 34 | #include <stdlib.h> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 35 | |
Eric Andersen | a15cd0b | 2000-06-19 18:14:20 +0000 | [diff] [blame] | 36 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 37 | #if defined(__GLIBC__) |
| 38 | #include <sys/kdaemon.h> |
| 39 | #else |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 40 | #include <sys/syscall.h> |
| 41 | #include <linux/unistd.h> |
Eric Andersen | a15cd0b | 2000-06-19 18:14:20 +0000 | [diff] [blame] | 42 | static _syscall2(int, bdflush, int, func, int, data); |
Mark Whitley | 1ac435c | 2000-07-20 23:06:27 +0000 | [diff] [blame] | 43 | #endif /* __GLIBC__ */ |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 44 | #include "busybox.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 45 | |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 46 | static unsigned int sync_duration = 30; |
| 47 | static unsigned int flush_duration = 5; |
| 48 | static int use_sync = 0; |
| 49 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 50 | extern int update_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 51 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 52 | int pid; |
Mark Whitley | 1ac435c | 2000-07-20 23:06:27 +0000 | [diff] [blame] | 53 | int opt; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 54 | |
Mark Whitley | 1ac435c | 2000-07-20 23:06:27 +0000 | [diff] [blame] | 55 | while ((opt = getopt(argc, argv, "Ss:f:")) > 0) { |
| 56 | switch (opt) { |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 57 | case 'S': |
| 58 | use_sync = 1; |
| 59 | break; |
| 60 | case 's': |
Mark Whitley | 1ac435c | 2000-07-20 23:06:27 +0000 | [diff] [blame] | 61 | sync_duration = atoi(optarg); |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 62 | break; |
| 63 | case 'f': |
Mark Whitley | 1ac435c | 2000-07-20 23:06:27 +0000 | [diff] [blame] | 64 | flush_duration = atoi(optarg); |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 65 | break; |
Erik Andersen | e5b6c7d | 2000-04-17 16:16:10 +0000 | [diff] [blame] | 66 | default: |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 67 | show_usage(); |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 68 | } |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 69 | } |
| 70 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 71 | pid = fork(); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 72 | if (pid < 0) |
Matt Kraai | 3e856ce | 2000-12-01 02:55:13 +0000 | [diff] [blame] | 73 | return EXIT_FAILURE; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 74 | else if (pid == 0) { |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 75 | /* Become a proper daemon */ |
| 76 | setsid(); |
| 77 | chdir("/"); |
Pavel Roskin | 43f3e61 | 2000-09-28 20:52:55 +0000 | [diff] [blame] | 78 | #ifdef OPEN_MAX |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 79 | for (pid = 0; pid < OPEN_MAX; pid++) close(pid); |
Pavel Roskin | 43f3e61 | 2000-09-28 20:52:55 +0000 | [diff] [blame] | 80 | #else |
| 81 | /* glibc 2.1.92 requires using sysconf(_SC_OPEN_MAX) */ |
| 82 | for (pid = 0; pid < sysconf(_SC_OPEN_MAX); pid++) close(pid); |
| 83 | #endif |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 84 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 85 | /* |
| 86 | * This is no longer necessary since 1.3.5x, but it will harmlessly |
| 87 | * exit if that is the case. |
| 88 | */ |
Mark Whitley | 1ac435c | 2000-07-20 23:06:27 +0000 | [diff] [blame] | 89 | |
| 90 | /* set the program name that will show up in a 'ps' listing */ |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 91 | argv[0] = "bdflush (update)"; |
| 92 | argv[1] = NULL; |
| 93 | argv[2] = NULL; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 94 | for (;;) { |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 95 | if (use_sync) { |
| 96 | sleep(sync_duration); |
| 97 | sync(); |
| 98 | } else { |
| 99 | sleep(flush_duration); |
| 100 | if (bdflush(1, 0) < 0) { |
| 101 | openlog("update", LOG_CONS, LOG_DAEMON); |
| 102 | syslog(LOG_INFO, |
| 103 | "This kernel does not need update(8). Exiting."); |
| 104 | closelog(); |
Matt Kraai | 3e856ce | 2000-12-01 02:55:13 +0000 | [diff] [blame] | 105 | return EXIT_SUCCESS; |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 106 | } |
| 107 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 108 | } |
| 109 | } |
Matt Kraai | 3e856ce | 2000-12-01 02:55:13 +0000 | [diff] [blame] | 110 | return EXIT_SUCCESS; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 111 | } |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 112 | |
| 113 | /* |
| 114 | Local Variables: |
| 115 | c-file-style: "linux" |
| 116 | c-basic-offset: 4 |
| 117 | tab-width: 4 |
| 118 | End: |
| 119 | */ |