blob: 02603fc6e20363c00990c52262018e7f8f984e34 [file] [log] [blame]
Theodore Ts'ob777e262000-07-27 01:39:23 +00001E2fsprogs 1.19 (July 13, 2000)
2==============================
Theodore Ts'oab146762000-07-07 04:37:35 +00003
4Release the resize2fs program since the timeout before it could
5publish it under the GPL has finally expired.
6
7Add experimental support needed for the ext2 compression patches.
8This requires compiling e2fsprogs with the --enable-compression flag
9to the configure script.
10
11Added ext3 journalling support. E2fsck will run the journal (if
12necessary) by temporarily mounting the filesystem. /sbin/fsck.ext3 is
13installed as a symlink to e2fsck. Fsck has been taught about ext3,
14and treats it the same as ext2 in terms of the progress bar logic.
15Dumpe2fs will display the superblock journaling information if the
16filesystem has a journal. The ext2 library will now permit opening an
17ext3 filesystem with the recovery flag set. This is necessary for
18on-line dump's to work correctly, but there may be issues with this
19working well since ext3 is much less agressive about syncing blocks to
20the filesystem, since they're safe on the journal.
21
22Tune2fs and e2fsck have been changed to allow the mount_count check to
23be disabled by setting max_mount_count to -1. (This was already
24supported by the kernel.)
25
26Create a symbolic link for fsck.ext3, since the e2fsprogs utilities
27are used for ext3 as well.
28
29Added internationalization support for e2fsprogs; must be enabled
30by passing --enable-nls to configure.
31
32Always use the provided ext2fs header files to insulate ourselves from
33kernel version changes. Which include files are used by e2fsprogs
34have also been cleaned up to improve portability.
35
36Limit the number of times that e2fsck updates the progress bar so that
37people who are booting using a 9600 baud console don't get swampped by
38too many updates.
39
40Improved the loop detection algorithm in e2sck's pass #3 so that it is
41much, much faster for large filesystems with a large number of
42directories.
43
44The memory footprint for e2fsck is now slightly smaller than before.
45
46E2fsck now checks if special devices have a non-zero size, and offers
47to clear the size field if it finds such an inode.
48
49E2fsck now checks if special devices have the append-only flag set,
50and offers to clear the inode.
51
52E2fsck now properly handles some "should never fail" cases during a
53bitmap copy in pass5.
54
55E2fsck now properly prints control characters in filenames as ^A .. ^Z.
56
57Added non-destructive write testing to the badblocks program, courtesy
58of David Beattie. The badblocks also now has an option to input the
59current set of bad blocks, so that known bad blocks are skipped to
60speed up the badblocks test. There is also a persistent rescan
61feature that causes badblocks to run some number of passes until the
62set of bad blocks is no longer grows.
63
64Badblocks now checks to see if the device is mounted and refuses to do
65the tests involving writing to the device if it is mounted. Also,
66badblocks now allows the number of blocks to be checked to be
67defaulted to the size of the partition.
68
69Fixed a bug in fsck which didn't allow non-root users to be able to
70check filesystems if there were any LABEL= or UUID= entries in
71/etc/fstab.
72
73The Hurd doesn't support the filetype filesystem feature. The mke2fs
74program now makes sure that for the Hurd, the filestype feature is
75turned off. E2fsck will check to see if the filetype feature is
76turned on for Hurd filesystems, and offer to turn off the feature.
77
78Mke2fs now has a safety check to make sure the number of blocks do not
79exceed 32 bits even on a 64 bit platform.
80
81Really fixed a bug in fsck to allow "fsck -As" to run interactive
82fsck's. (For those people who like to do interactive fsck's in the
83/etc/rc scripts!?!)
84
85Debugfs has a few new features: the rdump command, which will do a
86recursive dump of a directory and all of its contents, and the lcd
87command which does a local chdir (much like the ftp command of the
88same name). In addition, the debugfs program and the open_filesystem
89command now takes three new options: -b and -s, which allows the
90blocksize and superblock location to be specified, and the -c option
91which is used in catastrophic situations where the block group
92descriptors are corrupt. If the -c option is specified, debugfs will
93skip trying to read in the block and inode bitmaps.
94
95Debufs's lsdel command was fixed to handle bad blocks in the inode
96table.
97
98A Y2K bug in debugfs's "ls -l" handling was fixed by switching to use
994 digit years.
100
101General improvements in error messages
102
103 - Mke2fs prints a sane error message if the partition size is zero
104 (usually because the partition table wasn't reread by the
105 kernel due to the partition being busy), instead of "invalid
106 argument passed to ext2 library while initializing superblock".
107
108 - Fsck now prints more self-explanatory message if an invalid UUID=
109 or LABEL= specification is passed to it.
110
111UUID library changed to use the LGPL.
112
113Fixed a bug in the UUID library where very rapid calls to the
114time-based UUID generator could cause duplicate UUID's to be returned.
115This was not a problem for e2fsprogs, but it could be a problem for
116other users of the library.
117
118Make the UUID library more robust in the face of missing or an
119improper /dev/urandom or /dev/random files.
120
121Added some random portability fixes for Solaris.
122
123Some minor man page updates.
124
125Fixed a memory leak in the ss library.
126
127
128Programmer's notes:
129-------------------
130
131We now try to use lseek64 and open64 from the LFS if possible.
132
133The 3rd parameter in e2p's print_flags is now a flags word, instead of
134a boolean option.
135
136The mark and unmark bitmap functions now return the previous state of
137the bit that was being changed, which is useful for some speed
138optimizations.
139
140The following functions have been added to enhance the badblocks list
141handling in libext2fs: ext2fs_write_bb_FILE, ext2fs_read_bb_FILE2, and
142ext2fs_badblocks_equal.
143
144The ext2 header files now have the latest journalling fields to the
145superblock.
146
147The ext2fs_mkdir function in libext2fs now properly backs out of error
148conditions robustly.
149
150Cleaned up makefiles:
151 - to cleanly compile with the -j flag.
152 - so distclean removes all generated files.
153 - so in case of an error while installing header files, the make aborts.
154
155Fix test_script so that it works correctly when compiling in the
156source directory.
157
158Update libraries to build under a.out shared libraries (again).
159
160Clean up the build process so it's more friendly in case of missing
161directories.
162
163The ext2fs header file can now be #include'd into C++ programs.
164
165The e2p.h header file is now installed.
166
167Added workaround to a gawk 3.0.5 bug in lib/ss/mk_cmds.
168
169
170
Theodore Ts'o24ded091999-11-10 15:56:16 +0000171E2fsprogs 1.18 (November 10, 1999)
172==================================
173
174Fix a core dumping bug in e2fsck if an imagic inode is present or
175(more rarely) if the filesystem is badly corrupted enough that e2fsck
176has to restart pass 1 processing. E2fsck now closes the filesystem
177before freeing a large number of its data structures, so in the case
178of future memory faults, at least the fixed filesystem will be fully
179written out.
180
181If a filesystem doesn't support imagic inodes, and e2fsck discovers an
182imagic inode, it will offer to clear the imagic flag.
183
184E2fsck will now offer to clear the immutable flag on special files
185(device/socket/fifos) when running it in non-preen mode.
186
187E2fsck will now set the filetype when creating /lost+found, and when
188connected orphaned inodes to /lost+found.
189
190Debugfs's ncheck and icheck commands now handles the case where there
191are bad blocks in the inode table without bombing out.
192
193The badblocks list processing code has been made more efficiently for
194appending a large number of (ordered) badblocks to the badblocks list.
195
196Some minor man page updates.
197
198Fsck now allows interactive e2fsck's when using fsck -As (not a common
199mode, but some people like to do this in boot scripts for silly reasons).
200
201Programmer's notes:
202-------------------
203
204The internal e2fsck problem code for PR_2_SPLIT_DOT was fixed to meet
205with the problem code convention.
206
207The badblocks list regression test program has been updated to work
208with previously made API name changes.
209
210The ext2fs_free() command now uses the new badblocks API to avoid
211using the compatibility layer.
212
213Added new regression test cases; the run_e2fsck test script now
214supports the ability for a test case to run a prepratory command
215before running e2fsck.
216
Theodore Ts'o28e11941999-10-26 18:17:20 +0000217E2fsprogs 1.17 (October 26, 1999)
218=================================
219
220Fixed nasty typo in fsck which caused parallelized fsck's to go into an
221infinite loop.
222
223Fixed a bug in fsck where it used strncmp to compare a binary UUID,
224thus potentially causing problems if a binary UUID contained a NULL
225character.
226
227E2fsck now uses stricter checks for directory entries in pass 2:
228zero-length filenames are not allowed; neither are 8 byte long
229directory entries.
230
231The debugfs "dirty" command now clears the filesystem valid bit.
232(Previously this just set the dirty-as-in-needs-writing-out-to-disk
233bit in the in-core superblock image. The new functionality is more
234what the user expects, and is more useful.)
235
236Added a debugging hook to test parallel fsck; if the environment
237variable FSCK_FORCE_ALL_PARALLEL, then filesystems on the same drive
238will be checked in parallel when they normally would not be.
239
240Programmer's notes:
241-------------------
242
243Fixed some #ifdef's for compilation under the Hurd OS.
244
245Fixed minor W2K compatibility problems.
246
247Fixed some miscellaneous GCC warnings.
248
249
Theodore Ts'o8a31ffe1999-10-23 03:33:15 +0000250E2fsprogs 1.16 (October 22, 1999)
251=================================
252
253Fixed a race condition bug in fsck; when printing a progress bar, if
254checking multiple filesystems in parallel, it was possible for fsck to
255send e2fsck a SIGUSR1 signal before e2fsck had installed its signal
256handler, which would cause it to terminate with a signal 10.
257
258E2fsck now properly handles filesystems that have the
259INCOMPAT_FILETYPE feature turned on. It can be used to convert a
260filesystem into using or not using FILETYPE feature.
261
262E2fsck now properly handles filesystems that have the IMAGIC feature
263turned on (this is used on Linux AFS servers).
264
265The mke2fs program now creates filesystems that have the filetype and
266sparse_superblock features enabled by default, unless it is run on a
267pre-2.2 kernel. These features are not supported by a pre-2.2 kernel,
268so there is now a new flag -O which allows the user to specify with
269which features she would like to create the filesystem; "mke2fs -O
270none" will create a filesystsem compatible with 2.0 kernels.
271
272The tune2fs program now has a -O option which allows the user to set
273and reset "safe" filesystem features. Currently, the only ones which
274allows to be modified are the filetype and sparse_superblock features.
275Note setting or clearing either feature will require running e2fsck on
276the filesystem afterwards. (n.b. Clearing the sparse_superblock feature
277requires that there is enough free space on the filesystem for the
278extra superblocks which will be created by e2fsck.)
279
280Debugfs can now set and print filesystem features in the superblock
281using the "features" command. Dumpe2fs will print out the complete
282set of features when listing the superblock.
283
284Dumpe2fs has new options -f (force) and -h (header-only).
285
286Fixed a bug in e2fsck which could cause the PROGRAMMING ERROR/bonehead
287message to come up. This could happen when decrementing or
288incrementing a link count could result in an overflow.
289
290Fixed a bug in e2fsck where the block count on the lost+found
291directory would not be properly incremented when the directory was
292expanded to the point where an indirect block needed to be allocated.
293
294E2fsck now makes some additional sanity checks on the superblock to
295avoid crashing or giving a memory allocation error if some of the
296values in the superblock are unresonable (but the superblock otherwise
297looks valid).
298
299Fixed a bug in e2fsck where a very badly corrupted filesystem might
300require two passes to completely fix the filesystem. This happened if
301an inode claimed blocks that was part of the filesystem metadata
302(typically, when garbage was written into an inode table or indirect
303block, since this kind of filesystem corruption normally doesn't
304happen otherwise).
305
306On the Alpha, glibc declares st_flags although it isn't actually used;
307the configure script was improved to detect this case so that
308e2fsprogs can avoid using the non-functional stat field.
309
310The manual pages were updated to use a more consistent formatting
311style consistent with standard Unix man pages. Mke2fs's man page
312added documentation for a few previously undocumented options.
313
314Fixed minor display bugs in tune2fs and mke2fs.
315
316Programmer's notes:
317-------------------
318
319Improved portability of e2fsprogs to non-Unix systems (in particular, NT).
320
321Added features to parse and print feature strings into the e2p library.
322(e2p_feature2string, e2p_string2feature, e2p_edit_feature).
323
324ext2fs_mkdir() and ext2fs_new_dir_block() now creates directories
325whose directory entries contain proper filetype information if the
326filesystem supports it.
327
328ext2fs_link() now uses the low 3 bits of its flags parameter to pass
329the directory entry filetype information. This is used to set the
330directory entry filetype information if the filesystem supports it.
331
332Fixed a bug in ext2fs_expand_dir() where the block count in a
333directory's inode would not be properly incremented when the directory
334was expanded to the point where an indirect block needed to be
335allocated.
336
337
Theodore Ts'oa39f3ef1999-07-20 02:02:40 +0000338E2fsprogs 1.15 (July 18, 1999)
Theodore Ts'oe2a99be1999-07-19 15:48:08 +0000339==============================
Theodore Ts'o6d53db31999-07-03 20:52:21 +0000340
341Add configuration checks so that e2fsprogs will compile cleanly on
342Linux 2.3 kernels that have renamed i_version to i_generation.
343
Theodore Ts'oe2a99be1999-07-19 15:48:08 +0000344E2fsck now prints a progress/completion bar (and not just a simple
345spinner) if the -C0 option is requested or if it receives a SIGUSR1
346signal. Fsck will automatically manage the (potentially muliple)
347e2fsck processes to print completion bars if it is given a -C option,
348with the right thing happening if multiple filesystems are being
349checked in parallel.
350
351Mke2fs now has better automatic hueristics to determine the filesystem
352parameters to be used for a particular filesystem. Added a new option
353-T which allows the user to specify how the filesystem is to be used,
354which helps mke2fs do a better job selecting the filesystem parameters.
355
Theodore Ts'oa39f3ef1999-07-20 02:02:40 +0000356Mke2fs now creates revision 1 filesystems by default, and with the
357sparse superblock feature enabled. The sparse superblock feature is
Theodore Ts'o8a31ffe1999-10-23 03:33:15 +0000358not understood by Linux 2.0 kernels, so they will only allow read-only
359mounts of filesystems with this sparse superblocks.
Theodore Ts'oa39f3ef1999-07-20 02:02:40 +0000360
Theodore Ts'o6d53db31999-07-03 20:52:21 +0000361Fix bug where if /dev/null couldn't be opened (should never happen),
362e2fsck would hang in a tight loop.
363
364Make e2fsck handle the case where /lost+found isn't a directory.
365
366E2fsck now uses mallinfo if it exists to get accurate statistics about
367its memory usage.
368
369Fix bug in e2fsck where it wouldn't check to see if a disconnected
370inode had any problems before connecting it to /lost+found.
371
372Add check to e2fsck so it makes sure that total number of inodes in
373the filesystem is a sane number.
374
375Fix fencepost error when clearing an the end of the block bitmap which
376caused the last block in the bitmap not to get cleared.
377
378Cleaned up a number of messages in e2fsck:
379 * The message "Group's #'s copy of the group descriptor..."
380 was fixed so that the correct number would be displayed.
381 * Added missing space in the "disk write-protected" error messsage
382 * Cleaned up the error message printed when a non-interactive
383 e2fsck needs to abort a check because the filesystem
384 appears to be mounted.
385
386Added a new command-line utility, uuidgen, which will create and print
387a UUID.
388
389Make debugfs's icheck command more robust by checking to make sure an
390inode has valid blocks before interarting over the inode's blocks.
391
392UUID generation now uses a random-based scheme whenever possible to
393prevent potential privacy problems.
394
395Man pages for all of the UUID functions in the lirbary were added.
396
397Fixed bug in fsck so it won't coredump if a filesystem not in
398/etc/fstab is given to it.
399
400Fsck now understands the UUID=xxxx and LABEL=yyyy forms in /etc/fstab
401that most of the other mount utilities understands.
402
403Mke2fs will make a filesystem even if it appears mounted if the force
404option is given.
405
406Dumpe2fs has new command-line options which allow a filesystem expert
407to specify the superblock and blocksize when opening a filesystem.
408This is mainly useful when examining the remains of a toasted
409filesystem.
410
411The badblocks program has been updated to display correctly on disks
412with large block numbers.
413
Theodore Ts'oe2a99be1999-07-19 15:48:08 +0000414The badblocks program no longer gives spurious errors when errors
415occur on non-block boundaries, which is common if the blocksize is
416larger than 1k.
417
Theodore Ts'o6d53db31999-07-03 20:52:21 +0000418Mke2fs will sync the disk device every MKE2FS_SYNC block groups if the
419MKE2FS_SYNC environment variable is set. This is to work around a VM
420bug in the 2.0 kernel. I've heard a report that a RAID user was able
Theodore Ts'oa39f3ef1999-07-20 02:02:40 +0000421to trigger it even using a 2.2 kernel, but hopefully it will not be
422needed for most Linux 2.2 users.
Theodore Ts'o6d53db31999-07-03 20:52:21 +0000423
424Fixed miscellaneous documentation and man pages.
425
426Programmer's notes:
427-------------------
428
429Cleaned up functions such as pass1_get_blocks, pass1_read_inode which
430in e2fsck's pass1.c really should have been static.
431
432The return value of the uuid_compare() function was changed to make it
433match with the convetions used by strcmp, memcmp, and Paul Leach's
434UUID sample document.
435
436The "make depend" process has now been made more automated; it now
437automatically word-wraps the dependencies, and only replaces source
438Makefile.in if there has been a change in the dependencies. Also, a
439top-level "make depend" now recurses through all the subdirectories
440automatically.
441
442The Makefile in .../util has been changed so that subst is built using
443the native C compiler during a cross-compilation, since the subst
444program is only used during the build process. Also add an explicit
445rule to build util/subst by cd'ing to the correct directory and
446running Makefile.
447
448The man directories are defined in terms mandir, so that the configure
449script can override the location of the manual pages.
450
451The config files have been updated to recognize new machine types for
452both the i386 and alpha families.
453
454Fsck has been modified so that it will accurately create an
455fsck_instance even when the noexecute flag is set. This allows for
456accurate debugging of the fsck pass structure. Also, when the verbose
457flag is given twice, fsck will print debugging information about when
458fsck is waiting for jobs to finish.
459
460
Theodore Ts'o14790ed1999-01-12 23:32:52 +0000461E2fsprogs 1.14 (January 9, 1999)
462================================
463
464Fix the fstab parsing code so that it can handle blank lines and
465comment characters. Also, missing pass numbers need to be treated as
466zero.
467
468Fixed a bug in e2fsck where under some circumstances (when e2fsck
469needs to restart processing after fixing an egregious inconsistency)
470it would try to access already freed memory.
471
472E2fsck now prints non-printable characters in directory entries and
473pathnames using '^' and 'M-' notation.
474
475Fixed chattr so that it will ignore symbolic links when doing
476recursive descent traversals. For both chattr and lsattr, no longer
477print the version string unless the -V option is given.
478
479Allow the system administrator to directly specify the number of
480inodes desired in the filesystem, for some special cases where this is
481necessary.
482
483Fix portability problems so that e2fsprogs can be compiled under Linux
4841.2 systems and Solaris systems.
485
486Update the config.guess file with a more recent version that will
487identify newer Linux platforms.
488
489Programmer's notes
490------------------
491
492Ext2fs_read_inode and ext2fs_write_inode will now return an error if
493an inode number of zero is passed to them.
494
Theodore Ts'o556ad131998-12-19 08:10:58 +0000495E2fsprogs 1.13 (December 15, 1998)
496==================================
497
498Fixed a bug in debugfs where an error messages weren't getting printed
499when the ext2 library routines to read inodes returned errors in the
500stat, cmri and rm commands.
501
502Fixed a bug in mke2fs so that if a ridiculous inode ratio parameter is
503provided, it won't create an inode table smaller than the minimum
504number of inodes required for a proper ext2 filesystem.
505
506Fsck now parses the /etc/fstab file directly (instead of using
507getmntent()), so that it can distinguish between a missing pass number
508field and pass number field of zero. This caused problems for
509diskless workstations where all of the filesystems in /etc/fstab have
510an explicit pass number of zero, and fsck could not distinguish this
511from a /etc/fstab file with missing pass numbers.
512
513E2fsck will create a /lost+found directory if there isn't one in the
514filesystem, since it's safer to create the lost+found directory before
515it's needed.
516
517Fixed e2fsck so that it would detect bogus immutable inodes which
518happen to be sockets and FIFO files, and offer to clear them.
519
520If a filesystem has multiple reasons why it needs to be checked, and
521one of the reasons is that it is uncleanly mounted, e2fsck will print
522that as the reason why the filesystem is being checked.
523
524Cleaned up the output routines of mke2fs so that it doesn't overflow
525an 80 column display when formating really big filesystems.
526
527Added a sanity check to e2fsck to make sure that file descriptors 0,
5281, 2 are open before opening the hard disk. This avoids a problem
529where a broken program might exec e2fsck with those file descriptors
530closed, which would cause disastrous results if the kernel returns a
531file descriptor for the block device which is also used by FILE *
532stdout.
533
534Fixed up the e2fsck progress reporting functions so that the values
535reliably reach 100% at the completion of all of the e2fsck passes.
536
537Fixed minor documentation bugs in man pages and usage messages.
538
539Programmer's notes:
540-------------------
541
542Fixed a number of lint warnings in the ext2fs library and potential
543portability problems from other OS's header files that might define
544CPP macros for names like "max" and "min".
545
546ext2fs_badblocks_list_add() has been made more efficient when it needs
547to grow the bad blocks list.
548
549Fixed a bug in e2fsck which caused it to dereference a freed pointer
550just before exiting.
551
552Fixed the substition process for generating the mk_cmds and compile_et
553scripts so that they will work outside of the build tree.
554
555Add sanity check to e2fsck so that if an internal routine
556(ext2fs_get_dir_info) returns NULL, avoid dereferencing the pointer
557and causing a core dump. This should never happen, but...
558
Theodore Ts'oa5696711998-07-09 05:38:07 +0000559E2fsprogs 1.12 (July 9, 1998)
Theodore Ts'o21d53851998-02-21 03:14:50 +0000560==================================
561
562E2fsprogs now works with glibc (at least with the version shipped wtih
563RedHat 5.0). The ext2fs_llseek() function should now work even with
564i386 ELF shared libraries and if llseek() is not present. We also
565explicitly do a configure test to see if (a) llseek is in libc, and
566(b) if llseek is declared in the system header files. (See standard
567complaints about libc developers don't understand the concept of
568compatibility with previous versions of libc.)
569
Theodore Ts'oc9833a61998-07-05 19:37:53 +0000570The ext2fs library now writes out the block group number in each of
571the superblock copies. This makes it easier to automatically
572determine the starting block group of the filesystem when the block
573group information is trashed.
574
575Added support for the EXT2_FEATURE_INCOMPAT_FILETYPE feature,
Theodore Ts'o101c84f1998-03-24 16:27:11 +0000576which means that e2fsprogs will ignore the high 8 bits of the
577directory entry's name_len field, so that it can be used for other
578purposes.
579
580Added support for the EXT2_FEATURE_RO_COMPAT_LARGE_FILE feature.
581E2fsprogs will now support filesystems with 64-bit sized files.
582
583Added support for the EXT2_FEATURE_COMPAT_DIR_PREALLOC feature.
584
Theodore Ts'o21d53851998-02-21 03:14:50 +0000585Added new program "e2label", contributed by Andries Brouwer. E2label
586provides an easy-to-use interface to modify the filesystem label.
587
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +0000588Fixed bug so that lsattr -v works instead of producing a core dump.
589
Theodore Ts'o21d53851998-02-21 03:14:50 +0000590Fixed a minor bug in mke2fs so that all groups with bad superblock
591backup blocks are printed (not just the first one).
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +0000592
593Mke2fs will check the size of the device, and if the user specifies a
594filesystem size larger than the apparent size of the device it will
595print a warning message and ask if the user wants to proceed.
596
Theodore Ts'oc9833a61998-07-05 19:37:53 +0000597E2fsck has a new option -C, which sends completion information to the
598specified file descriptor. For the most part, this is intended for
599programs to use, although -C 0 will print a spinning character to the
600stdout device, which may be useful for users who want to see something
601happening while e2fsck goes about its business.
602
Theodore Ts'o21d53851998-02-21 03:14:50 +0000603Fixed a bug in e2fsck which could cause a core dump when it needs to
604expand the /lost+found directory, and sometimes the bitmaps haven't
605been merged in. Also fixed a related bug where ext2fs_write_dir_block
606was used to write out a non-directory block. (Which would be bad on a
607non-Intel platform with byte swapping going on.)
608
609Fixed bug in e2fsck where it would print a "programming error" message
610instead of correctly identifying where a bad block was in used when
611the bad block was in a non-primary superblock or block group
612descriptor. Also fixed a related bug when sparse superblocks are in
613use and there is a bad block where a superblock or block group
614descriptor would have been in a group that doesn't include a
615superblock.
616
617Fixed a bug in e2fsck (really in libext2fs's dblist function) where if
618the block group descriptor table is corrupt, it was possible to try to
619allocate a huge array, fail, and then abort e2fsck.
620ext2fs_get_num_dirs() now sanity checks the block group descriptor,
621and subsitutes reasonable values if the descriptors are obviously bogus.
622
623If e2fsck finds a device file which has the immutable flag set and the
624i_blocks beyond the normal device number are non-zero, e2fsck will
625offer to remove it, since it's probably caused by garbage in the inode
626table.
627
628When opening a filesystem, e2fsck specially checks for the EROFS error
629code, and prints a specific error message to the user which is more
630user friendly.
631
632If the filesystem revision is too high, change the e2fsck to print
633that this is either because e2fsck is out of date, or because the
634superblock is corrupt.
635
636E2fsck now checks for directories that have duplicate '.' and '..'
637entries, and fixes this corruption.
638
639E2fsck no longer forces a sync of the filesystem (with attendant sleep
640calls) at all times. The ext2fs_flush() function now performs a sync
641only if it needed to write data blocks to disk.
642
643Fixed a minor bug in e2fsck's pass1b's file cloning function, where
644certain errors would not be properly reported.
645
646Updated and expanded a few points in the man pages which users
647complained wheren't explicit enough.
648
649Added special case byte-swapping code if compiling on the PowerPC, to
650accomodate the strange big-endian variant of the ext2 filesystem that
651was previously used on the PowerPC port.
652
653
654Programmer's notes:
655-------------------
656
657Removed C++ keywords from the ext2fs libraries so that it could be
658compiled with C++.
659
660E2fsck's internal organization has now been massively reorganized so
661that pass*.c don't have any printf statements. Instead, all problems
662are reported through the fix_problem() abstraction interface. E2fsck
663has also been revamped so that it can be called as a library from a
664application.
665
666Added new fileio primitives in libext2fs for reading and writing
667files on an unmounted ext2 filesystem. This interface is now used by
668debugfs.
669
670Added a new libext2fs function for mapping logical block numbers of
671a file to a physical block number.
672
673Added a new libext2fs function, ext2fs_alloc_block(), which allocates
674a block, zeros it, and updates the filesystem accounting records
675appropriately.
676
677Added a new libext2fs function, ext2fs_set_bitmap_padding(), which
678sets the padding of the bitmap to be all one's. Used by e2fsck pass 5.
679
680The libext2fs functions now use a set of memory allocation wrapper
681functions: ext2fs_get_mem, ext2fs_free_mem, and ext2fs_resize_mem,
682instead of malloc, free, and resize. This makes it easier for us to
683be ported to strange environments where malloc, et. al. aren't
684necessarily available.
685
686Change the libext2fs fucntion to return ext2-specific error codes
687(EXT2_DIR_EXISTS and EXT2_DB_NOT_FOUND, for example) instead of using
688and depending on the existence of system error codes (such as EEXIST
689and ENOENT).
690
691Renamed io.h to ext2_io.h to avoid collision with other OS's header
692files.
693
694Add protection against ext2_io.h and ext2fs.h being included multiple
695times.
696
697The types used for memory lengths, etc. have been made more portable.
698In generla, the code has been made 16-bit safe. Added Mark
699Habersack's contributed DOS disk i/o routines.
700
701Miscellaneous portability fixes, including not depending on char's
702being signed.
703
704The io_channel structure has a new element, app_data, which is
705initialized by the ext2fs routines to contain a copy of the filesystem
706handle.
707
708ext2fs_check_directory()'s callback function may now return the error
709EXT2_ET_CALLBACK_NOTHANDLED if it wishes ext2fs_check_directory() to
710really do the checking, despite the presence of the callback function.
711
712
Theodore Ts'obc210071997-06-17 05:41:36 +0000713E2fsprosg 1.11 (June 17, 1997)
714==============================
715
716Fixed e2fsck to detect (previously ignored) conflicts between the
717superblock or block group descriptors and block bitmaps, inode
718bitmaps, and inode tables.
719
720Fixed bug in e2fsck so that when the message printed out when a block
721or inode bitmap conflicts with other data, it has the correct group
722number.
723
724Fixed bug in e2fsck and mke2fs where the blocksize wasn't being passed
725to badblocks. This meant that not all of the filesystem was being
726tested for bad blocks!
727
728Fixed an array boundary overrun case which cropped up in
729ext2fs_badblocks_list_test when a user tried running "mke2fs -c
730-b 4096".
731
732Adjusted the number of columns printed by mke2fs when displaying the
733superblock backups to avoid running over 80 columns when making a
Theodore Ts'o21d53851998-02-21 03:14:50 +0000734really big filesystem.
Theodore Ts'obc210071997-06-17 05:41:36 +0000735
736Fixed up the man pages for e2fsck, debugfs, badblocks, chattr,
737dumpe2fs, fsck, mke2fs, and tune2fs (typos and other minor grammar
738fixes), thanks to some suggestions from Bill Hawes (whawes@star.net).
739
740Programmer's notes:
741-------------------
742
743Fixed install rule in lib/ss so that ss_err.h is actually getting
744installed.
745
746Fixed bug in ext2fs_copy_bitmap; the destination bitmap wasn't getting
747bassed back to the caller.
748
749Fixed bug in ext2fs_inode_scan_goto_blockgroup; it had not been
750setting the current inode number (which meant this function wasn't
751working at all).
752
753Fixed bug in ext2fs_resize_generic_bitmap; it had not be zeroing all
754blocks in the bitmap when increasing the size of the bitmap.
755
756Changed the initial number of blocks allocated by ext2fs_init_dblist()
757to be more realistic.
758
759Added a new function ext2fs_allocate_group_table, which sets up the
760group descriptor information (and allocates inode and block bitmaps,
761and inode tables for a particular group). The function was created by
762factoring out code form ext2fs_allocate_tables().
763
764Added a new function ext2fs_move_blocks which takes a bitmap of the
765blocks to be moved, and moves them to another location on the
766boardboard.
767
768Make the unix_io channel's io_channel_flush implementation calls sync()
769to to flush the kernel buffers to disk.
770
771Added a new function ext2fs_dblist_count returns the number of
772directory blocks in dblist.
773
774
Theodore Ts'oae851481997-04-29 18:13:24 +0000775E2fsprogs 1.10 (April 24, 1997)
776===============================
777
778Mke2fs once again defaults to creating revision #0 filesystems, since
779people were complaining about breaking compatibility with 1.2 kernels.
780Warning messages were added to the mke2fs and tune2fs man pages that
781the sparse superblock option isn't supported by most kernels yet (1.2
782and 2.0 both don't support parse superblocks.)
783
784Added new flag to mke2fs, -R <raid options>, which allows the user to
785tell mke2fs about the RAID configuration of the filesystem. Currently
786the only supported raid option is "stride" which specifies the width
787of the RAID stripe.
788
789Fixed bug in e2fsck where pass1b would bomb out if there were any
790blocks marked bad in the inode table.
791
792Fixed rare bug in mke2fs where if the user had a very unlucky number
793of blocks in a filesystem (probability less than .002) the resulting
794filesystem would be corrupt in the last block group.
795
796Fixed bug where if e2fsck tried to allocate a block to fix a
797filesystem corruption problem and the filesystem had no free blocks,
798ext2fs_new_block() would loop forever.
799
800The configure script now checks explicitly to see if "-static" works,
801since that can't be assumed to be true --- RedHat doesn't install
802libc-static by default.
803
804Fixed bug in libext2's block iterator functions where under some
805cirmcustances, file with holes would cause the bcount parameter to the
806callback function to be incorrect. This bug didn't affect any of
807e2fsprogs programs, but it was discovered by Paul Mackerras, the
808author of the PPC boot loader.
809
810Removed use of static variables to store the inode cache in libext2fs.
811This caused problems if more than one filesystem was accessed via
812libext2fs (static variables in libraries are generally a bad idea).
813Again, this didn't affect e2fsprogs programs, but it was discovered by
814Paul Mackerras.
815
816Fixed minor bugs and version code drift to assure that e2fsprogs 1.10
817will compile cleanly with 1.2.13 kernels (even with a.out shared
818libraries!)
819
820Programmer's notes:
821-------------------
822
823Added new functions to duplicate an ext2 filesystem handle, and its
824associated substructure. New functions: ext2fs_dup_handle(),
825ext2fs_copy_dblist(), ext2fs_badblocks_copy(), ext2fs_copy_bitmap().
826Other structures, such as the io_channel and the inode_cache, now have
827a ref count so that they only get freed when they are no longer used
828by any filesystem handle. (These functions were added as part of the
829development effort for an ext2 resizer).
830
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000831E2fsprogs 1.09 (April 14, 1997)
832===============================
833
834Fixed bug in mke2fs (really in lib/ext2fs/initialize.c) which was
835accidentally introduced in the 1.08 release. The overhead calculation
836was accidentally removed, which caused ext2fs_initialize() to not
837notice when the filesystem size needed to be adjusted down because
838there wasn't enough space in the last block group.
839
840Fixed bug in version parsing library routine; it was always parsing
841the library version string, instead of using the passed-in string.
842
843Clarified chattr man page.
844
Theodore Ts'o24757fa1997-04-29 17:39:27 +0000845E2fsprogs 1.08 (April 10, 1997)
846===============================
847
848E2fsck 1.07 was very slow when checking very large filesystems with a
849lot of files that had hard links (i.e., news spools). This was fixed
850by seriously revamping the icount abstraction. Added a formal test
851suite for the icount abstraction.
852
853Debugfs now has a "-l" option to the "ls" command, which lists the
854inode number, permissions, owner, group, size, and name of the files
855in the directory.
856
857Fix a bug in e2fsck where when a directory had its blocks moved to
858another location during the pass 1b processing, the directory block
859list wasn't updated, so pass 2 wouldn't check (and correct) the
860correct directory block.
861
862E2fsck will now treat inodes which contain blocks which are claimed by
863the filesystem metadata by treating them as multiply claimed blocks.
864This way, the data in those blocks can be copied to a new block during
865the pass 1b--1d processing.
866
867E2fsck will attempt to determine the correct superblock number and
868display it in the diagnostic and warning messages if possible.
869
870Add support for a new (incompatible) feature, "sparse_super". This
871feature reduces the number of blocks which contain copies of backup
872superblocks and block group descriptors. (It is only an incompatible
873feature because of a bug in ext2_free_blocks.) mke2fs and tune2fs now
874support a new -s option; e2fsck will recognize filesystems built with
875this feature turned on.
876
877E2fsck now checks the library to make sure is the correct version,
878using new library functions. (This helps to diagnose incorrectly
879installed e2fsprogs distributions.)
880
881Dumpe2fs now prints more information; its now prints the the
882filesystem revision number, the filesystem sparse_super feature (if
883present), the block ranges for each block group, and the offset from
884the beginning of the block group.
885
886Mke2fs now distributes the inode and block bitmap blok so that the
887won't be concentrated in one or two disks in RAID/striping setups.
888Also, if the user chooses a 2k or 4k block group, mke2fs will try to
889choose the largest blocks per group that be chosen. (For 2k blocks,
890you can have up to 16384 blocks/group; for 4k blocks, you can have up
891to 32768 blocks/group.) Previously mke2fs would not allow
892specification of more than 8192 blocks per group, even if you were
893using a 2k or 4k block group.
894
895Programmer's notes:
896-------------------
897
898Added a new function ext2fs_create_icount2() which takes a "hint"
899argument. This hint argument presets the icount array with the list
900of inodes which actually need to be in the icount array. This really
901helps to speed up e2fsck.
902
903Added a new function ext2fs_icount_validate() which checks the rep
904invariant for the icount structure. This is used mostly for testing.
905
906The error mesasage given when a bad inode number is passed to
907test_generic_bitmap to reflect EXT2FS_TEST_ERROR (instead of
908EXT2FS_UNMARK_ERROR).
909
910Added a new function ext2fs_set_dir_block which sets the block of a
911dblist entry, given the directory inode and blockcnt.
912
913Added a new function ext2fs_get_library_version() which returns the
914current library version, and ext2fs_parse_version_string() which
915returns a version number based on a e2fsprogs version string.
916
917The icount functions will return EINVAL if the passed in inode number
918is out of bounds.
919
Theodore Ts'o21c84b71997-04-29 16:15:03 +0000920E2fsprogs 1.07 (March 9, 1997)
921==============================
922
923E2fsck is now uses much less memory when checking really large
924filesystems (or rather, filesystems with a large number of inodes).
925Previously a filesystem with 1 million inodes required 4 megabytes of
926memory to store inode count statistics; that storage requirement has
927now been reduced to roughly half a megabyte.
928
929E2fsck can now properly deal with bad blocks appearing inside the
930inode table. Instead of trying to relocate the inode table (which
931often failed because there wasn't enough space), the inodes in the bad
932block are marked as in use.
933
934E2fsck will automatically try to use the backup superblocks if the
935primary superblocks have a bad magic number or have missing meta-data
936blocks (or meta-data blocks which are out of range).
937
938E2fsck's pass 3 has been made more efficient; most noticeable on
939filesystems with a very large number of directories.
940
941Completely revamped e2fsck's system of printing problem reports. It
942is now table driven, to make them more easily customizeable and
943extendable. Error messages which can be printed out during preen mode
944are now one line long.
945
946Fixed e2fsck's filesystem swapping code so that it won't try to swap
947fast symbolic links or deleted files.
948
949Fixed e2fsck core dumping when fixing a filesystem which has no
950directories (not even a root directory).
951
952Added a check to e2fsck to make sure that the length of every
953directory entry is a multiple of 4 (since the kernel complains if it
954isn't).
955
956Added a check to e2fsck to make sure that a directory entry isn't a
957link to the root directory, since that isn't allowed.
958
959Added a check to e2fsk to now make sure the '.' and '..' directory
960entries are null terminated, since the 2.0 kernel requires it.
961
962Added check to write_bitmaps() to make sure the superblock doesn't get
963trashed if the inode or block bitmap is marked as being block zero.
964
965Added checking of the new feature set fields in the superblock, to
966avoid dealing with new filesystem features that this package wasn't
967set up to handle.
968
969Fixed a fencepost error in ext2fs_new_block() which would occasionally
970try to allocate a block beyond the end of a filesystem.
971
972When the UUID library picks a random IEEE 802 address (because it
973can't find one from a network card), it sets the multicast bit, to
974avoid conflicting with a legitimate IEEE 802 address.
975
976Mke2fs now sets the root directory's owner to be the real uid of the
977user running mke2fs. If the real uid is non-zero, it also sets
978the group ownership of the root directory to be the real group-id of
979the user running mke2fs.
980
981Mke2fs now has more intelligent error checking when it is given a
982non-existent device.
983
984When badblocks is given the -vv option, it now updates the block that
985it is currently testing on every block.
986
987Fixed a bug in fsck where it wouldn't modify the PATH envirnoment
988currently correctly if PATH wasn't already set.
989
990Shared libraries now built with dependencies. This allows the shared
991library files to be used with dlopen(); it also makes the transition
992to libc 6 easier, since ld.so can tell which libc a particular shared
993library expects to use.
994
995Programmer's notes:
996-------------------
997
998Added new abstraction (defined in dblist.c) for maintaining a list of
999blocks which belongs to directories. This is used in e2fsck and other
1000programs which need to iterate over all directories.
1001
1002Added new functions which test to see if a contiguous range of blocks
1003(or inodes) are available. (ext2fs_*_bitmap_range).
1004
1005Added new function (ext2_inode_has_valid_blocks) which returns true if
1006an inode has valid blocks. (moved from e2fsck code).
1007
1008Added new function (ext2fs_allocate_tables) which allocates the
1009meta-data blocks as part of initializing a filesystem. (moved from
1010mke2fs code).
1011
1012Added a new I/O manager for testing purposes. It will either allow a
1013program to intercept I/O requests, or print debugging messages to
1014trace the activity of a program using the I/O manager.
1015
1016The badblocks_list functions now store the bad blocks in a sorted
1017order, and use a binary search to speed up badblocks_list_test.
1018
1019The inode scan function ext2fs_get_next_inode() may now return a soft
1020error returns: MISSING_INODE_TABLE and BAD_BLOCK_IN_INODE_TABLE in
1021those cases where part of an inode table is missing or there is a bad
1022block in the inode table.
1023
1024Added a new function (ext2fs_block_iterate2) which adds new arguments to
1025the callback function to return a pointer (block and offset) to the
1026reference of the block.
1027
1028Added new function (ext2fs_inode_scan_goto_blockgroup) which allows an
1029application to jump to a particular block group while doing an inode
1030scan.
1031
1032The badblocks list functions were renamed from badblocks_* to
1033ext2fs_badblocks_*. Backwards compatibility functions are available
1034for now, but programs should be modified to use the new interface.
1035
1036Some of the library functions were reorganized into separate files to
1037reduce the size of some programs which statically link against the
1038ext2 library.
1039
1040Put in some miscellaneous fixes for the Alpha platform.
1041
Theodore Ts'o5c576471997-04-29 15:29:49 +00001042
1043E2fsprogs 1.06 (October 7, 1996)
1044================================
1045
1046Fixed serious bug in e2fsck: if the block descriptors are bad, don't
1047smash the backup copies in ext2fs_close(). (The problem was that when
1048e2fsck -p discovered the problem, while it was closing the filesystem
1049and exiting, it was also blowing away the backup superblocks on the
1050disk, which was less than friendly.) We now make it the case that we
1051only write out the backup superblock and the back block descriptors if
1052the filesystem is completely free from problems.
1053
1054Fixed a bug in block_interate in the lib/ext2fs library which caused
1055e2fsck to fail on GNU Hurd-created filesystems.
1056
1057Add support for Linux/FT's bootloader, which actually uses
1058EXT2_BOOT_LOADER, and sets its mode bits which caused e2fsck to want
1059to clear the inode.
1060
1061Add support for the "A" (no atime update) attribute. (Note: this
1062attribute is not yet in production kernels.)
1063
1064The test suite is not automatically run when doing a "make all" from
1065the top level directory. Users should manually run "make check" if
1066they wish to run the test suite.
1067
1068Upon a preenhalt(), make the printed message more explicit that
1069running e2fsck "MANAULLY" means without the -p or -a options.
1070
1071In e2fsck, if a disconnected inode is zero-length, offer to clear it
1072instead of offering to connect it to lost+found.
1073
1074In e2fsck, if a filesystem was just unmounted uncleanly, and needs
1075e2fsck to be run over it, change e2fsck to explicitly display this
1076fact.
1077
1078For dumpe2fs and e2fsck, cause the -V option to print out which
1079version of the ext2fs library is actually getting used. (This will
1080help detect mismatches of using a 1.06 utility with a 1.05 library,
1081etc.)
1082
1083Programmers' notes:
1084-------------------
1085
1086EXT2_SWAP_BYTES was changed to EXT2_FLAG_SWAP_BYTES, which better fits
1087the naming convention.
1088
1089In ext2fs_initialize(), make sure the description for the inode bitmap
1090is correctly initialize.
1091
1092Fixed minor type typo in ext2fs_allocate_generic_bitmap();
1093
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001094E2fsprogs 1.05 (September 7, 1996)
1095==================================
1096
1097Add support for new fields in the ext2 superblock --- volume name,
1098volume UUID, and last mounted field. Dumpe2fs displays these fields,
1099tune2fs and mke2fs allows you to set them. E2fsck will automatically
1100generate a UUID for those volumes that don't have them.
1101
1102Put in support for e2fsck to recognize HURD specific ext2 features ---
1103most notably, the translator block. The e2fsprogs tools will now use
1104the creator_os field in the superblock to correctly handle different
1105OS-specific variants of the ext2 filesystem.
1106
1107E2fsck now fixes inodes which have a the deletion time set, but which
1108have a non-zero i_link_count field by offering to clear the deletion
1109time. Previously e2fsck assumed that the inode was deleted (per 0.3c
1110ext2 kernel behavior) and offered to unlink the file.
1111
1112If e2fsck sets the clean bit, but nothing else, set the exit code
1113FSCK_NONDESTRUCT. After all, e2fsck did fix a filesystem error --- it
1114set the filesystem valid bit when it was previously cleared. :-) This
1115was needed to make the HURD fsck driver happy.
1116
1117If the user refuses to attach an unattached inode, e2fsck will no
1118longer set the inode's link count. Otherwise, the inode would end up
1119getting marked as unused, which might cause loss of data later.
1120
1121Make the message issued by e2fsck when the superblock is corrupt less
1122confusing for users. It now mentions that another reason for the
1123"corrupt superblock" message might be that the partition might not be
1124an ext2 filesystem at all (it might swap, msdos filesystem, ufs, etc.)
1125
1126Make the libext2 library more robuest so that e2fsck won't coredump on
1127an illegal superblock where the blocksize is zero. (f_crashdisk is
1128the test case).
1129
1130By default, create filesystems where the default checkinterval is 6
1131months (180 days). Linux servers can be robust enough that 20 reboots
1132can be a long, long time.
1133
1134Added configure flag --enable-old-bitops, which forces the bitops to
1135use the old (native) bitmask operations. By default on the sparc
1136platform, the standard ext2 bit ordering is now used.
1137
1138Added a new feature to e2fsck to byte-swap filesystems; this can be
1139used to convert old m68k filesystems to use the standard byte-order
1140storage for the superblock, inodes, and directory blocks. This
1141function is invoked by using the '-s' option to e2fsck.
1142
1143Debugfs's "dump" command has been enhanced so that it writes out the
1144exact size of the file so that the nulls at the end of the file are
1145eliminated. The command also accept a new "-p" option which will
1146attempt preserve to preserve the ownernship, permissions, and
1147file modification/access times.
1148
1149Debugfs has two new options, -f and -R. The -R option allows the user
1150to execute a single debugfs command from the command line. The -f
1151option allows the user to specify a "command file" containing debugfs
1152commands which will get executed.
1153
1154Dumpe2fs now pretty prints the check interval, instead of just
1155printing the check interval as a number of seconds.
1156
1157Fix bugs in debugfs: the params command when no filesystem is opened
1158no longer causes a core dump. It is now possible to unlink a file
1159when a pathame containing a '/' is specified.
1160
1161Tune2fs has a new -C option which sets the number of times the
1162filesystem has been mounted.
1163
1164Fix the chattr '-v' option so that it actually works. Chattr was
1165being buggy about the -v option parsing.
1166
1167Programmers' notes:
1168-------------------
1169
1170The directory lib/uuid contains a set of library routines to generate
1171DCE compatible UUIDs.
1172
1173Extended ext2fs_namei() to handle symbolic links. Added new function
1174ext2fs_nami_follow() which will follow last symbolic link in the case
1175where the pathname points to a sym link.
1176
1177The ext2fs_block_iterate function will now return the HURD translator
1178block, if present. The new flag BLOCK_FLAG_DATA_ONLY will cause the
1179iterator to return data blocks only. The ext2fs.h file now defines
1180constants BLOCK_COUNT_IND, BLOCK_COUNT_DIND, BLOCK_COUNT_TIND, and
1181BLOCK_COUNT_TRANSLATOR, which are the magic values passed in the block
1182count field of the iterator callback function.
1183
1184The test script driver now takes an optional second argument, which is
1185the test case to be run. This allows you to run a test case without
1186needing to run the entire test suite.
1187
1188On Linux ELF systems, install the .so files in the correct places
1189(/usr/lib). The .so files must be stored in the same directory as the
1190.a files.
1191
1192Fixed miscellaneous HURD compilation issues with header file being
1193included in the right order.
1194
1195Fixed debugfs so that it resets optind to zero, not one, since setting
1196optind to zero is more correct.
1197
1198
Theodore Ts'oa4d09611997-04-29 14:28:00 +00001199E2fsprogs 1.04 (May 16, 1996)
1200=============================
1201
1202First "official" (1.03 was a limited release only) to support building
1203e2fsprogs under Linux 2.0 kernels (as well as late model 1.3 and 1.99
1204kernels).
1205
1206This package includes a RPM specs file, that it can be built using the
1207RedHat Package Manager.
1208
1209E2fsck now prints a hint that if there are lots of incorrectly located
1210inode bitmaps, block bitmaps, and inode table blocks, the user might
1211want to try using e2fsck -b 8193 first, to see if that fares any
1212better.
1213
1214For ext2 filesystem written with the hurd, debugfs will now print out
1215the translator field when printing an inode structure.
1216
1217Lots of miscellaneous linking/installation cleanups:
1218
1219 Libraries are now linked using a relative pathname, instead of
1220 relying on -L working correct. It doesn't, in many cases, including
1221 current versions of GNU ld. This guarantees that the build tree is
1222 linking with the right libraries, instead of the ones installed in
1223 /usr/lib.
1224
1225 Header files, man pages, and the et/ss shell scripts are now
1226 generated using a custom substitution script, instead of relying on
1227 the configure script. This prevents needless recompilation of
1228 files; in addition, the custom substitution script is much faster.
1229
1230 e2fsck may now be linked dynamically, by using the
1231 --enable-dynamic-e2fsck flag to configure. This is not recommended,
1232 since it increases e2fsck's dependence on other files, but some
1233 people need to save disk space, and other critical programs on their
1234 systems were being linked dynamically anyway.
1235
1236 Programs such as fsck which didn't need to be linked against
1237 libext2fs (or mke2fs which didn't need to be linked against libe2p)
1238 only link against libraries they actually need. Otherwise, those
1239 programs would require the presense of libraries that otherwise
1240 could be removed from a rescuse diskette.
1241
1242 The ss include files are now installed correctly so they can
1243 actually be used by another package.
1244
1245 If the profiling libraries are built, they are now installed on a
1246 "make install-libs".
1247
1248
Theodore Ts'o7f88b041997-04-26 14:48:50 +00001249E2fsprogs 1.03 (March 27, 1996)
1250===============================
1251
1252Change the m68k bit numbering for bitmasks to match the bit numbering
1253used by all other ext2 implementations. (This change was requested by
1254the m68k kernel development team.)
1255
1256Support (in-development) filesystem format revision which supports
1257(among other things) dynamically sized inodes.
1258
1259Fixed a bug in the ext2 library so that an intelligent error is
1260returned if mke2fs is run with a ridiculously small number of blocks
1261for a partition.
1262
1263Fixed a bug in the ext2 library which required that the device be
1264openable in read/write mode in order to determine its size. This
1265caused e2fsck -n to require read/write access when it was not
1266previously necessary.
1267
1268Fixed a bug in e2fsck which casued it to occasionally fail the test
1269suite depending on which version of the floating point library it was
1270using.
1271
1272Fixed a bug in e2fsck so that it now halts with a fatal error when
1273certain superblock consistency checks fail. Previously it continued
1274running e2fsck, with some potential confusing/damaging consequences.
1275
1276Added new flag to fsck which allows the root to be checked in parallel
1277with other filesytems. This is not the safest thing in the world to
1278do, but some system administrators really wanted it.
1279
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001280Fixed -Wall flames in lib/ss.
1281
Theodore Ts'o74becf31997-04-26 14:37:06 +00001282
1283E2fsprogs 1.02 (January 16, 1996)
1284=================================
1285
1286Fix to allow e2fsprogs to be compiled on recent 1.3 (pl45+) kernels.
1287
1288Change e2fsck to print statistics of how many non-contiguous files are
1289on the system. Note that a file which is larger than 8k blocks, it is
1290guaranteed to be non-contiguous.
1291
1292In mke2fs, print a warning message if a user tries to format a whole
1293disk (/dev/hda versus /dev/hda1). If a user really wants to format a
1294whole disk, the -F (force) option forces mke2fs to format a whole disk
1295as a filesytem.
1296
1297Fix a bug in fsck where in some cases it might start checking
1298partitions in the next pass before it finishes checking partitions in
1299the current pass. This still won't cause two partitions on the same
1300disk will be checked, so it's rarely a problem in real life.
1301
1302Patch lsattr so that it won't hang when checking a named pipe.
1303
1304Minor compilation fixes:
1305 * Fix the order of libraries that were linked in debugfs.
1306 * Allow the sources to be compiled with -ansi turned on.