Class: RBTraceCLI

Inherits:
Object
  • Object
show all
Defined in:
lib/rbtrace/cli.rb

Class Method Summary collapse

Class Method Details

.check_msgmnbObject

Suggest increasing the maximum number of bytes allowed on a message queue to 1MB.

This defaults to 16k on Linux, and is hardcoded to 2k in OSX kernel.

Returns nothing.



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/rbtrace/cli.rb', line 14

def self.check_msgmnb
  if File.exist?(msgmnb = "/proc/sys/kernel/msgmnb")
    curr = File.read(msgmnb).to_i
    max = 1024*1024
    cmd = "sysctl kernel.msgmnb=#{max}"

    if curr < max
      if Process.uid == 0
        STDERR.puts "*** running `#{cmd}` for you to prevent losing events (currently: #{curr} bytes)"
        system(cmd)
      else
        STDERR.puts "*** run `sudo #{cmd}` to prevent losing events (currently: #{curr} bytes)"
      end
    end
  end
end

.cleanup_queuesObject

Look for any message queues pairs (pid/-pid) that no longer have an associated process alive, and remove them.

Returns nothing.



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/rbtrace/cli.rb', line 35

def self.cleanup_queues
  if (pids = `ps ax -o pid`.split("\n").map{ |p| p.strip.to_i }).any?
    ipcs = `ipcs -q`.split("\n").grep(/^(q|0x)/).map{ |line| line[/(0x[a-f0-9]+)/,1] }.compact
    ipcs.each do |ipci|
      next if ipci.match(/^0xf/)

      qi = ipci.to_i(16)
      qo = 0xffffffff - qi + 1
      ipco = "0x#{qo.to_s(16)}"

      if ipcs.include?(ipco) and !pids.include?(qi)
        STDERR.puts "*** removing stale message queue pair: #{ipci}/#{ipco}"
        system("ipcrm -Q #{ipci} -Q #{ipco}")
      end
    end
  end
end

.runObject



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
# File 'lib/rbtrace/cli.rb', line 53

def self.run
  check_msgmnb
  cleanup_queues

  parser = Optimist::Parser.new do
    version <<-EOS
rbtrace: like strace, but for ruby code
version #{RBTracer::VERSION}
(c) 2013 Aman Gupta (tmm1)
http://github.com/tmm1/rbtrace
EOS

    banner <<-EOS
rbtrace shows you method calls happening inside another ruby process in real time.

to use rbtrace, simply `require "rbtrace"` in your ruby app.

for examples and more information, see http://github.com/tmm1/rbtrace

Usage:

rbtrace --exec <CMD>     # run and trace <CMD>
rbtrace --pid <PID+>     # trace the given process(es)
rbtrace --ps <CMD>       # look for running <CMD> processes to trace

rbtrace -o <FILE>        # write output to file
rbtrace -t               # show method call start time
rbtrace -n               # hide duration of each method call
rbtrace -r 3             # use 3 spaces to nest method calls

Tracers:

rbtrace --firehose       # trace all method calls
rbtrace --slow=250       # trace method calls slower than 250ms
rbtrace --methods a b c  # trace calls to given methods
rbtrace --gc             # trace garbage collections

rbtrace -c io            # trace common input/output functions
rbtrace -c eventmachine  # trace common eventmachine functions
rbtrace -c my.tracer     # trace all methods listed in my.tracer

Method Selectors:

sleep                    # any instance or class method named sleep
String#gsub              # specific instance method
Process.pid              # specific class method
Dir.                     # any class methods in Dir
Fixnum#                  # any instance methods of Fixnum

Trace Expressions:

method(self)             # value of self at method invocation
method(@ivar)            # value of given instance variable
method(arg1, arg2)       # value of argument local variables
method(self.attr)        # value of arbitrary ruby expression
method(__source__)       # source file/line of callsite


All Options:\n

