File: Debugger.swift

package info (click to toggle)
swiftlang 6.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,856,264 kB
  • sloc: cpp: 9,995,718; ansic: 2,234,019; asm: 1,092,167; python: 313,940; objc: 82,726; f90: 80,126; lisp: 38,373; pascal: 25,580; sh: 20,378; ml: 5,058; perl: 4,751; makefile: 4,725; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (104 lines) | stat: -rw-r--r-- 3,765 bytes parent folder | download
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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2025 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//

import Foundation
import SWBLibc

public enum Debugger: Sendable {
    public static func pause() {
        #if os(Windows)
        DebugActiveProcess(GetCurrentProcessId())
        #else
        raise(SIGSTOP)
        #endif
    }

    public static func resume() {
        #if os(Windows)
        DebugActiveProcessStop(GetCurrentProcessId())
        #else
        raise(SIGCONT)
        #endif
    }

    public static func isAttached() throws -> Bool {
        #if canImport(Darwin)
        var info = kinfo_proc()
        var mib: [Int32] = [CTL_KERN, KERN_PROC, KERN_PROC_PID, getpid()]
        var size = MemoryLayout<kinfo_proc>.stride
        if sysctl(&mib, u_int(mib.count), &info, &size, nil, 0) != 0 {
            throw POSIXError(errno, context: "sysctl")
        }
        return (info.kp_proc.p_flag & P_TRACED) != 0
        #else
        throw StubError.error("Debugger detection is not supported on this platform")
        #endif
    }

    public static func waitForAttachment(_ condition: @escaping () throws -> Bool = { true }) async throws {
        var attached = try isAttached()
        while !attached {
            try await Task.sleep(for: .seconds(0.1))
            guard try condition() else {
                return
            }
            attached = try isAttached()
        }
    }

    public static var isXcodeAutoAttachEnabled: Bool {
        return ProcessInfo.processInfo.environment["IB_AUTO_ATTACH_ENABLED"]?.boolValue == true
    }

    public static func waitForXcodeAutoAttachIfEnabled() async throws {
        #if canImport(Darwin)
        if isXcodeAutoAttachEnabled {
            try await waitForAttachment() {
                // Exit if parent process died while waiting for debugger
                if kill(getppid(), 0) != 0 { // ignore-unacceptable-language; POSIX API
                    throw StubError.error("Parent process exited while waiting for debugger")
                }
                return true
            }
        }
        #else
        throw StubError.error("Debugger detection is not supported on this platform")
        #endif
    }

    public static func requestXcodeAutoAttachIfEnabled(_ remoteToolPID: Int32) throws {
        #if canImport(Darwin)
        if isXcodeAutoAttachEnabled, let sendPipeName = ProcessInfo.processInfo.environment["IB_AUTO_ATTACH_PIPE_NAME"] {
            let returnPipeName = "/tmp/Xcode.IBCTTAutoAttachPipe.Return.\(getpid()).\(remoteToolPID)"
            unlink(returnPipeName)
            let success = mkfifo(returnPipeName, S_IRWXU | S_IRWXG | S_IRWXO) == 0

            if let writeHandle = FileHandle(forWritingAtPath: sendPipeName) {
                let payload = "\(getpid()).\(remoteToolPID).IBCocoaFramework;"
                try writeHandle.write(contentsOf: Data(payload.utf8))
                try writeHandle.close()
            }

            if success {
                if let readHandle = FileHandle(forReadingAtPath: returnPipeName) {
                    _ = try readHandle.readToEnd()
                    try readHandle.close()
                }

                unlink(returnPipeName)
            }
        }
        #else
        throw StubError.error("Debugger detection is not supported on this platform")
        #endif
    }
}