]> git.ipfire.org Git - thirdparty/util-linux.git/log
thirdparty/util-linux.git
3 years agolibblkid: (hfs) fix label use [fuzzing]
Karel Zak [Thu, 2 Jun 2022 14:02:54 +0000 (16:02 +0200)] 
libblkid: (hfs) fix label use [fuzzing]

Reported-by: Thibault Guittet <tguittet@redhat.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agolibblkid: (bsd) fix buffer pointer use [fuzzing]
Karel Zak [Thu, 2 Jun 2022 14:02:54 +0000 (16:02 +0200)] 
libblkid: (bsd) fix buffer pointer use [fuzzing]

Reported-by: Thibault Guittet <tguittet@redhat.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agolibblkid: (mac) make sure block size is large enough [fuzzing]
Karel Zak [Thu, 2 Jun 2022 14:02:54 +0000 (16:02 +0200)] 
libblkid: (mac) make sure block size is large enough [fuzzing]

Reported-by: Thibault Guittet <tguittet@redhat.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agolibblkid: (probe) fix size and offset overflows [fuzzing]
Karel Zak [Thu, 2 Jun 2022 14:02:54 +0000 (16:02 +0200)] 
libblkid: (probe) fix size and offset overflows [fuzzing]

Reported-by: Thibault Guittet <tguittet@redhat.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agoMerge branch 'fix/xfs-block-size' of https://github.com/alberand/util-linux
Karel Zak [Mon, 30 May 2022 10:07:16 +0000 (12:07 +0200)] 
Merge branch 'fix/xfs-block-size' of https://github.com/alberand/util-linux

* 'fix/xfs-block-size' of https://github.com/alberand/util-linux:
  libblkid: update documentation of BLOCK_SIZE tag
  libblkid: add FSBLOCKSIZE tag

3 years agopipesz: correct manpage issues
Nathan Sharp [Fri, 27 May 2022 02:59:44 +0000 (20:59 -0600)] 
pipesz: correct manpage issues

pipesz's manual page reflects an older version which examined all file
descriptors when --get was specified without --fd or --file.

This patch corrects this, fixes a spelling issue, and makes some
formatting tweaks to improve the clarity of some sections.

Signed-off-by: Nathan Sharp <nwsharp@live.com>
3 years agolibblkid: update documentation of BLOCK_SIZE tag
Andrey Albershteyn [Fri, 27 May 2022 10:56:27 +0000 (12:56 +0200)] 
libblkid: update documentation of BLOCK_SIZE tag

The name BLOCK_SIZE is unfortunate. This tag doesn't represent
commonly used file system block size but minimal block size
accessible by file system (sector size).

Signed-off-by: Andrey Albershteyn <aalbersh@redhat.com>
3 years agolibblkid: add FSBLOCKSIZE tag
Andrey Albershteyn [Fri, 27 May 2022 10:05:32 +0000 (12:05 +0200)] 
libblkid: add FSBLOCKSIZE tag

The FSBLOCKSIZE tag exposes file system block size in contrast to
the BLOCK_SIZE (unfortunate name) which returns minimal accessible
block size (sector size).

Signed-off-by: Andrey Albershteyn <aalbersh@redhat.com>
3 years agoAdd pipesz.1.adoc to po4a configuration
Mario Blättermann [Thu, 26 May 2022 13:04:19 +0000 (15:04 +0200)] 
Add pipesz.1.adoc to po4a configuration

3 years agoloopdev: set block_size when using LOOP_CONFIGURE
Hideki EIRAKU [Wed, 25 May 2022 03:23:16 +0000 (12:23 +0900)] 
loopdev: set block_size when using LOOP_CONFIGURE

LOOP_CONFIGURE ioctl was introduced by commit
d5fd456c88aba4fcf77d35fe38024a8d5c814686. Since the previous
implementation set partscan flag but did not set block_size with the
LOOP_CONFIGURE ioctl, an issue fixed by commit
422f0e9f206a145c59a71333dad20d38cbbfc0c4 was reappeared. Setting
block_size in the LOOP_CONFIGURE ioctl parameter fixes the issue.

Signed-off-by: Hideki EIRAKU <hdk@igel.co.jp>
3 years agoMerge branch 'taskset-mistake' of https://github.com/csbo98/util-linux
Karel Zak [Thu, 26 May 2022 07:49:29 +0000 (09:49 +0200)] 
Merge branch 'taskset-mistake' of https://github.com/csbo98/util-linux

* 'taskset-mistake' of https://github.com/csbo98/util-linux:
  Maybe there is a little mistake in do_taskset() function in taskset.c. In the first call of sched_getaffinity(), if the call is failed we should use err_affinity(ts->pid, 0) other than err_affinity(ts->pid, 1).

