]> xenbits.xensource.com Git - libvirt.git/commit
Add dtrace static probes in libvirtd
authorDaniel P. Berrange <berrange@redhat.com>
Tue, 14 Sep 2010 16:30:32 +0000 (17:30 +0100)
committerDaniel P. Berrange <berrange@redhat.com>
Fri, 22 Oct 2010 11:00:39 +0000 (12:00 +0100)
commit968eb4e5cdb2175bb283218c2339be110874ffff
tree981e442ec4d91438d0c9a3dd789652c846fd5243
parent9afa0060820fb6c682175165aa0f7be57034bea1
Add dtrace static probes in libvirtd

Adds initial support for dtrace static probes in libvirtd
daemon, assuming use of systemtap dtrace compat shim on
Linux. The probes are inserted for network client connect,
disconnect, TLS handshake states and authentication protocol
states.

This can be tested by running the xample program and then
attempting to connect with any libvirt client (virsh,
virt-manager, etc).

 # stap examples/systemtap/client.stp
  Client fd=44 connected readonly=0
  Client fd=44 auth polkit deny pid:24997,uid:500
  Client fd=44 disconnected
  Client fd=46 connected readonly=1
  Client fd=46 auth sasl allow test
  Client fd=46 disconnected

The libvirtd.stp file should also really not be required,
since it is duplicated info that is already available in
the main probes.d definition file. A script to autogenerate
the .stp file is needed, either in libvirtd tree, or better
as part of systemtap itself.

* Makefile.am: Add examples/systemtap subdir
* autobuild.sh: Disable dtrace for mingw32
* configure.ac: Add check for dtrace
* daemon/.gitignore: Ignore generated dtrace probe file
* daemon/Makefile.am: Build dtrace probe header & object
  files
* daemon/libvirtd.stp: SystemTAP convenience probeset
* daemon/libvirtd.c: Add connect/disconnect & TLS probes
* daemon/remote.c: Add SASL and PolicyKit auth probes
* daemon/probes.d: Master probe definition
* daemon/libvirtd.h: Add convenience macro for probes
  so that compilation is a no-op when dtrace is not available
* examples/systemtap/Makefile.am, examples/systemtap/client.stp
  Example systemtap script using dtrace probe markers
* libvirt.spec.in: Enable dtrace on F13/RHEL6
* mingw32-libvirt.spec.in: Force disable dtrace
14 files changed:
Makefile.am
autobuild.sh
configure.ac
daemon/.gitignore
daemon/Makefile.am
daemon/libvirtd.c
daemon/libvirtd.h
daemon/libvirtd.stp [new file with mode: 0644]
daemon/probes.d [new file with mode: 0644]
daemon/remote.c
examples/systemtap/Makefile.am [new file with mode: 0644]
examples/systemtap/client.stp [new file with mode: 0644]
libvirt.spec.in
mingw32-libvirt.spec.in