code wiki / (root) / nx_host_recover.nx

nx_host_recover.nx

buildroot/runtime/nx_host_recover.nx

3309 B56 linesdepth 10pulls 22 transitivereach 0 importersview sourcekind tooltopic host
docsdependenciesstructsconstsfunctions

about

nx_host_recover.nx -- bring the live nishifamily host back up via the ecosystem's OWN supervisor (nx_hostctl supervise), over our sovereign SSH client. The supervisor was dead (no proc) -> sites.elf down -> nishifamily.com 0-byte TLS. This relaunches it with the proven setsid idiom (survives the SSH channel close) and reports the resulting process + listener state. Read-clean: only launches the ecosystem's documented supervisor; no kill of anything (PROCS was already empty). Reuses the vault-auth preamble from nx_aw_push/nx_cad_nas_probe. license_tier: ORIGINAL

dependencies 2 imports · 0 importers

nx_syscalls.nx nx_ssh_lib.nx nx_host_recover.nx

imports: nx_syscalls.nxnx_ssh_lib.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main p_run sys_fork sys_mmap sys_execve sys_exit sys_wait4 ssh_puts sys_write p_unlink sys_mmap ↻ sys_read_file sys_openat_rd sys_lseek sys_mmap ↻ sys_read sys_close ssh_open_session sys_socket sys_mmap ↻ ssh_sockaddr nx_connect_bounded nx_fcntl sys_connect sys_mmap ↻ sys_poll ssh_kex sys_write ↻ sys_mmap ↻ ssh_read_line sys_read ↻ ssh_read_packet sys_mmap ↻ ssh_read_full sys_read ↻ ssh_u32be ssh_put_bytes ssh_put_byte ssh_put_bytes ↻ ssh_put_str

structs

none

consts

11const P_SECRET_OUT: *u8 = "/tmp/nxsecret.out" as *u8
12const P_VAULT_NV: *u8 = "/home/elderwesto/.nishi/secrets/nas.nv" as *u8

functions

14func p_run(path: *u8, a1: *u8, a2: *u8) -> i64
33func slen(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } return n }
called by 1: main
35func main() -> i64