]> sourceware.org Git - systemtap.git/log
systemtap.git
11 months agoPR30434 complete: Further removal of "if" branches related to old distros/kernel...
Housam Alamour [Wed, 16 Aug 2023 18:35:20 +0000 (14:35 -0400)]
PR30434 complete: Further removal of "if" branches related to old distros/kernel versi
ons. Removal of runtime/linux/autoconf-utrace-regset.c. Patch to previous commits to fix testcase errors.

11 months agoPR30434 continuation: Deprecate testsuite files and test contents
Housam Alamour [Mon, 14 Aug 2023 19:21:33 +0000 (15:21 -0400)]
PR30434 continuation: Deprecate testsuite files and test contents
related to older kernel/distro versions.

11 months agoPR30434 continuation:Remove process().insn probes from test files and documentation...
Housam Alamour [Mon, 14 Aug 2023 17:52:40 +0000 (13:52 -0400)]
PR30434 continuation:Remove process().insn probes from test files and documentation as well as related itrace.exp file.

11 months agoPR30434 continuation: CONFIG_UTRACE mentions removed and "if" branches related to...
Housam Alamour [Fri, 11 Aug 2023 16:15:37 +0000 (12:15 -0400)]
PR30434 continuation: CONFIG_UTRACE mentions removed and "if" branches related to old kernel version removed.

11 months agoPR30434 continuation: Added documentation of changes to News and langref.tex
Housam Alamour [Wed, 9 Aug 2023 14:57:59 +0000 (10:57 -0400)]
PR30434 continuation: Added documentation of changes to News and langref.tex

11 months agoPR30434 continuation: Removed old uprobes, uprobes2 implementation, uprobes-inc...
Housam Alamour [Tue, 25 Jul 2023 20:33:36 +0000 (16:33 -0400)]
PR30434 continuation:  Removed old uprobes, uprobes2 implementation, uprobes-inc.h & any mentions of CONFIG_UTRACE.

11 months agoPR30434: deprecate rhel6 (2.6.32*) support. Depricate code from files in the source...
Housam Alamour [Fri, 14 Jul 2023 20:04:02 +0000 (16:04 -0400)]
PR30434: deprecate rhel6 (2.6.32*) support. Depricate code from files in the source /systemtap directory. Mainly "if" branches that define macros used by older kernels/distros.

13 months agoAdjust runtime _access_process_vm_ to work with linux 6.5
William Cohen [Sun, 9 Jul 2023 20:46:20 +0000 (16:46 -0400)]
Adjust runtime _access_process_vm_ to work with linux 6.5

Linux kernel commit ca5e863233e8f6acd1792fd85d6bc2729a1b2c10
eliminated the vma argument for ‘get_user_pages_remote.  For linux 6.5
kernel use the get_user_page_vma_remote function in its place like the
__access_remote_vm function in mm/memory.c of the kernel.

13 months agoBug: unwinding would fail due to the .zdebug_frame section
Yichun Zhang (agentzh) [Mon, 10 Jul 2023 04:49:55 +0000 (21:49 -0700)]
Bug: unwinding would fail due to the .zdebug_frame section

elfutils already decompresses this section but stap might incorrectly
filter it out.

Thanks Junlong Li for the original patch.

Signed-off-by: Yichun Zhang (agentzh) <yichun@openresty.com>
13 months agorhbz2220986: SPCX license tweakage
Frank Ch. Eigler [Thu, 6 Jul 2023 23:46:07 +0000 (19:46 -0400)]
rhbz2220986: SPCX license tweakage

13 months agosystemtap.spec: temporarily disable --with-crash, rhbz2219728
Frank Ch. Eigler [Wed, 5 Jul 2023 02:16:10 +0000 (22:16 -0400)]
systemtap.spec: temporarily disable --with-crash, rhbz2219728

FTBFS observed on fedora rawhide

13 months agogit_version.sh: don't use --no-show-signature either
Frank Ch. Eigler [Fri, 30 Jun 2023 20:01:49 +0000 (16:01 -0400)]
git_version.sh: don't use --no-show-signature either

Can use |tail -1  on old & new git.

13 months agogit_version.h: stop using --broken
Frank Ch. Eigler [Fri, 30 Jun 2023 20:00:06 +0000 (16:00 -0400)]
git_version.h: stop using --broken

It's not available on rhel7 era git versions.

13 months agoruntime: tweak STAPCONF_MODULE_MEMORY cpp
Frank Ch. Eigler [Fri, 30 Jun 2023 19:56:16 +0000 (15:56 -0400)]
runtime: tweak STAPCONF_MODULE_MEMORY cpp

