The layered-env reader gained an unreadable-layer path, a default reporter, and two absent-layer arms with no cases; the credential store gained two error paths that must not be mistaken for an absent file. The platform arms and the `linePos` guard cannot be reached from a POSIX test run — the first is covered by the native Windows job, the second only satisfies an optional type that `prettyErrors` always fills — so both carry a v8 ignore naming why.
226 lines
10 KiB
TypeScript
226 lines
10 KiB
TypeScript
/**
|
|
* The launch-time environment as one immutable snapshot that remembers which
|
|
* layer supplied each value. The harness resolves user-facing values against
|
|
* this rather than against `process.env`, because the layers differ in how
|
|
* much they are trusted: an inherited variable is this run's explicit intent,
|
|
* a file discovered under the invoking directory is whatever the project
|
|
* happens to contain, and a consumer that cannot tell them apart cannot make
|
|
* that distinction.
|
|
*
|
|
* Values still reach `process.env` as well — a user's own `--config` tree and
|
|
* third-party libraries read it — but that flattened view is not the
|
|
* authority for anything the harness itself resolves.
|
|
* @module @deepseek-ai/dsh-environment
|
|
*/
|
|
|
|
import type { Context } from 'cordis'
|
|
|
|
/**
|
|
* Which layer supplied a value, from most to least trusted: the environment
|
|
* this process inherited, the invoking directory's `.env`, the Harness home's
|
|
* `.env`.
|
|
*/
|
|
export type EnvironmentSource = 'process' | 'project-env' | 'user-env'
|
|
|
|
/** Layer order, most trusted first — the default search order of {@link EnvironmentSnapshot.get}. */
|
|
export const ENVIRONMENT_SOURCES: readonly EnvironmentSource[] = ['process', 'project-env', 'user-env']
|
|
|
|
/** One resolved variable and the layer it came from. */
|
|
export interface EnvironmentEntry {
|
|
/** The value as the layer supplied it; may be empty, which each owner judges for itself. */
|
|
value: string
|
|
/** The layer that supplied it. */
|
|
source: EnvironmentSource
|
|
/** Absolute path of the file that supplied it; absent for `process`. */
|
|
path?: string
|
|
}
|
|
|
|
/** One environment layer's identity, for diagnostics. */
|
|
export interface EnvironmentLayer {
|
|
source: EnvironmentSource
|
|
/** Absolute path of the file behind this layer; absent for `process`. */
|
|
path?: string
|
|
}
|
|
|
|
/**
|
|
* The frozen environment of one launch. Construct through
|
|
* {@link createEnvironmentSnapshot}; nothing mutates it afterwards, so a
|
|
* later `chdir`, workspace switch, or resumed session observes the same
|
|
* values a consumer resolved at boot.
|
|
*/
|
|
export interface EnvironmentSnapshot {
|
|
/**
|
|
* Resolve one name across every layer, most trusted first.
|
|
* @param name - the variable name.
|
|
* @returns the winning entry, or `undefined` when no layer supplies it.
|
|
*/
|
|
get(name: string): EnvironmentEntry | undefined
|
|
/**
|
|
* Resolve one name across only the layers the caller trusts for this
|
|
* decision. Omitting a layer is a refusal, not a demotion: a routing field
|
|
* that must never come from a project directory omits `project-env` so no
|
|
* ordering change can let it back in.
|
|
* @param name - the variable name.
|
|
* @param sources - the layers to search, in the caller's own priority order.
|
|
* @returns the first matching entry, or `undefined`.
|
|
*/
|
|
getFrom(name: string, sources: readonly EnvironmentSource[]): EnvironmentEntry | undefined
|
|
/** The layers this snapshot was built from, most trusted first. */
|
|
readonly layers: readonly EnvironmentLayer[]
|
|
}
|
|
|
|
/**
|
|
* The map key one variable name resolves under. Windows treats environment
|
|
* names case-insensitively; every other platform does not.
|
|
* @param name - the variable name as written.
|
|
* @returns the key to store and look up by.
|
|
*/
|
|
function lookupKey(name: string): string {
|
|
/* v8 ignore next -- native Windows coverage exercises the folding arm; POSIX covers the exact one */
|
|
return process.platform === 'win32' ? name.toUpperCase() : name
|
|
}
|
|
|
|
/** One layer's raw contents, as {@link createEnvironmentSnapshot} receives them. */
|
|
export interface EnvironmentLayerInput {
|
|
source: EnvironmentSource
|
|
/** Absolute path of the file behind this layer; omit for `process`. */
|
|
path?: string
|
|
values: Readonly<Record<string, string>>
|
|
}
|
|
|
|
/**
|
|
* Build the snapshot from each layer's contents.
|
|
* @param layers - the layers in any order; the result searches them by {@link ENVIRONMENT_SOURCES}.
|
|
* @returns the immutable snapshot.
|
|
*/
|
|
export function createEnvironmentSnapshot(layers: readonly EnvironmentLayerInput[]): EnvironmentSnapshot {
|
|
// Copied per layer so a later mutation of `process.env` — or of a caller's
|
|
// own object — cannot change what this snapshot reports. Windows environment
|
|
// names are case-insensitive, so lookups there fold case: otherwise a shell
|
|
// that set `deepseek_api_key` would be invisible to a consumer asking for
|
|
// `DEEPSEEK_API_KEY`, and a lower-ranked layer spelling it in caps would win
|
|
// a decision the launch had already made. POSIX names are case-sensitive and
|
|
// must stay exact.
|
|
const bySource = new Map<EnvironmentSource, { path?: string; values: Map<string, string> }>()
|
|
for (const layer of layers) {
|
|
bySource.set(layer.source, {
|
|
...layer.path === undefined ? {} : { path: layer.path },
|
|
values: new Map(Object.entries(layer.values).map(([name, value]) => [lookupKey(name), value])),
|
|
})
|
|
}
|
|
const getFrom = (name: string, sources: readonly EnvironmentSource[]): EnvironmentEntry | undefined => {
|
|
const key = lookupKey(name)
|
|
for (const source of sources) {
|
|
const layer = bySource.get(source)
|
|
const value = layer?.values.get(key)
|
|
if (value === undefined) continue
|
|
return { value, source, ...layer?.path === undefined ? {} : { path: layer.path } }
|
|
}
|
|
return undefined
|
|
}
|
|
return {
|
|
get: name => getFrom(name, ENVIRONMENT_SOURCES),
|
|
getFrom,
|
|
layers: ENVIRONMENT_SOURCES
|
|
.filter(source => bySource.has(source))
|
|
.map((source): EnvironmentLayer => {
|
|
const path = bySource.get(source)?.path
|
|
return { source, ...path === undefined ? {} : { path } }
|
|
}),
|
|
}
|
|
}
|
|
|
|
/** Context slot the launcher fills with this run's snapshot before any config entry mounts. */
|
|
export const DSH_ENVIRONMENT_KEY = 'launcherEnvironment'
|
|
|
|
/**
|
|
* The snapshot to resolve against, whatever booted this tree: the launcher's
|
|
* when the product CLI provided one, otherwise the inherited environment
|
|
* alone.
|
|
*
|
|
* The fallback does not weaken the layer rules — it applies the same rules to
|
|
* a host that has exactly one layer. An SDK embedder or a bare `cordis.yml`
|
|
* never discovered a project or user file, so everything it has really is the
|
|
* environment it was launched with, and `getFrom(..., ['process'])` is exactly
|
|
* right for it.
|
|
* @param ctx - the consuming plugin's context.
|
|
* @returns the snapshot to resolve user-facing values against.
|
|
*/
|
|
export function environmentOf(ctx: Context): EnvironmentSnapshot {
|
|
return ctx.get(DSH_ENVIRONMENT_KEY)
|
|
?? createEnvironmentSnapshot([{ source: 'process', values: process.env as Record<string, string> }])
|
|
}
|
|
|
|
declare module 'cordis' {
|
|
interface Context {
|
|
/** Launcher-owned snapshot of this run's environment; absent in compositions the product CLI did not boot. */
|
|
launcherEnvironment?: EnvironmentSnapshot
|
|
}
|
|
}
|
|
|
|
/** Exact names no discovered file may set. */
|
|
const BOOTSTRAP_NAMES = new Set([
|
|
// Process launch and module resolution.
|
|
'PATH', 'HOME', 'USERPROFILE', 'SHELL',
|
|
'NODE_OPTIONS', 'NODE_PATH', 'NODE_EXTRA_CA_CERTS',
|
|
'LD_PRELOAD', 'LD_LIBRARY_PATH', 'LD_AUDIT',
|
|
// Interpreter start-up hooks: each of these makes a runtime execute a file
|
|
// of the setter's choosing on every invocation, before the program runs.
|
|
// `BASH_ENV` is the sharpest — the bash tool spawns `bash -c`, which sources
|
|
// it every time — but every runtime an agent shells out to has one.
|
|
'BASH_ENV', 'ENV', 'SHELLOPTS', 'BASHOPTS',
|
|
'PERL5OPT', 'PERL5LIB', 'PYTHONSTARTUP', 'PYTHONPATH', 'RUBYOPT', 'RUBYLIB',
|
|
'JAVA_TOOL_OPTIONS', '_JAVA_OPTIONS', 'JDK_JAVA_OPTIONS',
|
|
'PYTHONHOME',
|
|
// Version-control hooks that run a command on the setter's behalf, and the
|
|
// config redirections that can define such a hook indirectly (a substituted
|
|
// git config file can set core.pager or a credential helper).
|
|
'GIT_SSH', 'GIT_SSH_COMMAND', 'GIT_EXTERNAL_DIFF', 'GIT_PAGER', 'GIT_EDITOR',
|
|
'GIT_ASKPASS', 'SSH_ASKPASS',
|
|
'GIT_CONFIG_GLOBAL', 'GIT_CONFIG_SYSTEM', 'GIT_CONFIG_COUNT',
|
|
'EDITOR', 'VISUAL', 'PAGER',
|
|
// Network reach and trust.
|
|
'SSL_CERT_FILE', 'SSL_CERT_DIR',
|
|
'HTTP_PROXY', 'HTTPS_PROXY', 'ALL_PROXY', 'NO_PROXY',
|
|
'REQUESTS_CA_BUNDLE', 'CURL_CA_BUNDLE',
|
|
// Turns off TLS verification outright, which is the sharpest form of
|
|
// "how the network is trusted".
|
|
'NODE_TLS_REJECT_UNAUTHORIZED',
|
|
])
|
|
|
|
/** Name prefixes no discovered file may set. */
|
|
const BOOTSTRAP_PREFIXES = ['DSH_', 'XDG_', 'DYLD_', 'BASH_FUNC_']
|
|
|
|
/**
|
|
* Whether a variable may come only from the inherited process environment.
|
|
*
|
|
* The invoking project is trusted to *configure* the agent's work — its
|
|
* endpoints, its ordinary variables, even a credential. It is not trusted to
|
|
* change the harness itself, and that is what a bootstrap variable does: it
|
|
* decides how a process launches (`PATH`, `NODE_OPTIONS`, `LD_PRELOAD`), what
|
|
* code a runtime executes before the program it was asked to run (`BASH_ENV`
|
|
* and its per-language siblings, the Git hook commands), where model-visible
|
|
* instructions load from (`DSH_*` covers the Harness home, the agents home,
|
|
* and the bundled skill root), or how the network is reached and trusted
|
|
* (proxy and CA variables).
|
|
*
|
|
* The distinction is that these take effect with no user action, before any
|
|
* turn, outside the permission policy and the sandbox — `DSH_PERMISSION_MODE`
|
|
* would switch off the approvals that make trusting a project meaningful at
|
|
* all, and `BASH_ENV` runs a file of the project's choosing on every single
|
|
* `bash -c` the tool issues. Trusting a project's code to run under the
|
|
* agent's policy is not the same as letting it rewrite that policy.
|
|
*
|
|
* They are therefore rejected at load rather than ranked below another layer:
|
|
* a user who wrote one into a file believes it applies, and silently ignoring
|
|
* it is its own failure. The whole `DSH_*` namespace is denied rather than an
|
|
* audited subset, because a switch added later must not become settable by
|
|
* being forgotten.
|
|
* @param name - the variable name.
|
|
* @returns true when only the inherited environment may supply it.
|
|
*/
|
|
export function isBootstrapOnly(name: string): boolean {
|
|
const upper = name.toUpperCase()
|
|
return BOOTSTRAP_NAMES.has(upper) || BOOTSTRAP_PREFIXES.some(prefix => upper.startsWith(prefix))
|
|
}
|