45
45
46
46
// ErrCoreDumpNotSupported is returned when core dumping is not supported
47
47
ErrCoreDumpNotSupported = errors .New ("core dumping not supported" )
48
+
49
+ // ErrNotImplementedWithMultitarget is returned for operations that are not implemented with multiple targets
50
+ ErrNotImplementedWithMultitarget = errors .New ("not implemented for multiple targets" )
48
51
)
49
52
50
53
// Debugger service.
@@ -386,6 +389,10 @@ func (d *Debugger) FunctionReturnLocations(fnName string) ([]uint64, error) {
386
389
d .targetMutex .Lock ()
387
390
defer d .targetMutex .Unlock ()
388
391
392
+ if len (d .target .Targets ()) > 1 {
393
+ return nil , ErrNotImplementedWithMultitarget
394
+ }
395
+
389
396
var (
390
397
p = d .target .Selected
391
398
g = p .SelectedGoroutine ()
@@ -604,10 +611,11 @@ func (d *Debugger) state(retLoadCfg *proc.LoadConfig, withBreakpointInfo bool) (
604
611
state .When , _ = d .target .When ()
605
612
}
606
613
607
- for _ , t := range d .target .Targets () {
614
+ t := proc.ValidTargets {Group : d .target }
615
+ for t .Next () {
608
616
for _ , bp := range t .Breakpoints ().WatchOutOfScope {
609
617
abp := api .ConvertLogicalBreakpoint (bp .Logical )
610
- api .ConvertPhysicalBreakpoints (abp , []* proc.Breakpoint {bp })
618
+ api .ConvertPhysicalBreakpoints (abp , []int { t . Pid ()}, [] * proc.Breakpoint {bp })
611
619
state .WatchOutOfScope = append (state .WatchOutOfScope , abp )
612
620
}
613
621
}
@@ -674,8 +682,9 @@ func (d *Debugger) CreateBreakpoint(requestedBp *api.Breakpoint) (*api.Breakpoin
674
682
if runtime .GOOS == "windows" {
675
683
// Accept fileName which is case-insensitive and slash-insensitive match
676
684
fileNameNormalized := strings .ToLower (filepath .ToSlash (fileName ))
685
+ t := proc.ValidTargets {Group : d .target }
677
686
caseInsensitiveSearch:
678
- for _ , t := range d . target . Targets () {
687
+ for t . Next () {
679
688
for _ , symFile := range t .BinInfo ().Sources {
680
689
if fileNameNormalized == strings .ToLower (filepath .ToSlash (symFile )) {
681
690
fileName = symFile
@@ -689,6 +698,7 @@ func (d *Debugger) CreateBreakpoint(requestedBp *api.Breakpoint) (*api.Breakpoin
689
698
addrs , err = proc .FindFunctionLocation (d .target .Selected , requestedBp .FunctionName , requestedBp .Line )
690
699
case len (requestedBp .Addrs ) > 0 :
691
700
addrs = requestedBp .Addrs
701
+ //TODO(aarzilli): read requestedBp.AddrPid
692
702
default :
693
703
addrs = []uint64 {requestedBp .Addr }
694
704
}
@@ -707,7 +717,18 @@ func (d *Debugger) CreateBreakpoint(requestedBp *api.Breakpoint) (*api.Breakpoin
707
717
708
718
func (d * Debugger ) convertBreakpoint (lbp * proc.LogicalBreakpoint ) * api.Breakpoint {
709
719
abp := api .ConvertLogicalBreakpoint (lbp )
710
- api .ConvertPhysicalBreakpoints (abp , d .findBreakpoint (lbp .LogicalID ))
720
+ bps := []* proc.Breakpoint {}
721
+ pids := []int {}
722
+ t := proc.ValidTargets {Group : d .target }
723
+ for t .Next () {
724
+ for _ , bp := range t .Breakpoints ().M {
725
+ if bp .LogicalID () == lbp .LogicalID {
726
+ bps = append (bps , bp )
727
+ pids = append (pids , t .Pid ())
728
+ }
729
+ }
730
+ }
731
+ api .ConvertPhysicalBreakpoints (abp , pids , bps )
711
732
return abp
712
733
}
713
734
@@ -846,7 +867,7 @@ func (d *Debugger) CreateEBPFTracepoint(fnName string) error {
846
867
d .targetMutex .Lock ()
847
868
defer d .targetMutex .Unlock ()
848
869
if len (d .target .Targets ()) != 1 {
849
- panic ( "multiple targets not implemented" )
870
+ return ErrNotImplementedWithMultitarget
850
871
}
851
872
p := d .target .Selected
852
873
return p .SetEBPFTracepoint (fnName )
@@ -1045,23 +1066,22 @@ func isBpHitCondNotSatisfiable(bp *api.Breakpoint) bool {
1045
1066
func (d * Debugger ) Breakpoints (all bool ) []* api.Breakpoint {
1046
1067
d .targetMutex .Lock ()
1047
1068
defer d .targetMutex .Unlock ()
1048
- if len (d .target .Targets ()) != 1 {
1049
- panic ("multiple targets not implemented" )
1050
- }
1051
- p := d .target .Selected
1052
1069
1053
1070
abps := []* api.Breakpoint {}
1054
1071
if all {
1055
- for _ , bp := range p .Breakpoints ().M {
1056
- var abp * api.Breakpoint
1057
- if bp .Logical != nil {
1058
- abp = api .ConvertLogicalBreakpoint (bp .Logical )
1059
- } else {
1060
- abp = & api.Breakpoint {}
1072
+ t := proc.ValidTargets {Group : d .target }
1073
+ for t .Next () {
1074
+ for _ , bp := range t .Breakpoints ().M {
1075
+ var abp * api.Breakpoint
1076
+ if bp .Logical != nil {
1077
+ abp = api .ConvertLogicalBreakpoint (bp .Logical )
1078
+ } else {
1079
+ abp = & api.Breakpoint {}
1080
+ }
1081
+ api .ConvertPhysicalBreakpoints (abp , []int {t .Pid ()}, []* proc.Breakpoint {bp })
1082
+ abp .VerboseDescr = bp .VerboseDescr ()
1083
+ abps = append (abps , abp )
1061
1084
}
1062
- api .ConvertPhysicalBreakpoints (abp , []* proc.Breakpoint {bp })
1063
- abp .VerboseDescr = bp .VerboseDescr ()
1064
- abps = append (abps , abp )
1065
1085
}
1066
1086
} else {
1067
1087
for _ , lbp := range d .target .LogicalBreakpoints {
@@ -1422,7 +1442,8 @@ func (d *Debugger) Sources(filter string) ([]string, error) {
1422
1442
}
1423
1443
1424
1444
files := []string {}
1425
- for _ , t := range d .target .Targets () {
1445
+ t := proc.ValidTargets {Group : d .target }
1446
+ for t .Next () {
1426
1447
for _ , f := range t .BinInfo ().Sources {
1427
1448
if regex .Match ([]byte (f )) {
1428
1449
files = append (files , f )
@@ -1460,7 +1481,8 @@ func (d *Debugger) Functions(filter string) ([]string, error) {
1460
1481
}
1461
1482
1462
1483
funcs := []string {}
1463
- for _ , t := range d .target .Targets () {
1484
+ t := proc.ValidTargets {Group : d .target }
1485
+ for t .Next () {
1464
1486
for _ , f := range t .BinInfo ().Functions {
1465
1487
if regex .MatchString (f .Name ) {
1466
1488
funcs = append (funcs , f .Name )
@@ -1484,7 +1506,8 @@ func (d *Debugger) Types(filter string) ([]string, error) {
1484
1506
1485
1507
r := []string {}
1486
1508
1487
- for _ , t := range d .target .Targets () {
1509
+ t := proc.ValidTargets {Group : d .target }
1510
+ for t .Next () {
1488
1511
types , err := t .BinInfo ().Types ()
1489
1512
if err != nil {
1490
1513
return nil , err
@@ -1932,13 +1955,6 @@ func (d *Debugger) FindLocation(goid, frame, deferredCall int, locStr string, in
1932
1955
d .targetMutex .Lock ()
1933
1956
defer d .targetMutex .Unlock ()
1934
1957
1935
- if len (d .target .Targets ()) != 1 {
1936
- //TODO(aarzilli): if there is more than one target process all must be
1937
- //searched and the addresses returned need to specify which target process
1938
- //they belong to.
1939
- panic ("multiple targets not implemented" )
1940
- }
1941
-
1942
1958
if _ , err := d .target .Valid (); err != nil {
1943
1959
return nil , err
1944
1960
}
@@ -1948,7 +1964,7 @@ func (d *Debugger) FindLocation(goid, frame, deferredCall int, locStr string, in
1948
1964
return nil , err
1949
1965
}
1950
1966
1951
- return d .findLocation (d . target . Selected , goid , frame , deferredCall , locStr , loc , includeNonExecutableLines , substitutePathRules )
1967
+ return d .findLocation (goid , frame , deferredCall , locStr , loc , includeNonExecutableLines , substitutePathRules )
1952
1968
}
1953
1969
1954
1970
// FindLocationSpec will find the location specified by 'locStr' and 'locSpec'.
@@ -1959,34 +1975,39 @@ func (d *Debugger) FindLocationSpec(goid, frame, deferredCall int, locStr string
1959
1975
d .targetMutex .Lock ()
1960
1976
defer d .targetMutex .Unlock ()
1961
1977
1962
- if len (d .target .Targets ()) != 1 {
1963
- //TODO(aarzilli): if there is more than one target process all must be
1964
- //searched and the addresses returned need to specify which target process
1965
- //they belong to.
1966
- panic ("multiple targets not implemented" )
1967
- }
1968
-
1969
1978
if _ , err := d .target .Valid (); err != nil {
1970
1979
return nil , err
1971
1980
}
1972
1981
1973
- return d .findLocation (d . target . Selected , goid , frame , deferredCall , locStr , locSpec , includeNonExecutableLines , substitutePathRules )
1982
+ return d .findLocation (goid , frame , deferredCall , locStr , locSpec , includeNonExecutableLines , substitutePathRules )
1974
1983
}
1975
1984
1976
- func (d * Debugger ) findLocation (p * proc.Target , goid , frame , deferredCall int , locStr string , locSpec locspec.LocationSpec , includeNonExecutableLines bool , substitutePathRules [][2 ]string ) ([]api.Location , error ) {
1977
- s , _ := proc .ConvertEvalScope (p , goid , frame , deferredCall )
1978
-
1979
- locs , err := locSpec .Find (p , d .processArgs , s , locStr , includeNonExecutableLines , substitutePathRules )
1980
- for i := range locs {
1981
- if locs [i ].PC == 0 {
1982
- continue
1985
+ func (d * Debugger ) findLocation (goid , frame , deferredCall int , locStr string , locSpec locspec.LocationSpec , includeNonExecutableLines bool , substitutePathRules [][2 ]string ) ([]api.Location , error ) {
1986
+ locations := []api.Location {}
1987
+ t := proc.ValidTargets {Group : d .target }
1988
+ for t .Next () {
1989
+ pid := t .Pid ()
1990
+ s , _ := proc .ConvertEvalScope (t .Target , goid , frame , deferredCall )
1991
+ locs , err := locSpec .Find (t .Target , d .processArgs , s , locStr , includeNonExecutableLines , substitutePathRules )
1992
+ if err != nil {
1993
+ return nil , err
1983
1994
}
1984
- file , line , fn := p .BinInfo ().PCToLine (locs [i ].PC )
1985
- locs [i ].File = file
1986
- locs [i ].Line = line
1987
- locs [i ].Function = api .ConvertFunction (fn )
1995
+ for i := range locs {
1996
+ if locs [i ].PC == 0 {
1997
+ continue
1998
+ }
1999
+ file , line , fn := t .BinInfo ().PCToLine (locs [i ].PC )
2000
+ locs [i ].File = file
2001
+ locs [i ].Line = line
2002
+ locs [i ].Function = api .ConvertFunction (fn )
2003
+ locs [i ].PCPids = make ([]int , len (locs [i ].PCs ))
2004
+ for j := range locs [i ].PCs {
2005
+ locs [i ].PCPids [j ] = pid
2006
+ }
2007
+ }
2008
+ locations = append (locations , locs ... )
1988
2009
}
1989
- return locs , err
2010
+ return locations , nil
1990
2011
}
1991
2012
1992
2013
// Disassemble code between startPC and endPC.
0 commit comments