EOS
    opt :exec,
      "spawn new ruby process and attach to it",
      :type => :strings,
      :short => nil

    opt :pid,
      "pid of the ruby process to trace",
      :type => :ints,
      :short => '-p'

    opt :ps,
      "find any matching processes to trace",
      :type => :string,
      :short => nil

    opt :firehose,
      "show all method calls",
      :short => '-f'

    opt :slow,
      "watch for method calls slower than 250 milliseconds",
      :default => 250,
      :short => '-s'

    opt :slowcpu,
      "watch for method calls slower than 250 milliseconds (cpu time only)",
      :default => 250,
      :short => nil

    opt :slow_methods,
      "method(s) to restrict --slow to",
      :type => :strings

    opt :methods,
      "method(s) to trace (valid formats: sleep String#gsub Process.pid Kernel# Dir.)",
      :type => :strings,
      :short => '-m'

    opt :gc,
      "trace garbage collections"

    opt :start_time,
      "show start time for each method call",
      :short => '-t'

    opt :no_duration,
      "hide time spent in each method call",
      :default => false,
      :short => '-n'

    opt :output,
      "write trace to filename",
      :type => String,
      :short => '-o'

    opt :append,
      "append to output file instead of overwriting",
      :short => '-a'

    opt :prefix,
      "prefix nested method calls with N spaces",
      :default => 2,
      :short => '-r'

    opt :config,
      "config file",
      :type => :strings,
      :short => '-c'

    opt :devmode,
      "assume the ruby process is reloading classes and methods"

    opt :fork,
      "fork a copy of the process for debugging (so you can attach gdb.rb)"

    opt :eval,
      "evaluate a ruby expression in the process",
      :type => String,
      :short => '-e'

    opt :interactive,
      "interactive",
      :type => String,
      :default => 'irb',
      :short => '-i'

    opt :backtraces,
      "get backtraces for all threads in current process, -1 denotes all frames",
      :type => String,
      :default => '-1',
      :short => '-b'

    opt :backtrace,
      "get lines from the current backtrace in the process",
      :type => :int

    opt :wait,
      "seconds to wait before attaching to process",
      :default => 0,
      :short => nil

    opt :timeout,
      "seconds to wait before giving up on attach/detach/eval",
      :default => 5

    opt :memory,
      "report on process memory usage"


    opt :heapdump,
      "generate a heap dump for the process in FILENAME",
      :default => "AUTO",
      :short => "-h"

    opt :shapesdump,
      "generate a shapes dump for the process in FILENAME",
      :default => "AUTO"
  end

  opts = Optimist.with_standard_exception_handling(parser) do
    raise Optimist::HelpNeeded if ARGV.empty?
    parser.stop_on '--exec'
    parser.parse(ARGV)
  end

  if ARGV.first == '--exec'
    ARGV.shift
    opts[:exec_given] = true
    opts[:exec] = ARGV.dup
    ARGV.clear
  end

  unless %w[ fork eval interactive backtrace backtraces slow slowcpu firehose methods config gc memory heapdump].find{ |n| opts[:"#{n}_given"] }
    $stderr.puts "Error: --slow, --slowcpu, --gc, --firehose, --methods, --interactive, --backtraces, --backtrace, --memory, --heapdump, --shapesdump or --config required."
    $stderr.puts "Try --help for help."
    exit(-1)
  end

  if opts[:fork_given] and opts[:pid].size != 1
    parser.die :fork, '(can only be invoked with one pid)'
  end

  if opts[:exec_given]
    if opts[:pid_given]
      parser.die :exec, '(cannot exec and attach to pid)'
    end
    if opts[:fork_given]
      parser.die :fork, '(cannot fork inside newly execed process)'
    end
  end

  methods, smethods = [], []

  if opts[:methods_given]
    methods += opts[:methods]
  end
  if opts[:slow_methods_given]
    smethods += opts[:slow_methods]
  end

  if opts[:config_given]
    Array(opts[:config]).each do |config|
      file = [
        config,
        File.expand_path("../../../tracers/#{config}.tracer", __FILE__)
      ].find{ |f| File.exist?(f) }

      unless file
        parser.die :config, '(file does not exist)'
      end

      File.readlines(file).each do |line|
        line.strip!
        next if line =~ /^#/
        next if line.empty?

        methods << line
      end
    end
  end

  tracee = nil

  if opts[:ps_given]
    list = `ps aux`.split("\n")
    filtered = list.grep(Regexp.new opts[:ps])
    filtered.reject! do |line|
      line =~ /^\w+\s+(#{Process.pid}|#{Process.ppid})\s+/ # cannot trace self
    end

    if filtered.size > 0
      max_len = filtered.size.to_s.size

      STDERR.puts "*** found #{filtered.size} process#{filtered.size == 1 ? "" : "es"} matching #{opts[:ps].inspect}"
      filtered.each_with_index do |line, i|
        prefix = "   [#{(i+1).to_s.rjust(max_len)}]   "
        if filtered.length == 1
          prefix = ""
        end
        STDERR.puts "#{prefix}#{line.strip}"
      end

      if filtered.length > 1
        STDERR.puts   "   [#{'0'.rjust(max_len)}]   all #{filtered.size} processes"
      end

      while true
        STDERR.sync = true

        if filtered.length > 1
          STDERR.print "*** trace which processes? (0/1,4): "
        end

        begin
          if filtered.length == 1
            input = "1"
          else
            input = gets
          end
        rescue Interrupt
          exit 1
        end

        if input =~ /^(\d+,?)+$/
          if input.strip == '0'
            pids = filtered.map do |line|
              line.split[1].to_i
            end
          else
            indices = input.split(',').map(&:to_i)
            pids = indices.map do |i|
              if i > 0 and line = filtered[i-1]
                line.split[1].to_i
              end
            end
          end

          unless pids.include?(nil)
            opts[:pid] = pids
            break
          end
        end
      end
    else
      STDERR.puts "*** could not find any processes matching #{opts[:ps].inspect}"
      exit 1
    end
  end

  if opts[:exec_given]
    tracee = fork{
      Process.setsid
      ENV['RUBYOPT'] = "-r#{File.expand_path('../../rbtrace',__FILE__)}"
      exec(*opts[:exec])
    }
    STDERR.puts "*** spawned child #{tracee}: #{opts[:exec].inspect[1..-2]}"

    if (secs = opts[:wait]) > 0
      STDERR.puts "*** waiting #{secs} seconds for child to boot up"
      sleep secs
    end

  elsif opts[:pid].size <= 1
    tracee = opts[:pid].first

  else
    tracers = []

    opts[:pid].each do |pid|
      if child = fork
        tracers << child
      else
        Process.setpgrp
        STDIN.reopen '/dev/null'
        $0 = "rbtrace -p #{pid} (parent: #{Process.ppid})"

        opts[:output] += ".#{pid}" if opts[:output]
        tracee = pid

        # fall through and start tracing
        break
      end
    end

    if tracee.nil?
      # this is the parent
      while true
        begin
          break if tracers.empty?
          if pid = Process.wait
            tracers.delete(pid)
          end
        rescue Interrupt, SignalException
          STDERR.puts "*** waiting on child tracers: #{tracers.inspect}"
          tracers.each do |pid1|
            begin
              Process.kill 'INT', pid1
            rescue Errno::ESRCH
            end
          end
        end
      end

      exit!
    end
  end

  if out = opts[:output]
    output = File.open(out, opts[:append] ? 'a+' : 'w')
    output.sync = true
  end

  begin
    begin
      self.tracer = RBTracer.new(tracee)
    rescue ArgumentError => e
      parser.die :pid, "(#{e.message})"
    end

    if opts[:timeout] > 0
      tracer.timeout = opts[:timeout]
    end

    if opts[:fork_given]
      pid = tracer.fork
      STDERR.puts "*** forked off a busy looping copy at #{pid} (make sure to kill -9 it when you're done)"

    elsif opts[:backtrace_given]
      num = opts[:backtrace]
      code = "caller.first(#{num}).join('|')"

      if res = tracer.eval(code)
        tracer.puts res[1..-2].split('|').join("\n  ")
      end

    elsif opts[:backtraces_given]
      num = opts[:backtraces].to_i
      num = -1 if num == 0

      delim = "146621c9d681409aa"

      code = "Thread.list.reject { |t| t.name == '__RBTrace__' }.map{ |t| t.backtrace[0...#{num}].join(\"#{delim}\")}.join(\"#{delim*2}\")"

      if res = tracer.eval(code)
        tracer.puts res.split(delim).join("\n")
      end

    elsif opts[:memory_given]
      memory_report = File.expand_path('../memory_report.rb', __FILE__)

      require 'tempfile'
      output = Tempfile.new("output")
      output.close

      begin
        code = "Thread.new do; begin; output = '#{output.path}'; eval(File.read('#{memory_report}')); end; end"
        tracer.eval(code)

        File.open(output.path, 'r') do |f|
          while true
            begin
              unless line = f.readline
                sleep 0.1
                next
              end

              if line.strip == "__END__"
                break
              else
                print line
              end
            rescue EOFError
              sleep 0.1
            end
          end
        end
      ensure
        output.unlink
      end

    elsif opts[:heapdump_given]
      filename = opts[:heapdump]

      if filename == "AUTO"
        require 'tempfile'
        temp = Tempfile.new("dump")
        filename = temp.path
        temp.close
        temp.unlink
      end

      tracer.eval(<<-RUBY)
        Thread.new do
          Thread.current.name = '__RBTrace__'
          pid = ::Process.fork do
            file = File.open('#{filename}.tmp', 'w')
            ObjectSpace.dump_all(output: file)
            file.close
            File.rename('#{filename}.tmp', '#{filename}')
            exit!(0)
          end
          Process.waitpid(pid)
        end
      RUBY
      puts "Heapdump being written to #{filename}"

    elsif opts[:shapesdump_given]
      filename = opts[:shapesdump]

      if filename == "AUTO"
        require 'tempfile'
        temp = Tempfile.new("dump")
        filename = temp.path
        temp.close
        temp.unlink
      end

      tracer.eval(<<-RUBY)
        Thread.new do
          Thread.current.name = '__RBTrace__'
          pid = ::Process.fork do
            file = File.open('#{filename}.tmp', 'w')
            ObjectSpace.dump_shapes(output: file)
            file.close
            File.rename('#{filename}.tmp', '#{filename}')
            exit!(0)
          end
          Process.waitpid(pid)
        end
      RUBY
      puts "Shapes dump being written to #{filename}"

    elsif opts[:eval_given]
      if res = tracer.eval(code = opts[:eval])
        tracer.puts ">> #{code}"
        tracer.puts "=> #{res}"
      end

    elsif opts[:interactive_given]
      require "rbtrace/interactive/#{opts[:interactive]}"

      bin = Gem::Specification.find do |spec|
        bin_file = spec.bin_file(opts[:interactive])
        break bin_file if File.exist?(bin_file)
      end || ENV['PATH'].split(':').find do |path|
        found = Dir["#{path}/*"].find do |file|
          break file if File.basename(file) == opts[:interactive]
        end
        break found if found
      end

      load(bin)

    else
      tracer.out = output if output
      tracer.timeout = opts[:timeout] if opts[:timeout] > 0
      tracer.prefix = ' ' * opts[:prefix]
      tracer.show_time = opts[:start_time]
      tracer.show_duration = !opts[:no_duration]

      tracer.devmode if opts[:devmode_given]
      tracer.gc if opts[:gc_given]

      if opts[:firehose_given]
        tracer.firehose
      else
        tracer.add(methods)       if methods.any?
        if opts[:slow_given] || opts[:slowcpu_given]
          tracer.watch(opts[:slowcpu_given] ? opts[:slowcpu] : opts[:slow], opts[:slowcpu_given])
          tracer.add_slow(smethods) if smethods.any?
        end
      end
      begin
        tracer.recv_loop
      rescue Interrupt, SignalException
      end
    end
  ensure
    if tracer
      tracer.detach
    end

    if opts[:exec_given]
      STDERR.puts "*** waiting on spawned child #{tracee}"
      Process.kill 'TERM', tracee
      Process.waitpid(tracee)
    end
  end
end