2012-10-26 12:56:34 +00:00
|
|
|
# -*- Autoconf -*-
|
|
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
|
|
|
|
AC_PREREQ([2.68])
|
2012-12-07 01:20:27 +00:00
|
|
|
|
|
|
|
# Get version from file VERSION
|
|
|
|
m4_define([f2fs_tools_version], m4_esyscmd([sed -n '1p' VERSION | tr -d '\n']))
|
|
|
|
m4_define([f2fs_tools_date], m4_esyscmd([sed -n '2p' VERSION | tr -d '\n']))
|
|
|
|
m4_define([f2fs_tools_gitdate],
|
|
|
|
m4_esyscmd([git log -1 --pretty=format:%ci 2> /dev/null]))
|
|
|
|
|
|
|
|
AC_INIT([F2FS tools], [f2fs_tools_version],
|
|
|
|
[linux-f2fs-devel@lists.sourceforge.net])
|
|
|
|
|
|
|
|
AC_DEFINE([F2FS_TOOLS_VERSION], "f2fs_tools_version", [f2fs-tools version])
|
|
|
|
AC_DEFINE([F2FS_MAJOR_VERSION], m4_bpatsubst(f2fs_tools_version,
|
|
|
|
[\([0-9]*\)\(\w\|\W\)*], [\1]),
|
|
|
|
[Major version for f2fs-tools])
|
|
|
|
AC_DEFINE([F2FS_MINOR_VERSION], m4_bpatsubst(f2fs_tools_version,
|
|
|
|
[\([0-9]*\).\([0-9]*\)\(\w\|\W\)*], [\2]),
|
|
|
|
[Minor version for f2fs-tools])
|
|
|
|
|
2018-08-28 00:29:41 +00:00
|
|
|
AS_IF([test -d .git],[
|
2012-12-07 01:20:27 +00:00
|
|
|
AC_DEFINE([F2FS_TOOLS_DATE],
|
|
|
|
"m4_bpatsubst(f2fs_tools_gitdate,
|
|
|
|
[\([0-9-]*\)\(\w\|\W\)*], [\1])",
|
2018-08-28 00:29:41 +00:00
|
|
|
[f2fs-tools date based on Git commits])],[
|
2012-12-07 01:20:27 +00:00
|
|
|
AC_DEFINE([F2FS_TOOLS_DATE],
|
|
|
|
"f2fs_tools_date",
|
2018-08-28 00:29:41 +00:00
|
|
|
[f2fs-tools date based on Source releases])])
|
2012-12-07 01:20:27 +00:00
|
|
|
|
2013-01-25 08:20:16 +00:00
|
|
|
AC_CONFIG_SRCDIR([config.h.in])
|
2012-12-12 02:59:16 +00:00
|
|
|
AC_CONFIG_HEADER([config.h])
|
2013-01-25 08:20:16 +00:00
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
2012-12-12 02:55:42 +00:00
|
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
2012-12-12 02:57:11 +00:00
|
|
|
AM_INIT_AUTOMAKE([foreign tar-pax dist-xz])
|
2013-01-25 08:20:16 +00:00
|
|
|
|
2017-01-13 08:02:02 +00:00
|
|
|
# Test configure options.
|
|
|
|
AC_ARG_WITH([selinux],
|
|
|
|
AS_HELP_STRING([--without-selinux],
|
2017-03-05 13:05:01 +00:00
|
|
|
[Ignore presence of libselinux and disable selinux support]))
|
|
|
|
|
|
|
|
AC_ARG_WITH([blkid],
|
|
|
|
AS_HELP_STRING([--without-blkid],
|
|
|
|
[Ignore presence of libblkid and disable blkid support]))
|
2017-01-13 08:02:02 +00:00
|
|
|
|
2012-10-26 12:56:34 +00:00
|
|
|
# Checks for programs.
|
|
|
|
AC_PROG_CC
|
2013-01-25 08:20:16 +00:00
|
|
|
AC_PROG_LIBTOOL
|
|
|
|
AC_PATH_PROG([LDCONFIG], [ldconfig],
|
|
|
|
[AC_MSG_ERROR([ldconfig not found])],
|
|
|
|
[$PATH:/sbin])
|
2012-10-26 12:56:34 +00:00
|
|
|
|
|
|
|
# Checks for libraries.
|
2012-12-12 02:53:28 +00:00
|
|
|
PKG_CHECK_MODULES([libuuid], [uuid])
|
2017-01-13 08:02:02 +00:00
|
|
|
|
|
|
|
AS_IF([test "x$with_selinux" != "xno"],
|
|
|
|
[PKG_CHECK_MODULES([libselinux], [libselinux],
|
|
|
|
[have_selinux=yes], [have_selinux=no])],
|
|
|
|
[have_selinux=no]
|
|
|
|
)
|
|
|
|
|
|
|
|
AS_IF([test "x$have_selinux" = "xyes"],
|
2016-10-22 20:06:54 +00:00
|
|
|
[AC_DEFINE([HAVE_LIBSELINUX], [1], [Use libselinux])],
|
2017-01-13 08:02:02 +00:00
|
|
|
[AS_IF([test "x$with_selinux" = "xyes"],
|
|
|
|
[AC_MSG_ERROR([selinux support requested but libselinux not found])]
|
|
|
|
)]
|
|
|
|
)
|
2012-10-26 12:56:34 +00:00
|
|
|
|
2017-03-05 13:05:01 +00:00
|
|
|
AS_IF([test "x$with_blkid" != "xno"],
|
|
|
|
[PKG_CHECK_MODULES([libblkid], [blkid],
|
|
|
|
[have_blkid=yes], [have_blkid=no])],
|
|
|
|
[have_blkid=no]
|
|
|
|
)
|
|
|
|
|
|
|
|
AS_IF([test "x$have_blkid" = "xyes"],
|
|
|
|
[AC_DEFINE([HAVE_LIBBLKID], [1], [Use blkid])],
|
|
|
|
[AS_IF([test "x$with_blkid" = "xyes"],
|
|
|
|
[AC_MSG_ERROR([blkid support requested but libblkid not found])]
|
|
|
|
)]
|
|
|
|
)
|
|
|
|
|
2012-10-26 12:56:34 +00:00
|
|
|
# Checks for header files.
|
2017-11-14 18:53:32 +00:00
|
|
|
AC_CHECK_HEADERS(m4_flatten([
|
|
|
|
attr/xattr.h
|
|
|
|
byteswap.h
|
|
|
|
fcntl.h
|
|
|
|
linux/blkzoned.h
|
|
|
|
linux/falloc.h
|
|
|
|
linux/fs.h
|
|
|
|
linux/hdreg.h
|
|
|
|
linux/limits.h
|
|
|
|
linux/posix_acl.h
|
|
|
|
linux/types.h
|
|
|
|
linux/xattr.h
|
|
|
|
mntent.h
|
|
|
|
scsi/sg.h
|
|
|
|
stdlib.h
|
|
|
|
string.h
|
|
|
|
sys/acl.h
|
|
|
|
sys/ioctl.h
|
|
|
|
sys/syscall.h
|
|
|
|
sys/mount.h
|
|
|
|
sys/sysmacros.h
|
2018-05-01 20:54:25 +00:00
|
|
|
sys/utsname.h
|
2017-11-14 18:53:32 +00:00
|
|
|
sys/xattr.h
|
|
|
|
unistd.h
|
|
|
|
]))
|
2012-10-26 12:56:34 +00:00
|
|
|
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_C_INLINE
|
|
|
|
AC_TYPE_INT32_T
|
|
|
|
AC_TYPE_INT8_T
|
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
|
|
|
|
# Checks for library functions.
|
|
|
|
AC_FUNC_GETMNTENT
|
2012-12-12 02:52:24 +00:00
|
|
|
AC_CHECK_FUNCS_ONCE([
|
2017-11-14 18:53:32 +00:00
|
|
|
add_key
|
2015-03-10 18:53:17 +00:00
|
|
|
fallocate
|
2017-11-14 18:53:32 +00:00
|
|
|
fsetxattr
|
|
|
|
fstat
|
|
|
|
fstat64
|
2012-10-29 22:38:59 +00:00
|
|
|
getmntent
|
2017-11-14 18:53:32 +00:00
|
|
|
keyctl
|
|
|
|
llseek
|
|
|
|
lseek64
|
2012-10-29 22:38:59 +00:00
|
|
|
memset
|
2017-11-14 18:53:32 +00:00
|
|
|
setmntent
|
2012-12-12 02:52:24 +00:00
|
|
|
])
|
2012-10-29 22:38:59 +00:00
|
|
|
|
2014-12-25 17:52:00 +00:00
|
|
|
AS_IF([test "$ac_cv_header_byteswap_h" = "yes"],
|
|
|
|
[AC_CHECK_DECLS([bswap_64],,,[#include <byteswap.h>])])
|
|
|
|
|
2017-11-14 18:53:32 +00:00
|
|
|
dnl
|
|
|
|
dnl Check to see if llseek() is declared in unistd.h. On some libc's
|
|
|
|
dnl it is, and on others it isn't..... Thank you glibc developers....
|
|
|
|
dnl
|
|
|
|
AC_CHECK_DECL(llseek,[AC_DEFINE(HAVE_LLSEEK_PROTOTYPE, 1,
|
|
|
|
[Define to 1 if llseek declared in unistd.h])],,
|
|
|
|
[#include <unistd.h>])
|
|
|
|
dnl
|
|
|
|
dnl Check to see if lseek64() is declared in unistd.h. Glibc's header files
|
|
|
|
dnl are so convoluted that I can't tell whether it will always be defined,
|
|
|
|
dnl and if it isn't defined while lseek64 is defined in the library,
|
|
|
|
dnl disaster will strike.
|
|
|
|
dnl
|
|
|
|
dnl Warning! Use of --enable-gcc-wall may throw off this test.
|
|
|
|
dnl
|
|
|
|
dnl
|
|
|
|
AC_CHECK_DECL(lseek64,[AC_DEFINE(HAVE_LSEEK64_PROTOTYPE, 1,
|
|
|
|
[Define to 1 if lseek64 declared in unistd.h])],,
|
|
|
|
[#define _LARGEFILE_SOURCE
|
|
|
|
#define _LARGEFILE64_SOURCE
|
|
|
|
#include <unistd.h>])
|
|
|
|
dnl
|
|
|
|
dnl Word sizes...
|
|
|
|
dnl
|
|
|
|
|
|
|
|
# AC_CANONICAL_HOST is needed to access the 'host_os' variable
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
|
|
|
|
build_linux=no
|
|
|
|
build_windows=no
|
|
|
|
build_mac=no
|
|
|
|
|
|
|
|
# Detect the target system
|
|
|
|
case "${host_os}" in
|
2018-06-13 17:48:34 +00:00
|
|
|
linux*|uclinux*)
|
2017-11-14 18:53:32 +00:00
|
|
|
build_linux=yes
|
|
|
|
;;
|
|
|
|
cygwin*|mingw*)
|
|
|
|
build_windows=yes
|
|
|
|
;;
|
|
|
|
darwin*)
|
|
|
|
build_mac=yes
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
AC_MSG_ERROR(["OS $host_os is not supported"])
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Pass the conditionals to automake
|
|
|
|
AM_CONDITIONAL([LINUX], [test "$build_linux" = "yes"])
|
|
|
|
AM_CONDITIONAL([WINDOWS], [test "$build_windows" = "yes"])
|
|
|
|
AM_CONDITIONAL([OSX], [test "$build_mac" = "yes"])
|
|
|
|
|
2013-01-25 08:20:16 +00:00
|
|
|
# Install directories
|
2015-03-07 16:16:54 +00:00
|
|
|
#AC_PREFIX_DEFAULT([/usr])
|
|
|
|
#AC_SUBST([sbindir], [/sbin])
|
|
|
|
#AC_SUBST([sysconfdir], [/etc])
|
|
|
|
#AC_SUBST([localstatedir], [/var])
|
2018-08-20 03:04:06 +00:00
|
|
|
|
|
|
|
AC_ARG_WITH([root-libdir],
|
|
|
|
[ --with-root-libdir=DIR override location for /lib/libf2fs.so],
|
|
|
|
root_libdir=$withval,
|
|
|
|
root_libdir=NONE)dnl
|
|
|
|
|
|
|
|
if test "$root_libdir" = NONE ; then
|
|
|
|
root_libdir="$libdir"
|
|
|
|
fi
|
|
|
|
AC_SUBST(root_libdir)
|
|
|
|
|
2012-12-12 02:52:24 +00:00
|
|
|
AC_CONFIG_FILES([
|
2012-10-29 22:38:59 +00:00
|
|
|
Makefile
|
|
|
|
man/Makefile
|
2013-01-25 08:20:16 +00:00
|
|
|
lib/Makefile
|
2012-10-29 22:38:59 +00:00
|
|
|
mkfs/Makefile
|
f2fs-tools: add fsck.f2fs and dump.f2fs
fsck.f2fs checks file system consistency, but does not repair a broken
file system yet.
dump.f2fs shows the information of a specific inode and makes dump file
of SSA and SIT.
f2fs checks file system consistency as follows:
o When data about used area and its metadata are identical,
f2fs is considered consistent. To verify such consistency, we use
three bitmaps: nat_area_bitmap, sit_area_bitmap, and main_area_bitmap.
First, each bit in nat_area_bitmap corresponds to a nid in NAT.
Second, each bit in sit_area_bitmap corresponds to a valid block in a
segment. This bitmap is same to the total valid_map of f2fs_sit_entries
in SIT.
Last, each bit in main_area_bitmap corresponds to a block in main area
except meta area.
After a consistency check of each block, we set or clear the
corresponding bit of each bitmap.
From the root node, we start consistency check. The verified
information varies according to block type.
1. NODE
- Read information of node block from NAT
- Check if block address is allocated using node info.
- Check if the type of f2fs_summary related to nid in SSA is NODE.
- Update the corresponding bit in nat_area_bitmap.
- Update the corresponding bit in sit_area_bitmap.
- Set the corresponding bit in main_area_bitmap to 1.
- Then, read node block. According to its attribute, explore
inode/direct node/indirect node/double indirect node
recursively.
- If it is an inode block, we also check its xattr and hard link.
2. DATA
- Check if the type of f2fs_summary related to nid in SSA is DATA.
- Set the corresponding bits of sit_area_bitmap and
main_area_bitmap to visited
- If it is a dentry block, traverse each dentries that may be
regular
file or directory. At this time, it will check inode block again.
Finally, we verify whether
- every nat_area_bitmap is visited
- any unreachable hard link exists
- values of sit_area_bitmap and main_area_bitmap are identical
- total_valid_block_count/node_count/inode_count are correct
Usage:
o fsck.f2fs
# fsck.f2fs /dev/sdx
options:
-d debug level [default:0]
o dump.f2fs
# dump.f2fs -i [ino] /dev/sdx
# dump.f2fs -s 0~-1 /dev/sdx (SIT dump)
# dump.f2fs -a 0~-1 /dev/sdx (SSA dump)
options:
-d debug level [default:0]
-i inode no (hex)
-s [SIT dump segno from #1~#2 (decimal), for all 0~-1]
-a [SSA dump segno from #1~#2 (decimal), for all 0~-1]
Note: To use dump.f2fs, please run make install or ln -s fsck.f2fs
dump.f2fs
Signed-off-by: Changman Lee <cm224.lee@samsung.com>
Signed-off-by: Byoung Geun Kim <bgbg.kim@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
2013-07-04 08:11:32 +00:00
|
|
|
fsck/Makefile
|
2014-01-10 08:44:59 +00:00
|
|
|
tools/Makefile
|
2018-03-01 21:42:44 +00:00
|
|
|
tools/sg_write_buffer/Makefile
|
2012-12-12 02:52:24 +00:00
|
|
|
])
|
2012-10-26 12:56:34 +00:00
|
|
|
|
2015-12-09 18:30:25 +00:00
|
|
|
# export library version info for mkfs/libf2fs_format_la
|
2018-08-28 06:44:54 +00:00
|
|
|
AC_SUBST(FMT_CURRENT, 5)
|
|
|
|
AC_SUBST(FMT_REVISION, 0)
|
2015-12-09 18:30:25 +00:00
|
|
|
AC_SUBST(FMT_AGE, 0)
|
|
|
|
|
|
|
|
# export library version info for lib/libf2fs_la
|
2018-08-28 06:44:54 +00:00
|
|
|
AC_SUBST(LIBF2FS_CURRENT, 6)
|
|
|
|
AC_SUBST(LIBF2FS_REVISION, 0)
|
2015-12-09 18:30:25 +00:00
|
|
|
AC_SUBST(LIBF2FS_AGE, 0)
|
|
|
|
|
2012-10-26 12:56:34 +00:00
|
|
|
AC_OUTPUT
|