## Summary Fixes #36754 This PR fixes an issue where LSPs fail to spawn after the crash handler is initialized. ## Problem After PR #35263 added minidump crash reporting, some users experienced LSP spawn failures. The issue manifests as: - LSPs fail to spawn with no clear error messages - The problem only occurs after crash handler initialization - LSPs work when a debugger is attached, revealing a timing issue ### Root Cause The crash handler installs Mach exception ports for minidump generation. Due to a timing issue, child processes inherit these exception ports before they're fully stabilized, which can block child process spawning. ## Solution Reset exception ports in child processes using the `pre_exec()` hook, which runs after `fork()` but before `exec()`. This prevents children from inheriting the parent's crash handler exception ports. ### Implementation - Adds macOS-specific implementation of `new_smol_command()` that resets exception ports before exec - Calls `task_set_exception_ports` to reset all exception ports to `MACH_PORT_NULL` - Graceful error handling: logs warnings but doesn't fail process spawning if port reset fails Release Notes: - Fixed LSPs failing to spawn on some macOS systems --------- Co-authored-by: Julia Ryan <juliaryan3.14@gmail.com>
103 lines
3.5 KiB
Rust
103 lines
3.5 KiB
Rust
use std::ffi::OsStr;
|
|
|
|
#[cfg(target_os = "windows")]
|
|
const CREATE_NO_WINDOW: u32 = 0x0800_0000_u32;
|
|
|
|
#[cfg(target_os = "windows")]
|
|
pub fn new_std_command(program: impl AsRef<OsStr>) -> std::process::Command {
|
|
use std::os::windows::process::CommandExt;
|
|
|
|
let mut command = std::process::Command::new(program);
|
|
command.creation_flags(CREATE_NO_WINDOW);
|
|
command
|
|
}
|
|
|
|
#[cfg(not(target_os = "windows"))]
|
|
pub fn new_std_command(program: impl AsRef<OsStr>) -> std::process::Command {
|
|
std::process::Command::new(program)
|
|
}
|
|
|
|
#[cfg(target_os = "windows")]
|
|
pub fn new_smol_command(program: impl AsRef<OsStr>) -> smol::process::Command {
|
|
use smol::process::windows::CommandExt;
|
|
|
|
let mut command = smol::process::Command::new(program);
|
|
command.creation_flags(CREATE_NO_WINDOW);
|
|
command
|
|
}
|
|
|
|
#[cfg(target_os = "macos")]
|
|
pub fn new_smol_command(program: impl AsRef<OsStr>) -> smol::process::Command {
|
|
use std::os::unix::process::CommandExt;
|
|
|
|
// Create a std::process::Command first so we can use pre_exec
|
|
let mut std_cmd = std::process::Command::new(program);
|
|
|
|
// WORKAROUND: Reset exception ports before exec to prevent inheritance of
|
|
// crash handler exception ports. Due to a timing issue, child processes can
|
|
// inherit the parent's exception ports before they're fully stabilized,
|
|
// which can block child process spawning.
|
|
// See: https://github.com/zed-industries/zed/issues/36754
|
|
unsafe {
|
|
std_cmd.pre_exec(|| {
|
|
// Reset all exception ports to system defaults for this task.
|
|
// This prevents the child from inheriting the parent's crash handler
|
|
// exception ports.
|
|
reset_exception_ports();
|
|
Ok(())
|
|
});
|
|
}
|
|
|
|
// Convert to async_process::Command via From trait
|
|
smol::process::Command::from(std_cmd)
|
|
}
|
|
|
|
#[cfg(all(not(target_os = "windows"), not(target_os = "macos")))]
|
|
pub fn new_smol_command(program: impl AsRef<OsStr>) -> smol::process::Command {
|
|
smol::process::Command::new(program)
|
|
}
|
|
|
|
#[cfg(target_os = "macos")]
|
|
fn reset_exception_ports() {
|
|
use mach2::exception_types::{
|
|
EXC_MASK_ALL, EXCEPTION_DEFAULT, exception_behavior_t, exception_mask_t,
|
|
};
|
|
use mach2::kern_return::{KERN_SUCCESS, kern_return_t};
|
|
use mach2::mach_types::task_t;
|
|
use mach2::port::{MACH_PORT_NULL, mach_port_t};
|
|
use mach2::thread_status::{THREAD_STATE_NONE, thread_state_flavor_t};
|
|
use mach2::traps::mach_task_self;
|
|
|
|
// FFI binding for task_set_exception_ports (not exposed by mach2 crate)
|
|
unsafe extern "C" {
|
|
fn task_set_exception_ports(
|
|
task: task_t,
|
|
exception_mask: exception_mask_t,
|
|
new_port: mach_port_t,
|
|
behavior: exception_behavior_t,
|
|
new_flavor: thread_state_flavor_t,
|
|
) -> kern_return_t;
|
|
}
|
|
|
|
unsafe {
|
|
let task = mach_task_self();
|
|
// Reset all exception ports to MACH_PORT_NULL (system default)
|
|
// This prevents the child process from inheriting the parent's crash handler
|
|
let kr = task_set_exception_ports(
|
|
task,
|
|
EXC_MASK_ALL,
|
|
MACH_PORT_NULL,
|
|
EXCEPTION_DEFAULT as exception_behavior_t,
|
|
THREAD_STATE_NONE,
|
|
);
|
|
|
|
if kr != KERN_SUCCESS {
|
|
// Log but don't fail - the process can still work without this workaround
|
|
eprintln!(
|
|
"Warning: failed to reset exception ports in child process (kern_return: {})",
|
|
kr
|
|
);
|
|
}
|
|
}
|
|
}
|