2 * Copyright (c) 1980, 1988, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#)optr.c 8.2 (Berkeley) 1/6/94
34 * $FreeBSD: src/sbin/dump/optr.c,v 1.9.2.5 2002/02/23 22:32:51 iedowse Exp $
35 * $DragonFly: src/sbin/dump/optr.c,v 1.10 2005/08/28 04:35:12 dillon Exp $
38 #include <sys/param.h>
39 #include <sys/queue.h>
54 #include <vfs/ufs/dinode.h>
57 #include "pathnames.h"
59 static void alarmcatch(int);
60 static int datesort(const void *, const void *);
63 * Query the operator; This previously-fascist piece of code
64 * no longer requires an exact response.
65 * It is intended to protect dump aborting by inquisitive
66 * people banging on the console terminal to see what is
67 * happening which might cause dump to croak, destroying
68 * a large number of hours of work.
70 * Every 2 minutes we reprint the message, alerting others
71 * that dump needs attention.
74 static const char *attnmessage
; /* attention message */
77 query(const char *question
)
83 if ((mytty
= fopen(_PATH_TTY
, "r")) == NULL
)
84 quit("fopen on %s fails: %s\n", _PATH_TTY
, strerror(errno
));
85 attnmessage
= question
;
91 if (fgets(replybuffer
, 63, mytty
) == NULL
) {
93 if (++errcount
> 30) /* XXX ugly */
94 quit("excessive operator query failures\n");
95 } else if (replybuffer
[0] == 'y' || replybuffer
[0] == 'Y') {
97 } else if (replybuffer
[0] == 'n' || replybuffer
[0] == 'N') {
100 fprintf(stderr
, " DUMP: \"Yes\" or \"No\"?\n");
101 fprintf(stderr
, " DUMP: %s: (\"yes\" or \"no\") ",
107 * Turn off the alarm, and reset the signal to trap out..
110 if (signal(SIGALRM
, sig
) == SIG_IGN
)
111 signal(SIGALRM
, SIG_IGN
);
116 char lastmsg
[BUFSIZ
];
119 * Alert the console operator, and enable the alarm clock to
120 * sleep for 2 minutes in case nobody comes to satisfy dump
123 alarmcatch(int signo __unused
)
127 fprintf(stderr
, " DUMP: %s: (\"yes\" or \"no\") ",
134 broadcast(""); /* just print last msg */
136 fprintf(stderr
," DUMP: %s: (\"yes\" or \"no\") ", attnmessage
);
138 signal(SIGALRM
, alarmcatch
);
144 * Here if an inquisitive operator interrupts the dump program
147 interrupt(int signo __unused
)
149 msg("Interrupt received.\n");
150 if (query("Do you want to abort dump?"))
155 * We now use wall(1) to do the actual broadcasting.
158 broadcast(const char *message
)
161 char buf
[sizeof(_PATH_WALL
) + sizeof(OPGRENT
) + 3];
166 snprintf(buf
, sizeof(buf
), "%s -g %s", _PATH_WALL
, OPGRENT
);
167 if ((fp
= popen(buf
, "w")) == NULL
)
170 fputs("\a\a\aMessage from the dump program to all operators\n\nDUMP: NEEDS ATTENTION: ", fp
);
180 * Print out an estimate of the amount of time left to do the dump
183 time_t tschedule
= 0;
190 int deltat
, hours
, mins
;
193 deltat
= (blockswritten
== 0) ? 0 : tstart_writing
- tnow
+
194 (double)(tnow
- tstart_writing
) / blockswritten
* tapesize
;
195 percent
= (blockswritten
* 100.0) / tapesize
;
196 hours
= deltat
/ 3600;
197 mins
= (deltat
% 3600) / 60;
199 setproctitle("%s: pass %d: %3.2f%% done, finished in %d:%02d",
200 disk
, passno
, percent
, hours
, mins
);
201 if (tnow
>= tschedule
) {
202 tschedule
= tnow
+ 300;
203 if (blockswritten
< 500)
205 msg("%3.2f%% done, finished in %d:%02d\n", percent
, hours
,
211 * Schedule a printout of the estimate in the next call to timeest().
214 infosch(int signo __unused
)
220 msg(const char *fmt
, ...)
224 fprintf(stderr
," DUMP: ");
226 fprintf(stderr
, "pid=%d ", getpid());
229 vfprintf(stderr
, fmt
, ap
);
234 vsnprintf(lastmsg
, sizeof(lastmsg
), fmt
, ap
);
239 msgtail(const char *fmt
, ...)
244 vfprintf(stderr
, fmt
, ap
);
249 quit(const char *fmt
, ...)
253 fprintf(stderr
," DUMP: ");
255 fprintf(stderr
, "pid=%d ", getpid());
258 vfprintf(stderr
, fmt
, ap
);
266 * Tell the operator what has to be done;
267 * we don't actually do it
270 static struct fstab
*
271 allocfsent(struct fstab
*fs
)
275 new = (struct fstab
*)malloc(sizeof (*fs
));
277 (new->fs_file
= strdup(fs
->fs_file
)) == NULL
||
278 (new->fs_type
= strdup(fs
->fs_type
)) == NULL
||
279 (new->fs_spec
= strdup(fs
->fs_spec
)) == NULL
)
280 quit("%s\n", strerror(errno
));
281 new->fs_passno
= fs
->fs_passno
;
282 new->fs_freq
= fs
->fs_freq
;
287 SLIST_ENTRY(pfstab
) pf_list
;
288 struct fstab
*pf_fstab
;
291 static SLIST_HEAD(, pfstab
) table
;
299 if (setfsent() == 0) {
300 msg("Can't open %s for dump table information: %s\n",
301 _PATH_FSTAB
, strerror(errno
));
304 while ((fs
= getfsent()) != NULL
) {
305 if (strcmp(fs
->fs_type
, FSTAB_RW
) &&
306 strcmp(fs
->fs_type
, FSTAB_RO
) &&
307 strcmp(fs
->fs_type
, FSTAB_RQ
))
310 if ((pf
= (struct pfstab
*)malloc(sizeof (*pf
))) == NULL
)
311 quit("%s\n", strerror(errno
));
313 SLIST_INSERT_HEAD(&table
, pf
, pf_list
);
319 * Search in the fstab for a file name.
320 * This file name can be either the special or the path file name.
322 * The file name can omit the leading '/'.
325 fstabsearch(const char *key
)
331 SLIST_FOREACH(pf
, &table
, pf_list
) {
333 if (strcmp(fs
->fs_file
, key
) == 0 ||
334 strcmp(fs
->fs_spec
, key
) == 0)
336 rn
= rawname(fs
->fs_spec
);
337 if (rn
!= NULL
&& strcmp(rn
, key
) == 0)
340 if (*fs
->fs_spec
== '/' &&
341 strcmp(fs
->fs_spec
+ 1, key
) == 0)
343 if (*fs
->fs_file
== '/' &&
344 strcmp(fs
->fs_file
+ 1, key
) == 0)
352 * Tell the operator what to do
354 * char arg: w ==> just what to do; W ==> most recent dumps
361 struct dumpdates
*dtwalk
;
362 const char *lastname
;
369 dump_getfstab(); /* /etc/fstab input */
370 initdumptimes(); /* /etc/dumpdates input */
371 qsort(ddatev
, nddates
, sizeof(struct dumpdates
*), datesort
);
374 printf("Dump these file systems:\n");
376 printf("Last dump(s) done (Dump '>' file systems):\n");
378 ITITERATE(i
, dtwalk
) {
379 if (strncmp(lastname
, dtwalk
->dd_name
,
380 sizeof(dtwalk
->dd_name
)) == 0)
382 date
= (char *)ctime(&dtwalk
->dd_ddate
);
383 date
[16] = '\0'; /* blast away seconds and year */
384 lastname
= dtwalk
->dd_name
;
385 dt
= fstabsearch(dtwalk
->dd_name
);
386 dumpme
= (dt
!= NULL
&& dt
->fs_freq
!= 0);
388 tlast
= localtime(&dtwalk
->dd_ddate
);
389 dumpme
= tnow
> (dtwalk
->dd_ddate
- (tlast
->tm_hour
* 3600)
390 - (tlast
->tm_min
* 60) - tlast
->tm_sec
391 + (dt
->fs_freq
* 86400));
393 if (arg
!= 'w' || dumpme
)
395 "%c %8s\t(%6s) Last dump: Level %c, Date %s\n",
396 dumpme
&& (arg
!= 'w') ? '>' : ' ',
398 dt
? dt
->fs_file
: "",
405 datesort(const void *a1
, const void *a2
)
407 const struct dumpdates
*d1
= *(const struct dumpdates
* const *)a1
;
408 const struct dumpdates
*d2
= *(const struct dumpdates
* const *)a2
;
411 diff
= strncmp(d1
->dd_name
, d2
->dd_name
, sizeof(d1
->dd_name
));
413 return (d2
->dd_ddate
- d1
->dd_ddate
);