aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
...
* | | netstat: add support for UDP-Lite endpointsMichael Tuexen2025-10-232-11/+30
| | | | | | | | | | | | | | | | | | | | | | | | With this patch UDP-Lite endpoints are also shown per default. Reviewed by: Nick Banks MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D53252
* | | sockstat: add support for UDP-Lite endpointsMichael Tuexen2025-10-231-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | With this patch UDP-Lite endpoints are also show per default. Reviewed by: Peter Lei, Nick Banks MFC after: 3 days Relnotes: yes Differential Revision: https://reviews.freebsd.org/D53230
* | | libarchive: merge from vendor branchMartin Matuska2025-10-217-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update vendor/libarchive to 3.8.2 Important bugfixes: #2477 tar writer: fix replacing a regular file with a dir for ARCHIVE_EXTRACT_SAFE_WRITES #2659 lib: improve filter process handling #2664 zip writer: fix a memory leak if write callback error early #2665 lib: archive_read_data: handle sparse holes at end of file correctly #2668 7zip: Fix out of boundary access #2670 zip writer: fix writing with ZSTD compression #2672 lib: fix error checking in writing files #2678 zstd write filter: enable Zstandard's checksum feature #2679 lib: handle possible errors from system calls #2707 lib: avoid leaking file descriptors into subprocesses #2713 RAR5 reader: fix multiple issues in extra field parsing function #2716 RAR5 reader: early fail when file declares data for a dir entry #2717 bsdtar: Allow filename to have CRLF endings #2719 tar reader: fix checking the result of the strftime (CVE-2025-25724) #2737 tar reader: fix an infinite loop when parsing V headers #2742 lib: parse_date: handle dates in 2038 and beyond if time_t is big enough Obtained from: libarchive Vendor commit: 7f53fce04e4e672230f4eb80b219af17975e4f83 Security: CVE-2025-25724 PR: 290303 (exp-run) MFC after: 1 week
* | | sockstat: fix column length for PROTOMichael Tuexen2025-10-201-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The computation of the length was not taking into account that IPv6 endpoints, which are not IPv6 only, have a suffix of 46. For UDP and TCP this bug was not relevant, since tcp46 and udp46 has the same length as PROTO, but sctp46 is longer. Upcoming udplite support will also be affected. Reviewed by: asomers MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D53212
* | | find: fix pathnames printed by the SIGINFO handlerAlan Somers2025-10-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't duplicate the last component. PR: 290362 Reported by: John F. Carr <jfc@mit.edu> Fixes: d06a00963b7 MFC after: 3 days Reviewed by: jilles, Goran Mekić <meka@tilda.center> Pull Request: https://github.com/freebsd/freebsd-src/pull/1878
* | | mkimg: Add a -h option and improve usage output to be more expressiveBrad Davis2025-10-181-8/+13
| | | | | | | | | | | | | | | | | | Reviewed by: imp, kp MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D52906
* | | ncurses: Move utilities to the ncurses packageLexi Winter2025-10-171-1/+1
| | | | | | | | | | | | | | | | | | | | | MFC after: 3 days Reviewed by: manu, kevans Sponsored by: https://www.patreon.com/bsdivy Differential Revision: https://reviews.freebsd.org/D53163
* | | calendar: Add myself (jlduran) to calendar.freebsdJose Luis Duran2025-10-171-0/+1
| | | | | | | | | | | | The bank no longer uses this information as a security question.
* | | tar: Move to the utilities packageLexi Winter2025-10-171-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tar(1) is not a core runtime utility; in particular, nothing in /etc/rc.d/* requires it. Move it to utilities, which is also where cpio(1) lives. This removes the dependency from runtime to libarchive. MFC after: 3 days Reviewed by: manu, emaste Sponsored by: https://www.patreon.com/bsdivy Differential Revision: https://reviews.freebsd.org/D53059
* | | sockstat: improve handling of path stateMichael Tuexen2025-10-142-5/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Only suppress the path state column when producing traditional text output. When generating html output, always include the column. Please note that when generating json or xml output, optional fields like the path state are only generated if they is applicable. This has not been changed. The changes in this patch were suggested by asomers. Reviewed by: asomers Fixes: 746eadecaa7d ("sockstat: show path state column only when useful") MFC after: 3 days Sponsored by: Netflix, Inc. Differential Revision: https://reviews.freebsd.org/D53005
* | | login.conf: Remove never used ignoretime/ignoretime@Paul Armstrong2025-10-131-4/+0
| | | | | | | | | | | | | | | | | | | | | PR: 240378 Reviewed by: otis (mentor), glebius (src committer) MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D52991
* | | sockstat: Fix build reproducibilityColin Percival2025-10-101-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Both usr.bin/sockstat and usr.bin/sockstat/tests build the file src/usr.bin/sockstat/sockstat.c. Unfortunately, they place the resulting object file in the same place, but produce different files due to paths appearing in the .debug files; this results in different binaries depending on how the race between the two builds ends. Use .PATH to tell make to find sockstat.c in the parent directory but place the object file in the current object directory, rather than placing '..' into the name of the source file. Suggested by: bdrewery, emaste, jrtc27 MFC after: 5 minutes (15.0 build fix) Sponsored by: https://www.patreon.com/cperciva Differential Revision: https://reviews.freebsd.org/D53032
* | | vmstat: Print the number of wired pages in each objectMark Johnston2025-10-101-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | Reviewed by: alc, kib MFC after: 1 week Sponsored by: Modirum MDPay Sponsored by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D53008
* | | sockstat: show path state column only when usefulMichael Tuexen2025-10-092-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Showing the path state column is only useful, if there is at least one SCTP endpoint shown, which is not in the state CLOSED or LISTEN. Don't show it when it is not useful. Reviewed by: rrs MFC after: 3 days Sponsored by: Netflix, Inc. Differential Revision: https://reviews.freebsd.org/D52986
* | | sockstat: improve output formattingMichael Tuexen2025-10-091-3/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | Fix the format when the output for a socket spans multiple lines. Reviewed by: rrs MFC after: 3 days Sponsored by: Netflix, Inc. Differential Revision: https://reviews.freebsd.org/D52984
* | | sockstat: improve indentationMichael Tuexen2025-10-071-61/+62
| | | | | | | | | | | | | | | | | | | | | No functional changes intended. MFC after: 3 days Sponsored by: Netflix, Inc.
* | | sockstat: support reporting of BBLog stateMichael Tuexen2025-10-062-4/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | Add a -b option to print the BBLog state for TCP sockets. Reviewed by: jtl, rrs MFC after: 3 days Sponsored by: Netflix, Inc. Differential Revision: https://reviews.freebsd.org/D52944
* | | tail: Tweak follow_rename test caseDag-Erling Smørgrav2025-10-071-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Add a brief sleep to give tail time to start following the file before we rename it. MFC after: 1 week Reviewed by: markj Differential Revision: https://reviews.freebsd.org/D52887
* | | lsvfs(1): CapsicumiseFaraz Vahedi2025-10-061-23/+26
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Faraz Vahedi <kfv@kfv.io> Reviewed by: asomers, markj Pull Request: https://github.com/freebsd/freebsd-src/pull/1498
* | | getconf: Report value of _SC_PHYS_PAGESJason W. Bacon2025-10-031-0/+1
| | | | | | | | | | | | | | | PR: 289717 Reviewed by: jhb
* | | */*: remove recallocarray() compat shims following import into libcRobert Clausecker2025-10-031-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | libopenbsd retains recallocarray() during bootstrapping for now as it is needed for mandoc. Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D52864
* | | netstat: Fix -ia missing multicast addresses on some interfacesNick Reilly2025-10-031-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sdl_data isn't always NULL terminated Signed-off-by: nreilly@qnx.com PR: 288958 Reviewed by: markj MFC after: 1 week
* | | calendar.freebsd: Update calendar for tiga@Tiago Gasiba2025-10-021-0/+1
| | | | | | | | | | | | | | | PR: 289948 Approved by: eduardo (mentor)
* | | Tcopy: add -r option to usage()Poul-Henning Kamp2025-10-021-1/+3
| | |
* | | packages: Add a sound packageLexi Winter2025-10-022-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Put virtual_oss, /etc/devd/snd.conf and the other audio-related tools into a new "sound" package. Don't create a separate -lib package, since it's unlikely someone will want mixer(3) without mixer(8). Put the sound package in the optional set rather than minimal, since it's not actually required for audio hardware support, and many systems (including nearly all servers) won't want it installed. MFC after: 3 seconds Reviewed by: christos Sponsored by: https://www.patreon.com/bsdivy Differential Revision: https://reviews.freebsd.org/D52823
* | | packages: Rename liblzma package to xzLexi Winter2025-09-303-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rename liblzma to xz, and use LIB_PACKAGE to create an xz-lib package for runtime libraries. MFC after: 1 day Reviewed by: bapt Sponsored by: https://www.patreon.com/bsdivy Differential Revision: https://reviews.freebsd.org/D52791
* | | mdo(1): Add support and shortcuts for fully specifying users and groupsOlivier Certner2025-09-291-41/+816
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While preserving compatibility ('root' implied if no user is specified, option '-i' not setting groups), introduce options to control finely which user and group IDs are set in the launched process. To minimize the risks of user error, mdo(1) by default enforces that all user and group IDs are specified, either with explicit values from the command-line or, if a known user name is passed with '-u', from the corresponding content of the password and group databases. The other main type of use cases is to start from the current process' credentials, only amending part of them. It is now also possible to blend both approaches, where some parts must be specified and the others can just be amended or left as is. Options: * As before: -u: Specifies a user name or ID to change all user IDs to. If a known name is passed, also automatically sets all groups as per the password and group databases. -i: Starts from the current groups, instead of having to specify them by using '-u' with a known user name or explicitly. * New: -k: Starts from the current users (incompatible with '-u'). Implies '-i'. -g: Sets/overrides the primary group IDs with the passed group name or ID. -G: Sets/overrides the supplementary groups set with the passed list of comma-separated names or IDs. -s: Amend the supplementary groups set according to the list of comma-separated directives from the following: - @: Empties the set. Must be the first directive. Incompatible with '-G'. - +<group>: Add a group to the set. - -<group>: Remove a group from the set. Takes precedence over +<group>. --euid: Overrides the effective user ID. --ruid: Overrides the real user ID. --svuid: Overrides the saved user ID. --egid: Overrides the effective group ID. --rgid: Overrides the real group ID. --svgid: Overrides the saved group ID. Option '-k' was introduced as a requirement to be explicit when one wants to keep the current user(s) instead of specifying new ones. This is both for the purpose of avoiding foot-shooting and preserving the possibility to omit '-u' to switch to 'root'. In order to avoid confusion, if any user or group overrides are specified, mdo(1) however enforces that either '-u' or '-k' has been specified (so, in practice, '-u root' is implied only in the absence of any other options except '-i'). Some base supplementary groups set is needed when '-s' is used without directive '@'. It can be an explicit one specified with '-G', effectively meaning that '-G' is processed before '-s'. Else, it is determined from the password/group database (see initgroups(3)) if '-u' with a user name was passed, or is simply the current set if '-i' (or '-k') was specified. Other cases require specifying the full set (using '-G' or '-s' with '@'), and will fail otherwise. As the release process for 15.0 is progressing, this is committed in advance of the still-in-progress tests and manual page updates. Note for MFC to stable/14: As initgroups() has its old behavior, consistently with it, remove the effective GID from being passed also as a supplementary group. Reviewed by: bapt MFC after: 3 days Relnotes: yes Event: EuroBSDCon 2025 Sponsored by: The FreeBSD Foundation Sponsored by: Google LLC (GSoC 2025) Co-authored-by: Kushagra Srivastava <kushagra1403@gmail.com> Differential Revision: https://reviews.freebsd.org/D52613
* | | vladlen@ joins comitters-doc and calendar.freebsdVladlen Popolitov2025-09-281-0/+1
| | | | | | | | | | | | | | | | | | Reviewed by: maxim (mentor) Approved by: maxim (mentor) Differential Revision: https://reviews.freebsd.org/D52769
* | | mktemp.1: Document TMPDIR in ENVIRONMENTMateusz Piotrowski2025-09-271-2/+10
| | | | | | | | | | | | | | | | | | | | | While here, use Ev for TMPDIR consistently. MFC after: 3 days Event: EuroBSDCon 2025
* | | packages: Replace libbz2 package with a bzip2 packageLexi Winter2025-09-232-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently libbz2 is in the libbz2 package, while bzip2 itself is in -utilities, which is inconsistent. Move both the library and the utility to a new -bzip2 package, and use LIB_PACKAGE to create a separate -bzip2-lib package for runtime dependencies. Add the bzip2 package to the minimal set, and since newsyslogd uses bzip2 for logfile compression, add a dependency from there. MFC after: 1 day Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D52663
* | | who: Move back to the utilities packageLexi Winter2025-09-231-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was moved to -acct along with the rest of the accounting tools. While it does work with accounting data, it's also a core Unix tool that users would expect to be installed without having to install the whole accounting system. Move it back to -utilities, which is also where w(1) lives. MFC after: 1 day Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D52653
* | | chat, pppoed: Move to the ppp packageLexi Winter2025-09-231-0/+1
| | | | | | | | | | | | | | | | | | MFC after: 1 day Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D52650
* | | elfdump: Move to the toolchain packageLexi Winter2025-09-231-0/+1
| | | | | | | | | | | | | | | | | | MFC after: 1 day Reviewed by: manu, imp, emaste Differential Revision: https://reviews.freebsd.org/D52648
* | | pf: Add pfsync protocol for FreeBSD 15Kajetan Staszkiewicz2025-09-231-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A new version of pfsync packet is introduced: 1500. This version solves the issues with data alignment introduced in version 1400 and adds syncing of information needed to sync states created by rules with af-to (original interface, af and proto separate for wire and stack keys), of rt_af needed for prefer-ipv6-nexthop, and of tag names. Reviewed by: kp Sponsored by: InnoGames GmbH Differential Revision: https://reviews.freebsd.org/D52176
* | | packages: Add a mandoc packageLexi Winter2025-09-183-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move mandoc to its own package so users can install it independently of -utilities. Put the package in the minimal set, since we also ship manpages in minimal and "man" is a basic Unix utility. Add a pkg-triggers(5) hook to run makewhatis when new manpages are installed, so that apropos(1) works. This depends on a new pkg(8) feature expected to be in in the upcoming 2.3.2 release; in the mean time, this is a no-op (i.e., having an older pkg doesn't break anything, it just won't run the trigger). MFC after: 3 seconds Reviewed by: bapt Differential Revision: https://reviews.freebsd.org/D52564
* | | packages: Remove the tests-dev packageLexi Winter2025-09-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We don't want a tests-dev package, because this means set-devel depends on tests-dev, which transitively depends on tests, which means you can't install set-devel without also getting tests. The only real "dev" files in tests-dev are from ATF (libprivateatf), so move that to its own package and add a dependency from tests. Also move Kyua to its own package, since this might be useful for running tests even when the user doesn't want the whole set of base tests installed. Add a dependency from -tests to both -atf and -kyua, and a dependency on -set-base, since the tests won't work without the full base system installed. The remaining "dev" files in tests are actually test artifacts, not real development libraries. Add a new NO_DEV_PACKAGE option to bsd.lib.mk, which causes dev files to be installed in the base package instead of creating a -dev package, and set this option for everything that installs test libraries. While here, add a slightly more informative description for the tests package. MFC after: 3 seconds Reviewed by: bapt, emaste Differential Revision: https://reviews.freebsd.org/D52597
* | | stat: Add option to list holesDag-Erling Smørgrav2025-09-163-43/+250
| | | | | | | | | | | | | | | | | | | | | | | | | | | Add a new -h option that causes stat to print a list of holes for each file argument. Sponsored by: Klara, Inc. Reviewed by: markj Differential Revision: https://reviews.freebsd.org/D52481
* | | uptime: Mention libxo support in manual pageDag-Erling Smørgrav2025-09-112-4/+18
| | | | | | | | | | | | | | | | | | | | | MFC after: 3 days Sponsored by: Klara, Inc. Reviewed by: markj Differential Revision: https://reviews.freebsd.org/D52489
* | | usr.bin/gh-bc: update for version 7.1.0Stefan Eßer2025-09-112-4/+11
| | | | | | | | | | | | Add extra defines required for bc-7.1.0 to the Makefiles.
* | | usr.bin/gh-bc: fix invocation of test scriptsStefan Eßer2025-09-111-2/+2
| | | | | | | | | | | | | | | The “all.sh” script in version 7.1.0 accepts one less parameter for selecting the tests to be run.
* | | sockstat: fix the -j option with piped output after libxo integrationAlan Somers2025-09-091-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The legacy code handling -j in display() was causing xo_finish() to be skipped. It has also been causing a memory leak since 0726c6574f8 (sockstat: Add automatic column sizing and remove -w option) Fixes: 7b35b4d1963 (sockstat: add libxo support) MFC after: 1 week Reported by: glebius Reviewed by: glebius Sponsored by: ConnectWise Pull Request: https://github.com/freebsd/freebsd-src/pull/1842
* | | man: Fix usage messageDag-Erling Smørgrav2025-09-081-1/+1
| | | | | | | | | | | | | | | PR: 289245 Fixes: 14b61b2e9317 ("man: Add -l option")
* | | man: Add -l optionIngo Schwarze2025-09-072-15/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a -l option which causes man to interpret all arguments as paths to open directly rather than man pages to search for in MANPATH. See the PR for a detailed rationale. PR: 289245 MFC after: 1 week Reviewed by: ziaee, emaste Differential Revision: https://reviews.freebsd.org/D52385
* | | awk: Merge upstream manpage updatesWarner Losh2025-09-041-9/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge the upstream manpage upades into awk.1. This goes through upstream hash 9acc510. Upstream man page is written in raw nroff with "an" macros, rather than in mandoc, so convert to mandoc as well. The man page isn't updated on imports automatically, plus our man page has diverged somewhat from upstraem's so it's not a mechanical change... PR: 230730 Sponsored by: Netflix
* | | mandoc: Install mandoc.db.5Mark Johnston2025-09-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Reviewed by: ziaee, bapt MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Sponsored by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D52343
* | | netstat: improve output for tcp statsMichael Tuexen2025-09-011-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Put SYN-cookie related counters in its own container and use consistent indentation for them. Reviewed by: glebius MFC after: 1 week Sponsored by: Netflix, Inc. Differential Revision: https://reviews.freebsd.org/D52227
* | | Revert "patch: fix pch_context() for unified diffs with no leading context"Kyle Evans2025-08-302-22/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit f97b6a8f84b3ed209c2aea0958a7b889d0bf27ed, as it turns out our fuzz implementation is just too naive. We can have more leading context than trailing context and vice-versa, so we can't really assume they're the same. Restore the previous bug and we can work on it post-branch. Reported by: cy
* | | patch: test for unified diffs with spaces in filenamesKyle Evans2025-08-291-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | The older GNU patch that we had in base did not properly handle spaces in filenames in unified diffs, but bsdpatch seems to have handled this fine at least since the version we imported into base initially. Add a test with spaces in the filename specifically to be sure. PR: 181272
* | | patch: fix pch_context() for unified diffs with no leading contextKyle Evans2025-08-292-1/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the first line of a file is a removal, we may not have any leading context. Only adjusting p_context if context > 0 means that we incorrectly believe that we have 100 lines of context when the reality is that we have none. This fixes a bug with fuzz-checking, which ends up fuzzing away the line we're trying to replace if it's the first line in the file. We use pch_context() to determine a reasonable max-fuzz. PR: 250511 Reviewed by: pfg Differential Revision: https://reviews.freebsd.org/D51837
* | | w: Fix idle time in json output, add login/idle times to json outputMarius Halden2025-08-291-7/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently the idle time will show as `true` part of the time in the json output and quoting depends on what is being printed. Make sure it's always printed correctly and for consistency treated as a string in the json output. Login time delta and since times are currently exposed in the xml output, expose these times in the json output as well. In the json and xml outputs expose the number of seconds idle as a new field or attribute respectively. MFC after: 1 week Sponsored by: Modirum MDPay Event: Oslo Hackathon 202508 Differential Revision: https://reviews.freebsd.org/D52237