Correct build breakage on rhel7.

13 months agoFedora rawhide kernels are now flagging use of zero length arrays
William Cohen [Thu, 29 Jun 2023 17:17:38 +0000 (13:17 -0400)]
Fedora rawhide kernels are now flagging use of zero length arrays

The kernel has switched from using zero length arrays to flexible
arrays.  The kernel compiles have gotten picker and now flags accesses
beyond the end of end of arrays when possible.  When trying to run the
testsuite on Fedora rawhide got the following error due to a zero
length array:

In file included from /tmp/stapaBPtwB/stap_6b7e9ee7df4a3f6e4cfbffb7f92d8405_1736_src.c:543:
/home/wcohen/systemtap_write/install/share/systemtap/runtime/linux/stp_tracepoint.c: In function 'add_tracepoint':
/home/wcohen/systemtap_write/install/share/systemtap/runtime/linux/stp_tracepoint.c:148:22: error: 'strcmp' reading 1 or more bytes from a region of size 0 [-Werror=stringop-overread]
  148 |                 if (!strcmp(name, e->name)) {
      |                      ^~~~~~~~~~~~~~~~~~~~~
/home/wcohen/systemtap_write/install/share/systemtap/runtime/linux/stp_tracepoint.c:61:14: note: source object 'name' of size 0
   61 |         char name[0];
      |              ^~~~

Switched the zero length array in the struct to a flexible array to
eliminate the issue.

13 months agoISystemtap: Added examples corresponding to blog article
Ryan Goldberg [Wed, 28 Jun 2023 17:40:20 +0000 (13:40 -0400)]
ISystemtap: Added examples corresponding to blog article

13 months agoPR30570: Improved type inference within the try block to handle elided cases
Ryan Goldberg [Wed, 28 Jun 2023 13:17:49 +0000 (09:17 -0400)]
PR30570: Improved type inference within the try block to handle elided cases

13 months agosystemtap.spec: SPDX review cleanup
Frank Ch. Eigler [Tue, 20 Jun 2023 18:04:48 +0000 (14:04 -0400)]
systemtap.spec: SPDX review cleanup

SPDX codes for the testsuite, -client (tapset+docs!) and -devel
(tapset!)  updated.

Also corrected/filledin licenses for stap-prep and
interactive-notebook/codemirror/package.json.  Many other files remain
without a formal license header.  These all default to GPL-2.0-or-later

13 months agoruntime: ditch docs/ subdir
Frank Ch. Eigler [Tue, 20 Jun 2023 17:36:31 +0000 (13:36 -0400)]
runtime: ditch docs/ subdir

This is of only archaeological interest.

14 months agosystemtap.spec: switch to SPDX license tags
Frank Ch. Eigler [Mon, 12 Jun 2023 16:19:35 +0000 (12:19 -0400)]
systemtap.spec: switch to SPDX license tags

As per advice in:

https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_2
https://docs.fedoraproject.org/en-US/legal/update-existing-packages/

14 months agodwflpp.cxx: Fix past-the-end iterator dereference
Aaron Merey [Fri, 9 Jun 2023 23:44:31 +0000 (19:44 -0400)]
dwflpp.cxx: Fix past-the-end iterator dereference

dwflpp::getscopes dereferences cu_die_parent_cache_t iterators in a
loop without first checking whether the iterator is past-the-end.

This results in a past-the-end iterator dereference during the last
iteration of the loop.

Fix this by only dereferencing the iterator if it isn't past-the-end.

14 months agoMake runtime/transport/alloc.c compatible with newer struct module_memory
William Cohen [Thu, 8 Jun 2023 17:10:00 +0000 (13:10 -0400)]
Make runtime/transport/alloc.c compatible with newer struct module_memory

The upstream kernel commit ac3b43283923440900b4f36ca5f9f0b1ca43b70e
changed the structures for modules.  The runtime/transport/alloc.c
made an access to the struct module_memory when -DSTP_MAXMEMORY is
used on the command line and needed the appropriate field name for the
newer kernels.  This change allows stap script builds using
-DSTP_MAXMEMORY to work on Linux 6.4 kernels.

14 months agoMake runtime/transport/symbols.c compatible with newer struct module_memory
William Cohen [Thu, 8 Jun 2023 01:50:34 +0000 (21:50 -0400)]
Make runtime/transport/symbols.c compatible with newer struct module_memory

The upstream kernel commit ac3b43283923440900b4f36ca5f9f0b1ca43b70e
changed the structures for modules.  The runtime/transport/symbols.c
made an access to the struct module_memory and needed the appropriate
field name for the newer kernels.  This change allows another dozen of
the systemtap examples to pass on Linux 6.4 kernels.

14 months agoAdjust runtime module_kallsyms_on_each_symbol to work with Linux 6.3 kernels
William Cohen [Wed, 7 Jun 2023 17:18:01 +0000 (13:18 -0400)]
Adjust runtime module_kallsyms_on_each_symbol to work with Linux 6.3 kernels

The recent fix for PR30415 worked for new Linux 6.4 kernels and
pre-6.3 kernels, but did not work for Linux 6.3 kernels.  The Linux
6.3 kernel module_kallsyms_on_each_symbol function has both the
modname argument of the 6.4 kernels and the function passed in has the
earlier kernel's struct module pointer argument. The runtime/sym.c has
been adjusted to work with the the Linux 6.3 kernels.

14 months agoPR30415: conflicting types for ‘kallsyms_on_each_symbol’
Martin Cermak [Fri, 2 Jun 2023 21:28:07 +0000 (23:28 +0200)]
PR30415: conflicting types for ‘kallsyms_on_each_symbol’

14 months agoPR30484: stap-report: scrape less of /sys /proc
Frank Ch. Eigler [Wed, 24 May 2023 14:22:08 +0000 (10:22 -0400)]
PR30484: stap-report: scrape less of /sys /proc

Mainly: avoid process/busy parts like /proc/$pid.

14 months agoPR29765: Introduce probe nfs.aop.readfolio
Martin Cermak [Fri, 19 May 2023 09:06:25 +0000 (11:06 +0200)]
PR29765: Introduce probe nfs.aop.readfolio

14 months agoPR30459: removed an unused large C array allocated on the kernel stack
Yichun Zhang (agentzh) [Thu, 18 May 2023 05:43:48 +0000 (05:43 +0000)]
PR30459: removed an unused large C array allocated on the kernel stack

14 months agoPR30456: kernel 5.18+ removed set_fs() and we should use the new replacement, user_ac...
Yichun Zhang (agentzh) [Wed, 17 May 2023 00:17:07 +0000 (17:17 -0700)]
PR30456: kernel 5.18+ removed set_fs() and we should use the new replacement, user_access_begin()/user_access_end() for userland memory accesses.

Alas. user_access_begin() in newer kernels also performs access_ok() itself.
We pay a small price of duplicate access_ok() checks here for now.

We also use __access_ok() instead of access_ok() to avoid warnings on debug kernels.

We use __always_inline instead of inline for the C functions which might
be within the regions with UACCESS enabled (to please objtool's checker).

15 months agoSupport newer kernels with struct module_memory
William Cohen [Wed, 17 May 2023 14:38:31 +0000 (10:38 -0400)]
Support newer kernels with struct module_memory

The upstream kernel commit ac3b43283923440900b4f36ca5f9f0b1ca43b70e
changed the structures for modules.  The runtime printing of kernel
information accessed information about modules and the fields in
module structure.  A test has been added to the autoconf list to
determine the appropriate fields to get information about the
module.

15 months agoPR30454: Fix CR3 switching races on X86 when reading userland memory
Yichun Zhang (agentzh) [Tue, 16 May 2023 21:13:32 +0000 (21:13 +0000)]
PR30454: Fix CR3 switching races on X86 when reading userland memory

Backported the fix from usptream kenrel commit d319f344561de.

See upstream kernel commits 4012e77a90 and d319f344561de for more
details.

15 months agoBug: our autoconf mechanism might find unexported symbols in kernel headers not meant...
Yichun Zhang (agentzh) [Tue, 16 May 2023 20:47:54 +0000 (20:47 +0000)]
Bug: our autoconf mechanism might find unexported symbols in kernel headers not meant for kernel modules

The current BULID_CHECK thing does not pass -DMODULE option as the real
kernel build system does and thus may expose unexported symbols like
nmi_uaccess_okay() to our autoconf test programs.

15 months agoPR30408: fixed excessive read faults when reading userland memory from within perf...
Yichun Zhang (agentzh) [Tue, 16 May 2023 19:12:57 +0000 (19:12 +0000)]
PR30408: fixed excessive read faults when reading userland memory from within perf event/kprobes handlers

The user_addr_max() macro is gone since kernel 5.18, which broke stap's
userland reading routines.

And also since kernel 5.18, access_ok() now does address range checks on
all architectures. so we don't bother checking it ourselves for newer
kernels.

15 months agostap-server logic: drop scraped NSS error table
Frank Ch. Eigler [Fri, 12 May 2023 16:43:55 +0000 (12:43 -0400)]
stap-server logic: drop scraped NSS error table

This used to be needed in the ancient days, when the NSS-related
shared libraries did not reliably decode error codes into usable
messages.  This stuff works nwo, so we don't have to carry this
hand-scraped table around any more.

15 months agoPR30442: failing optional statement probes should not trigger pass2 exceptions
Frank Ch. Eigler [Fri, 12 May 2023 15:13:45 +0000 (11:13 -0400)]
PR30442: failing optional statement probes should not trigger pass2 exceptions

In tapsets.cxx, query_cu() and query_module() aggressively caught &
sess-print_error'd semantic_errors from subsidiary call sites.  They
are unaware of whether the probe in question is being resolved within
an optional (? or !) context.  Instead of this, they now simply let
the exceptions propagate out to derive_probes() or similar, which does
know whether exceptions are errors in that context.  That means
exceptions can propagate through elfutils iteration machinery too,
perhaps risking C level memory leaks, but so be it.

This fix goes well beyond statement probes per se, but hand-testing
and the testsuite appear not to show regressions related to this.

Added semok/badstmt.exp to test.

15 months agotestsuite: untested "$t est" typo fix
Frank Ch. Eigler [Fri, 12 May 2023 14:55:28 +0000 (10:55 -0400)]
testsuite: untested "$t  est" typo fix

15 months agoconfigury: prep for next version
Frank Ch. Eigler [Thu, 11 May 2023 21:56:26 +0000 (17:56 -0400)]
configury: prep for next version

15 months agorelease date fix
Frank Ch. Eigler [Fri, 28 Apr 2023 17:51:27 +0000 (13:51 -0400)]
release date fix

15 months agoPR30405: stapkp_init(): we should not disable preemption around the kallsyms_on_each_...
Yichun Zhang (agentzh) [Sat, 6 May 2023 22:21:14 +0000 (15:21 -0700)]
PR30405: stapkp_init(): we should not disable preemption around the kallsyms_on_each_symbol() call

15 months agofix duplicate codegen in stapregex-dfa.cxx
Serhei Makarov [Mon, 8 May 2023 12:15:09 +0000 (08:15 -0400)]
fix duplicate codegen in stapregex-dfa.cxx

On a span with only '\0', the existing DFA codegen was emitting the same
bookkeeping code again after the 'break;' -- harmless but stupid.

15 months agofix PR30395: Regex code has invalid memory reads caught by KASAN
Serhei Makarov [Mon, 8 May 2023 12:12:59 +0000 (08:12 -0400)]
fix PR30395: Regex code has invalid memory reads caught by KASAN

The TNFA tag cleanup on a '\0' byte would incorrectly read beyond the
end of the string. Keeping YYCURSOR on the nul byte fixes this.

Will harden the fix a little (adding a separate increment-only cursor
for safety) before I close the bug, but this change is already
sufficient if the DFA was generated correctly.

15 months agoPR30406: C symbol conflicts when using stap -DDEBUG_MEM and kernel 6.2
Yichun Zhang (agentzh) [Sun, 30 Apr 2023 21:16:39 +0000 (14:16 -0700)]
PR30406: C symbol conflicts when using stap -DDEBUG_MEM and kernel 6.2

The C symbol MEM_PERCPU was in conflict. We add the STP_ prefix to our
own symbol names.

15 months agoNEWS++ release-4.9a
Frank Ch. Eigler [Fri, 28 Apr 2023 16:07:15 +0000 (12:07 -0400)]
NEWS++

15 months agopr18649.exp: Consider "No DWARF information found" warning expected
Martin Cermak [Fri, 28 Apr 2023 13:37:43 +0000 (15:37 +0200)]
pr18649.exp: Consider "No DWARF information found" warning expected

Testing without debuginfo is part of the test scenario, so it makes
sense to ignore warnings about missing debuginfo.

15 months agoPR30396: adapt runtime to linux 6.3-rc
Frank Ch. Eigler [Thu, 27 Apr 2023 21:02:26 +0000 (17:02 -0400)]
PR30396: adapt runtime to linux 6.3-rc

Found a case where CFI/--ibt interfered with our self-backtrace
capability, and a compatibility bit with init/cleanup_module.

15 months agopre-release prep/regen
Frank Ch. Eigler [Wed, 26 Apr 2023 18:41:29 +0000 (14:41 -0400)]
pre-release prep/regen

15 months agoISystemtap: spec update to fix install issues where pip is unavailable
Ryan Goldberg [Thu, 27 Apr 2023 15:47:33 +0000 (11:47 -0400)]
ISystemtap: spec update to fix install issues where pip is unavailable

15 months agoTest for kernels that backported removal of <linux/genhd.h> include
William Cohen [Tue, 25 Apr 2023 14:56:47 +0000 (10:56 -0400)]
Test for kernels that backported removal of <linux/genhd.h> include

Some kernels (RHEL9) backported patches that removed the
<linux/genhd.h> include.  Thus, the ioblock.stp tapset cannot simply
check the kernel version to determine whether the include file is
available.  The added autoconf test will determine whether the include
is available.

15 months agoAllow nfsd.stp tapset to work on kernels with CONFIG_NFSD_V2 unset
William Cohen [Tue, 25 Apr 2023 13:44:51 +0000 (09:44 -0400)]
Allow nfsd.stp tapset to work on kernels with CONFIG_NFSD_V2 unset

Some of the newer Fedora kernels have CONFIG_NFSD_V2 unset (*).  The
nfsd.stp tapset was requiring various NFSD V2 probes points to exist.
These required probes caused examples like nfsd-trace and nfsdtop
build failures.  Making the NFSD V2 probes optional allows the
nfsd.stp tapset to work on these kernels.

* https://src.fedoraproject.org/rpms/kernel/c/897c8e8d51d02e159116d60fe5bb5dde79150162?branch=rawhide

15 months agoBZ2180328: disable pass-2 dyninst liveness analysis on CONFIG_RETPOLINE kernels
Frank Ch. Eigler [Wed, 19 Apr 2023 15:23:16 +0000 (11:23 -0400)]
BZ2180328: disable pass-2 dyninst liveness analysis on CONFIG_RETPOLINE kernels

As a stopgap measure, ameliorate the dramatic dyninst analysis time
required to liveness-check $var assignments in kernels compiled with
retpolines.  Just skip the effort (with a warning).

See also: https://github.com/dyninst/dyninst/issues/1305 .

15 months agostap-prep: Provide --quiet switch
Martin Cermak [Wed, 19 Apr 2023 11:44:57 +0000 (13:44 +0200)]
stap-prep:  Provide --quiet switch

The stap-prep may run in automation environment, where
verbose output and progress indicators pollute logs.

Teach stap-prep to run quietly.

15 months agoAdded docs for livepatch.stp
Ryan Goldberg [Tue, 18 Apr 2023 15:47:59 +0000 (11:47 -0400)]
Added docs for livepatch.stp

15 months agoISystemtap: Tweaked monitor to fix older build issues
Ryan Goldberg [Tue, 18 Apr 2023 14:26:44 +0000 (10:26 -0400)]
ISystemtap: Tweaked monitor to fix older build issues

16 months agoISystemtap: Added man page stap-jupyter(1)
Ryan Goldberg [Mon, 17 Apr 2023 17:32:38 +0000 (13:32 -0400)]
ISystemtap: Added man page stap-jupyter(1)

16 months agoISystemtap: Improved logging and bug fixes
Ryan Goldberg [Fri, 14 Apr 2023 15:31:14 +0000 (11:31 -0400)]
ISystemtap: Improved logging and bug fixes

16 months agoISystemtap: Added stap-jupyter-* commands and tweaked containers
Ryan Goldberg [Fri, 31 Mar 2023 16:23:00 +0000 (12:23 -0400)]
ISystemtap: Added stap-jupyter-* commands and tweaked containers

16 months agoISystemtap: Updated NEWS, spec and other small tweaks
Ryan Goldberg [Wed, 22 Mar 2023 20:11:06 +0000 (16:11 -0400)]
ISystemtap: Updated NEWS, spec and other small tweaks

16 months agoISystemtap: Added containerized encapsulation of jupyter kernel
Ryan Goldberg [Thu, 16 Mar 2023 17:21:46 +0000 (13:21 -0400)]
ISystemtap: Added containerized encapsulation of jupyter kernel

16 months agoISystemtap: Highlighting, examples and tests
Ryan Goldberg [Tue, 7 Mar 2023 21:32:33 +0000 (16:32 -0500)]
ISystemtap: Highlighting, examples and tests

16 months agoISystemtap: Changes to monitor mode & language server for use with jupyter
Ryan Goldberg [Mon, 6 Mar 2023 18:06:47 +0000 (13:06 -0500)]
ISystemtap: Changes to monitor mode & language server for use with jupyter

16 months agoISystemtap: New Jupyter kernel
Ryan Goldberg [Mon, 6 Mar 2023 17:13:19 +0000 (12:13 -0500)]
ISystemtap: New Jupyter kernel

16 months agodropwatch.stp sample: use symdata vs symname for more info
Frank Ch. Eigler [Wed, 29 Mar 2023 20:39:43 +0000 (16:39 -0400)]
dropwatch.stp sample: use symdata vs symname for more info

The script still needs to be run via something like this for
module/symbol names:

% stap --example dropwatch.stp --all-modules

16 months agoLang Server: Updated gcc version requirement
Ryan Goldberg [Mon, 27 Mar 2023 16:00:14 +0000 (12:00 -0400)]
Lang Server: Updated gcc version requirement

16 months agoLang Server: Fix for deprecated jsonc call and older gcc versions
Ryan Goldberg [Thu, 23 Mar 2023 17:54:07 +0000 (13:54 -0400)]
Lang Server: Fix for deprecated jsonc call and older gcc versions

17 months agoPR30123: rework dwarf4/5 DW_AT_data_bit_offset support
Frank Ch. Eigler [Thu, 9 Mar 2023 22:05:33 +0000 (17:05 -0500)]
PR30123: rework dwarf4/5 DW_AT_data_bit_offset support

$subject DWARF attribute is another way of designating the relative
position of a member field of a struct within it, generally a
bitfield.  It's an absolute bit offset relative to the beginning of
the containing object, rather than the immediately containing word, so
the bit offset numbers can become huge.

New code treats these more correctly, by intercepting them in
dwflpp::translate_final_fetch_or_store to offset the final load/store
address, and relativizing the bit offsets.

New test case covers a variety of -gdwarf* levels with a userspace
target program.

17 months agotestsuite Makefiles: suppress debuginfod client tracing
Frank Ch. Eigler [Thu, 9 Mar 2023 22:03:31 +0000 (17:03 -0500)]
testsuite Makefiles: suppress debuginfod client tracing

Use a strategically placed env -uDEBUGINFOD_PROGRESS -uDEBUGINFOD_VERBOSE .

17 months agodtrace.in: add emacs mode marker for python
Frank Ch. Eigler [Mon, 27 Feb 2023 14:37:19 +0000 (09:37 -0500)]
dtrace.in: add emacs mode marker for python

17 months agodtrace: Use deterministic temp file creation for all temp files
Gioele Barabucci [Mon, 27 Feb 2023 11:56:52 +0000 (12:56 +0100)]
dtrace: Use deterministic temp file creation for all temp files

`dtrace -G -C` creates temporary files with random filenames. The name
of these temporary files gets embedded in the ELF `.symtab` of the final
object files, making them always slightly different.

This behavior makes all packages that use `dtrace`-produced object files
inherently non reproducible.

To fix this issue all temporary files are now created using
the same deterministic procedure currently used only for the
temporary "c." files.

Fixes: https://bugs.debian.org/1032055
Fixes: https://bugs.debian.org/1032056
Signed-off-by: Gioele Barabucci <gioele@svario.it>
18 months agointeractive.cxx: use temporary file with .stp suffix
Martin Cermak [Fri, 10 Feb 2023 13:08:22 +0000 (14:08 +0100)]
interactive.cxx:  use temporary file with .stp suffix

In systemtap interactive mode (stap -i), editors like vim can
benefit from this change by automatically turning on the stap
syntax highlighting and completion.  For this to work, the
EDITOR env var needs to point to the editor of choice.

18 months agostap_language_server_tester.py: Compatibility with python pre-3.7 (cont'd)
Martin Cermak [Wed, 8 Feb 2023 12:03:56 +0000 (13:03 +0100)]
stap_language_server_tester.py:  Compatibility with python pre-3.7 (cont'd)

18 months agostap_language_server_tester.py: Compatibility with python pre-3.7
Martin Cermak [Wed, 8 Feb 2023 11:23:03 +0000 (12:23 +0100)]
stap_language_server_tester.py:  Compatibility with python pre-3.7

18 months agostap_language_server_tester.py: Compatibility with python pre-3.10
Martin Cermak [Wed, 8 Feb 2023 09:01:28 +0000 (10:01 +0100)]
stap_language_server_tester.py:  Compatibility with python pre-3.10

18 months agoLang Server: Testsuite update
Ryan Goldberg [Tue, 7 Feb 2023 18:04:15 +0000 (13:04 -0500)]
Lang Server: Testsuite update

18 months agoLang Server: Removed c++17 features to fix rhel8 build
Ryan Goldberg [Mon, 6 Feb 2023 20:49:30 +0000 (15:49 -0500)]
Lang Server: Removed c++17 features to fix rhel8 build

18 months agoLang Server: News update and minor tweaks
Ryan Goldberg [Fri, 3 Feb 2023 16:03:23 +0000 (11:03 -0500)]
Lang Server: News update and minor tweaks

18 months agoLang Server: Moved to using stap parser
Ryan Goldberg [Thu, 2 Feb 2023 19:43:12 +0000 (14:43 -0500)]
Lang Server: Moved to using stap parser

18 months agoLang-Server: Small bug fixes
Ryan Goldberg [Tue, 24 Jan 2023 21:59:46 +0000 (16:59 -0500)]
Lang-Server: Small bug fixes

18 months agoLang Server: Context var completion & scope bugfix
Ryan Goldberg [Mon, 23 Jan 2023 16:39:16 +0000 (11:39 -0500)]
Lang Server: Context var completion & scope bugfix

18 months agoAdded null-checks to parser
Ryan Goldberg [Thu, 19 Jan 2023 19:30:18 +0000 (14:30 -0500)]
Added null-checks to parser

18 months agoLang server: Small bug fixes & TODO update
Ryan Goldberg [Thu, 19 Jan 2023 19:19:17 +0000 (14:19 -0500)]
Lang server: Small bug fixes & TODO update

18 months agoLang-server: optimized local definition parsing
Ryan Goldberg [Wed, 18 Jan 2023 21:40:35 +0000 (16:40 -0500)]
Lang-server: optimized local definition parsing

In order to speed up full-syncs (ex. jupyter-lsp)
compute the diff between the old source and the text.
This allows for a much faster updating of local definitions
and thus a faster completion (without a multi-second delay)

18 months agoLang server: Added incremental synchronization
Ryan Goldberg [Fri, 13 Jan 2023 15:53:40 +0000 (10:53 -0500)]
Lang server: Added incremental synchronization

18 months agoAdded local global/function LS completion
Ryan Goldberg [Tue, 10 Jan 2023 21:25:48 +0000 (16:25 -0500)]
Added local global/function LS completion

18 months agoadd some notes of things interactively tested & to improve
Frank Ch. Eigler [Tue, 3 Jan 2023 18:32:19 +0000 (13:32 -0500)]
add some notes of things interactively tested & to improve

18 months agotolerate stap --language-server </dev/null
Frank Ch. Eigler [Tue, 3 Jan 2023 17:27:35 +0000 (12:27 -0500)]
tolerate stap --language-server </dev/null

18 months agolanguage-server: configury refresh
Frank Ch. Eigler [Tue, 3 Jan 2023 16:41:04 +0000 (11:41 -0500)]
language-server: configury refresh

18 months agoAdded emacs, vscode and eclipse usage recipes
Ryan Goldberg [Fri, 23 Dec 2022 20:01:49 +0000 (15:01 -0500)]
Added emacs, vscode and eclipse usage recipes

18 months agoAdded README for language-server
Ryan Goldberg [Tue, 20 Dec 2022 21:55:42 +0000 (16:55 -0500)]
Added README for language-server

18 months agoAdded tests for language-server
Ryan Goldberg [Tue, 20 Dec 2022 21:21:44 +0000 (16:21 -0500)]
Added tests for language-server

18 months agoAdded language server feature: completion
Ryan Goldberg [Tue, 20 Dec 2022 16:52:34 +0000 (11:52 -0500)]
Added language server feature: completion

18 months agoThe base language server impl
Ryan Goldberg [Tue, 20 Dec 2022 14:17:40 +0000 (09:17 -0500)]
The base language server impl

18 months agoAdded a new mode: language server
Ryan Goldberg [Mon, 19 Dec 2022 22:29:48 +0000 (17:29 -0500)]
Added a new mode: language server

This mode will turn the stap process into a
language server, which will use the official
language-server-protocol. It can be started
with the new --language-server flag

18 months agoAdd jsonrpc 2.0 client implementation
Ryan Goldberg [Mon, 19 Dec 2022 22:03:24 +0000 (17:03 -0500)]
Add jsonrpc 2.0 client implementation

18 months agoclient-http.cxx: Fix build error rpmFreeCrypto not declared
Aaron Merey [Fri, 27 Jan 2023 16:16:43 +0000 (11:16 -0500)]
client-http.cxx: Fix build error rpmFreeCrypto not declared

rpm-4.18.0 moved the declaration of rpmFreeCrypto into rpm/rpmcrypto.h.

Include this header in client-http.cxx when required in order to avoid
the following error:

 CXX      stap_gen_cert-util.o
../systemtap/client-http.cxx: In member function ‘std::string http_client::get_rpmname(std::string&)’:
../systemtap/client-http.cxx:482:5: error: ‘rpmFreeCrypto’ was not declared in this scope
  482 |     rpmFreeCrypto ();
      |     ^~~~~~~~~~~~~

See https://sourceware.org/bugzilla/show_bug.cgi?id=29094

18 months agodtrace.exp: prevent filesystem access problem with as_non_root()
Martin Cermak [Thu, 26 Jan 2023 12:18:20 +0000 (13:18 +0100)]
dtrace.exp:  prevent filesystem access problem with as_non_root()

18 months agoruntime/stack.c: Fix print_backtrace()
Martin Cermak [Wed, 25 Jan 2023 16:57:24 +0000 (17:57 +0100)]
runtime/stack.c: Fix print_backtrace()

Before this update, print_backtrace() was producing duplicate lines
at the end of the trace:

$ cat /root/systemtap/testsuite/systemtap.base/backtrace.stp
probe begin, end, procfs("foo").read, procfs("foo").write { log(pp()) print_backtrace() }
probe timer.ms(100) { log(pp()) print_backtrace() exit() }
$ stap /root/systemtap/testsuite/systemtap.base/backtrace.stp -d kernel -w
begin
 0xffffffffc1091368 [stap_7a1114b3de11b6b97c907eafd2782_1404790+0xb368/0x0]
 0xffffffffc109156a [stap_7a1114b3de11b6b97c907eafd2782_1404790+0xb56a/0x0]
 0xffffffffc1091d2b [stap_7a1114b3de11b6b97c907eafd2782_1404790+0xbd2b/0x0]
 0xffffffffc108a333 [stap_7a1114b3de11b6b97c907eafd2782_1404790+0x4333/0x0]
 0xffffffffc1092fc6 [stap_7a1114b3de11b6b97c907eafd2782_1404790+0xcfc6/0x0]
 0xffffffffc108ce22 [stap_7a1114b3de11b6b97c907eafd2782_1404790+0x6e22/0x0]
 0xffffffffb8e545b2 : proc_reg_write+0x52/0xa0 [kernel]
 0xffffffffb8dc6202 : vfs_write+0xb2/0x280 [kernel]
 0xffffffffb8dc66bf : ksys_write+0x5f/0xe0 [kernel]
 0xffffffffb9520159 : do_syscall_64+0x59/0x90 [kernel]
 0xffffffffb960009b : entry_SYSCALL_64_after_hwframe+0x63/0xcd [kernel]
 0xffffffffb960009b : entry_SYSCALL_64_after_hwframe+0x63/0xcd [kernel] (inexact)
[ ... stuff deleted ... ]

See the very last line of the above trace, which is duplicit.  This problem
was detected by the backtrace.exp testcase.  This update prevents calling the
fallback _stp_stack_print_fallback() in case _stp_print_addr() was already able
to successfully provide some output based on dwarf unwinding.

18 months agodtrace.exp: clean up junk output from previous runs
Martin Cermak [Wed, 25 Jan 2023 15:21:33 +0000 (16:21 +0100)]
dtrace.exp: clean up junk output from previous runs

18 months agodw_entry_value.exp: fix the testcase
Martin Cermak [Wed, 18 Jan 2023 13:24:12 +0000 (14:24 +0100)]
dw_entry_value.exp: fix the testcase

After fixing 05eb6742c1 (Handle DWARF5 DW_OP_implicit_pointer and
DW_OP_entry_value), dw_entry_value.exp no more ends up untested,
but instead often fails in Pass 5.

The problem was that stap_run() sends kill -INT to stap right after
the load generation function (no_load() in this case) is executed,
causing a Pass 5 failure and => testcase failure (unexpected output).

A workaround would be to sleep a second before the signal is sent so
that stap can cleanly finish, and the signal can't be delivered, making
the testcase green. But that'd be just a workaround.

This update relies on stap_run2() instead of stap_run(), simplifying
the testcase and making it stable.

19 months agoGenerate the 32-bit RISCV syscall name<->number mappings.
William Cohen [Mon, 16 Jan 2023 01:40:27 +0000 (20:40 -0500)]
Generate the 32-bit RISCV syscall name<->number mappings.

19 months agoGenerate event syscall name<->number mappings for 32-bit RISCV
William Cohen [Mon, 16 Jan 2023 01:29:51 +0000 (20:29 -0500)]
Generate event syscall name<->number mappings for 32-bit RISCV

There can be a lot of compiler complaints on 64-bit RISCV when
compiling systemtap scripts using syscall_any tapsets about the
missing 32-bit syscall name<->number mappings.  The strace code does
not have special tables for 32-bit RISCV.  However, the numbers look
to be virtually the same for both 64-bit and 32-bit RISCV.  For the
time being just generating a 32-bit version of the table from the
64-bit strace tables.

This page took 0.062938 seconds and 5 git commands to generate.