1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
|
Util-linux 2.34 Release Notes
=============================
Release highlights
------------------
hardlink -- NEW COMMAND to consolidate duplicate files via hardlinks has been
merged into util-linux. The new command is not enabled by default. The original
author is Jakub Jelinek.
The command lsblk(8) has been rewritten. Now it keeps all hierarchy of the block
devices in memory before it's printed. It allows to modify or reorder the graph.
The new features based on this functionality are:
* output de-duplication by --dedup, for example 'lsblk --dedup WWN' to
de-duplicate devices by WWN number (e.g. multi-path devices)
* merge repeating parts of the tree by --merge, see for example:
http://karelzak.blogspot.com/2018/11/lsblk-merge.html
The command umount(8) now supports user unmount for FUSE mounts. The requirement
is FUSE specific user_id=<uid> in /proc/self/mountinfo for the filesystem.
The command mount(8) now allows to use "--all -o remount". In this case all
filters (-t and -O) are applied to the table of already mounted filesystems.
The command su(1) now prefers /etc/default/su over /etc/login.defs and
ENV_SUPATH over ENV_ROOTPATH. The option --pty has been improved and it is not
marked as experimental anymore.
The command unshare(1) now allows set user ID and group ID by new command line
options -S/--setuid and -G/--setgid; and new options -R/--root and -w/--wd
allows to set root and working directory (like nsenter(1)).
The command fstrim(8) does not suppress some well known trimming warnings by
default anymore. It's necessary to explicitly use a new command line option
--quiet (recommended for crond or systemd).
The command lscpu(1) now prints 'Frequency boost' and 'Vulnerability' fields.
The caches calculation has been modified to print summary from all system caches
rather than per code numbers; and new command line option --caches lists details
about changes.
The command logger(1) merges multiple MESSAGE= lines into one journald message.
The library libblkid now does not depend on libuuid and newly supports DRBD9
detection.
The libsmartcols has been extended to support N:M relationships when print
tree-like output. This new feature is used by new lsblk --merge output.
The systemd services for fstrim and uuidd now contains hardening settings to
improve security and service isolation.
The command fstrim now trims also root filesystem on --fstab and checks for
read-only filesystems on --all and --fstab.
The package build-system now accepts --enable-asan to compile commands and
execute regression tests with addresses sanitizer.
Stable maintenance releases between v2.33 and v2.34
---------------------------------------------------
util-linux 2.33.1 [Jan 1 2019]
* https://www.kernel.org/pub/linux/utils/util-linux/v2.33/v2.33.1-ReleaseNotes
https://www.kernel.org/pub/linux/utils/util-linux/v2.33/v2.33.1-ChangeLog
util-linux 2.33.2 [Apr 4 2019]
* https://www.kernel.org/pub/linux/utils/util-linux/v2.33/v2.33.2-ReleaseNotes
https://www.kernel.org/pub/linux/utils/util-linux/v2.33/v2.33.2-ChangeLog
Changes between v2.33 and v2.34
-------------------------------
agetty:
- Fix input of non-ASCII characters in get_logname() [Stanislav Brabec]
- Return old behavior with empty logname [Stanislav Brabec]
- Switch to 8-bit processing in get_logname() for UTF-8 terminals [Stanislav Brabec]
- fix output of escaped characters [Christian Hesse]
- fix portability issues [Samuel Thibault]
bash-completion:
- add fstrim --quiet [Karel Zak]
- add hardlink completion [Sami Kerola]
- umount support relative path and ~ as home shorthands [Sami Kerola]
- update options before release [Sami Kerola]
blkid:
- (man) cleanup return code section [Karel Zak]
- fix usage() [Karel Zak]
- improve strcpy() usage [coverity scan] [Karel Zak]
- make PART_ENTRY_* tags optional (add --no-part-details) [Karel Zak]
blkzone:
- remove never read value [Karel Zak]
blockdev:
- make –-getbsz less confusing for end-users [Karel Zak]
build-sys:
- add 'make checklibdoc' [Karel Zak]
- add --with-pkgconfigdir [Karel Zak]
- add ASAN_LDFLAGS [Karel Zak]
- add PKG_INSTALLDIR fallback [Karel Zak]
- add check-programs make target [Karel Zak]
- add devel-non-asan.conf [Karel Zak]
- add info about ASAN [Karel Zak]
- do not require crypt() [Karel Zak]
- do not require dirfd() [Karel Zak]
- don't use ASAN on XOS [Karel Zak]
- enable ASAN on travis-ci [Karel Zak]
- fix crypt() detection without -lcrypt [Johannes Nixdorf]
- improve error message [Karel Zak]
- make fdisk, sfdisk, cfdisk optional (enabled by default) [Carlos Santos]
- make sure HAVE_TIMER_CREATE defined [Karel Zak]
- release++ (v2.34-rc1) [Karel Zak]
- release++ (v2.34-rc2) [Karel Zak]
- use REALTIME_LIBS for hwclock due to monotonic.c [Karel Zak]
- use __SANITIZE_ADDRESS__ rather than custom USE_CLOSE_ATEXIT [Karel Zak]
cal:
- fix Sexit and Senter [Karel Zak]
- make sure months_in_row makes sense [coverity scan] [Karel Zak]
- use standout mode on monochrome terminals [Karel Zak]
cfdisk:
- free libfdisk items [Karel Zak]
- simplify code [Karel Zak]
chcpu:
- fix memory leak [Karel Zak]
chmem:
- add initilizer [clang] [Sami Kerola]
choom:
- fix negative adjust score usage [Karel Zak]
col:
- improve error message, update regression test [Karel Zak]
- make flush_line() a little bit robust [Karel Zak]
column:
- Address fill-order confusion in documentation [dana]
- fix "maybe be" duplication [Austin English]
- make code more robust [coverity scan] [Karel Zak]
dmesg:
- correct "-n, --console-level level" example in manual page [Jean-Philippe ROMAIN]
- make strtok() use more robust [Karel Zak]
docs:
- TODO lscpu --list-caches [Karel Zak]
- add col(1) to TODO [Karel Zak]
- add link to mail list archive [Sami Kerola]
- add lsblk --merge to TODO [Karel Zak]
- add lscpu --caches to ReleaseNotes [Karel Zak]
- fix typo [Jakub Wilk]
- fix typos [codespell] [Sami Kerola]
- update AUTHORS file [Karel Zak]
- update TODO [Karel Zak]
- update v2.34-ReleaseNotes [Karel Zak]
fallocate:
- make posix_fadvise() use more readable for analyzers [Karel Zak]
fdisk:
- add note about -S and -H [Karel Zak]
- initialize buffers for get_user_reply() [coverity scan] [Karel Zak]
- make partition types uses more robust [Karel Zak]
- support CTRL+C on change-partition-type dialog [Karel Zak]
- use 2 decimal places for size in disk summary [Karel Zak]
fincore:
- remove unused variable [clang scan] [Karel Zak]
findmnt:
- (verify) check mnt_table_next_fs() return code [coverity scan] [Karel Zak]
- (verify) ignore passno for XFS [Karel Zak]
- fix filters use on --list [Karel Zak]
- keep it easy for static analyzers [Karel Zak]
fsck:
- (man) labels are available for all filesystems [Karel Zak]
fsck.cramfs:
- fix utimes() usage [Karel Zak]
- use utimes() instead of utime() that is obsolete [Sami Kerola]
fstrim:
- Add Documentation key to fstrim.service [Andreas Henriksson]
- Add hardening settings to fstrim.service [Andreas Henriksson]
- Fix fstrim_all() comment [Stanislav Brabec]
- add --quiet option to suppress error messages [Sami Kerola]
- affect only warnings by --quiet [Karel Zak]
- check for read-only devices on -a/-A [Karel Zak]
- document kernel return minlen explicitly [Wang Shilong]
- fix usage() [Karel Zak]
- get realpath before trim ioctl [Wang Shilong]
- properly de-duplicate fstrim -A [Stanislav Brabec]
- trim also root FS on --fstab [Karel Zak]
- update man page, reuse libmnt_iter [Karel Zak]
- use long options in systemd service file [Sami Kerola]
fstrim -a/-A:
- Skip read-only volumes [Stanislav Brabec]
fstrim.c:
- Remove comment about vfat not supporting fstrim [Marcos Paulo de Souza]
hardlink:
- (man) add AVAILABILITY [Karel Zak]
- add first simple tests [Ruediger Meier]
- add long options [Karel Zak]
- avoid uninitialized variables [clang scan] [Karel Zak]
- cleanup error messages, use xalloc.h [Karel Zak]
- cleanup global variables [Karel Zak]
- cleanup verbose and warning messages [Karel Zak]
- enable build with and without pcre2 [Ruediger Meier]
- fix bad formatting in hardlink.1 [Karel Zak]
- fix compiler warnings [Ruediger Meier]
- fix compiler warnings [-Wsign-compare -Wmaybe-uninitialized]] [Karel Zak]
- make code more readable [Karel Zak]
- move global variables to a control structure [Sami Kerola]
- remove \r from output [Karel Zak]
- remove typedefs [Karel Zak]
- rename function [Karel Zak]
- retire NIOBUF in favour of more common BUFSIZ [Sami Kerola]
- style indentations and license header [Ruediger Meier]
- use flexible array member rather than zero-size array [Sami Kerola]
- util-linux usage [Ruediger Meier]
hardlink, wall:
- fix variable shadowing [Sami Kerola]
hexdump:
- fix potential null pointer dereference warnings [Sami Kerola]
hwclock:
- don't use uninitialized value [coverity scan] [Karel Zak]
- use monotonic time to measure how long setting time takes [Sami Kerola]
include:
- add indirect monotonic clock id specifier [Sami Kerola]
- add no return function attribute [Sami Kerola]
include/c:
- add print_version() macro [Karel Zak]
- check returns_nonnull function attribute with __GNUC_PREREQ [Sami Kerola]
- re-add type checking in container_of() [Ruediger Meier]
- use __has_attribute [Karel Zak]
- use returns_nonnull function attribute in xalloc.h [Sami Kerola]
include/closestream:
- add close_stdout_atexit() [Karel Zak]
include/list:
- add list_entry_is_first() and list_count_entries() [Karel Zak]
include/path.h:
- remove duplicate header inclusion [Sami Kerola]
include/strutils:
- add functions to replace and remove chars from string [Karel Zak]
- fix potential null pointer dereference [Sami Kerola]
ipcs:
- check return value when read from /proc [coverity scan] [Karel Zak]
last:
- do not use non-standard __UT_NAMESIZE [Patrick Steinhardt]
- fix wtmp user name buffer overflow [asan] [Sami Kerola]
ldattach:
- Check for value of _HAVE_STRUCT_TERMIOS_C_ISPEED [Khem Raj]
lib/canonicalize:
- do restricted canonicalize in a subprocess [Rian Hunter, Karel Zak]
- fix compiler warning [-Wsign-compare] [Karel Zak]
- fix typo [Karel Zak]
- verify DM paths [coverity scan] [Karel Zak]
lib/colors:
- fix "maybe be" duplication [Austin English]
- force to "never" mode on non-terminal output [Karel Zak]
- keep static analyzer happy [coverity scan] [Karel Zak]
- remove redundant if statement [Sami Kerola]
- remove unnecessary goto [Karel Zak]
lib/fileutils:
- add xreaddir() [Karel Zak]
lib/ismounted:
- use xstrncpy() [Karel Zak]
lib/loopdev:
- differentiate between setter()s and ioctl calls [Karel Zak]
- set blocksize when create a new device [Karel Zak]
lib/loopdev.c:
- Inline loopcxt_has_device [Marcos Paulo de Souza]
- Retry LOOP_SET_STATUS64 on EAGAIN [Romain Izard]
lib/mangle:
- fix possible null pointer dereference [cppcheck] [Sami Kerola]
lib/path:
- allow to close dirfd [Karel Zak]
- consolidate ul_path_mkpath() usage [Karel Zak]
- fix possible NULL dereferencing [coverity scan] [Karel Zak]
- fix possible NULL pointer dereferencing [coverity scan] [Karel Zak]
- fix resource leak [coverity scan] [Karel Zak]
- fix ul_path_get_dirfd() usage [coverity scan] [Karel Zak]
- remove extra semi-colons [Karel Zak]
- use xstrncpy() [Karel Zak]
lib/strutils:
- keep static analyzer happy [coverity scan] [Karel Zak]
- parse_size() fix frac digit calculation [Karel Zak]
- parse_size() fix frac with zeros [Karel Zak]
- support two decimal places in size_to_human_string() output [Karel Zak]
lib/sysfs:
- add function to detect partitioned devices [Karel Zak]
- fix reference counting for parent [Karel Zak]
- use xstrncpy() [Karel Zak]
lib/timer:
- add fallback if timer_create() not available [Karel Zak]
lib/ttyutils:
- introduce get_terminal_stdfd() [Karel Zak]
libblkid:
- (bluestore) terminate magic strings array [Karel Zak]
- (ntfs) fix compiler warning [-Wpedantic] [Karel Zak]
- (silicon raid) improve checksum calculation [-Waddress-of-packed-member] [Karel Zak]
- Don't check BLKID_PROBE_INTERVAL in blkid_verify [Nikolay Borisov]
- Fix hidding typo [Andreas Henriksson]
- Set BLKID_BID_FL_VERIFIED in case revalidation is not needed [Nikolay Borisov]
- add check for DRBD9 [Roland Kammerer]
- don't ignore blkid_probe_set_magic() errors [coverity scan] [Karel Zak]
- fix detection of dm-integrity superblock [Milan Broz]
- fix detection of dm-integrity superblock version [Milan Broz]
- fix possible uninitialized value use [coverity scan] [Karel Zak]
- improve whole-disk detection when read /proc/partitions [Karel Zak]
- make partitions reference counting more robust [coverity scan] [Karel Zak]
- remove dependence on libuuid [Karel Zak]
- remove unneeded fields from struct bcache_super_block [Sami Kerola]
- stratis correct byte order [Tony Asleson]
- tiny code simplification [Karel Zak]
libfdisk:
- (bsd) improve checksum calculation [-Waddress-of-packed-member] [Karel Zak]
- (docs) add reference to v2.33 [Karel Zak]
- (dos) Use strtoul to parse the label-id [Juerg Haefliger]
- (dos) improve first unused sector for logical partitions [Karel Zak]
- (dos) rewrite fist/last free sector functions [Karel Zak]
- (gpt) add HiFive Unleashed bootloader partition UUIDs [Icenowy Zheng]
- (sgi) improve checksum calculation [-Waddress-of-packed-member] [Karel Zak]
- add comment to fdisk_set_first_lba() [Karel Zak]
- assert if self_pte() returns NULL [Sami Kerola]
- avoid division by zero [clang scan] [Karel Zak]
- avoid memory leak [coverity scan] [Karel Zak]
- properly check return code of add_to_partitions_array() [coverity scan] [Karel Zak]
- remove unused code [clang scan] [Karel Zak]
- sanity check, to prevent overlapping partitions from being partly reported as free [Fabian.Kirsch@dlr.de]
- use list_add_tail() in more robust way [Karel Zak]
libmount:
- (docs) add reference to v2.33 and v2.34 [Karel Zak]
- (fuse) follow only user_id= on umount [Karel Zak]
- (tabdiff) use list_add_tail() in more robust way [Karel Zak]
- (umount) make mnt_stat_mountpoin() usable for relative paths [Karel Zak]
- Recognize more fuse filesystems as pseudofs and netfs [Stanislav Brabec]
- Support unmount FUSE mounts [Rian Hunter, Karel Zak]
- add bpf between pseudo filesystems [Karel Zak]
- add mnt_table_{find,insert,move}_fs() [Karel Zak, Tim Hildering]
- add selinuxfs between pseudo filesystems [Karel Zak]
- add support for MS_REMOUNT on --all [Karel Zak]
- avoid possible null pointer dereference [cppcheck] [Sami Kerola]
- check table membership before adding entry [Tim Hildering]
- don't use sscanf() for fstab parsing [Karel Zak]
- don't use sscanf() for mountinfo parsing [Karel Zak]
- don't use sscanf() for swaps parsing [Karel Zak]
- export mnt_guess_system_root() by API [Karel Zak]
- fix "maybe be" duplication [Austin English]
- fix compiler warning [-Wsometimes-uninitialized] [Karel Zak]
- fix docs typo [Karel Zak]
- fix memleak on parse errors [Karel Zak]
- fix memory leak on error [coverity scan] [Karel Zak]
- improve fs referencing in tables [Tim Hildering]
- return errno on failed fstab stat() [Karel Zak]
libsmartcols:
- (docs) add reference to v2.33 and v2.34 [Karel Zak]
- (groups) improve debug messages [Karel Zak]
- (groups) improve scols_table_group_lines() args check [coverity scan] [Karel Zak]
- (groups) print group children after regular tree [Karel Zak]
- (groups) remove hardcoded const numbers [Karel Zak]
- (groups) use print functions tp calculate grpset [Karel Zak]
- add another UTF symbols [Karel Zak]
- add generic function to walk on tree [Karel Zak]
- add grouping API docs [Karel Zak]
- add grouping samples [Karel Zak]
- add is_last_child(), move is_last_column() [Karel Zak]
- add lines grouping support [Karel Zak]
- cell width calculation cleanup [Karel Zak]
- fix variable shadowing [Sami Kerola]
- fix docs [Karel Zak]
- fix groups reset, add debugs [Karel Zak]
- move buffer stuff to buffer.c [Karel Zak]
- move width calculation to separate file [Karel Zak]
- print tree also for empty cells [Karel Zak]
- remove extra ';' outside of a function [-Wextra-semi] [Sami Kerola]
- rename table_print.c to print.c [Karel Zak]
- split print.c into print.c, put.c and print-api.c [Karel Zak]
- use list_add_tail() in more robust way [Karel Zak]
- use scols_walk_* for calculations and printing [Karel Zak]
libuuid:
- fix man page typos [Seth Girvan]
logger:
- (man) add info about rewrite and authors [Karel Zak]
- (man) make more obvious that --server/socket is required [Karel Zak]
- concatenate multiple lines of MESSAGE into a single field. [Karel Zak]
- make code more robust for static analyzer [clang scan] [Karel Zak]
login:
- add support for login.defs(5) LASTLOG_UID_MAX [Karel Zak]
- retire use of __FUNCTION__ macro [Karel Zak, Sami Kerola]
login-utils/logindefs:
- clenaup API [Karel Zak]
losetup:
- keep static analyzer happy [coverity scan] [Karel Zak]
- man page has repeating words [make checkmans] [Karel Zak]
- properly use --sector-size when create a new device [Karel Zak]
- update an error message [Jeffrey Ferreira]
- use offset in warn_size() calculation [Karel Zak]
- use xstrncpy() [Karel Zak]
lsblk:
- add --dedup <column> [Karel Zak]
- add --merge [Karel Zak]
- add basic function to build devices tree [Karel Zak]
- add comments [Karel Zak]
- add devtree_get_device_or_new() [Karel Zak]
- add lsblk_device_has_dependence() [Karel Zak]
- add more debug messages [Karel Zak]
- add process_all_devices_inverse() [Karel Zak]
- allow to specify tree column [Karel Zak]
- apply --nodeps to partitions too [Karel Zak]
- check stat() return code [coverity scan] [Karel Zak]
- check ul_path_scanf() return value [coverity scan] [Karel Zak]
- cleanup device reference in the tree [Karel Zak]
- don't keep sysfs dirs open [Karel Zak]
- fix "maybe be" duplication [Austin English]
- fix devtree deallocation [Karel Zak]
- fix heap-use-after-free [Karel Zak]
- fix null pointer dereferences [Sami Kerola]
- force tree on --json --tree independently on used columns [Karel Zak]
- keep functions names consistent [Karel Zak]
- make device_get_data() more generic [Karel Zak]
- make devtree dependences more generic [Karel Zak]
- make process_partitions() more readable [Karel Zak]
- make sure __process_one_device() has proper arguments [coverity scan] [Karel Zak]
- process_one_device() refactoring [Karel Zak]
- properly initialize structs [Karel Zak]
- read queue/discard_granularity only when necessary [Karel Zak]
- remember whole-disk, remove unused struct member [Karel Zak]
- remove badly named debug interface name [Karel Zak]
- remove unncessary parent pointer [Karel Zak]
- remove unused reset_device() [Karel Zak]
- rename blkdev_cxt to lsblk_device [Karel Zak]
- rename reset_lsblk_device() to reset_device() [Karel Zak]
- rename set_device() [Karel Zak]
- reorder functions [Karel Zak]
- reuse 'removable' flag from parent [Karel Zak]
- split sysfs reading and scols table filling [Karel Zak]
- use ID_SCSI_SERIAL when available [Sven Wiltink]
- use devtree functions [Karel Zak]
- use real rather than hardcoded parent [Karel Zak]
lscpu:
- (man) make SYNOPSIS compatible with another utils [Karel Zak]
- (man) tiny changes [Karel Zak]
- Add aarch32 detection on aarch64 [Jeremy Linton]
- Add additional aarch64 models [Jeremy Linton]
- add 'Frequency boost' [Karel Zak]
- add --bytes [Karel Zak]
- add --caches [Karel Zak]
- check scols_line_set_data() return value [coverity scan] [Karel Zak]
- define libsmartcols flags for -e [Karel Zak]
- document --hex output regression (since v2.30) [Karel Zak]
- fix --caches order [Karel Zak]
- fix and document --output-all [Karel Zak]
- fix excl[] array order [Karel Zak]
- fix floating point exception [Sami Kerola]
- make lookup() use more consistent [coverity scan] [Karel Zak]
- move trailing null after removing characters from a string [Sami Kerola]
- remove extra space from field key name [Sami Kerola]
- remove redundant condition check [cppcheck] [Sami Kerola]
- rename macros and functions [Karel Zak]
- report CPU vulnerabilities [Karel Zak]
- report more usable cache sizes [Karel Zak]
- wrap default output long lines on terminal [Karel Zak]
lslogins:
- Fix discrepancies of SYS_UID_MIN [Stanislav Brabec]
- make valid_pwd() more robust [Karel Zak]
- remove duplicate NULL check [Sami Kerola]
mesg:
- avoid 'ttyname failed Success' message [Karel Zak]
misc:
- consolidate version printing and close_stdout() [Karel Zak]
mkswap:
- be more explicit about maximal number of pages [Karel Zak]
- fix page size warning message [Noel Cragg]
- use dd(1) in example rather than fallocate(1) [Karel Zak]
mount:
- (man) add note about --all to remount desc [Karel Zak]
- Do not call mnt_pretty_path() on net file systems. [Stanislav Brabec]
- fix "maybe be" duplication [Austin English]
- mount.8 clarify (no)suid behavior on file capabilities [Peter Wu]
po:
- merge changes [Karel Zak]
- update cs.po (from translationproject.org) [Petr Písař]
- update da.po (from translationproject.org) [Joe Hansen]
- update de.po (from translationproject.org) [Mario Blättermann]
- update es.po (from translationproject.org) [Antonio Ceballos Roa]
- update fr.po (from translationproject.org) [Frédéric Marchal]
- update hr.po (from translationproject.org) [Božidar Putanec]
- update ja.po (from translationproject.org) [Takeshi Hamasaki]
- update pl.po (from translationproject.org) [Jakub Bogusz]
- update pt_BR.po (from translationproject.org) [Rafael Fontenelle]
- update sv.po (from translationproject.org) [Sebastian Rasmussen]
- update uk.po (from translationproject.org) [Yuri Chornoivan]
- update zh_CN.po (from translationproject.org) [Boyuan Yang]
readprofile:
- be more explicit with used types [cppcheck] [Karel Zak]
- check input file is not empty [asan] [Sami Kerola]
renice:
- make code more readable for static analyzer [coverity scan] [Karel Zak]
rev:
- be careful with close() [Karel Zak]
rtcwake:
- fix "maybe be" duplication [Austin English]
- terminate mode and excl[] [Karel Zak]
- use poweroff if shutdown is not found [Justin Chen]
setarch:
- add new e2k subarches [Andrew Savchenko]
- avoid NULL dereference [coverity check] [Karel Zak]
- don't return address of automatic variable [Andreas Schwab]
- fix obscure sparc32bash use-case [Karel Zak]
setpriv:
- fix memory leak in local scope [coverity scan] [Karel Zak]
setterm:
- disallow "default" for --ulcolor/--hbcolor [Jakub Wilk]
- fix --hbcolor description [Jakub Wilk]
- fix bright colors for --ulcolor/--hbcolor [Jakub Wilk]
- update comments about -ulcolor/-hbcolor syntax [Jakub Wilk]
sfdisk:
- Avoid out of boundary read with readline [Tobias Stoeckmann]
- fix logical partition resize when start specified [Karel Zak]
- remove unnecessary size check [cppcheck] [Sami Kerola]
- use xstrcpy() [Karel Zak]
su:
- add note about ECHO on --pty [Karel Zak]
- be sensitive to another SIGCHLD ssi_codes [Karel Zak]
- change error message [Karel Zak]
- fix --pty terminal initialization [Karel Zak]
- make comment more friedly to 'make checkxalloc' [Karel Zak]
su-common.c:
- prefer /etc/default/su over login.defs [Stanislav Brabec]
- prefer ENV_SUPATH over ENV_ROOTPATH [Stanislav Brabec]
su/runuser:
- don't mark --pty as experimental, add it to runuser.1 too [Karel Zak]
sulogin:
- fix variable / function shadowing [cppcheck] [Sami Kerola]
swapon:
- (man) cleanup note about holes [Karel Zak]
- (man) iomap for swapfile is already supported by kernel [Karel Zak]
- be more explicit about BTRFS [Karel Zak]
- rewrite section about swapfiles [Karel Zak]
- swapon.8 mention btrfs(5) [Marcos Mello]
taskset:
- fix cpuset list parser [Karel Zak]
tastset:
- (man) add N stride for CPU lists [Karel Zak]
test:
- Adding AMD EPYC 7451 24-Core Processor [Erwan Velu]
tests:
- (hardlink) update noregex [Karel Zak]
- (hardlink) update summary output [Karel Zak]
- (kill) do not use shell build-in [Karel Zak]
- add --noskip-commands [Karel Zak]
- add --use-system-commands [Karel Zak]
- add /mnt/test/foo^Mbar to mountinfo tests [Karel Zak]
- add asan build-sys test [Karel Zak]
- add fdisk (dos) first sector dialog test [Karel Zak]
- add missing TS_CMD_UMOUNT check [Karel Zak]
- add missing ts_check_test_command call [Karel Zak]
- add missing ts_check_test_command calls [Karel Zak]
- add test images for drbd v08/v09 [Roland Kammerer]
- auto-enable ASAN option if necessary [Karel Zak]
- build-sys update [Karel Zak]
- check for tar and {b,g}zip [Karel Zak]
- enlarge backing file for fstab-btrfs [Karel Zak]
- fix TS_ENABLE_ASAN usage [Karel Zak]
- ignore errors with enabled ASAN in python bindings [Karel Zak]
- make lsns-netnsid portable [Karel Zak]
- make sure TS_HELPER_MBSENCODE compiled [Karel Zak]
- run oids test only when uuidgen tool was built [Thomas Deutschmann]
- update build-sys output [Karel Zak]
- update fdisk outputs [Karel Zak]
- update lscpu due to 'Vulnerability' fields [Karel Zak]
- update lscpu output [Karel Zak]
- use TS_ENABLE_ASAN in tests to detect ASAN [Karel Zak]
- use subtests in fdisk/mbr-nondos-mode [Karel Zak]
timeutils:
- match today day and this year correctly [Sami Kerola]
ul:
- make sure buffers are zeroized [coverity scan] [Karel Zak]
umount:
- be more strict about --all [Karel Zak]
- fix --quiet [Karel Zak]
unshare:
- allow to set a new root [Laurent Vivier]
- allow to set user ID and group ID [Laurent Vivier]
utmpdump:
- check ftello() return value [Karel Zak]
- fix word swapping in manual page [Carlos Santos]
uuidd:
- Add Documentation key to uuidd.service [Andreas Henriksson]
- Add hardening settings to uuidd.service [Andreas Henriksson]
various:
- fix 'uninitialized when used' warnings [clang] [Sami Kerola]
vipw:
- use xstrncpy() [Karel Zak]
wall:
- make sure ut_line is not empty [Karel Zak]
- remove unnecessary warning [Karel Zak]
whereis:
- make subdirs scan more robust [Karel Zak]
- search in /(s)bin before /usr/lib [Karel Zak]
- use xstrncpy() [Karel Zak]
wipefs:
- fix variable / function shadowing [cppcheck] [Sami Kerola]
zramctl:
- use xstrncpy() [Karel Zak]
|