3 years agoMaybe there is a little mistake in do_taskset() function in taskset.c.
csbo98 [Sun, 22 May 2022 06:47:13 +0000 (14:47 +0800)] 
Maybe there is a little mistake in do_taskset() function in taskset.c.
In the first call of sched_getaffinity(), if the call is failed we should
use err_affinity(ts->pid, 0) other than err_affinity(ts->pid, 1).

3 years agominor: clarity in fstrim.timer
Sebastian Pucilowski [Fri, 20 May 2022 06:47:12 +0000 (16:47 +1000)] 
minor: clarity in fstrim.timer

3 years agopipesz: fix dead code [coverity scan]
Karel Zak [Thu, 19 May 2022 07:48:18 +0000 (09:48 +0200)] 
pipesz: fix dead code [coverity scan]

309                     if (!opt_quiet && n_opt_size > 1)
>>>     CID 378501:  Control flow issues  (DEADCODE)
>>>     Execution cannot reach this statement: "warnx(dcgettext(NULL, "usin...".
310                             warnx(_("using last specified size"));

Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agopipesz: fix minor coding style issues
Karel Zak [Wed, 18 May 2022 08:41:00 +0000 (10:41 +0200)] 
pipesz: fix minor coding style issues

* remove tailing white spaces
* use {} for while()
* fix --help indention

Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agopipesz: add bash-completion script
Nathan Sharp [Tue, 12 Apr 2022 04:59:30 +0000 (22:59 -0600)] 
pipesz: add bash-completion script

Signed-off-by: Nathan Sharp <nwsharp@live.com>
3 years agopipesz: add manpage
Nathan Sharp [Tue, 12 Apr 2022 04:59:29 +0000 (22:59 -0600)] 
pipesz: add manpage

Signed-off-by: Nathan Sharp <nwsharp@live.com>
3 years agopipesz: add tests
Nathan Sharp [Tue, 12 Apr 2022 04:59:28 +0000 (22:59 -0600)] 
pipesz: add tests

Signed-off-by: Nathan Sharp <nwsharp@live.com>
3 years agopipesz: add the pipesz utility
Nathan Sharp [Tue, 12 Apr 2022 04:59:27 +0000 (22:59 -0600)] 
pipesz: add the pipesz utility

pipesz is a utility to examine and adjust the size of pipe buffers.

It uses fctnl F_GETPIPE_SZ and F_SETPIPE_SZ to examine and resize
these buffers. This functionality is unique to Linux and was added in
version 2.6.35. Minor bugfixes were made in 4.9, but these do not
obviate the use of pipesz prior to that release.

Signed-off-by: Nathan Sharp <nwsharp@live.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agoMerge branch 'issue-1686' of https://github.com/sshambar/util-linux
Karel Zak [Wed, 18 May 2022 07:30:38 +0000 (09:30 +0200)] 
Merge branch 'issue-1686' of https://github.com/sshambar/util-linux

* 'issue-1686' of https://github.com/sshambar/util-linux:
  fstrim: Remove all skipped entries before de-duplication

3 years agoMerge branch 'patch-1' of https://github.com/neheb/util-linux
Karel Zak [Wed, 18 May 2022 07:24:04 +0000 (09:24 +0200)] 
Merge branch 'patch-1' of https://github.com/neheb/util-linux

* 'patch-1' of https://github.com/neheb/util-linux:
  meson: don't build po if no gettext

3 years agoMerge branch '1' of https://github.com/neheb/util-linux
Karel Zak [Wed, 18 May 2022 07:23:48 +0000 (09:23 +0200)] 
Merge branch '1' of https://github.com/neheb/util-linux

* '1' of https://github.com/neheb/util-linux:
  replace prefix with args
  meson: fix tzname check and simplify strsignal

3 years agomeson: don't build po if no gettext
Rosen Penev [Wed, 18 May 2022 00:04:47 +0000 (17:04 -0700)] 
meson: don't build po if no gettext

3 years agoreplace prefix with args
Rosen Penev [Mon, 16 May 2022 03:36:39 +0000 (20:36 -0700)] 
replace prefix with args

meson reference says in case of _GNU_SOURCE that args should be used.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agomeson: fix tzname check and simplify strsignal
Rosen Penev [Mon, 16 May 2022 03:24:21 +0000 (20:24 -0700)] 
meson: fix tzname check and simplify strsignal

The former needs _GNU_SOURCE under musl. The latter can just use
has_function.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agofstrim: Remove all skipped entries before de-duplication
Scott Shambarger [Thu, 12 May 2022 23:27:26 +0000 (16:27 -0700)] 
fstrim: Remove all skipped entries before de-duplication

When processing fstab entries, de-duplication is performed based on the
source before all tests on the target have been checked, resulting in
some entries being skipped when a removed duplicate with a different
target would not have been.

The fix is to move all the target checks before the source
de-duplication.

