-
Notifications
You must be signed in to change notification settings - Fork 23
fix: match session webhook PID to parent when wrapper scripts are used #101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Spirotot
wants to merge
1
commit into
happier-dev:dev
Choose a base branch
from
Spirotot:fix/daemon-pid-parent-matching
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,7 @@ import { logger } from '@/ui/logger'; | |
|
|
||
| import os from 'node:os'; | ||
| import path from 'node:path'; | ||
| import { execSync } from 'node:child_process'; | ||
|
|
||
| import { findHappyProcessByPid } from '../doctor'; | ||
| import type { TrackedSession } from '../types'; | ||
|
|
@@ -17,6 +18,24 @@ function resolveTildePath(inputPath: string): string { | |
| return inputPath; | ||
| } | ||
|
|
||
| /** | ||
| * Get the parent PID of a process. | ||
| * | ||
| * Used to detect wrapper-script scenarios where the daemon spawns a wrapper | ||
| * (e.g. Node.js entrypoint) that in turn spawns the actual session binary. | ||
| * Returns null on Windows or if the lookup fails. | ||
| */ | ||
| function getParentPid(pid: number): number | null { | ||
| if (process.platform === 'win32') return null; | ||
| try { | ||
| const stdout = execSync(`ps -o ppid= -p ${pid}`, { encoding: 'utf-8', timeout: 1000 }); | ||
| const ppid = parseInt(stdout.trim(), 10); | ||
| return Number.isFinite(ppid) ? ppid : null; | ||
| } catch { | ||
| return null; | ||
| } | ||
| } | ||
|
|
||
| export function createOnHappySessionWebhook(params: Readonly<{ | ||
| pidToTrackedSession: Map<number, TrackedSession>; | ||
| pidToAwaiter: Map<number, (session: TrackedSession) => void>; | ||
|
|
@@ -86,15 +105,40 @@ export function createOnHappySessionWebhook(params: Readonly<{ | |
| logger.debug(`[DAEMON RUN] Refreshed externally-started session ${sessionId}`); | ||
| } | ||
| } else if (!existingSession) { | ||
| // New session started externally | ||
| const trackedSession: TrackedSession = { | ||
| startedBy: 'happy directly - likely by user from terminal', | ||
| happySessionId: sessionId, | ||
| happySessionMetadataFromLocalWebhook: normalizedMetadata, | ||
| pid | ||
| }; | ||
| pidToTrackedSession.set(pid, trackedSession); | ||
| logger.debug(`[DAEMON RUN] Registered externally-started session ${sessionId}`); | ||
| // PID not in tracked map. Check if this is a child of a tracked PID — | ||
| // this happens when a wrapper script (e.g. Node.js entrypoint) spawns | ||
| // the actual session binary as a child process, causing a PID mismatch | ||
| // between what the daemon spawned and what the session reports. | ||
| const ppid = getParentPid(pid); | ||
| const parentSession = ppid ? pidToTrackedSession.get(ppid) : null; | ||
|
|
||
| if (parentSession && parentSession.startedBy === 'daemon') { | ||
| // Re-key the tracked session from wrapper PID to actual session PID | ||
| pidToTrackedSession.delete(ppid); | ||
| parentSession.pid = pid; | ||
| parentSession.happySessionId = sessionId; | ||
| parentSession.happySessionMetadataFromLocalWebhook = normalizedMetadata; | ||
| pidToTrackedSession.set(pid, parentSession); | ||
| logger.debug(`[DAEMON RUN] Re-keyed daemon session from wrapper PID ${ppid} to actual PID ${pid}`); | ||
|
|
||
| // Resolve any awaiter that was waiting on the wrapper PID | ||
| const awaiter = pidToAwaiter.get(ppid); | ||
| if (awaiter) { | ||
| pidToAwaiter.delete(ppid); | ||
| awaiter(parentSession); | ||
| logger.debug(`[DAEMON RUN] Resolved session awaiter via parent PID ${ppid}`); | ||
| } | ||
|
Comment on lines
+108
to
+130
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add test coverage for the parent PID matching logic - should verify:
|
||
| } else { | ||
| // New session started externally (not by this daemon) | ||
| const trackedSession: TrackedSession = { | ||
| startedBy: 'happy directly - likely by user from terminal', | ||
| happySessionId: sessionId, | ||
| happySessionMetadataFromLocalWebhook: normalizedMetadata, | ||
| pid | ||
| }; | ||
| pidToTrackedSession.set(pid, trackedSession); | ||
| logger.debug(`[DAEMON RUN] Registered externally-started session ${sessionId}`); | ||
| } | ||
| } | ||
|
|
||
| // Best-effort: write/update marker so future daemon restarts can reattach. | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add input validation to ensure
pidis a number before using in shell command