#
d511e97c |
| 19-Jun-2024 |
Brooks Davis <brooks@FreeBSD.org> |
libsysdecode: support rfork(RFSPAWN)
Match the "U" in RFSPAWN's value (1U<<31) (and "u" for completeness). Reject kernel-only RFPPWAIT to avoid a duplicate entry.
Reviewed by: imp, markj Sponsored
libsysdecode: support rfork(RFSPAWN)
Match the "U" in RFSPAWN's value (1U<<31) (and "u" for completeness). Reject kernel-only RFPPWAIT to avoid a duplicate entry.
Reviewed by: imp, markj Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D45597
show more ...
|
Revision tags: release/14.1.0 |
|
#
6b3db5d7 |
| 21-Mar-2024 |
Kyle Evans <kevans@FreeBSD.org> |
libsysdecode: fix build after 3d0a736796a9
TCP_USE_DDP is a kernel-only macro, so we must exclude it in libsysdecode to avoid breaking the build.
Fixes: 3d0a736796a9 ("tcp: Add a new kernel-only TC
libsysdecode: fix build after 3d0a736796a9
TCP_USE_DDP is a kernel-only macro, so we must exclude it in libsysdecode to avoid breaking the build.
Fixes: 3d0a736796a9 ("tcp: Add a new kernel-only TCP_USE_DDP [...]")
show more ...
|
#
bd23e71f |
| 05-Mar-2024 |
Kyle Evans <kevans@FreeBSD.org> |
libsysdecode: add a decoder for pollfd events
We'll use this in another change to read pollfd arrays coming from a successful poll(2) operation.
Reviewed by: bapt, jhb Differential Revision: https:
libsysdecode: add a decoder for pollfd events
We'll use this in another change to read pollfd arrays coming from a successful poll(2) operation.
Reviewed by: bapt, jhb Differential Revision: https://reviews.freebsd.org/D44159
show more ...
|
Revision tags: release/13.3.0, release/14.0.0 |
|
#
d0b2dbfa |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
#
f3e11927 |
| 14-Aug-2023 |
Dmitry Chagin <dchagin@FreeBSD.org> |
vm: Allow MAP_32BIT for all architectures
Reviewed by: alc, kib, markj Differential revision: https://reviews.freebsd.org/D41435
|
Revision tags: release/13.2.0, release/12.4.0 |
|
#
34c8598e |
| 02-Nov-2022 |
Mark Johnston <markj@FreeBSD.org> |
libsysdecode: Match socket option names containing underscores
MFC after: 1 week Sponsored by: Modirum MDPay Sponsored by: Klara, Inc.
|
#
2fc3a51d |
| 22-Jun-2022 |
Dmitry Chagin <dchagin@FreeBSD.org> |
libsysdecode: Decode setitimer, getitimer which argument
Reviewed by: jhb Differential revision: https://reviews.freebsd.org/D35230 MFC after: 2 weeks
|
#
41068268 |
| 16-May-2022 |
Dmitry Chagin <dchagin@FreeBSD.org> |
libsysdecode: Fix decoding of SCHED_ flags
Use sys/sched.h where SCHED_ flags are defined.
Reviewed by: emaste Differential revision: https://reviews.freebsd.org/D35208 MFC after: 2 weeks
|
Revision tags: release/13.1.0 |
|
#
869199d9 |
| 13-Apr-2022 |
Mark Johnston <markj@FreeBSD.org> |
libsysdecode: Fix decoding of Capsicum rights
Capsicum rights are a bit tricky since some of them are subsets of others, and one can have rights R1 and R2 such that R1 is a subset of R2, but there i
libsysdecode: Fix decoding of Capsicum rights
Capsicum rights are a bit tricky since some of them are subsets of others, and one can have rights R1 and R2 such that R1 is a subset of R2, but there is no collection of named rights whose union is R2. So, they don't behave like most other flag sets. sysdecode_cap_rights(3) does not handle this properly and so can emit misleading decodings.
Try to fix all of these problems: - Include composite rights in the caprights table. - Use a constructor to sort the caprights table such that "larger" rights appear first and thus are matched first. - Don't print rights that are a subset of rights already printed, so as to minimize the length of the output. - Print a trailing message if some of the specific rights are not matched by the table.
PR: 263165 Reviewed by: pauamma_gundo.com (doc), jhb, emaste MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D34874
show more ...
|
#
f3f3e3c4 |
| 03-Mar-2022 |
Mateusz Guzik <mjg@FreeBSD.org> |
fd: add close_range(..., CLOSE_RANGE_CLOEXEC)
For compatibility with Linux.
MFC after: 3 days Reviewed by: markj Differential Revision: https://reviews.freebsd.org/D34424
|
#
e2576591 |
| 04-Jan-2022 |
Mark Johnston <markj@FreeBSD.org> |
libsysdecode: Decode sendmsg/recvmsg flags containing an underscore
Otherwise MSG_CMSG_CLOEXEC is not decoded.
MFC after: 1 week Sponsored by: The FreeBSD Foundation
|
Revision tags: release/12.3.0 |
|
#
701a9993 |
| 24-Sep-2021 |
Nathaniel Wesley Filardo <nfilardo@microsoft.com> |
libsysdecode: Permit _ in VM_PROT_(.*) names.
CheriBSD defines additional protection flags which use underscores such as VM_PROT_READ_CAP and VM_PROT_WRITE_CAP.
Obtained from: CheriBSD Sponsored by
libsysdecode: Permit _ in VM_PROT_(.*) names.
CheriBSD defines additional protection flags which use underscores such as VM_PROT_READ_CAP and VM_PROT_WRITE_CAP.
Obtained from: CheriBSD Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D30017
show more ...
|
#
f575573c |
| 15-Sep-2021 |
Konstantin Belousov <kib@FreeBSD.org> |
Remove PT_GET_SC_ARGS_ALL
Reimplement bdf0f24bb16d556a5b by checking for the caller' ABI in the implementation of PT_GET_SC_ARGS, and copying out everything if it is Linuxolator.
Also fix a minor i
Remove PT_GET_SC_ARGS_ALL
Reimplement bdf0f24bb16d556a5b by checking for the caller' ABI in the implementation of PT_GET_SC_ARGS, and copying out everything if it is Linuxolator.
Also fix a minor information leak: if PT_GET_SC_ARGS_ALL is done on the thread reused after other process, it allows to read some number of that thread last syscall arguments. Clear td_sa.args in thread_alloc().
Reviewed by: jhb Sponsored by: The FreeBSD Foundation Differential revision: https://reviews.freebsd.org/D31968
show more ...
|
#
bdf0f24b |
| 12-Sep-2021 |
Edward Tomasz Napierala <trasz@FreeBSD.org> |
linux: implement PTRACE_GET_SYSCALL_INFO
This is one of the pieces required to make modern (ie Focal) strace(1) work.
Reviewed By: jhb (earlier version) Sponsored by: EPSRC Differential Revision: h
linux: implement PTRACE_GET_SYSCALL_INFO
This is one of the pieces required to make modern (ie Focal) strace(1) work.
Reviewed By: jhb (earlier version) Sponsored by: EPSRC Differential Revision: https://reviews.freebsd.org/D28212
show more ...
|
Revision tags: release/13.0.0 |
|
#
f25266be |
| 09-Feb-2021 |
Michael Tuexen <tuexen@FreeBSD.org> |
libsysdecode: fix decoding of TCP_NOPUSH and TCP_MD5SIG
TCP_FASTOPEN_MIN_COOKIE_LEN was incorrectly registered as a name of a IPPROTO_TCP level socket option, which overwrote TCP_NOPUSH. TCP_FASTOPE
libsysdecode: fix decoding of TCP_NOPUSH and TCP_MD5SIG
TCP_FASTOPEN_MIN_COOKIE_LEN was incorrectly registered as a name of a IPPROTO_TCP level socket option, which overwrote TCP_NOPUSH. TCP_FASTOPEN_PSK_LEN was incorrectly registered as a name of an IPPROTO_TCP level socket option, which overwrote TCP_MD5SIG.
MFC after: 3 days Sponsored by: Netflix, Inc.
show more ...
|
#
3b27074b |
| 09-Dec-2020 |
Kyle Evans <kevans@FreeBSD.org> |
libsysdecode: decode _UMTX_OP flags
Assume that UMTX_OP with a double underbar following is a flag, while any underbar+alphanumeric combination immeiately following is an op.
This was a part of D27
libsysdecode: decode _UMTX_OP flags
Assume that UMTX_OP with a double underbar following is a flag, while any underbar+alphanumeric combination immeiately following is an op.
This was a part of D27325.
Reviewed by: kib
show more ...
|
Revision tags: release/12.2.0 |
|
#
e2515283 |
| 27-Aug-2020 |
Glen Barber <gjb@FreeBSD.org> |
MFH
Sponsored by: Rubicon Communications, LLC (netgate.com)
|
#
a8537fe4 |
| 20-Aug-2020 |
Rick Macklem <rmacklem@FreeBSD.org> |
Add MSG_TLSAPPDATA to lib/libsysdecode/mktables.
I have no idea what this does (and until now that it even existed), but apparently it needs this entry changed for the MSG_TLSAPPDATA, since it is ke
Add MSG_TLSAPPDATA to lib/libsysdecode/mktables.
I have no idea what this does (and until now that it even existed), but apparently it needs this entry changed for the MSG_TLSAPPDATA, since it is kernel only.
show more ...
|
Revision tags: release/11.4.0 |
|
#
43c7dd6b |
| 19-Feb-2020 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r358075 through r358130.
|
#
c70019dd |
| 19-Feb-2020 |
Kyle Evans <kevans@FreeBSD.org> |
libsysdecode: grab shmflags from sys/mman.h, add decode method
Any SHM_* flag here is (and likely will continue to be) a shmflag that may be passed to shm_open2(), with exception to SHM_ANON. This i
libsysdecode: grab shmflags from sys/mman.h, add decode method
Any SHM_* flag here is (and likely will continue to be) a shmflag that may be passed to shm_open2(), with exception to SHM_ANON. This is a prereq to adding appropriate support to truss/kdump.
Reviewed by: kaktus (slightly earlier version) Differential Revision: https://reviews.freebsd.org/D23733
show more ...
|
Revision tags: release/12.1.0 |
|
#
dc89d069 |
| 17-Aug-2019 |
Bryan Drewery <bdrewery@FreeBSD.org> |
Rework r339635 to fix .depend.tables.h handling.
Avoid touching the tables.h file unless it has changed to avoid unneeded rebuilds.
Also revert r350301's explicit dependencies.
Reviewed by: emaste
Rework r339635 to fix .depend.tables.h handling.
Avoid touching the tables.h file unless it has changed to avoid unneeded rebuilds.
Also revert r350301's explicit dependencies.
Reviewed by: emaste MFC after: 2 weeks X-MFC-With: r339635 (kevans request) PR: 238828 Sponsored by: DellEMC Differential Revision: https://reviews.freebsd.org/D21295
show more ...
|
Revision tags: release/11.3.0, release/12.0.0 |
|
#
c6879c6c |
| 23-Oct-2018 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r339015 through r339669.
|
#
c5c5072b |
| 23-Oct-2018 |
Alex Richardson <arichardson@FreeBSD.org> |
Fix regex for extracting SHM_* values for libsysdecode
There was an additional + after the {6} which is apparently ignored by the FreeBSD regex implementation but was giving me an error when compili
Fix regex for extracting SHM_* values for libsysdecode
There was an additional + after the {6} which is apparently ignored by the FreeBSD regex implementation but was giving me an error when compiling on MacOS.
While changing this also make sure that tables.h is not created if mktables fails. The current rule would create a partial tables.h which causes following incremental builds to use that broken file and fail with an unrelated compilation error or even succeed even though they shouldn't.
Approved By: jhb (mentor) Differential Revision: https://reviews.freebsd.org/D17069
show more ...
|
Revision tags: release/11.2.0 |
|
#
48e68919 |
| 12-Mar-2018 |
Bjoern A. Zeeb <bz@FreeBSD.org> |
The vmresult table was missing most of the values apart from two due to extra "_" in the names we grep for. Add the "_" to the pattern.
Reviewed by: jhb MFC after: 3 days Sponsored by: iXsystems, In
The vmresult table was missing most of the values apart from two due to extra "_" in the names we grep for. Add the "_" to the pattern.
Reviewed by: jhb MFC after: 3 days Sponsored by: iXsystems, Inc.
show more ...
|
#
a826eb5a |
| 15-Jan-2018 |
Michael Tuexen <tuexen@FreeBSD.org> |
Add support for decoding the type of a cmsg.
|