Addresses: #1686
Signed-off-by: Scott Shambarger <devel@shambarger.net>
3 years agolosetup: Fix typo for the --sector-size docs
Alberto Ruiz [Thu, 12 May 2022 21:35:21 +0000 (23:35 +0200)] 
losetup: Fix typo for the --sector-size docs

3 years agoMerge branch 'hardlink-docs' of https://github.com/ferdnyc/util-linux
Karel Zak [Wed, 11 May 2022 08:21:34 +0000 (10:21 +0200)] 
Merge branch 'hardlink-docs' of https://github.com/ferdnyc/util-linux

* 'hardlink-docs' of https://github.com/ferdnyc/util-linux:
  hardlink: Fix man page docs for '-v/--verbose'
  hardlink: Wrap -b to 80 cols, in --help
  hardlink: Move reflink options in manpage
  hardlink: Move -c option in --help
  hardlink: Document '-c' option in manpage

3 years agofix time_t format
Rosen Penev [Tue, 3 May 2022 00:53:07 +0000 (17:53 -0700)] 
fix time_t format

Use musl's define to test for 64-bit time_t.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agofix various formats
Rosen Penev [Tue, 3 May 2022 00:43:32 +0000 (17:43 -0700)] 
fix various formats

Found with -Wformat.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agohardlink: Fix man page docs for '-v/--verbose'
FeRD (Frank Dana) [Mon, 9 May 2022 21:17:57 +0000 (17:17 -0400)] 
hardlink: Fix man page docs for '-v/--verbose'

Signed-off-by: FeRD (Frank Dana) <ferdnyc@gmail.com>
3 years agohardlink: Wrap -b to 80 cols, in --help
FeRD (Frank Dana) [Mon, 9 May 2022 21:14:48 +0000 (17:14 -0400)] 
hardlink: Wrap -b to 80 cols, in --help

Signed-off-by: FeRD (Frank Dana) <ferdnyc@gmail.com>
3 years agohardlink: Move reflink options in manpage
FeRD (Frank Dana) [Mon, 9 May 2022 11:32:44 +0000 (07:32 -0400)] 
hardlink: Move reflink options in manpage

The documentation for the --reflink and --skip-reflink options
felt sort of shoe-horned into the rest of the options, in the
man page. Reorder to match where they appear in the --help output.

Signed-off-by: FeRD (Frank Dana) <ferdnyc@gmail.com>
3 years agohardlink: Move -c option in --help
FeRD (Frank Dana) [Mon, 9 May 2022 11:31:13 +0000 (07:31 -0400)] 
hardlink: Move -c option in --help

The new placement mirrors its position in the manpage, and
keeps it grouped with the individual flags for which it
acts as a shorthand.

Signed-off-by: FeRD (Frank Dana) <ferdnyc@gmail.com>
3 years agohardlink: Document '-c' option in manpage
FeRD (Frank Dana) [Mon, 9 May 2022 11:20:26 +0000 (07:20 -0400)] 
hardlink: Document '-c' option in manpage

Signed-off-by: FeRD (Frank Dana) <ferdnyc@gmail.com>
3 years agofstrim: check for ENOSYS when using --quiet-unsupported
Narthorn [Sat, 7 May 2022 05:43:02 +0000 (07:43 +0200)] 
fstrim: check for ENOSYS when using --quiet-unsupported

Some filesystems like bindfs report ENOSYS (Function not implemented)
for the trim ioctl, which should be caught by --quiet-unsupported.

3 years agoMerge branch 'meson-fixups' of https://github.com/eli-schwartz/util-linux
Karel Zak [Thu, 5 May 2022 09:12:23 +0000 (11:12 +0200)] 
Merge branch 'meson-fixups' of https://github.com/eli-schwartz/util-linux

* 'meson-fixups' of https://github.com/eli-schwartz/util-linux:
  meson: fix error in processing version for pc files
  meson: get the project version from the version-gen script

3 years agoMerge branch 'master' of https://github.com/mariobl/util-linux
Karel Zak [Thu, 5 May 2022 09:10:46 +0000 (11:10 +0200)] 
Merge branch 'master' of https://github.com/mariobl/util-linux

* 'master' of https://github.com/mariobl/util-linux:
  Add blkpr.8.adoc to po4a configuration

3 years agoMerge branch 'master' of https://github.com/jlinton/util-linux
Karel Zak [Thu, 5 May 2022 09:09:05 +0000 (11:09 +0200)] 
Merge branch 'master' of https://github.com/jlinton/util-linux

* 'master' of https://github.com/jlinton/util-linux:
  lscpu: Add Snapdragon parts

3 years agomeson: fix error in processing version for pc files
Eli Schwartz [Thu, 5 May 2022 04:16:15 +0000 (00:16 -0400)] 
meson: fix error in processing version for pc files

