1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
|
'\" te
.\" Copyright (c) 2004, Sun Microsystems, Inc. All Rights Reserved.
.\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
.\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
.TH PREX 1 "Mar 1, 2004"
.SH NAME
prex \- control tracing and manipulate probe points in a process or the kernel
.SH SYNOPSIS
.LP
.nf
\fBprex\fR [\fB-o\fR \fItrace_file_name\fR] [\fB-l\fR \fIlibraries\fR] [\fB-s\fR \fIkbytes_size\fR] \fIcmd\fR
[\fIcmd-args\fR]...
.fi
.LP
.nf
\fBprex\fR [\fB-o\fR \fItrace_file_name\fR] [\fB-l\fR \fIlibraries\fR] [\fB-s\fR \fIkbytes_size\fR] \fB-p\fR \fIpid\fR
.fi
.LP
.nf
\fBprex\fR \fB-k\fR [\fB-s\fR \fIkbytes_size\fR]
.fi
.SH DESCRIPTION
.sp
.LP
The \fBprex\fR command is the part of the Solaris tracing architecture that
controls probes in a process or the kernel. See \fBtracing\fR(3TNF) for an
overview of this tracing architecture, including example source code using it.
.sp
.LP
\fBprex\fR is the application used for external control of probes. It
automatically preloads the \fBlibtnfprobe\fR library. \fBprex\fR locates all
the probes in a target executable or the kernel and provides an interface for
the user to manipulate them. It allows a probe to be turned on for tracing,
debugging, or both. Tracing generates a \fBTNF\fR (Trace Normal Form) trace
file that can be converted to \fBASCII\fR by \fBtnfdump\fR(1) and used for
performance analysis. Debugging generates a line to standard error whenever the
probe is hit at run time.
.sp
.LP
\fBprex\fR does not work on static executables. It only works on dynamic
executables.
.SS "Invoking prex"
.sp
.LP
There are three ways to invoke \fBprex\fR:
.RS +4
.TP
1.
Use \fBprex\fR to start the target application \fIcmd\fR. In this case, the
target application need not be built with a dependency on \fBlibtnfprobe\fR.
See \fBTNF_PROBE\fR(3TNF). \fBprex\fR sets the environment variable
\fBLD_PRELOAD\fR to load \fBlibtnfprobe\fR into the target process. See
\fBld\fR(1). \fBprex\fR then uses the environment variable \fBPATH\fR to find
the target application.
.RE
.RS +4
.TP
2.
Attach \fBprex\fR to a running application. In this case, the running target
application should have \fBlibtnfprobe\fR already linked in. Alternatively, the
user may manually set \fBLD_PRELOAD\fR to include \fBlibtnfprobe.so.1\fR prior
to invoking the target.
.RE
.RS +4
.TP
3.
Use \fBprex\fR with the \fB-k\fR option to set \fBprex\fR to \fBkernel
mode\fR. \fBprex\fR can then be used to control probes in the Solaris kernel.
In kernel mode, additional commands are defined, and some commands that are
valid in other modes are invalid. See \fBKernel\fR \fBMode\fR below.
.RE
.SS "Control File Format and Command Language"
.sp
.LP
In a future release of \fBprex\fR, the command language may be moved to a
syntax that is supported by an existing scripting language like \fBksh\fR(1).
In the meantime, the interface to \fBprex\fR is uncommitted.
.RS +4
.TP
.ie t \(bu
.el o
Commands should be in \fBASCII\fR.
.RE
.RS +4
.TP
.ie t \(bu
.el o
Each command is terminated with the NEWLINE character.
.RE
.RS +4
.TP
.ie t \(bu
.el o
A command can be continued onto the next line by ending the previous line with
the backslash ("\fB\e\fR") character.
.RE
.RS +4
.TP
.ie t \(bu
.el o
Tokens in a command must be separated by whitespace (one or more spaces or
tabs).
.RE
.RS +4
.TP
.ie t \(bu
.el o
The "\fB#\fR" character implies that the rest of the line is a comment.
.RE
.SS "Basic prex Commands"
.sp
.sp
.TS
c c
l l .
Command Result
_
% \fBprex a.out\fR T{
Attaches \fBprex\fR to your program and starts \fBprex\fR.
T}
prex> \fBenable $all\fR Enables all the probes.
prex> \fBquit resume\fR T{
Quits \fBprex\fR and resumes execution of program.
T}
.TE
.SS "Control File Search Path"
.sp
.LP
There are two different methods of communicating with \fBprex\fR:
.RS +4
.TP
.ie t \(bu
.el o
By specifications in a control file. During start-up, \fBprex\fR searches for a
file named \fB\&.prexrc\fR in the directories specified below. \fBprex\fR does
not stop at the first one it finds. This way a user can override any defaults
that are set up. The search order is:
.sp
.in +2
.nf
$HOME/
\&./
.fi
.in -2
.sp
.RE
.RS +4
.TP
.ie t \(bu
.el o
By typing commands at the \fBprex\fR prompt.
.RE
.sp
.LP
The command language for both methods is the same and is specified in USAGE.
The commands that return output will not make sense in a control file. The
output will go to standard output.
.sp
.LP
When using \fBprex\fR on a target process, the target will be in one of two
states, running or stopped. This can be detected by the presence or absence of
the \fBprex>\fR prompt. If the prompt is absent, it means that the target
process is running. Typing Control-C will stop the target pr ocess and return
the user to the prompt. There is no guarantee that Control-C will return to a
\fBprex\fR prompt immediately. For example, if the target process is stopped on
a job control stop (\fBSIGSTOP\fR), then Control-C in \fBprex\fR will wait
until the target has been continued (\fBSIGCONT\fR). See \fBSignals to Target
Program\fR below for more information on signals and the target process.
.SH OPTIONS
.sp
.LP
The following options are supported:
.sp
.ne 2
.na
\fB\fB-k\fR\fR
.ad
.RS 22n
\fBkernel mode\fR: \fBprex\fR is used to control probes in the Solaris kernel.
In kernel mode, additional commands are defined, and some commands valid in
other modes are invalid. See \fBKernel Mode\fR below.
.RE
.sp
.ne 2
.na
\fB\fB-l\fR \fIlibraries\fR\fR
.ad
.RS 22n
The \fIlibraries\fR mentioned are linked in to the target application using
\fBLD_PRELOAD\fR (see \fBld\fR(1)). This option cannot be used when attaching
to a running process. The argument to the \fB-l\fR option should be a
space-separated string enclosed in double quotes. Each token in the string is a
library name. It follows the \fBLD_PRELOAD\fR rules on how libraries should be
specified and where they will be found.
.RE
.sp
.ne 2
.na
\fB\fB-o\fR \fItrace_file_name\fR\fR
.ad
.RS 22n
File to be used for the trace output. \fItrace_file_name\fR is assumed to be
relative to the current working directory of \fBprex\fR (that is, the directory
that the user was in when \fBprex\fR was started).
.sp
If \fBprex\fR attaches to a process that is already tracing, the new
\fItrace_file_name\fR (if provided) will not be used. If no
\fItrace_file_name\fR is specified, the default is
\fB/$TMPDIR/trace-\fR\fIpid\fR where \fIpid\fR is the process id of the target
program. If \fBTMPDIR\fR is not set, \fB/tmp\fR is used.
.RE
.sp
.ne 2
.na
\fB\fB-s\fR \fIkbytes_size\fR\fR
.ad
.RS 22n
Maximum size of the output trace file in Kbytes. The default size of the trace
\fIkbytes_size\fR is \fB4096\fR (2^10) bytes or \fB4\fR Mbytes for normal
usage, and \fB384\fR or \fB384\fR kbytes in kernel mode. The minimum size that
can be specified is \fB128\fR Kbytes. The trace file can be thought of as a
least recently used circular buffer. Once the file has been filled, newer
events will overwrite the older ones.
.RE
.SH USAGE
.sp
.LP
This section describes the usage of the \fBprex\fR utility.
.SS "Grammar"
.sp
.LP
Probes are specified by a list of space-separated selectors. Selectors are of
the form:
.sp
.in +2
.nf
\fIattribute\fR=\fIvalue\fR
.fi
.in -2
.sp
.LP
(See \fBTNF_PROBE\fR(3TNF)). The "\fIattribute\fR=" is optional. If it is not
specified, it defaults to "\fBkeys=\fR".
.sp
.LP
The \fIattribute\fR or \fIvalue\fR (generically called "spec") can be any of
the following:
.sp
.ne 2
.na
\fB\fBIDENT\fR\fR
.ad
.RS 14n
Any sequence of letters, digits, _\|, \e\|, ., % not beginning with a digit.
\fBIDENT\fR implies an exact match.
.RE
.sp
.ne 2
.na
\fB\fBQUOTED_STR\fR\fR
.ad
.RS 14n
Usually used to escape reserved words (any commands in the command language).
\fBQUOTED_STR\fR implies an exact match and has to be enclosed in single quotes
(' ').
.RE
.sp
.ne 2
.na
\fB\fBREGEXP\fR\fR
.ad
.RS 14n
An \fBed\fR(1) regular expression pattern match. \fBREGEXP\fR has to be
enclosed in slashes (/ /), A / can be included in a \fBREGEXP\fR by escaping it
with a backslash \e\|.
.RE
.sp
.LP
The following grammar explains the syntax.
.sp
.in +2
.nf
selector_list ::= | /* empty */
\fIselector_list\fR \fIselector\fR
selector ::= \fIspec\fR=\fIspec\fR | /* whitespace around `=' opt */
\fIspec\fR
spec ::= IDENT |
QUOTED_STR |
REGEXP
.fi
.in -2
.sp
.LP
The terminals in the above grammar are:
.sp
.in +2
.nf
IDENT = [a-zA-Z_\e.%]{[a-zA-Z0-9_\e.%]}+
QUOTED_STR = '[^\en']*' /* any string in single quotes */
REGEXP = /[^\en/]*/ /* regexp's have to be in / / */
.fi
.in -2
.sp
.LP
This is a list of the remaining grammar that is needed to understand the syntax
of the command language (defined in next subsection):
.sp
.in +2
.nf
filename ::= QUOTED_STR /* QUOTED_STR defined above */
spec_list ::= /* empty */ |
\fIspec_list\fR \fIspec\fR /* \fIspec\fR defined above */
fcn_handle ::= &IDENT /* IDENT defined above */
set_name ::= $IDENT /* IDENT defined above */
.fi
.in -2
.SS "Command Language"
.RS +4
.TP
1.
Set Creation and Set Listing
.sp
.in +2
.nf
\fBcreate $\fIset_name\fR \fIselector_list\fR
list sets # list the defined sets\fR
.fi
.in -2
.sp
\fBcreate\fR can be used to define a set which contains probes that match the
\fIselector_list\fR. The set \fB$all\fR is pre-defined as /.*/ and it matches
all the probes.
.RE
.RS +4
.TP
2.
Function Listing
.sp
.in +2
.nf
\fBlist fcns # list the available \fIfcn_handle\fR\fR
.fi
.in -2
.sp
The user can list the different functions that can be connected to probe
points. Currently, only the debug function called \fB&debug\fR is available.
.RE
.RS +4
.TP
3.
Commands to Connect and Disconnect Probe Functions
.sp
.in +2
.nf
\fBconnect &\fIfcn_handle\fR $\fIset_name\fR
connect &\fIfcn_handle\fR \fIselector_list\fR
clear $\fIset_name\fR
clear \fIselector_list\fR\fR
.fi
.in -2
.sp
The \fBconnect\fR command is used to connect probe functions (which must be
prefixed by `\fB&\fR\&') to probes. The probes are specified either as a single
set (with a `\fB$\fR'), or by explicitly listing the probe selectors in the
command. The probe function has to be one that is listed by the \fBlist fcns\fR
command. This command does not enable the probes.
.sp
The \fBclear\fR command is used to disconnect all connected probe functions
from the specified probes.
.RE
.RS +4
.TP
4.
Commands to Toggle the Tracing Mode
.sp
.in +2
.nf
\fBtrace $\fIset_name\fR
trace \fIselector_list\fR
untrace $\fIset_name\fR
untrace \fIselector_list\fR\fR
.fi
.in -2
.sp
The \fBtrace\fR and \fBuntrace\fR commands are used to toggle the tracing
action of a probe point (that is, whether a probe will emit a trace record or
not if it is hit). This command does not enable the probes specified. Probes
have tracing on by default. The most efficient way to turn off tracing is by
using the \fBdisable\fR command. \fBuntrace\fR is useful if you want debug
output but no tracing. If so, set the state of the probe to enabled, untraced,
and the debug function connected.
.RE
.RS +4
.TP
5.
Commands to Enable and Disable Probes
.sp
.in +2
.nf
\fBenable $\fIset_name\fR
enable \fIselector_list\fR
disable $\fIset_name\fR
disable \fIselector_list\fR\fR
.fi
.in -2
.sp
The \fBenable\fR and \fBdisable\fR commands are used to control whether the
probes perform the action that they have been set up for. To trace a probe, it
has to be both enabled and traced (using the \fBtrace\fR command). Probes are
disabled by default. The \fBlist history\fR command is used to list the probe
control commands issued: \fBconnect\fR, \fBclear\fR, \fBtrace\fR,
\fBuntrace\fR, \fBenable\fR, and \fBdisable\fR. These are the commands that
are executed whenever a new shared object is brought in to the target program
by \fBdlopen\fR(3C). See the subsection, \fBdlopen'ed Libraries\fR, below for
more information.
.sp
The following table shows the actions that result from specific combinations of
tracing, enabling, and connecting:
.sp
.in +2
.nf
Enabled or Tracing State Debug State Results
Disabled (On/Off) (Connected/Cleared) In
------------------------------------------------------------
Enabled On Connected Tracing and
Debugging
Enabled On Cleared Tracing only
Enabled Off Connected Debugging only
Enabled Off Cleared Nothing
Disabled On Connected Nothing
Disabled On Cleared Nothing
Disabled Off Connected Nothing
Disabled Off Cleared Nothing
.fi
.in -2
.sp
.RE
.RS +4
.TP
6.
List History
.sp
.in +2
.nf
\fBlist history # lists probe control command history\fR
.fi
.in -2
.sp
The \fBlist history\fR command displays a list of the probe control commands
previously issued in the tracing session, for example, \fBconnect\fR,
\fBclear\fR, \fBtrace\fR, \fBdisable\fR. Commands in the history list are
executed wherever a new shared object is brought into the target program by
\fBdlopen\fR(3C).
.RE
.RS +4
.TP
7.
Commands to List Probes, List Values, or List Trace File Name
.sp
.in +2
.nf
\fBlist \fIspec_list\fR probes $\fIset_name\fR # list probes $all
list \fIspec_list\fR probes \fIselector_list\fR # list name probes file=test.c
list values \fIspec_list\fR # list values keys given in \fIspec_list\fR
list tracefile # list tracefile\fR
.fi
.in -2
.sp
The first two commands list the selected attributes and values of the specified
probes. They can be used to check the state of a probe. The third command lists
the various values associated with the selected attributes. The fourth command
lists the current tracefile.
.RE
.RS +4
.TP
8.
Help Command
.sp
.in +2
.nf
\fBhelp \fItopic\fR\fR
.fi
.in -2
.sp
To get a list of the help topics that are available, invoke the \fBhelp\fR
command with no arguments. If a \fItopic\fR argument is specified, help is
printed for that topic.
.RE
.RS +4
.TP
9.
Source a File
.sp
.in +2
.nf
\fBsource \fIfilename\fR\fR
.fi
.in -2
.sp
The \fBsource\fR command can be used to source a file of \fBprex\fR commands.
\fBsource\fR can be nested (that is, a file can source another file).
\fIfilename\fR is a quoted string.
.RE
.RS +4
.TP
10.
Process Control
.sp
.in +2
.nf
\fBcontinue # resumes the target process
quit kill # quit prex, kill target
quit resume # quit prex, continue target
quit suspend # quit prex, leave target suspended
quit # quit prex (continue or kill target)\fR
.fi
.in -2
.sp
The default \fBquit\fR will continue the target process if \fBprex\fR attached
to it. Instead, if \fBprex\fR had started the target program, \fBquit\fR will
kill the target process.
.RE
.SS "dlopen'ed Libraries"
.sp
.LP
Probes in shared objects that are brought in by \fBdlopen\fR(3C) are
automatically set up according to the command history of \fBprex\fR. When a
shared object is removed by a \fBdlclose\fR(3C), \fBprex\fR again needs to
refresh its understanding of the probes in the target program. This implies
that there is more work to do for \fBdlopen\fR(3C) and \fBdlclose\fR(3C) \(emso
they will take slightly longer. If a user is not interested in this feature and
doesn't want to interfere with \fBdlopen\fR(3C) and \fBdlclose\fR(3C), detach
\fBprex\fR from the target to inhibit this feature.
.SS "Signals to Target Program"
.sp
.LP
\fBprex\fR does not interfere with signals that are delivered directly to the
target program. However, \fBprex\fR receives all signals normally generated
from the terminal, for example, Control-C (\fBSIGINT\fR), and Control-Z
(\fBSIGSTOP\fR), and does not forward them to the target program. To signal the
target program, use the \fBkill\fR(1) command from a shell.
.SS "Interactions with Other Applications"
.sp
.LP
Process managing applications like \fBdbx\fR, \fBtruss\fR(1), and \fBprex\fR
cannot operate on the same target program simultaneously. \fBprex\fR will not
be able to attach to a target which is being controlled by another application.
A user can trace and debug a program serially by the following method: first
attach \fBprex\fR to target (or start target through \fBprex\fR), set up the
probes using the command language, and then type \fBquit suspend\fR. The user
can then attach \fBdbx\fR to the suspended process and debug it. A user can
also suspend the target by sending it a \fBSIGSTOP\fR signal, and then by
typing \fBquit resume\fR to \fBprex\fR. In this case, the user should also send
a \fBSIGCONT\fR signal after invoking \fBdbx\fR on the stopped process (else
\fBdbx\fR will be hung).
.SS "Failure of Event Writing Operations"
.sp
.LP
There are a few failure points that are possible when writing out events to a
trace file, for example, system call failures. These failures result in a
failure code being set in the target process. The target process continues
normally, but no trace records are written. Whenever a user enters Control-C to
\fBprex\fR to get to a \fBprex\fR prompt, \fBprex\fR will check the failure
code in the target and inform the user if there was a tracing failure.
.SS "Target Executing a Fork or exec"
.sp
.LP
If the target program does a \fBfork\fR(2), any probes that the child
encounters will cause events to be logged to the same trace file. Events are
annotated with a process id, so it will be possible to determine which process
a particular event came from. In multi-threaded programs, there is a race
condition with a thread doing a fork while the other threads are still running.
For the trace file not to get corrupted, the user should either use
\fBfork1\fR(2), or make sure that all other threads are quiescent when doing a
\fBfork\fR(2),
.sp
.LP
If the target program itself (not any children it may \fBfork\fR(2)) does an
\fBexec\fR(2), \fBprex\fR detaches from the target and exits. The user can
reconnect \fBprex\fR with \fBprex\fR \fB-p\fR \fIpid\fR.
.sp
.LP
A \fBvfork\fR(2) is generally followed quickly by an \fBexec\fR(2) in the
child, and in the interim, the child borrows the parent's process while the
parent waits for the \fBexec\fR(2). Any events logged by the child from the
parent process will appear to have been logged by the parent.
.SS "Kernel Mode"
.sp
.LP
Invoking \fBprex\fR with the \fB-k\fR flag causes \fBprex\fR to run in
\fBkernel mode\fR. In kernel mode, \fBprex\fR controls probes in the Solaris
kernel. See \fBtnf_kernel_probes\fR(4) for a list of available probes in the
Solaris kernel. A few \fBprex\fR commands are unavailable in kernel mode; many
other commands are valid in kernel mode only.
.sp
.LP
The \fB-l\fR, \fB-o\fR, and \fB-p\fR command-line options are not valid in
kernel mode (that is, they may not be combined with the \fB-k\fR flag).
.sp
.LP
The rest of this section describes the differences in the \fBprex\fR command
language when running \fBprex\fR in kernel mode.
.RS +4
.TP
1.
\fBprex\fR will not stop the kernel
.sp
When \fBprex\fR attaches to a running user program, it stops the user program.
Obviously, it cannot do this when attaching to the kernel. Instead, \fBprex\fR
provides a ``tracing master switch'': no probes will have any effect unless the
tracing master switch is on. This allows the user to iteratively select probes
to enable, then enable them all at once by turning on the master switch.
.sp
The command
.sp
.in +2
.nf
\fBktrace [ on | off ]\fR
.fi
.in -2
.sp
is used to inspect and set the value of the master switch. Without an argument,
\fBprex\fR reports the current state of the master switch.
.sp
Since \fBprex\fR will not stop or kill the kernel, the
.sp
.in +2
.nf
\fBquit resume\fR
.fi
.in -2
.sp
and
.sp
.in +2
.nf
\fBquit kill\fR
.fi
.in -2
.sp
commands are not valid in kernel mode.
.RE
.RS +4
.TP
2.
No functions may be attached to probes in the kernel
.sp
In particular, the debug function is unavailable in kernel mode.
.RE
.RS +4
.TP
3.
Trace output is written to an in-core buffer
.sp
In kernel mode, a trace output file is not generated directly, in order to
allow probes to be placed in time-critical code. Instead, trace output is
written to an in-core buffer, and copied out by a separate program,
\fBtnfxtract\fR(1).
.sp
The in-core buffer is not automatically created. The following \fBprex\fR
command controls buffer allocation and deallocation:
.sp
.in +2
.nf
\fBbuffer [ alloc [ \fIsize\fR ] | dealloc ]\fR
.fi
.in -2
.sp
Without an argument, the \fBbuffer\fR command reports the size of the currently
allocated buffer, if any. With an argument of \fBalloc\fR [\fIsize\fR],
\fBprex\fR allocates a buffer of the given size. \fIsize\fR is in bytes, with
an optional suffix of '\fBk\fR' or '\fBm\fR' specifying a multiplier of
\fB1024\fR or \fB1048576\fR, respectively. If no \fIsize\fR is specified, the
\fIsize\fR specified on the command line with the \fB-s\fR option is used as a
default. If the \fB-s\fR command line option was not used, the ``default
default'' is 384 kilobytes.
.sp
With an argument of \fBdealloc\fR, \fBprex\fR deallocates the trace buffer in
the kernel.
.sp
\fBprex\fR will reject attempts to turn the tracing master switch on when no
buffer is allocated, and to deallocate the buffer when the tracing master
switch is on. \fBprex\fR will refuse to allocate a buffer when one is already
allocated; use \fBbuffer dealloc\fR first.
.sp
\fBprex\fR will not allocate a buffer larger than one-half of a machine's
physical memory.
.RE
.RS +4
.TP
4.
\fBprex\fR supports per-process probe enabling in the kernel
.sp
In kernel mode, it is possible to select a set of processes for which probes
are enabled. No trace output will be written when other processes traverse
these probe points. This is called "process filter mode". By default, process
filter mode is off, and all processes cause the generation of trace records
when they hit an enabled probe.
.sp
Some kernel events such as interrupts cannot be associated with a particular
user process. By convention, these events are considered to be generated by
process id 0.
.sp
\fBprex\fR provides commands to turn process filter mode on and off, to get the
current status of the process filter mode switch, to add and delete processes
(by process id) from the process filter set, and to list the current process
filter set.
.sp
The process filter set is maintained even when process filter mode is off, but
has no effect unless process filter mode is on.
.sp
When a process in the process filter set exits, its process id is automatically
deleted from the process filter set.
.sp
The command:
.sp
.in +2
.nf
\fBpfilter [ on | off | add \fIpidlist\fR | delete \fIpidlist\fR ]\fR
.fi
.in -2
.sp
controls the process filter switch, and process filter set membership. With no
arguments, \fBpfilter\fR prints the current process filter set and the state of
the process filter mode switch:
.sp
.ne 2
.na
\fB\fBon\fR or \fBoff\fR\fR
.ad
.RS 18n
set the state of the process filter mode switch.
.RE
.sp
.ne 2
.na
\fB\fBadd\fR \fIpidlist\fR\fR
.ad
.br
.na
\fB\fBdelete\fR \fIpidlist\fR\fR
.ad
.RS 18n
add or delete processes from the process filter set. \fIpidlist\fR is a
comma-separated list of one or more process ids.
.RE
.RE
.SH EXAMPLES
.sp
.LP
See \fBtracing\fR(3TNF) for complete examples showing, among other things, the
use of \fBprex\fR to do simple probe control.
.sp
.LP
When either the process or kernel is started, all probes are disabled.
.LP
\fBExample 1 \fRSet creation and set listing
.sp
.in +2
.nf
\fBcreate $out name=/out/ # $out = probes with "out" in
# value of "name" attribute
create $foo /page/ name=biodone # $foo = union of
# probes with "page" in value of keys attribute
# probes with "biodone" as value of "name" attribute
list sets # list the defined sets
list fcns # list the defined probe fcns\fR
.fi
.in -2
.sp
.LP
\fBExample 2 \fRCommands to trace and connect probe functions
.sp
.in +2
.nf
\fBtrace foobar='on' # exact match on foobar attribute
trace $all # trace all probes (predefined set $all)
connect &debug $foo # connect debug func to probes in $foo\fR
.fi
.in -2
.sp
.LP
\fBExample 3 \fRCommands to enable and disable probes
.sp
.in +2
.nf
\fBenable $all # enable all probes
enable /vm/ name=alloc # enable the specified probes
disable $foo # disable probes in set $foo
list history # list probe control commands issued\fR
.fi
.in -2
.sp
.LP
\fBExample 4 \fRProcess control
.sp
.in +2
.nf
\fBcontinue # resumes the target process
^C # stop target; give control to prex
quit resume # exit prex, leave process running
# and resume execution of program\fR
.fi
.in -2
.sp
.LP
\fBExample 5 \fRKernel mode
.sp
.in +2
.nf
\fBbuffer alloc 2m # allocate a 2 Megabyte buffer
enable $all # enable all probes
trace $all # trace all probes
ktrace on # turn tracing on
ktrace off # turn tracing back off
pfilter on # turn process filter mode on
pfilter add 1379 # add pid 1379 to process filter
ktrace on # turn tracing on
# (only pid 1379 will be traced)\fR
.fi
.in -2
.sp
.SH FILES
.sp
.ne 2
.na
\fB\fB\&.prexrc\fR\fR
.ad
.RS 15n
local \fBprex\fR initialization file
.RE
.sp
.ne 2
.na
\fB\fB~/.prexrc\fR\fR
.ad
.RS 15n
user's \fBprex\fR initialization file
.RE
.sp
.ne 2
.na
\fB\fB/proc/\fInnnnn\fR\fR\fR
.ad
.RS 15n
process files
.RE
.SH SEE ALSO
.sp
.LP
\fBed\fR(1), \fBkill\fR(1), \fBksh\fR(1), \fBld\fR(1), \fBtnfdump\fR(1),
\fBtnfxtract\fR(1), \fBtruss\fR(1), \fBexec\fR(2), \fBfork\fR(2),
\fBfork1\fR(2), \fBvfork\fR(2), \fBTNF_DECLARE_RECORD\fR(3TNF),
\fBTNF_PROBE\fR(3TNF), \fBdlclose\fR(3C), \fBdlopen\fR(3C),
\fBgethrtime\fR(3C), \fBlibtnfctl\fR(3TNF), \fBtnf_process_disable\fR(3TNF),
\fBtracing\fR(3TNF), \fBtnf_kernel_probes\fR(4), \fBattributes\fR(5)
.SH NOTES
.sp
.LP
Currently, the only probe function that is available is the \fB&debug\fR
function. When this function is executed, it prints out the arguments sent in
to the probe as well as the value associated with the \fBsunw%debug\fR
attribute in the detail field (if any) to \fBstderr\fR.
.sp
.LP
For example, for the following probe point:
.sp
.in +2
.nf
TNF_PROBE_2(input_values, "testapp main",
"sunw%debug 'have read input values successfully'",
tnf_long, int_input, x,
tnf_string, string_input, input);
.fi
.in -2
.sp
.sp
.LP
If \fIx\fR was 100 and \fIinput\fR was the string "success", then the output of
the debug probe function would be:
.sp
.in +2
.nf
probe input_values; sunw%debug "have read input values successfully";
int_input=100; string_input="success";
.fi
.in -2
.sp
.sp
.LP
Some non-SPARC hardware lacks a true high-resolution timer, causing
\fBgethrtime()\fR to return the same value multiple times in succession. This
can lead to problems in how some tools interpret the trace file. This situation
can be improved by interposing a version of \fBgethrtime()\fR, which causes
these successive values to be artificially incremented by one nanosecond:
.sp
.in +2
.nf
hrtime_t
gethrtime()
{
static mutex_t lock;
static hrtime_t (*real_gethrtime)(void) = NULL;
static hrtime_t last_time = 0;
hrtime_t this_time;
if (real_gethrtime == NULL) {
real_gethrtime =
(hrtime_t (*)(void)) dlsym(RTLD_NEXT, "gethrtime");
}
this_time = real_gethrtime();
mutex_lock(&lock);
if (this_time <= last_time)
this_time = ++last_time;
else
last_time = this_time;
mutex_unlock(&lock);
return (this_time);
}
.fi
.in -2
.sp
.sp
.LP
Of course, this does not increase the resolution of the timer, so timestamps
for individual events are still relatively inaccurate. But this technique
maintains ordering, so that if event A causes event B, B never appears to
happen before or at the same time as A.
.sp
.LP
\fBdbx\fR is available with the Sun Workshop Products.
.SH BUGS
.sp
.LP
\fBprex\fR should issue a notification when a process id has been automatically
deleted from the filter set.
.sp
.LP
There is a known bug in \fBprex\fR which can result in this message:
.sp
.in +2
.nf
Tracing shut down in target program due to an internal
error - Please restart prex and target
.fi
.in -2
.sp
.sp
.LP
When \fBprex\fR runs as root, and the target process is not root, and the
tracefile is placed in a directory where it cannot be removed and re-created (a
directory with the sticky bit on, like \fB/tmp\fR),mm then the target process
will not be able to open the tracefile when it needs to. This results in
tracing being disabled.
.sp
.LP
Changing any of the circumstances listed above should fix the problem. Either
don't run \fBprex\fR as root, or run the target process as root, or specify the
tracefile in a directory other than \fB/tmp\fR.
|