Revision tags: release/14.0.0 |
|
#
b3e76948 |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: two-line .h pattern
Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
|
Revision tags: release/13.2.0, release/12.4.0 |
|
#
b9b86b67 |
| 22-Jun-2022 |
Dmitry Chagin <dchagin@FreeBSD.org> |
kdump: Decode getitimer, setitimer which argument
Reviewed by: jhb (previous version, without truss) Differential revision: https://reviews.freebsd.org/D35231 MFC after: 2 weeks
|
Revision tags: release/13.1.0 |
|
#
b1ad6a90 |
| 28-Mar-2022 |
Brooks Davis <brooks@FreeBSD.org> |
syscallarg_t: Add a type for system call arguments
This more clearly differentiates system call arguments from integer registers and return values. On current architectures it has no effect, but on
syscallarg_t: Add a type for system call arguments
This more clearly differentiates system call arguments from integer registers and return values. On current architectures it has no effect, but on architectures where pointers are not integers (CHERI) and may not even share registers (CHERI-MIPS) it is necessiary to differentiate between system call arguments (syscallarg_t) and integer register values (register_t).
Obtained from: CheriBSD
Reviewed by: imp, kib Differential Revision: https://reviews.freebsd.org/D33780
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
|
#
0910a41e |
| 13-Jan-2022 |
Brooks Davis <brooks@FreeBSD.org> |
Revert "syscallarg_t: Add a type for system call arguments"
Missed issues in truss on at least armv7 and powerpcspe need to be resolved before recommit.
This reverts commit 3889fb8af0b611e3126dc250
Revert "syscallarg_t: Add a type for system call arguments"
Missed issues in truss on at least armv7 and powerpcspe need to be resolved before recommit.
This reverts commit 3889fb8af0b611e3126dc250ebffb01805152104. This reverts commit 1544e0f5d1f1e3b8c10a64cb899a936976ca7ea4.
show more ...
|
#
1544e0f5 |
| 12-Jan-2022 |
Brooks Davis <brooks@FreeBSD.org> |
syscallarg_t: Add a type for system call arguments
This more clearly differentiates system call arguments from integer registers and return values. On current architectures it has no effect, but on
syscallarg_t: Add a type for system call arguments
This more clearly differentiates system call arguments from integer registers and return values. On current architectures it has no effect, but on architectures where pointers are not integers (CHERI) and may not even share registers (CHERI-MIPS) it is necessiary to differentiate between system call arguments (syscallarg_t) and integer register values (register_t).
Obtained from: CheriBSD
Reviewed by: imp, kib Differential Revision: https://reviews.freebsd.org/D33780
show more ...
|
Revision tags: release/12.3.0 |
|
#
cf0ee873 |
| 13-Sep-2021 |
Konstantin Belousov <kib@FreeBSD.org> |
Drop cloudabi
According to https://github.com/NuxiNL/cloudlibc: CloudABI is no longer being maintained. It was an awesome experiment, but it never got enough traction to be sustainable.
There is no
Drop cloudabi
According to https://github.com/NuxiNL/cloudlibc: CloudABI is no longer being maintained. It was an awesome experiment, but it never got enough traction to be sustainable.
There is no reason to keep it in FreeBSD.
Approved by: ed (private mail) Reviewed by: emaste Sponsored by: The FreeBSD Foundation Differential revision: https://reviews.freebsd.org/D31923
show more ...
|
Revision tags: release/13.0.0 |
|
#
6019514b |
| 04-Mar-2021 |
Alex Richardson <arichardson@FreeBSD.org> |
truss: split counting of syscalls and syscall calling convention
This change is a refactoring cleanup to improve support for compat32 syscalls (and compat64 on CHERI systems). Each process ABI now h
truss: split counting of syscalls and syscall calling convention
This change is a refactoring cleanup to improve support for compat32 syscalls (and compat64 on CHERI systems). Each process ABI now has it's own struct sycall instead of using one global list. The list of all syscalls is replaced with a list of seen syscalls. Looking up the syscall argument passing convention now interates over the fixed-size array instead of using a link-list that's populated on startup so we no longer need the init_syscall() function. The actual functional changes are in D27625.
Reviewed By: jhb Differential Revision: https://reviews.freebsd.org/D27636
show more ...
|
#
90da2c79 |
| 05-Feb-2021 |
Mark Johnston <markj@FreeBSD.org> |
truss: Decode sendfile(2) arguments
MFC after: 2 weeks
|
#
bb24ee2b |
| 10-Dec-2020 |
Thomas Munro <tmunro@FreeBSD.org> |
truss: Add AIO syscalls.
Display the arguments of aio_read(2), aio_write(2), aio_suspend(2), aio_error(2), aio_return(2), aio_cancel(2), aio_fsync(2), aio_mlock(2), aio_waitcomplete(2) and lio_listi
truss: Add AIO syscalls.
Display the arguments of aio_read(2), aio_write(2), aio_suspend(2), aio_error(2), aio_return(2), aio_cancel(2), aio_fsync(2), aio_mlock(2), aio_waitcomplete(2) and lio_listio(2) in human-readable form.
Reviewed by: asomers Differential Revision: https://reviews.freebsd.org/D27518
show more ...
|
Revision tags: release/12.2.0, release/11.4.0 |
|
#
43c7dd6b |
| 19-Feb-2020 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r358075 through r358130.
|
#
bcca3425 |
| 19-Feb-2020 |
Kyle Evans <kevans@FreeBSD.org> |
truss: decode shm_open2
shm_open2 is similar to shm_open, except it also takes shmflags and optional name to label the anonymous region for, e.g., debugging purposes.
The appropriate support for de
truss: decode shm_open2
shm_open2 is similar to shm_open, except it also takes shmflags and optional name to label the anonymous region for, e.g., debugging purposes.
The appropriate support for decoding shmflags was added to libsysdecode in r358115.
This is a part of D23733.
Reviewed by: kaktus
show more ...
|
Revision tags: release/12.1.0 |
|
#
0f80acb9 |
| 19-Sep-2019 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r352436 through r352536.
|
#
43ce0d90 |
| 18-Sep-2019 |
Konstantin Belousov <kib@FreeBSD.org> |
truss: decode sysctl names.
Submitted by: Pawel Biernacki MFC after: 1 week Differential revision: https://reviews.freebsd.org/D21688
|
#
a63915c2 |
| 28-Jul-2019 |
Alan Somers <asomers@FreeBSD.org> |
MFHead @r350386
Sponsored by: The FreeBSD Foundation
|
#
caa449b6 |
| 17-Jul-2019 |
John Baldwin <jhb@FreeBSD.org> |
Use PT_GET_SC_ARGS and PT_GET_SC_RET in truss.
This removes all of the architecture-specific functions from truss.
A per-ABI structure is still needed to map syscall numbers to names and FreeBSD er
Use PT_GET_SC_ARGS and PT_GET_SC_RET in truss.
This removes all of the architecture-specific functions from truss.
A per-ABI structure is still needed to map syscall numbers to names and FreeBSD errno values to ABI error values as well as hold syscall counters. However, the linker set of ABI structures is now replaced with a simple table mapping ABI names to structures. This approach permits sharing the same ABI structure among separate names such as i386 a.out and ELF binaries as well as ELF v1 vs ELF v2 for powerpc64.
A few differences are visible due to using PT_GET_SC_RET to fetch the error value of a system call. Note that ktrace/kdump have had the "new" behaviors for a long time already: - System calls that return with EJUSTRETURN or ERESTART will now be noticed and logged as such. Previously sigreturn (which uses EJUSTRETURN) would report whatever random value was in the register holding errno from the previous system call for example. Now it reports EJUSTRETURN. - System calls that return errno as their error value such as posix_fallocate() and posix_fadvise() now report non-zero return values as errors instead of success with a non-zero return value.
Reviewed by: kib MFC after: 1 month Sponsored by: DARPA Differential Revision: https://reviews.freebsd.org/D20963
show more ...
|
Revision tags: release/11.3.0, release/12.0.0 |
|
#
2a22df74 |
| 04-Nov-2018 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r339813 through r340125.
|
#
5b05dc5a |
| 28-Oct-2018 |
Thomas Munro <tmunro@FreeBSD.org> |
truss: Fix display of shm_open(SHM_ANON, ...).
Currently truss(1) shows shm_open(SHM_ANON, ...) as shm_open("(null)", ...). Detect the special value and display it by name.
Reviewed by: jhb, all
truss: Fix display of shm_open(SHM_ANON, ...).
Currently truss(1) shows shm_open(SHM_ANON, ...) as shm_open("(null)", ...). Detect the special value and display it by name.
Reviewed by: jhb, allanjude, tuexen Approved by: mjg (mentor) MFC with: r339224 Differential Revision: https://reviews.freebsd.org/D17461
show more ...
|
Revision tags: release/11.2.0 |
|
#
c8300696 |
| 29-Mar-2018 |
John Baldwin <jhb@FreeBSD.org> |
Reformat the enum of syscall argument types.
List enum values on separate lines to minimize diffs as new types are added. Split the enum values up into groups and use some simple sorting within gro
Reformat the enum of syscall argument types.
List enum values on separate lines to minimize diffs as new types are added. Split the enum values up into groups and use some simple sorting within groups (scalar enums are sorted by size, then base, all other groups are generally sorted alphabetically).
No functional change.
show more ...
|
#
eee07389 |
| 29-Mar-2018 |
John Baldwin <jhb@FreeBSD.org> |
Rename ClouduABIFDSFlags to CloudABIFDSFlags.
|
#
a2674e03 |
| 15-Jan-2018 |
Michael Tuexen <tuexen@FreeBSD.org> |
Decode msghdr argument of sendmsg() and recvmsg().
Sponsored by: Netflix, Inc.
|
#
4d7b9809 |
| 14-Jan-2018 |
Michael Tuexen <tuexen@FreeBSD.org> |
Improve support for sctp_generic_recvmsg() and sctp_generic_sendmsg() and add support for sctp_generic_sendmsg_iov().
Handle the struct iovec argument and the struct sctp_sndrcvinfo arguments.
|
#
72bfb31a |
| 13-Jan-2018 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r327886 through r327930.
|
#
ee6e58b2 |
| 13-Jan-2018 |
Michael Tuexen <tuexen@FreeBSD.org> |
Add support for readv() and writev() to truss.
Sponsored by: Netflix, Inc.
|
#
9d9fee3e |
| 29-Nov-2017 |
John Baldwin <jhb@FreeBSD.org> |
Replace a reference to a license in another file with the license text.
The relevant file was recently renamed, so the reference was stale. In addition, explicit licenses are more typical in our sou
Replace a reference to a license in another file with the license text.
The relevant file was recently renamed, so the reference was stale. In addition, explicit licenses are more typical in our sources.
show more ...
|