This awk command was copied verbatim from configure.ac, which included
non-awk syntax because configure.ac cannot contain [ literals.

Rewrite these autoconf quadrigraphs as their actual values, for meson.

Fixes always setting the micro version to "0".

3 years agomeson: get the project version from the version-gen script
Eli Schwartz [Thu, 5 May 2022 03:52:31 +0000 (23:52 -0400)] 
meson: get the project version from the version-gen script

This matches autotools and ensures that the version number is actually
reliable.

3 years agoAdd blkpr.8.adoc to po4a configuration
Mario Blättermann [Wed, 4 May 2022 18:27:24 +0000 (20:27 +0200)] 
Add blkpr.8.adoc to po4a configuration

3 years agolscpu: Add Snapdragon parts
Jeremy Linton [Wed, 4 May 2022 17:30:34 +0000 (12:30 -0500)] 
lscpu: Add Snapdragon parts

QC updated the kernel cputype.h to include the Kyro 4xx and 3xx Silver
part numbers's. Lets sync that commit and naming.

Signed-off-by: Jeremy Linton <jeremy.linton@arm.com>
3 years agolibblkid: merge FS* flags into one FSINFO
Andrey Albershteyn [Mon, 2 May 2022 15:08:33 +0000 (17:08 +0200)] 
libblkid: merge FS* flags into one FSINFO

Put BLOCK_SIZE, FSSIZE and FSLASTBLOCK tags under one FSINFO flag.
These, and probably future ones, are read directly from the
superblock (with minor post-processing). These properties are
combined under one flag to escape adding a flag per superblock
member.

Signed-off-by: Andrey Albershteyn <aalbersh@redhat.com>
3 years agolibmount: fix and improve utab update on MS_MOVE
Karel Zak [Wed, 4 May 2022 10:13:08 +0000 (12:13 +0200)] 
libmount: fix and improve utab update on MS_MOVE

* avoid double '//'

* don't update /fooxxx when /foo update requested (make sure that
  startswith() returns path terminated by '/')

* canonicalize only once the new path -- all in utab/mtab is already
  canonicalized, so after MS_MOVE we need to care about the new path
  only

* use asprintf() rather than strcpy() and strcat(), don't compose a
  new path from prefix and subdir when replace entire path

Addresses: https://github.com/util-linux/util-linux/pull/1660
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agoMerge branch 'fix-move-with-sub-mounted-trees' of https://github.com/fbuihuu/util...
Karel Zak [Wed, 4 May 2022 09:22:58 +0000 (11:22 +0200)] 
Merge branch 'fix-move-with-sub-mounted-trees' of https://github.com/fbuihuu/util-linux

* 'fix-move-with-sub-mounted-trees' of https://github.com/fbuihuu/util-linux:
  libmount: when moving a mount point, all sub mount entries in utab should also be updated

3 years agomeson: make libcap-ng dependent on setpriv
Rosen Penev [Mon, 2 May 2022 23:18:33 +0000 (16:18 -0700)] 
meson: make libcap-ng dependent on setpriv

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agomeson: get rid of get_pkgconfig_variable
Rosen Penev [Mon, 2 May 2022 23:30:26 +0000 (16:30 -0700)] 
meson: get rid of get_pkgconfig_variable

deprecated in 0.56

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge branch 'add/fslastblock' of https://github.com/alberand/util-linux
Karel Zak [Mon, 2 May 2022 13:45:30 +0000 (15:45 +0200)] 
Merge branch 'add/fslastblock' of https://github.com/alberand/util-linux

* 'add/fslastblock' of https://github.com/alberand/util-linux:
  blkid: add tests for FSLASTBLOCK tag
  blkid: add image for btrfs testing
  libblkid: add FSLASTBLOCK implementation for xfs, ext and btrfs
  libblkid: add FSLASTBLOCK field interface showing area occupied by fs

3 years agoagetty: fix prompt
Karel Zak [Mon, 2 May 2022 13:40:23 +0000 (15:40 +0200)] 
agetty: fix prompt

Reported-by: Jeff Chua <jeff.chua.linux@gmail.com>
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agologger: make sure structured data are escaped
Karel Zak [Mon, 2 May 2022 13:30:26 +0000 (15:30 +0200)] 
logger: make sure structured data are escaped

