Diese Präsentation wurde erfolgreich gemeldet.
Die SlideShare-Präsentation wird heruntergeladen. ×

Practical SystemTAP basics: Perl memory profiling

Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Anzeige
Wird geladen in …3
×

Hier ansehen

1 von 22 Anzeige

Weitere Verwandte Inhalte

Diashows für Sie (20)

Anzeige

Ähnlich wie Practical SystemTAP basics: Perl memory profiling (20)

Anzeige

Aktuellste (20)

Practical SystemTAP basics: Perl memory profiling

  1. 1. Practical SystemTAP Basics Lubomir Rintel <lkundrak@v3.sk> BTC: 18PhCYhP1FxZvWjJgUF57J2DuHwHnr4eLa
  2. 2. Outline ● What can it do ● How does it work ● Language ● Practical example
  3. 3. “A dynamic tracing tool” ● GDB? ● DTrace? ● AWK? ● C?
  4. 4. Powerful language ● Probe points ● Translated into C ● Compiled into kernel module ● Can access user and kernel memory ● Communicate to the user space
  5. 5. #!/usr/bin/stap # Hello SystemTAP! probe begin { println ("Hello world!"); } probe syscall.open { println (execname (), " opened ", user_string ($filename)) }
  6. 6. # yum -y install kernel-devel systemtap-devel systemtap-runtime # debuginfo-install -y kernel # stap -v example1.stp ... Hello world! hald opened /sys/devices/... python opened /usr/share/... ^C #
  7. 7. So intense!
  8. 8. Probe points ● Static (think DTrace) ● Dynamic ● Kernel and User space ● Predefined (system calls, etc.) ● Can access variables in scope
  9. 9. begin end syscall.open process ("/usr/sbin/httpd") .function ("ap_invoke_handler") module ("fuse").function ("fuse_*").return kernel.function ("*setxattr*@fs/xattr.c") kernel.statement ("kfree@mm/slub.c+3") timer.ms (100)
  10. 10. Scripting ● Resembles AWK ● Can inline C! ● Functions ● Variables ● Loops ● Statistical aggregates ● I/O to userspace ● Safety limits apply
  11. 11. Library ● Probes ● Tapsets ● Functions ● Documentation stapex stapfuncs stapprobes stapvars (3stap) (3stap) (3stap) (3stap) - systemtap systemtap systemtap systemtap examples functions probe points variables
  12. 12. Practical example ● Simple Perl physical memory profiler ● Kernel probe ● User probe ● Simple and fast
  13. 13. Perl part: the virtual machine ● ● ● ● Interpreter instance (my_perl) holds current OP pointer OP points to a package it was compiled from Each OP is implemented by Perl_pp_*() function runops() loop consumes OP tree, calling Perl_pp_*()
  14. 14. /* The package a process is * executing */ global package; /* A Perl instruction */ probe process ("/usr/lib/perl5/CORE/libperl.so") .function ("Perl_pp_*") { pid = pid (); package[pid] = user_string ( $my_perl->Icurcop ->cop_stashpv); }
  15. 15. Kernel part: memory management ● User calls malloc() ● libc calls mmap2() to map anonymous memory ● kernel maps read-only shared zero-page ● write causes a page fault ● do_wp_page() copies on write
  16. 16. /* Allocations per package and pid */ global allocs; /* Account for COW */ probe kernel.function ("do_wp_page") { pid = pid (); pkg = package[pid]; if (pkg != "") allocs[pkg, pid] <<< mem_page_size (); }
  17. 17. Output ● Do it as fast as we can ● We are resource-constrained for safety ● Process it in userspace later on ● Also, flush it upon end
  18. 18. /* Dump frequently, to so that we * won't overflow */ probe timer.ms (100), end { foreach ([pkg, pid] in allocs) { printf (""%d","%s"n", @sum (allocs[pkg, pid]), pkg) } delete allocs; }
  19. 19. $ stap -v perlmem.stp |tee profile.csv "8192","main" "20480","Exporter" "45056","main" "36864","constant" "118784","strict" "8192","warnings" "16384","vars" "8192","Getopt::Long" "32768","warnings::register" "36864","main" "36864","Exporter" "24576","warnings" ...
  20. 20. What's missing ● eval ● Multiple interpreters ● execve() ● Memory reclaimation
  21. 21. Questions? Found this useful? My Bitcoin address is: 18PhCYhP1FxZvWjJgUF57J2DuHwHnr4eLa
  22. 22. Safety ● Native code vs. DTrace's virtual machine ● Running unprivileged ● Guru mode ● Inline C ● Timeouts ● Memory

×