• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * badblocks.c		- Bad blocks checker
3  *
4  * Copyright (C) 1992, 1993, 1994  Remy Card <card@masi.ibp.fr>
5  *                                 Laboratoire MASI, Institut Blaise Pascal
6  *                                 Universite Pierre et Marie Curie (Paris VI)
7  *
8  * Copyright 1995, 1996, 1997, 1998, 1999 by Theodore Ts'o
9  * Copyright 1999 by David Beattie
10  *
11  * This file is based on the minix file system programs fsck and mkfs
12  * written and copyrighted by Linus Torvalds <Linus.Torvalds@cs.helsinki.fi>
13  *
14  * %Begin-Header%
15  * This file may be redistributed under the terms of the GNU Public
16  * License.
17  * %End-Header%
18  */
19 
20 /*
21  * History:
22  * 93/05/26	- Creation from e2fsck
23  * 94/02/27	- Made a separate bad blocks checker
24  * 99/06/30...99/07/26 - Added non-destructive write-testing,
25  *                       configurable blocks-at-once parameter,
26  * 			 loading of badblocks list to avoid testing
27  * 			 blocks known to be bad, multiple passes to
28  * 			 make sure that no new blocks are added to the
29  * 			 list.  (Work done by David Beattie)
30  */
31 
32 #ifndef _GNU_SOURCE
33 #define _GNU_SOURCE /* for O_DIRECT */
34 #endif
35 
36 #include "config.h"
37 #include <errno.h>
38 #include <fcntl.h>
39 #ifdef HAVE_GETOPT_H
40 #include <getopt.h>
41 #else
42 extern char *optarg;
43 extern int optind;
44 #endif
45 #include <signal.h>
46 #include <stdio.h>
47 #include <stdlib.h>
48 #include <string.h>
49 #include <unistd.h>
50 #include <setjmp.h>
51 #include <time.h>
52 #include <limits.h>
53 #ifdef HAVE_MBSTOWCS
54 #include <wchar.h>
55 #endif
56 
57 #include <sys/time.h>
58 #include <sys/ioctl.h>
59 #include <sys/types.h>
60 
61 #include "et/com_err.h"
62 #include "ext2fs/ext2_io.h"
63 #include "ext2fs/ext2_fs.h"
64 #include "ext2fs/ext2fs.h"
65 #include "support/nls-enable.h"
66 
67 #ifndef O_LARGEFILE
68 #define O_LARGEFILE 0
69 #endif
70 
71 /* Maximum number of bad blocks we support */
72 #define MAX_BAD_BLOCKS (INT_MAX/2)
73 
74 static const char * program_name = "badblocks";
75 static const char * done_string = N_("done                                                 \n");
76 
77 static int v_flag;			/* verbose */
78 static int w_flag;			/* do r/w test: 0=no, 1=yes,
79 					 * 2=non-destructive */
80 static int s_flag;			/* show progress of test */
81 static int force;			/* force check of mounted device */
82 static int t_flag;			/* number of test patterns */
83 static int t_max;			/* allocated test patterns */
84 static unsigned int *t_patts;		/* test patterns */
85 static int use_buffered_io;
86 static int exclusive_ok;
87 static unsigned int max_bb = MAX_BAD_BLOCKS;	/* Abort test if more than this
88 						 * number of bad blocks has been
89 						 * encountered */
90 static unsigned int d_flag;		/* delay factor between reads */
91 static struct timeval time_start;
92 
93 #define T_INC 32
94 
95 static unsigned int sys_page_size = 4096;
96 
usage(void)97 static void usage(void)
98 {
99 	fprintf(stderr, _(
100 "Usage: %s [-b block_size] [-i input_file] [-o output_file] [-svwnfBX]\n"
101 "       [-c blocks_at_once] [-d delay_factor_between_reads] [-e max_bad_blocks]\n"
102 "       [-p num_passes] [-t test_pattern [-t test_pattern [...]]]\n"
103 "       device [last_block [first_block]]\n"),
104 		 program_name);
105 	exit (1);
106 }
107 
exclusive_usage(void)108 static void exclusive_usage(void)
109 {
110 	fprintf(stderr,
111 		_("%s: The -n and -w options are mutually exclusive.\n\n"),
112 		program_name);
113 	exit(1);
114 }
115 
116 static blk_t currently_testing = 0;
117 static blk_t num_blocks = 0;
118 static blk_t num_read_errors = 0;
119 static blk_t num_write_errors = 0;
120 static blk_t num_corruption_errors = 0;
121 static ext2_badblocks_list bb_list = NULL;
122 static FILE *out;
123 static blk_t next_bad = 0;
124 static ext2_badblocks_iterate bb_iter = NULL;
125 
126 enum error_types { READ_ERROR, WRITE_ERROR, CORRUPTION_ERROR };
127 
allocate_buffer(size_t size)128 static void *allocate_buffer(size_t size)
129 {
130 	void	*ret = 0;
131 
132 #ifdef HAVE_POSIX_MEMALIGN
133 	if (posix_memalign(&ret, sys_page_size, size) != 0)
134 		ret = 0;
135 #else
136 #ifdef HAVE_MEMALIGN
137 	ret = memalign(sys_page_size, size);
138 #else
139 #ifdef HAVE_VALLOC
140 	ret = valloc(size);
141 #endif /* HAVE_VALLOC */
142 #endif /* HAVE_MEMALIGN */
143 #endif /* HAVE_POSIX_MEMALIGN */
144 
145 	if (!ret)
146 		ret = malloc(size);
147 
148 	return ret;
149 }
150 
151 /*
152  * This routine reports a new bad block.  If the bad block has already
153  * been seen before, then it returns 0; otherwise it returns 1.
154  */
bb_output(blk_t bad,enum error_types error_type)155 static int bb_output (blk_t bad, enum error_types error_type)
156 {
157 	errcode_t errcode;
158 
159 	if (ext2fs_badblocks_list_test(bb_list, bad))
160 		return 0;
161 
162 	fprintf(out, "%lu\n", (unsigned long) bad);
163 	fflush(out);
164 
165 	errcode = ext2fs_badblocks_list_add (bb_list, bad);
166 	if (errcode) {
167 		com_err (program_name, errcode, "adding to in-memory bad block list");
168 		exit (1);
169 	}
170 
171 	/* kludge:
172 	   increment the iteration through the bb_list if
173 	   an element was just added before the current iteration
174 	   position.  This should not cause next_bad to change. */
175 	if (bb_iter && bad < next_bad)
176 		ext2fs_badblocks_list_iterate (bb_iter, &next_bad);
177 
178 	if (error_type == READ_ERROR) {
179 	  num_read_errors++;
180 	} else if (error_type == WRITE_ERROR) {
181 	  num_write_errors++;
182 	} else if (error_type == CORRUPTION_ERROR) {
183 	  num_corruption_errors++;
184 	}
185 	return 1;
186 }
187 
time_diff_format(struct timeval * tv1,struct timeval * tv2,char * buf)188 static char *time_diff_format(struct timeval *tv1,
189 			      struct timeval *tv2, char *buf)
190 {
191         time_t	diff = (tv1->tv_sec - tv2->tv_sec);
192 	int	hr,min,sec;
193 
194 	sec = diff % 60;
195 	diff /= 60;
196 	min = diff % 60;
197 	hr = diff / 60;
198 
199 	if (hr)
200 		sprintf(buf, "%d:%02d:%02d", hr, min, sec);
201 	else
202 		sprintf(buf, "%d:%02d", min, sec);
203 	return buf;
204 }
205 
calc_percent(unsigned long current,unsigned long total)206 static float calc_percent(unsigned long current, unsigned long total) {
207 	float percent = 0.0;
208 	if (total <= 0)
209 		return percent;
210 	if (current >= total) {
211 		percent = 100.0;
212 	} else {
213 		percent=(100.0*(float)current/(float)total);
214 	}
215 	return percent;
216 }
217 
print_status(void)218 static void print_status(void)
219 {
220 	struct timeval time_end;
221 	char diff_buf[32], line_buf[128];
222 #ifdef HAVE_MBSTOWCS
223 	wchar_t wline_buf[128];
224 #endif
225 	int len;
226 
227 	gettimeofday(&time_end, 0);
228 	len = snprintf(line_buf, sizeof(line_buf),
229 		       _("%6.2f%% done, %s elapsed. "
230 		         "(%d/%d/%d errors)"),
231 		       calc_percent((unsigned long) currently_testing,
232 				    (unsigned long) num_blocks),
233 		       time_diff_format(&time_end, &time_start, diff_buf),
234 		       num_read_errors,
235 		       num_write_errors,
236 		       num_corruption_errors);
237 #ifdef HAVE_MBSTOWCS
238 	mbstowcs(wline_buf, line_buf, sizeof(line_buf));
239 	len = wcswidth(wline_buf, sizeof(line_buf));
240 	if (len < 0)
241 		len = strlen(line_buf); /* Should never happen... */
242 #endif
243 	fputs(line_buf, stderr);
244 	memset(line_buf, '\b', len);
245 	line_buf[len] = 0;
246 	fputs(line_buf, stderr);
247 	fflush (stderr);
248 }
249 
alarm_intr(int alnum EXT2FS_ATTR ((unused)))250 static void alarm_intr(int alnum EXT2FS_ATTR((unused)))
251 {
252 	signal (SIGALRM, alarm_intr);
253 	alarm(1);
254 	if (!num_blocks)
255 		return;
256 	print_status();
257 }
258 
259 static void *terminate_addr = NULL;
260 
terminate_intr(int signo EXT2FS_ATTR ((unused)))261 static void terminate_intr(int signo EXT2FS_ATTR((unused)))
262 {
263 	fflush(out);
264 	fprintf(stderr, "\n\nInterrupted at block %llu\n",
265 		(unsigned long long) currently_testing);
266 	fflush(stderr);
267 	if (terminate_addr)
268 		longjmp(terminate_addr,1);
269 	exit(1);
270 }
271 
capture_terminate(jmp_buf term_addr)272 static void capture_terminate(jmp_buf term_addr)
273 {
274 	terminate_addr = term_addr;
275 	signal (SIGHUP, terminate_intr);
276 	signal (SIGINT, terminate_intr);
277 	signal (SIGPIPE, terminate_intr);
278 	signal (SIGTERM, terminate_intr);
279 	signal (SIGUSR1, terminate_intr);
280 	signal (SIGUSR2, terminate_intr);
281 }
282 
uncapture_terminate(void)283 static void uncapture_terminate(void)
284 {
285 	terminate_addr = NULL;
286 	signal (SIGHUP, SIG_DFL);
287 	signal (SIGINT, SIG_DFL);
288 	signal (SIGPIPE, SIG_DFL);
289 	signal (SIGTERM, SIG_DFL);
290 	signal (SIGUSR1, SIG_DFL);
291 	signal (SIGUSR2, SIG_DFL);
292 }
293 
294 /* Linux requires that O_DIRECT I/Os be 512-byte sector aligned */
295 
296 #define O_DIRECT_SIZE 512
297 
set_o_direct(int dev,unsigned char * buffer,size_t size,ext2_loff_t offset)298 static void set_o_direct(int dev, unsigned char *buffer, size_t size,
299 			 ext2_loff_t offset)
300 {
301 #ifdef O_DIRECT
302 	static int current_O_DIRECT;	/* Current status of O_DIRECT flag */
303 	int new_flag = O_DIRECT;
304 	int flag;
305 
306 	if ((use_buffered_io != 0) ||
307 	    (((unsigned long) buffer & (sys_page_size - 1)) != 0) ||
308 	    ((size & (sys_page_size - 1)) != 0) ||
309 	    ((offset & (O_DIRECT_SIZE - 1)) != 0))
310 		new_flag = 0;
311 
312 	if (new_flag != current_O_DIRECT) {
313 	     /* printf("%s O_DIRECT\n", new_flag ? "Setting" : "Clearing"); */
314 		flag = fcntl(dev, F_GETFL);
315 		if (flag > 0) {
316 			flag = (flag & ~O_DIRECT) | new_flag;
317 			if (fcntl(dev, F_SETFL, flag) < 0)
318 				perror("set_o_direct");
319 		}
320 		current_O_DIRECT = new_flag;
321 	}
322 #endif
323 }
324 
325 
pattern_fill(unsigned char * buffer,unsigned int pattern,size_t n)326 static void pattern_fill(unsigned char *buffer, unsigned int pattern,
327 			 size_t n)
328 {
329 	unsigned int	i, nb;
330 	unsigned char	bpattern[sizeof(pattern)], *ptr;
331 
332 	if (pattern == (unsigned int) ~0) {
333 		for (ptr = buffer; ptr < buffer + n; ptr++) {
334 			(*ptr) = random() % (1 << (8 * sizeof(char)));
335 		}
336 		if (s_flag | v_flag)
337 			fputs(_("Testing with random pattern: "), stderr);
338 	} else {
339 		bpattern[0] = 0;
340 		for (i = 0; i < sizeof(bpattern); i++) {
341 			if (pattern == 0)
342 				break;
343 			bpattern[i] = pattern & 0xFF;
344 			pattern = pattern >> 8;
345 		}
346 		nb = i ? (i-1) : 0;
347 		for (ptr = buffer, i = nb; ptr < buffer + n; ptr++) {
348 			*ptr = bpattern[i];
349 			if (i == 0)
350 				i = nb;
351 			else
352 				i--;
353 		}
354 		if (s_flag | v_flag) {
355 			fputs(_("Testing with pattern 0x"), stderr);
356 			for (i = 0; i <= nb; i++)
357 				fprintf(stderr, "%02x", buffer[i]);
358 			fputs(": ", stderr);
359 		}
360 	}
361 }
362 
363 /*
364  * Perform a read of a sequence of blocks; return the number of blocks
365  *    successfully sequentially read.
366  */
do_read(int dev,unsigned char * buffer,int try,int block_size,blk_t current_block)367 static int do_read (int dev, unsigned char * buffer, int try, int block_size,
368 		    blk_t current_block)
369 {
370 	long got;
371 	struct timeval tv1, tv2;
372 #define NANOSEC (1000000000L)
373 #define MILISEC (1000L)
374 
375 #if 0
376 	printf("do_read: block %d, try %d\n", current_block, try);
377 #endif
378 	set_o_direct(dev, buffer, try * block_size,
379 		     ((ext2_loff_t) current_block) * block_size);
380 
381 	if (v_flag > 1)
382 		print_status();
383 
384 	/* Seek to the correct loc. */
385 	if (ext2fs_llseek (dev, (ext2_loff_t) current_block * block_size,
386 			 SEEK_SET) != (ext2_loff_t) current_block * block_size)
387 		com_err (program_name, errno, "%s", _("during seek"));
388 
389 	/* Try the read */
390 	if (d_flag)
391 		gettimeofday(&tv1, NULL);
392 	got = read (dev, buffer, try * block_size);
393 	if (d_flag)
394 		gettimeofday(&tv2, NULL);
395 	if (got < 0)
396 		got = 0;
397 	if (got & 511)
398 		fprintf(stderr, _("Weird value (%ld) in do_read\n"), got);
399 	got /= block_size;
400 	if (d_flag && got == try) {
401 #ifdef HAVE_NANOSLEEP
402 		struct timespec ts;
403 		ts.tv_sec = tv2.tv_sec - tv1.tv_sec;
404 		ts.tv_nsec = (tv2.tv_usec - tv1.tv_usec) * MILISEC;
405 		if (ts.tv_nsec < 0) {
406 			ts.tv_nsec += NANOSEC;
407 			ts.tv_sec -= 1;
408 		}
409 		/* increase/decrease the sleep time based on d_flag value */
410 		ts.tv_sec = ts.tv_sec * d_flag / 100;
411 		ts.tv_nsec = ts.tv_nsec * d_flag / 100;
412 		if (ts.tv_nsec > NANOSEC) {
413 			ts.tv_sec += ts.tv_nsec / NANOSEC;
414 			ts.tv_nsec %= NANOSEC;
415 		}
416 		if (ts.tv_sec || ts.tv_nsec)
417 			nanosleep(&ts, NULL);
418 #else
419 #ifdef HAVE_USLEEP
420 		struct timeval tv;
421 		tv.tv_sec = tv2.tv_sec - tv1.tv_sec;
422 		tv.tv_usec = tv2.tv_usec - tv1.tv_usec;
423 		tv.tv_sec = tv.tv_sec * d_flag / 100;
424 		tv.tv_usec = tv.tv_usec * d_flag / 100;
425 		if (tv.tv_usec > 1000000) {
426 			tv.tv_sec += tv.tv_usec / 1000000;
427 			tv.tv_usec %= 1000000;
428 		}
429 		if (tv.tv_sec)
430 			sleep(tv.tv_sec);
431 		if (tv.tv_usec)
432 			usleep(tv.tv_usec);
433 #endif
434 #endif
435 	}
436 	return got;
437 }
438 
439 /*
440  * Perform a write of a sequence of blocks; return the number of blocks
441  *    successfully sequentially written.
442  */
do_write(int dev,unsigned char * buffer,int try,int block_size,unsigned long current_block)443 static int do_write(int dev, unsigned char * buffer, int try, int block_size,
444 		    unsigned long current_block)
445 {
446 	long got;
447 
448 #if 0
449 	printf("do_write: block %lu, try %d\n", current_block, try);
450 #endif
451 	set_o_direct(dev, buffer, try * block_size,
452 		     ((ext2_loff_t) current_block) * block_size);
453 
454 	if (v_flag > 1)
455 		print_status();
456 
457 	/* Seek to the correct loc. */
458 	if (ext2fs_llseek (dev, (ext2_loff_t) current_block * block_size,
459 			 SEEK_SET) != (ext2_loff_t) current_block * block_size)
460 		com_err (program_name, errno, "%s", _("during seek"));
461 
462 	/* Try the write */
463 	got = write (dev, buffer, try * block_size);
464 	if (got < 0)
465 		got = 0;
466 	if (got & 511)
467 		fprintf(stderr, "Weird value (%ld) in do_write\n", got);
468 	got /= block_size;
469 	return got;
470 }
471 
472 static int host_dev;
473 
flush_bufs(void)474 static void flush_bufs(void)
475 {
476 	errcode_t	retval;
477 
478 #ifdef O_DIRECT
479 	if (!use_buffered_io)
480 		return;
481 #endif
482 	retval = ext2fs_sync_device(host_dev, 1);
483 	if (retval)
484 		com_err(program_name, retval, "%s",
485 			_("during ext2fs_sync_device"));
486 }
487 
test_ro(int dev,blk_t last_block,int block_size,blk_t first_block,unsigned int blocks_at_once)488 static unsigned int test_ro (int dev, blk_t last_block,
489 			     int block_size, blk_t first_block,
490 			     unsigned int blocks_at_once)
491 {
492 	unsigned char * blkbuf;
493 	int try;
494 	int got;
495 	unsigned int bb_count = 0;
496 	errcode_t errcode;
497 	blk_t recover_block = ~0;
498 
499 	/* set up abend handler */
500 	capture_terminate(NULL);
501 
502 	errcode = ext2fs_badblocks_list_iterate_begin(bb_list,&bb_iter);
503 	if (errcode) {
504 		com_err(program_name, errcode, "%s",
505 			_("while beginning bad block list iteration"));
506 		exit (1);
507 	}
508 	do {
509 		ext2fs_badblocks_list_iterate (bb_iter, &next_bad);
510 	} while (next_bad && next_bad < first_block);
511 
512 	if (t_flag) {
513 		blkbuf = allocate_buffer((blocks_at_once + 1) * block_size);
514 	} else {
515 		blkbuf = allocate_buffer(blocks_at_once * block_size);
516 	}
517 	if (!blkbuf)
518 	{
519 		com_err(program_name, ENOMEM, "%s",
520 			_("while allocating buffers"));
521 		exit (1);
522 	}
523 	if (v_flag) {
524 		fprintf(stderr, _("Checking blocks %lu to %lu\n"),
525 			(unsigned long)first_block,
526 			(unsigned long)last_block - 1);
527 	}
528 	if (t_flag) {
529 		fputs(_("Checking for bad blocks in read-only mode\n"), stderr);
530 		pattern_fill(blkbuf + blocks_at_once * block_size,
531 			     t_patts[0], block_size);
532 	}
533 	flush_bufs();
534 	try = blocks_at_once;
535 	currently_testing = first_block;
536 	num_blocks = last_block - 1;
537 	if (!t_flag && (s_flag || v_flag))
538 		fputs(_("Checking for bad blocks (read-only test): "), stderr);
539 	if (s_flag && v_flag <= 1)
540 		alarm_intr(SIGALRM);
541 	while (currently_testing < last_block)
542 	{
543 		if (bb_count >= max_bb) {
544 			if (s_flag || v_flag) {
545 				fputs(_("Too many bad blocks, aborting test\n"), stderr);
546 			}
547 			break;
548 		}
549 		if (next_bad) {
550 			if (currently_testing == next_bad) {
551 				/* fprintf (out, "%lu\n", nextbad); */
552 				ext2fs_badblocks_list_iterate (bb_iter, &next_bad);
553 				currently_testing++;
554 				continue;
555 			}
556 			else if (currently_testing + try > next_bad)
557 				try = next_bad - currently_testing;
558 		}
559 		if (currently_testing + try > last_block)
560 			try = last_block - currently_testing;
561 		got = do_read (dev, blkbuf, try, block_size, currently_testing);
562 		if (t_flag) {
563 			/* test the comparison between all the
564 			   blocks successfully read  */
565 			int i;
566 			for (i = 0; i < got; ++i)
567 				if (memcmp (blkbuf+i*block_size,
568 					    blkbuf+blocks_at_once*block_size,
569 					    block_size))
570 					bb_count += bb_output(currently_testing + i, CORRUPTION_ERROR);
571 		}
572 		if (got == 0 && try == 1)
573 			bb_count += bb_output(currently_testing++, READ_ERROR);
574 		currently_testing += got;
575 		if (got != try) {
576 			try = 1;
577 			if (recover_block == ~0U)
578 				recover_block = currently_testing - got +
579 					blocks_at_once;
580 			continue;
581 		} else if (currently_testing == recover_block) {
582 			try = blocks_at_once;
583 			recover_block = ~0;
584 		}
585 	}
586 	num_blocks = 0;
587 	alarm(0);
588 	if (s_flag || v_flag)
589 		fputs(_(done_string), stderr);
590 
591 	fflush (stderr);
592 	free (blkbuf);
593 
594 	ext2fs_badblocks_list_iterate_end(bb_iter);
595 
596 	uncapture_terminate();
597 
598 	return bb_count;
599 }
600 
test_rw(int dev,blk_t last_block,int block_size,blk_t first_block,unsigned int blocks_at_once)601 static unsigned int test_rw (int dev, blk_t last_block,
602 			     int block_size, blk_t first_block,
603 			     unsigned int blocks_at_once)
604 {
605 	unsigned char *buffer, *read_buffer;
606 	const unsigned int patterns[] = {0xaa, 0x55, 0xff, 0x00};
607 	const unsigned int *pattern;
608 	int i, try, got, nr_pattern, pat_idx;
609 	unsigned int bb_count = 0;
610 	blk_t recover_block = ~0;
611 
612 	/* set up abend handler */
613 	capture_terminate(NULL);
614 
615 	buffer = allocate_buffer(2 * blocks_at_once * block_size);
616 	read_buffer = buffer + blocks_at_once * block_size;
617 
618 	if (!buffer) {
619 		com_err(program_name, ENOMEM, "%s",
620 			_("while allocating buffers"));
621 		exit (1);
622 	}
623 
624 	flush_bufs();
625 
626 	if (v_flag) {
627 		fputs(_("Checking for bad blocks in read-write mode\n"),
628 		      stderr);
629 		fprintf(stderr, _("From block %lu to %lu\n"),
630 			(unsigned long) first_block,
631 			(unsigned long) last_block - 1);
632 	}
633 	if (t_flag) {
634 		pattern = t_patts;
635 		nr_pattern = t_flag;
636 	} else {
637 		pattern = patterns;
638 		nr_pattern = sizeof(patterns) / sizeof(patterns[0]);
639 	}
640 	for (pat_idx = 0; pat_idx < nr_pattern; pat_idx++) {
641 		pattern_fill(buffer, pattern[pat_idx],
642 			     blocks_at_once * block_size);
643 		num_blocks = last_block - 1;
644 		currently_testing = first_block;
645 		if (s_flag && v_flag <= 1)
646 			alarm_intr(SIGALRM);
647 
648 		try = blocks_at_once;
649 		while (currently_testing < last_block) {
650 			if (bb_count >= max_bb) {
651 				if (s_flag || v_flag) {
652 					fputs(_("Too many bad blocks, aborting test\n"), stderr);
653 				}
654 				break;
655 			}
656 			if (currently_testing + try > last_block)
657 				try = last_block - currently_testing;
658 			got = do_write(dev, buffer, try, block_size,
659 					currently_testing);
660 			if (v_flag > 1)
661 				print_status();
662 
663 			if (got == 0 && try == 1)
664 				bb_count += bb_output(currently_testing++, WRITE_ERROR);
665 			currently_testing += got;
666 			if (got != try) {
667 				try = 1;
668 				if (recover_block == ~0U)
669 					recover_block = currently_testing -
670 						got + blocks_at_once;
671 				continue;
672 			} else if (currently_testing == recover_block) {
673 				try = blocks_at_once;
674 				recover_block = ~0;
675 			}
676 		}
677 
678 		num_blocks = 0;
679 		alarm (0);
680 		if (s_flag | v_flag)
681 			fputs(_(done_string), stderr);
682 		flush_bufs();
683 		if (s_flag | v_flag)
684 			fputs(_("Reading and comparing: "), stderr);
685 		num_blocks = last_block;
686 		currently_testing = first_block;
687 		if (s_flag && v_flag <= 1)
688 			alarm_intr(SIGALRM);
689 
690 		try = blocks_at_once;
691 		while (currently_testing < last_block) {
692 			if (bb_count >= max_bb) {
693 				if (s_flag || v_flag) {
694 					fputs(_("Too many bad blocks, aborting test\n"), stderr);
695 				}
696 				break;
697 			}
698 			if (currently_testing + try > last_block)
699 				try = last_block - currently_testing;
700 			got = do_read (dev, read_buffer, try, block_size,
701 				       currently_testing);
702 			if (got == 0 && try == 1)
703 				bb_count += bb_output(currently_testing++, READ_ERROR);
704 			currently_testing += got;
705 			if (got != try) {
706 				try = 1;
707 				if (recover_block == ~0U)
708 					recover_block = currently_testing -
709 						got + blocks_at_once;
710 				continue;
711 			} else if (currently_testing == recover_block) {
712 				try = blocks_at_once;
713 				recover_block = ~0U;
714 			}
715 			for (i=0; i < got; i++) {
716 				if (memcmp(read_buffer + i * block_size,
717 					   buffer + i * block_size,
718 					   block_size))
719 					bb_count += bb_output(currently_testing+i, CORRUPTION_ERROR);
720 			}
721 			if (v_flag > 1)
722 				print_status();
723 		}
724 
725 		num_blocks = 0;
726 		alarm (0);
727 		if (s_flag | v_flag)
728 			fputs(_(done_string), stderr);
729 		flush_bufs();
730 	}
731 	uncapture_terminate();
732 	free(buffer);
733 	return bb_count;
734 }
735 
736 struct saved_blk_record {
737 	blk_t	block;
738 	int	num;
739 };
740 
test_nd(int dev,blk_t last_block,int block_size,blk_t first_block,unsigned int blocks_at_once)741 static unsigned int test_nd (int dev, blk_t last_block,
742 			     int block_size, blk_t first_block,
743 			     unsigned int blocks_at_once)
744 {
745 	unsigned char *blkbuf, *save_ptr, *test_ptr, *read_ptr;
746 	unsigned char *test_base, *save_base, *read_base;
747 	int try, i;
748 	const unsigned int patterns[] = { ~0 };
749 	const unsigned int *pattern;
750 	int nr_pattern, pat_idx;
751 	int got, used2, written;
752 	blk_t save_currently_testing;
753 	struct saved_blk_record *test_record;
754 	/* This is static to prevent being clobbered by the longjmp */
755 	static int num_saved;
756 	jmp_buf terminate_env;
757 	errcode_t errcode;
758 	unsigned long buf_used;
759 	static unsigned int bb_count;
760 	unsigned int granularity = blocks_at_once;
761 	blk_t recover_block = ~0U;
762 
763 	bb_count = 0;
764 	errcode = ext2fs_badblocks_list_iterate_begin(bb_list,&bb_iter);
765 	if (errcode) {
766 		com_err(program_name, errcode, "%s",
767 			_("while beginning bad block list iteration"));
768 		exit (1);
769 	}
770 	do {
771 		ext2fs_badblocks_list_iterate (bb_iter, &next_bad);
772 	} while (next_bad && next_bad < first_block);
773 
774 	blkbuf = allocate_buffer(3 * blocks_at_once * block_size);
775 	test_record = malloc(blocks_at_once * sizeof(struct saved_blk_record));
776 	if (!blkbuf || !test_record) {
777 		com_err(program_name, ENOMEM, "%s",
778 			_("while allocating buffers"));
779 		exit (1);
780 	}
781 
782 	save_base = blkbuf;
783 	test_base = blkbuf + (blocks_at_once * block_size);
784 	read_base = blkbuf + (2 * blocks_at_once * block_size);
785 
786 	num_saved = 0;
787 
788 	flush_bufs();
789 	if (v_flag) {
790 	    fputs(_("Checking for bad blocks in non-destructive read-write mode\n"), stderr);
791 	    fprintf (stderr, _("From block %lu to %lu\n"),
792 		     (unsigned long) first_block,
793 		     (unsigned long) last_block - 1);
794 	}
795 	if (s_flag || v_flag > 1) {
796 		fputs(_("Checking for bad blocks (non-destructive read-write test)\n"), stderr);
797 	}
798 	if (setjmp(terminate_env)) {
799 		/*
800 		 * Abnormal termination by a signal is handled here.
801 		 */
802 		signal (SIGALRM, SIG_IGN);
803 		fputs(_("\nInterrupt caught, cleaning up\n"), stderr);
804 
805 		save_ptr = save_base;
806 		for (i=0; i < num_saved; i++) {
807 			do_write(dev, save_ptr, test_record[i].num,
808 				 block_size, test_record[i].block);
809 			save_ptr += test_record[i].num * block_size;
810 		}
811 		fflush (out);
812 		exit(1);
813 	}
814 
815 	/* set up abend handler */
816 	capture_terminate(terminate_env);
817 
818 	if (t_flag) {
819 		pattern = t_patts;
820 		nr_pattern = t_flag;
821 	} else {
822 		pattern = patterns;
823 		nr_pattern = sizeof(patterns) / sizeof(patterns[0]);
824 	}
825 	for (pat_idx = 0; pat_idx < nr_pattern; pat_idx++) {
826 		pattern_fill(test_base, pattern[pat_idx],
827 			     blocks_at_once * block_size);
828 
829 		buf_used = 0;
830 		bb_count = 0;
831 		save_ptr = save_base;
832 		test_ptr = test_base;
833 		currently_testing = first_block;
834 		num_blocks = last_block - 1;
835 		if (s_flag && v_flag <= 1)
836 			alarm_intr(SIGALRM);
837 
838 		while (currently_testing < last_block) {
839 			if (bb_count >= max_bb) {
840 				if (s_flag || v_flag) {
841 					fputs(_("Too many bad blocks, aborting test\n"), stderr);
842 				}
843 				break;
844 			}
845 			got = try = granularity - buf_used;
846 			if (next_bad) {
847 				if (currently_testing == next_bad) {
848 					/* fprintf (out, "%lu\n", nextbad); */
849 					ext2fs_badblocks_list_iterate (bb_iter, &next_bad);
850 					currently_testing++;
851 					goto check_for_more;
852 				}
853 				else if (currently_testing + try > next_bad)
854 					try = next_bad - currently_testing;
855 			}
856 			if (currently_testing + try > last_block)
857 				try = last_block - currently_testing;
858 			got = do_read (dev, save_ptr, try, block_size,
859 				       currently_testing);
860 			if (got == 0) {
861 				if (recover_block == ~0U)
862 					recover_block = currently_testing +
863 						blocks_at_once;
864 				if (granularity != 1) {
865 					granularity = 1;
866 					continue;
867 				}
868 				/* First block must have been bad. */
869 				bb_count += bb_output(currently_testing++, READ_ERROR);
870 				goto check_for_more;
871 			}
872 
873 			/*
874 			 * Note the fact that we've saved this much data
875 			 * *before* we overwrite it with test data
876 			 */
877 			test_record[num_saved].block = currently_testing;
878 			test_record[num_saved].num = got;
879 			num_saved++;
880 
881 			/* Write the test data */
882 			written = do_write (dev, test_ptr, got, block_size,
883 					    currently_testing);
884 			if (written != got)
885 				com_err (program_name, errno,
886 					 _("during test data write, block %lu"),
887 					 (unsigned long) currently_testing +
888 					 written);
889 
890 			buf_used += got;
891 			save_ptr += got * block_size;
892 			test_ptr += got * block_size;
893 			currently_testing += got;
894 			if (got != try) {
895 				if (recover_block == ~0U)
896 					recover_block = currently_testing -
897 						got + blocks_at_once;
898 				continue;
899 			}
900 
901 		check_for_more:
902 			/*
903 			 * If there's room for more blocks to be tested this
904 			 * around, and we're not done yet testing the disk, go
905 			 * back and get some more blocks.
906 			 */
907 			if ((buf_used != granularity) &&
908 			    (currently_testing < last_block))
909 				continue;
910 
911 			if (currently_testing >= recover_block) {
912 				granularity = blocks_at_once;
913 				recover_block = ~0;
914 			}
915 
916 			flush_bufs();
917 			save_currently_testing = currently_testing;
918 
919 			/*
920 			 * for each contiguous block that we read into the
921 			 * buffer (and wrote test data into afterwards), read
922 			 * it back (looping if necessary, to get past newly
923 			 * discovered unreadable blocks, of which there should
924 			 * be none, but with a hard drive which is unreliable,
925 			 * it has happened), and compare with the test data
926 			 * that was written; output to the bad block list if
927 			 * it doesn't match.
928 			 */
929 			used2 = 0;
930 			save_ptr = save_base;
931 			test_ptr = test_base;
932 			read_ptr = read_base;
933 			try = 0;
934 
935 			while (1) {
936 				if (try == 0) {
937 					if (used2 >= num_saved)
938 						break;
939 					currently_testing = test_record[used2].block;
940 					try = test_record[used2].num;
941 					used2++;
942 				}
943 
944 				got = do_read (dev, read_ptr, try,
945 					       block_size, currently_testing);
946 
947 				/* test the comparison between all the
948 				   blocks successfully read  */
949 				for (i = 0; i < got; ++i)
950 					if (memcmp (test_ptr+i*block_size,
951 						    read_ptr+i*block_size, block_size))
952 						bb_count += bb_output(currently_testing + i, CORRUPTION_ERROR);
953 				if (got < try) {
954 					bb_count += bb_output(currently_testing + got, READ_ERROR);
955 					got++;
956 				}
957 
958 				/* write back original data */
959 				do_write (dev, save_ptr, got,
960 					  block_size, currently_testing);
961 				save_ptr += got * block_size;
962 
963 				currently_testing += got;
964 				test_ptr += got * block_size;
965 				read_ptr += got * block_size;
966 				try -= got;
967 			}
968 
969 			/* empty the buffer so it can be reused */
970 			num_saved = 0;
971 			buf_used = 0;
972 			save_ptr = save_base;
973 			test_ptr = test_base;
974 			currently_testing = save_currently_testing;
975 		}
976 		num_blocks = 0;
977 		alarm(0);
978 		if (s_flag || v_flag > 1)
979 			fputs(_(done_string), stderr);
980 
981 		flush_bufs();
982 	}
983 	uncapture_terminate();
984 	fflush(stderr);
985 	free(blkbuf);
986 	free(test_record);
987 
988 	ext2fs_badblocks_list_iterate_end(bb_iter);
989 
990 	return bb_count;
991 }
992 
check_mount(char * device_name)993 static void check_mount(char *device_name)
994 {
995 	errcode_t	retval;
996 	int		mount_flags;
997 
998 	retval = ext2fs_check_if_mounted(device_name, &mount_flags);
999 	if (retval) {
1000 		com_err("ext2fs_check_if_mount", retval,
1001 			_("while determining whether %s is mounted."),
1002 			device_name);
1003 		return;
1004 	}
1005 	if (mount_flags & EXT2_MF_MOUNTED) {
1006 		fprintf(stderr, _("%s is mounted; "), device_name);
1007 		if (force) {
1008 			fputs(_("badblocks forced anyway.  "
1009 				"Hope /etc/mtab is incorrect.\n"), stderr);
1010 			return;
1011 		}
1012 	abort_badblocks:
1013 		fputs(_("it's not safe to run badblocks!\n"), stderr);
1014 		exit(1);
1015 	}
1016 
1017 	if ((mount_flags & EXT2_MF_BUSY) && !exclusive_ok) {
1018 		fprintf(stderr, _("%s is apparently in use by the system; "),
1019 			device_name);
1020 		if (force)
1021 			fputs(_("badblocks forced anyway.\n"), stderr);
1022 		else
1023 			goto abort_badblocks;
1024 	}
1025 
1026 }
1027 
1028 /*
1029  * This function will convert a string to an unsigned long, printing
1030  * an error message if it fails, and returning success or failure in err.
1031  */
parse_uint(const char * str,const char * descr)1032 static unsigned int parse_uint(const char *str, const char *descr)
1033 {
1034 	char		*tmp;
1035 	unsigned long	ret;
1036 
1037 	errno = 0;
1038 	ret = strtoul(str, &tmp, 0);
1039 	if (*tmp || errno || (ret > UINT_MAX) ||
1040 	    (ret == ULONG_MAX && errno == ERANGE)) {
1041 		com_err (program_name, 0, _("invalid %s - %s"), descr, str);
1042 		exit (1);
1043 	}
1044 	return ret;
1045 }
1046 
main(int argc,char ** argv)1047 int main (int argc, char ** argv)
1048 {
1049 	int c;
1050 	char * device_name;
1051 	char * host_device_name = NULL;
1052 	char * input_file = NULL;
1053 	char * output_file = NULL;
1054 	FILE * in = NULL;
1055 	int block_size = 1024;
1056 	unsigned int blocks_at_once = 64;
1057 	blk64_t last_block, first_block;
1058 	int num_passes = 0;
1059 	int passes_clean = 0;
1060 	int dev;
1061 	errcode_t errcode;
1062 	unsigned int pattern;
1063 	unsigned int (*test_func)(int, blk_t,
1064 				  int, blk_t,
1065 				  unsigned int);
1066 	int open_flag;
1067 	long sysval;
1068 	unsigned long long inblk;
1069 
1070 	setbuf(stdout, NULL);
1071 	setbuf(stderr, NULL);
1072 #ifdef ENABLE_NLS
1073 	setlocale(LC_MESSAGES, "");
1074 	setlocale(LC_CTYPE, "");
1075 	bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
1076 	textdomain(NLS_CAT_NAME);
1077 	set_com_err_gettext(gettext);
1078 #endif
1079 	srandom((unsigned int)time(NULL));  /* simple randomness is enough */
1080 	test_func = test_ro;
1081 
1082 	/* Determine the system page size if possible */
1083 #ifdef HAVE_SYSCONF
1084 #if (!defined(_SC_PAGESIZE) && defined(_SC_PAGE_SIZE))
1085 #define _SC_PAGESIZE _SC_PAGE_SIZE
1086 #endif
1087 #ifdef _SC_PAGESIZE
1088 	sysval = sysconf(_SC_PAGESIZE);
1089 	if (sysval > 0)
1090 		sys_page_size = sysval;
1091 #endif /* _SC_PAGESIZE */
1092 #endif /* HAVE_SYSCONF */
1093 
1094 	if (argc && *argv)
1095 		program_name = *argv;
1096 	while ((c = getopt (argc, argv, "b:d:e:fi:o:svwnc:p:h:t:BX")) != EOF) {
1097 		switch (c) {
1098 		case 'b':
1099 			block_size = parse_uint(optarg, "block size");
1100 			break;
1101 		case 'f':
1102 			force++;
1103 			break;
1104 		case 'i':
1105 			input_file = optarg;
1106 			break;
1107 		case 'o':
1108 			output_file = optarg;
1109 			break;
1110 		case 's':
1111 			s_flag = 1;
1112 			break;
1113 		case 'v':
1114 			v_flag++;
1115 			break;
1116 		case 'w':
1117 			if (w_flag)
1118 				exclusive_usage();
1119 			test_func = test_rw;
1120 			w_flag = 1;
1121 			break;
1122 		case 'n':
1123 			if (w_flag)
1124 				exclusive_usage();
1125 			test_func = test_nd;
1126 			w_flag = 2;
1127 			break;
1128 		case 'c':
1129 			blocks_at_once = parse_uint(optarg, "blocks at once");
1130 			break;
1131 		case 'e':
1132 			max_bb = parse_uint(optarg, "max bad block count");
1133 			if (max_bb > MAX_BAD_BLOCKS) {
1134 				com_err (program_name, 0,
1135 					 _("Too big max bad blocks count %u - "
1136 					   "maximum is %u"), max_bb,
1137 					   MAX_BAD_BLOCKS);
1138 				exit (1);
1139 			}
1140 			/* 0 really means unlimited but we cannot do that much... */
1141 			if (max_bb == 0)
1142 				max_bb = MAX_BAD_BLOCKS;
1143 			break;
1144 		case 'd':
1145 			d_flag = parse_uint(optarg, "read delay factor");
1146 			break;
1147 		case 'p':
1148 			num_passes = parse_uint(optarg,
1149 						"number of clean passes");
1150 			break;
1151 		case 'h':
1152 			host_device_name = optarg;
1153 			break;
1154 		case 't':
1155 			if (t_flag + 1 > t_max) {
1156 				unsigned int *t_patts_new;
1157 
1158 				t_patts_new = realloc(t_patts, sizeof(int) *
1159 						      (t_max + T_INC));
1160 				if (!t_patts_new) {
1161 					com_err(program_name, ENOMEM,
1162 						_("can't allocate memory for "
1163 						  "test_pattern - %s"),
1164 						optarg);
1165 					exit(1);
1166 				}
1167 				t_patts = t_patts_new;
1168 				t_max += T_INC;
1169 			}
1170 			if (!strcmp(optarg, "r") || !strcmp(optarg,"random")) {
1171 				t_patts[t_flag++] = ~0;
1172 			} else {
1173 				pattern = parse_uint(optarg, "test pattern");
1174 				if (pattern == (unsigned int) ~0)
1175 					pattern = 0xffff;
1176 				t_patts[t_flag++] = pattern;
1177 			}
1178 			break;
1179 		case 'B':
1180 			use_buffered_io = 1;
1181 			break;
1182 		case 'X':
1183 			exclusive_ok++;
1184 			break;
1185 		default:
1186 			usage();
1187 		}
1188 	}
1189 	if (!w_flag) {
1190 		if (t_flag > 1) {
1191 			com_err(program_name, 0, "%s",
1192 				_("Maximum of one test_pattern may be "
1193 				  "specified in read-only mode"));
1194 			exit(1);
1195 		}
1196 		if (t_patts && (t_patts[0] == (unsigned int) ~0)) {
1197 			com_err(program_name, 0, "%s",
1198 				_("Random test_pattern is not allowed "
1199 				  "in read-only mode"));
1200 			exit(1);
1201 		}
1202 	}
1203 	if ((block_size <= 0) || (block_size > (1 << 24)) ||
1204 	    (block_size & (block_size - 1))) {
1205 		com_err(program_name, 0, _("Invalid block size: %d\n"),
1206 			block_size);
1207 		exit(1);
1208 	}
1209 	if ((blocks_at_once <= 0) ||
1210 	    (((unsigned long long) block_size * blocks_at_once) > 0xFFFFFFFF)) {
1211 		com_err(program_name, 0, _("Invalid blocks_at_once: %d\n"),
1212 			blocks_at_once);
1213 		exit(1);
1214 	}
1215 
1216 	if (optind > argc - 1)
1217 		usage();
1218 	device_name = argv[optind++];
1219 	if (optind > argc - 1) {
1220 		errcode = ext2fs_get_device_size2(device_name,
1221 						 block_size,
1222 						 &last_block);
1223 		if (errcode == EXT2_ET_UNIMPLEMENTED) {
1224 			com_err(program_name, 0, "%s",
1225 				_("Couldn't determine device size; you "
1226 				  "must specify\nthe size manually\n"));
1227 			exit(1);
1228 		}
1229 		if (errcode) {
1230 			com_err(program_name, errcode, "%s",
1231 				_("while trying to determine device size"));
1232 			exit(1);
1233 		}
1234 	} else {
1235 		errno = 0;
1236 		last_block = parse_uint(argv[optind], _("last block"));
1237 		last_block++;
1238 		optind++;
1239 	}
1240 	if (optind <= argc-1) {
1241 		errno = 0;
1242 		first_block = parse_uint(argv[optind], _("first block"));
1243 	} else first_block = 0;
1244 	if (first_block >= last_block) {
1245 	    com_err (program_name, 0, _("invalid starting block (%llu): must be less than %llu"),
1246 		     (unsigned long long) first_block,
1247 		     (unsigned long long) last_block);
1248 	    exit (1);
1249 	}
1250 	/* ext2 badblocks file can't handle large values */
1251 	if (last_block >> 32) {
1252 		com_err(program_name, EOVERFLOW,
1253 			_("invalid end block (%llu): must be 32-bit value"),
1254 			(unsigned long long) last_block);
1255 		exit(1);
1256 	}
1257 	if (w_flag)
1258 		check_mount(device_name);
1259 
1260 	gettimeofday(&time_start, 0);
1261 	open_flag = O_LARGEFILE | (w_flag ? O_RDWR : O_RDONLY);
1262 	dev = open (device_name, open_flag);
1263 	if (dev == -1) {
1264 		com_err (program_name, errno, _("while trying to open %s"),
1265 			 device_name);
1266 		exit (1);
1267 	}
1268 	if (host_device_name) {
1269 		host_dev = open (host_device_name, open_flag);
1270 		if (host_dev == -1) {
1271 			com_err (program_name, errno,
1272 				 _("while trying to open %s"),
1273 				 host_device_name);
1274 			exit (1);
1275 		}
1276 	} else
1277 		host_dev = dev;
1278 	if (input_file) {
1279 		if (strcmp (input_file, "-") == 0)
1280 			in = stdin;
1281 		else {
1282 			in = fopen (input_file, "r");
1283 			if (in == NULL)
1284 			{
1285 				com_err (program_name, errno,
1286 					 _("while trying to open %s"),
1287 					 input_file);
1288 				exit (1);
1289 			}
1290 		}
1291 	}
1292 	if (output_file && strcmp (output_file, "-") != 0)
1293 	{
1294 		out = fopen (output_file, "w");
1295 		if (out == NULL)
1296 		{
1297 			com_err (program_name, errno,
1298 				 _("while trying to open %s"),
1299 				 output_file);
1300 			exit (1);
1301 		}
1302 	}
1303 	else
1304 		out = stdout;
1305 
1306 	errcode = ext2fs_badblocks_list_create(&bb_list,0);
1307 	if (errcode) {
1308 		com_err(program_name, errcode, "%s",
1309 			_("while creating in-memory bad blocks list"));
1310 		exit (1);
1311 	}
1312 
1313 	if (in) {
1314 		for(;;) {
1315 			switch (fscanf(in, "%llu\n", &inblk)) {
1316 				case 0:
1317 					com_err(program_name, 0, "%s",
1318 						_("input file - bad format"));
1319 					exit (1);
1320 				case EOF:
1321 					break;
1322 				default:
1323 					if (inblk >> 32) {
1324 						com_err(program_name,
1325 							EOVERFLOW, "%s",
1326 						_("while adding to in-memory "
1327 						  "bad block list"));
1328 						exit(1);
1329 					}
1330 					next_bad = inblk;
1331 					errcode = ext2fs_badblocks_list_add(bb_list,next_bad);
1332 					if (errcode) {
1333 						com_err(program_name, errcode,
1334 							"%s",
1335 						_("while adding to in-memory "
1336 						  "bad block list"));
1337 						exit (1);
1338 					}
1339 					continue;
1340 			}
1341 			break;
1342 		}
1343 
1344 		if (in != stdin)
1345 			fclose (in);
1346 	}
1347 
1348 	do {
1349 		unsigned int bb_count;
1350 
1351 		bb_count = test_func(dev, last_block, block_size,
1352 				     first_block, blocks_at_once);
1353 		if (bb_count)
1354 			passes_clean = 0;
1355 		else
1356 			++passes_clean;
1357 
1358 		if (v_flag)
1359 			fprintf(stderr,
1360 				_("Pass completed, %u bad blocks found. (%d/%d/%d errors)\n"),
1361 				bb_count, num_read_errors, num_write_errors, num_corruption_errors);
1362 
1363 	} while (passes_clean < num_passes);
1364 
1365 	close (dev);
1366 	if (out != stdout)
1367 		fclose (out);
1368 	free(t_patts);
1369 	return 0;
1370 }
1371