For the option --sd-param all formatting chars (" \ and ]) has to be
escaped by \. This patch also allow escape [ to make it more user
friendly.

For example

$ logger --rfc5424 --sd-id zoo@123 --sd-param 'foo="b\"A\"r"' --no-act --stderr "this is message"
<13>1 2022-05-02T15:35:00.342141+02:00 ws.net.home kzak - - [timeQuality tzKnown="1" isSynced="1" syncAccuracy="45291"][zoo@123 foo="b\"A\"r"] this is message

Reported-by: Ulrich Windl <Ulrich.Windl@rz.uni-regensburg.de>
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agolib/strutils: add ul_strchr_escaped()
Karel Zak [Mon, 2 May 2022 13:07:42 +0000 (15:07 +0200)] 
lib/strutils: add ul_strchr_escaped()

Like strchr(), but ignores escaped chars.

Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agomore: avoid infinite loop on --squeeze
Karel Zak [Mon, 2 May 2022 10:57:13 +0000 (12:57 +0200)] 
more: avoid infinite loop on --squeeze

The command 'echo | more -s' ends in infinite loop if exit-on-EOF is
disabled (default now). We need to call more_key_command() to ask for
user's reaction.

Fixes: https://github.com/util-linux/util-linux/issues/1669
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agoMerge branch 'gpt-marvell' of https://github.com/pali/util-linux
Karel Zak [Mon, 2 May 2022 10:28:45 +0000 (12:28 +0200)] 
Merge branch 'gpt-marvell' of https://github.com/pali/util-linux

* 'gpt-marvell' of https://github.com/pali/util-linux:
  libfdisk: (gpt) Add UUID for Marvell Armada 3700 Boot partition

3 years agoMerge branch 'meson' of https://github.com/neheb/util-linux
Karel Zak [Mon, 2 May 2022 10:15:32 +0000 (12:15 +0200)] 
Merge branch 'meson' of https://github.com/neheb/util-linux

* 'meson' of https://github.com/neheb/util-linux:
  meson: make libpam optional
  meson: fix tzname check
  meson: fix isnan check
  meson: add _GNU_SOURCE for sighandler_t
  meson: fix environ search
  meson: fix cpu_set_t test
  meson: don't use run
  meson: fix compilation without systemd

3 years agoblkid: add tests for FSLASTBLOCK tag
Andrey Albershteyn [Wed, 27 Apr 2022 15:33:33 +0000 (17:33 +0200)] 
blkid: add tests for FSLASTBLOCK tag

Signed-off-by: Andrey Albershteyn <aalbersh@redhat.com>
3 years agoblkid: add image for btrfs testing
Andrey Albershteyn [Wed, 27 Apr 2022 15:29:27 +0000 (17:29 +0200)] 
blkid: add image for btrfs testing

The btrfs is one of the popular filesystem which is supported by
blkid. However, the image for 'low-probe' tests was missing. Add
115M BTRFS default image (mkfs.btrfs btrfs.img).

Signed-off-by: Andrey Albershteyn <aalbersh@redhat.com>
3 years agolibblkid: add FSLASTBLOCK implementation for xfs, ext and btrfs
Andrey Albershteyn [Wed, 27 Apr 2022 12:46:33 +0000 (14:46 +0200)] 
libblkid: add FSLASTBLOCK implementation for xfs, ext and btrfs

Implementation of FSLASTBLOCK for most common filesystems. Most of
the fs store total number of reserved blocks in superblock.

Signed-off-by: Andrey Albershteyn <aalbersh@redhat.com>
3 years agoMerge branch 'better-bsd-compat' of https://github.com/bsdimp/util-linux
Karel Zak [Mon, 2 May 2022 10:03:49 +0000 (12:03 +0200)] 
Merge branch 'better-bsd-compat' of https://github.com/bsdimp/util-linux

* 'better-bsd-compat' of https://github.com/bsdimp/util-linux:
  BSD: Use byteswap.h and endian.h defined macos when present

3 years agoMerge branch 'master' of https://github.com/caramelli/util-linux
Karel Zak [Mon, 2 May 2022 09:59:42 +0000 (11:59 +0200)] 
Merge branch 'master' of https://github.com/caramelli/util-linux

* 'master' of https://github.com/caramelli/util-linux:
  meson: fix when HAVE_CLOCK_GETTIME is set

3 years agoMerge branch 'safe-getenv' of https://github.com/floppym/util-linux
Karel Zak [Mon, 2 May 2022 09:43:08 +0000 (11:43 +0200)] 
Merge branch 'safe-getenv' of https://github.com/floppym/util-linux

* 'safe-getenv' of https://github.com/floppym/util-linux:
  lib: allow safe_getenv to work for non-root users

3 years agomeson: make libpam optional
Rosen Penev [Mon, 2 May 2022 03:28:39 +0000 (20:28 -0700)] 
meson: make libpam optional

libpam is only needed if 4 utilities are built

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agolibfdisk: (gpt) Add UUID for Marvell Armada 3700 Boot partition
Pali Rohár [Sat, 30 Apr 2022 10:50:46 +0000 (12:50 +0200)] 
libfdisk: (gpt) Add UUID for Marvell Armada 3700 Boot partition

This GPT UUID is used by BootROM on Marvell Armada 3700 SoC. BootROM
searches for GPT partition with this UUID on attached SATA disk and loads
bootloader from it.

Marvell Armada 3700 SoC is used e.g. on popular EspressoBIN SBC board which
has relatively solid Linux support.

Information about SATA booting and this GPT partition is currently
documented only in development version of ARM Trusted-Firmware-A
documentation:

https://trustedfirmware-a.readthedocs.io/en/latest/plat/marvell/armada/build.html

It is missing in official documentation for Armada 3720 BootROM and
therefore hard to find it.

Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
3 years agomeson: fix tzname check
Rosen Penev [Sat, 30 Apr 2022 02:00:53 +0000 (19:00 -0700)] 
meson: fix tzname check

tzname is not a type but a variable. sizeof only works on types.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agomeson: fix isnan check
Rosen Penev [Sat, 30 Apr 2022 01:19:53 +0000 (18:19 -0700)] 
meson: fix isnan check

musl only has isnan as a macro, not as a function. Handle the former
case.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agomeson: add _GNU_SOURCE for sighandler_t
Rosen Penev [Sat, 30 Apr 2022 01:17:52 +0000 (18:17 -0700)] 
meson: add _GNU_SOURCE for sighandler_t

musl requires it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agomeson: fix environ search
Rosen Penev [Sat, 30 Apr 2022 01:16:17 +0000 (18:16 -0700)] 
meson: fix environ search

musl has it defined in unistd.h and hidden behind _GNU_SOURCE.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agomeson: fix cpu_set_t test
Rosen Penev [Fri, 29 Apr 2022 23:55:15 +0000 (16:55 -0700)] 
meson: fix cpu_set_t test

_GNU_SOURCE is needed here.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agomeson: don't use run
Rosen Penev [Fri, 29 Apr 2022 23:56:54 +0000 (16:56 -0700)] 
meson: don't use run

Fixes cross compilation. run is not needed anyway.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agomeson: fix compilation without systemd
Rosen Penev [Fri, 29 Apr 2022 23:53:43 +0000 (16:53 -0700)] 
meson: fix compilation without systemd

systemdsystemunitdir is used elsewhere.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoBSD: Use byteswap.h and endian.h defined macos when present
Warner Losh [Fri, 29 Apr 2022 21:29:44 +0000 (15:29 -0600)] 
BSD: Use byteswap.h and endian.h defined macos when present

Newer versions of FreeBSD will have a glibc compatible
byteswap.h. Currently, this file assumes that FreeBSD requires
bswap{16,32,64} to always be defined. This isn't the case when we're
using the byteswap.h file (which is enabled by HAVE_BYTESWAP_H
define). Assume that if byteswap.h and endian.h are present, then the
proper macros are defined.  Otherwise, assume that sys/endian.h is
present and paper over the small differences between the BSDs for this
file.

Signed-off-by: Warner Losh <imp@bsdimp.com>
3 years agomeson: fix when HAVE_CLOCK_GETTIME is set
Nicolas Caramelli [Fri, 29 Apr 2022 16:16:36 +0000 (18:16 +0200)] 
meson: fix when HAVE_CLOCK_GETTIME is set

Signed-off-by: Nicolas Caramelli <caramelli.devel@gmail.com>
3 years agolibuuid: improve cache handling
d032747 [Fri, 22 Apr 2022 08:07:46 +0000 (10:07 +0200)] 
libuuid: improve cache handling

Short running applications with a few UUID request don't need
a large cache. Therefore increment the cache size over runtime.

3 years agolsirq: improve --sort IRQ
Karel Zak [Fri, 29 Apr 2022 08:11:49 +0000 (10:11 +0200)] 
lsirq: improve --sort IRQ

IRQ column mixes numbers and text, it seems better to use strverscmp()
rather than classic strcmp().

Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=2078787
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agolibblkid: add FSLASTBLOCK field interface showing area occupied by fs
Andrey Albershteyn [Wed, 27 Apr 2022 11:24:56 +0000 (13:24 +0200)] 
libblkid: add FSLASTBLOCK field interface showing area occupied by fs

Add interface to let filesystem set FSLASTBLOCK which is basically
total number of fsblocks (area occupied by fs). Enable that field in
the 'superblocks' sample.

Signed-off-by: Andrey Albershteyn <aalbersh@redhat.com>
3 years agolib: allow safe_getenv to work for non-root users
Mike Gilbert [Tue, 26 Apr 2022 17:58:12 +0000 (13:58 -0400)] 
lib: allow safe_getenv to work for non-root users

This allows users to override settings like BLKID_FILE, as is done in
the e2fsprogs test suite.

Bug: https://bugs.gentoo.org/839825
Fixes: 035507c84b53bceb143d0923e65916cbf90979c7
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
3 years agolibblkid: fix FSSIZE docs
Karel Zak [Tue, 26 Apr 2022 08:32:05 +0000 (10:32 +0200)] 
libblkid: fix FSSIZE docs

Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agoblkid: add FSSIZE tag with tests for XFS
Andrey Albershteyn [Mon, 25 Apr 2022 15:08:39 +0000 (17:08 +0200)] 
blkid: add FSSIZE tag with tests for XFS

The FSSIZE tag was added to the libblkid. Enable this tag in blkid
and update tests golden output for XFS test cases.

Signed-off-by: Andrey Albershteyn <aalbersh@redhat.com>
3 years agolibblkid: implement FSSIZE calculation for XFS
Andrey Albershteyn [Mon, 25 Apr 2022 15:08:38 +0000 (17:08 +0200)] 
libblkid: implement FSSIZE calculation for XFS

The implementation is similar to one provided by statfs(2) + lsblk.

Signed-off-by: Andrey Albershteyn <aalbersh@redhat.com>
3 years agolibblkid: add interface for FSSIZE field
Andrey Albershteyn [Mon, 25 Apr 2022 15:08:37 +0000 (17:08 +0200)] 
libblkid: add interface for FSSIZE field

Add interface to let filesystem probe calculate and set FSSIZE.
Enable that field in the 'superblocks' sample.

Signed-off-by: Andrey Albershteyn <aalbersh@redhat.com>
3 years agoeject: update file provenance of DRIVER_SENSE in the comments
Enze Li [Wed, 20 Apr 2022 09:37:01 +0000 (17:37 +0800)] 
eject: update file provenance of DRIVER_SENSE in the comments

The location where the macro DRIVER_SENSE is defined has been placed in
include/scsi/sg.h in the kernel upstream, but the comment was not
updated in time.  This patch updates the contents of this comment.

Signed-off-by: Enze Li <lienze@kylinos.cn>
3 years agolsblk: add ID column
Karel Zak [Mon, 25 Apr 2022 13:27:07 +0000 (15:27 +0200)] 
lsblk: add ID column

Addresses: https://github.com/util-linux/util-linux/issues/1658
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agolsblk: make ID-LINK code more readable
Karel Zak [Mon, 25 Apr 2022 12:54:29 +0000 (14:54 +0200)] 
lsblk: make ID-LINK code more readable

Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agolibmount: when moving a mount point, all sub mount entries in utab should also be...
Franck Bui [Fri, 22 Apr 2022 09:30:09 +0000 (11:30 +0200)] 
libmount: when moving a mount point, all sub mount entries in utab should also be updated

Given that /run/mount/utab stores paths, this file needs to be adjusted when a
mount tree is moved.

However the moved tree may contains sub mount points in which case their utab
entries (if any) need to also be translated.

This patch takes care of that.

As suggested in https://github.com/systemd/systemd/issues/15266, a better
approach might be to store mount IDs instead of paths since mount IDs remain
unchanged when mount trees are moved.

Fixes: #1659
3 years agolsblk: add ID-LINK column
Karel Zak [Fri, 22 Apr 2022 09:20:26 +0000 (11:20 +0200)] 
lsblk: add ID-LINK column

Addresses: https://github.com/util-linux/util-linux/issues/1658
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agolsblk: remove huge all-function if-condition
Karel Zak [Fri, 22 Apr 2022 09:16:20 +0000 (11:16 +0200)] 
lsblk: remove huge all-function if-condition

Let's make it more readable and easy to extend.

Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agolibmount: cleanup UID and GIR parsing, add tests
Karel Zak [Thu, 21 Apr 2022 09:41:00 +0000 (11:41 +0200)] 
libmount: cleanup UID and GIR parsing, add tests

* parse_uid_numeric() and parse_gid_numeric() assumes zero terminated
  strings, so do not require size. The function ul_strtou64() already
  checks that the number is terminated by \0

* use rc from ul_strtou64()

* always set errno if necessary

* return -errno or -EINVAL rather than generic -1

* add --parse-{uid,gid,mode} to test_mount_utils

Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agolib/strutils: make sure ul_strtoXX functions always set errno
Karel Zak [Thu, 21 Apr 2022 09:40:43 +0000 (11:40 +0200)] 
lib/strutils: make sure ul_strtoXX functions always set errno

Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agolibmount: accept X-mount.{owner,group,mode}=
наб [Tue, 19 Apr 2022 14:56:07 +0000 (16:56 +0200)] 
libmount: accept X-mount.{owner,group,mode}=

Which take a user, group, and mode, respectively, and set them on the
target after mounting

This is vaguely similar to tmpfs(5)'s [ug]id= and mode= options,
but we POSIX-parse the user- and group names

Oft requested in systemd/zram-generator, since a common use-case
is to use it to create /tmp or an equivalent directory that needs
to be a=rwx,o+t (or a user's private temp that needs to be owned
by them) ‒ this is impossible without terrible hacks, cf.
https://github.com/systemd/zram-generator/issues/150,
https://github.com/systemd/zram-generator/issues/146, &c.

This started off as a Set{User,Group,Mode}= systemd mount unit,
but was poetterung into libmount options:
https://github.com/systemd/systemd/pull/22889

Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz>
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agotests: report failed tests
Karel Zak [Thu, 21 Apr 2022 08:59:28 +0000 (10:59 +0200)] 
tests: report failed tests

Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agodmesg: fix --since and --until
Karel Zak [Wed, 20 Apr 2022 12:42:32 +0000 (14:42 +0200)] 
dmesg: fix --since and --until

Now --since and --until requires any time field in the output (e.g.
--ctime,-T), it means "dmesg --since '1 day ago'" doesn't work, but
"dmesg -T --since '1 day ago'" works as expected.

Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=2076829
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agolib/pty: minor cleanups
Karel Zak [Tue, 19 Apr 2022 10:28:09 +0000 (12:28 +0200)] 
lib/pty: minor cleanups

Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agolib/pty: Put master PTY into non-blocking mode and buffer its output to avoid deadlock
наб [Tue, 12 Apr 2022 14:25:14 +0000 (16:25 +0200)] 
lib/pty: Put master PTY into non-blocking mode and buffer its output to avoid deadlock

If we filled the script->child buffer before the child had a chance to read any
input, we'd sleep forever in write_all(pty->master), and the child would sleep
forever in write(1<pty->slave>)

By putting the master PTY in non-blocking mode, we can poll(pty->master,
POLLOUT) and keep supplying more data as the child reads from the buffer

Fixes Debian bug #1003095

Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agobuild-sys: add blkpr to gitignore
Enze Li [Fri, 15 Apr 2022 05:55:10 +0000 (13:55 +0800)] 
build-sys: add blkpr to gitignore

Since this commit 627428a95692 ("blkpr: add block persistent
reservations command"), we introduced blkpr, but the compiled generated
binary file is not added to the gitignore, so let's do it.

v2:
- Reorder blkxxx in alphabetical order.

Signed-off-by: Enze Li <lienze@kylinos.cn>
3 years agotests: test_buffer, return EXIT_SUCCESS at the end
Anatoly Pugachev [Thu, 14 Apr 2022 07:39:54 +0000 (10:39 +0300)] 
tests: test_buffer, return EXIT_SUCCESS at the end

Signed-off-by: Anatoly Pugachev <matorola@gmail.com>
3 years agolib/strutils: improve strtoul_or_err() for negative numbers
Karel Zak [Tue, 19 Apr 2022 09:38:57 +0000 (11:38 +0200)] 
lib/strutils: improve strtoul_or_err() for negative numbers

Let's use the same code for strtoul_or_err() and strtol_or_err() as we
already use for strtoxXX_or_err() functions. It resolves issue with
negative numbers.

This problem has been discovered by "./eject -x -1 -v" where -x is
based on strtoul_or_err(), but accepts negative number (-1).

Reported-by: Enze Li <lienze@kylinos.cn>
Signed-off-by: Karel Zak <kzak@redhat.com>
3 years agoMerge branch 'meson-static' of https://github.com/eli-schwartz/util-linux
Karel Zak [Tue, 19 Apr 2022 09:14:38 +0000 (11:14 +0200)] 
Merge branch 'meson-static' of https://github.com/eli-schwartz/util-linux

* 'meson-static' of https://github.com/eli-schwartz/util-linux:
  meson: fix typoed copy-paste error that override other dependencies to blkid
  meson: pass the correct absolute path to config.h
  meson: fix static builds creating conflicting targets

3 years agoMerge branch 'fdisktestsppc64le' of https://github.com/zeha/util-linux
Karel Zak [Tue, 19 Apr 2022 09:13:03 +0000 (11:13 +0200)] 
Merge branch 'fdisktestsppc64le' of https://github.com/zeha/util-linux

* 'fdisktestsppc64le' of https://github.com/zeha/util-linux:
  tests: fdisk/bsd: update expected output for ppc64le

3 years agoMerge branch 'lsfd-ipc-fifo' of https://github.com/masatake/util-linux
Karel Zak [Tue, 19 Apr 2022 09:10:30 +0000 (11:10 +0200)] 
Merge branch 'lsfd-ipc-fifo' of https://github.com/masatake/util-linux

* 'lsfd-ipc-fifo' of https://github.com/masatake/util-linux:
  test: (lsfd) add a case for testing ENDPOINTS column of FIFOs
  test: (lsfd) extend test_mkfds to manage optional file descriptors
  lsfd: fill ENDPOINTS column for FIFOs
  lsfd: add ENDPOINTS column
  lsfd: move xstrappend and xstrputc to lsfd.h
  lsfd: add basic code for tracking IPC endpoints
  lsfd: add static modifier to nodev_table
  lsfd: delete __unused__ attribute for an used parameter

3 years agolibblkid: check fsync() return code
Karel Zak [Tue, 19 Apr 2022 07:44:07 +0000 (09:44 +0200)] 
libblkid: check fsync() return code

Since 39f5af25982d8b0244000e92a9d0e0e6557d0e17 libblkid uses
O_NONBLOCK. Now it's more obvious that check fsync() (and close())
return value after write() is always a good idea ...

Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=2074486
Signed-off-by: Karel Zak <kzak@redhat.com>