mirror of
				https://github.com/go-delve/delve.git
				synced 2025-10-31 10:47:27 +08:00 
			
		
		
		
	 1418cfd385
			
		
	
	1418cfd385
	
	
	
		
			
			This commit improves the handling of hardcoded breakpoints in Delve. A hardcoded breakpoint is a breakpoint instruction hardcoded in the text of the program, for example through runtime.Breakpoint. 1. hardcoded breakpoints are now indicated by setting the breakpoint field on any thread stopped by a hardcoded breakpoint 2. if multiple hardcoded breakpoints are hit during a single stop all will be notified to the user. 3. a debugger breakpoint with an unmet condition can't hide a hardcoded breakpoint anymore.
		
			
				
	
	
		
			123 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			123 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package native
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 
 | |
| 	sys "golang.org/x/sys/unix"
 | |
| 
 | |
| 	"github.com/go-delve/delve/pkg/proc"
 | |
| )
 | |
| 
 | |
| type waitStatus sys.WaitStatus
 | |
| 
 | |
| // osSpecificDetails hold Linux specific
 | |
| // process details.
 | |
| type osSpecificDetails struct {
 | |
| 	delayedSignal       int
 | |
| 	running             bool
 | |
| 	setbp               bool
 | |
| 	phantomBreakpointPC uint64
 | |
| }
 | |
| 
 | |
| func (t *nativeThread) stop() (err error) {
 | |
| 	err = sys.Tgkill(t.dbp.pid, t.ID, sys.SIGSTOP)
 | |
| 	if err != nil {
 | |
| 		err = fmt.Errorf("stop err %s on thread %d", err, t.ID)
 | |
| 		return
 | |
| 	}
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // Stopped returns whether the thread is stopped at
 | |
| // the operating system level.
 | |
| func (t *nativeThread) Stopped() bool {
 | |
| 	state := status(t.ID, t.dbp.os.comm)
 | |
| 	return state == statusTraceStop || state == statusTraceStopT
 | |
| }
 | |
| 
 | |
| func (t *nativeThread) resume() error {
 | |
| 	sig := t.os.delayedSignal
 | |
| 	t.os.delayedSignal = 0
 | |
| 	return t.resumeWithSig(sig)
 | |
| }
 | |
| 
 | |
| func (t *nativeThread) resumeWithSig(sig int) (err error) {
 | |
| 	t.os.running = true
 | |
| 	t.dbp.execPtraceFunc(func() { err = ptraceCont(t.ID, sig) })
 | |
| 	return
 | |
| }
 | |
| 
 | |
| func (t *nativeThread) singleStep() (err error) {
 | |
| 	sig := 0
 | |
| 	for {
 | |
| 		t.dbp.execPtraceFunc(func() { err = ptraceSingleStep(t.ID, sig) })
 | |
| 		sig = 0
 | |
| 		if err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 		wpid, status, err := t.dbp.waitFast(t.ID)
 | |
| 		if err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 		if (status == nil || status.Exited()) && wpid == t.dbp.pid {
 | |
| 			t.dbp.postExit()
 | |
| 			rs := 0
 | |
| 			if status != nil {
 | |
| 				rs = status.ExitStatus()
 | |
| 			}
 | |
| 			return proc.ErrProcessExited{Pid: t.dbp.pid, Status: rs}
 | |
| 		}
 | |
| 		if wpid == t.ID {
 | |
| 			switch s := status.StopSignal(); s {
 | |
| 			case sys.SIGTRAP:
 | |
| 				return nil
 | |
| 			case sys.SIGSTOP:
 | |
| 				// delayed SIGSTOP, ignore it
 | |
| 			case sys.SIGILL, sys.SIGBUS, sys.SIGFPE, sys.SIGSEGV, sys.SIGSTKFLT:
 | |
| 				// propagate signals that can have been caused by the current instruction
 | |
| 				sig = int(s)
 | |
| 			default:
 | |
| 				// delay propagation of all other signals
 | |
| 				t.os.delayedSignal = int(s)
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (t *nativeThread) WriteMemory(addr uint64, data []byte) (written int, err error) {
 | |
| 	if t.dbp.exited {
 | |
| 		return 0, proc.ErrProcessExited{Pid: t.dbp.pid}
 | |
| 	}
 | |
| 	if len(data) == 0 {
 | |
| 		return
 | |
| 	}
 | |
| 	// ProcessVmWrite can't poke read-only memory like ptrace, so don't
 | |
| 	// even bother for small writes -- likely breakpoints and such.
 | |
| 	if len(data) > sys.SizeofPtr {
 | |
| 		written, _ = processVmWrite(t.ID, uintptr(addr), data)
 | |
| 	}
 | |
| 	if written == 0 {
 | |
| 		t.dbp.execPtraceFunc(func() { written, err = sys.PtracePokeData(t.ID, uintptr(addr), data) })
 | |
| 	}
 | |
| 	return
 | |
| }
 | |
| 
 | |
| func (t *nativeThread) ReadMemory(data []byte, addr uint64) (n int, err error) {
 | |
| 	if t.dbp.exited {
 | |
| 		return 0, proc.ErrProcessExited{Pid: t.dbp.pid}
 | |
| 	}
 | |
| 	if len(data) == 0 {
 | |
| 		return
 | |
| 	}
 | |
| 	n, _ = processVmRead(t.ID, uintptr(addr), data)
 | |
| 	if n == 0 {
 | |
| 		t.dbp.execPtraceFunc(func() { n, err = sys.PtracePeekData(t.ID, uintptr(addr), data) })
 | |
| 	}
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // SoftExc returns true if this thread received a software exception during the last resume.
 | |
| func (t *nativeThread) SoftExc() bool {
 | |
| 	return t.os.setbp
 | |
| }
 |