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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
|
#!/bin/bash
# SPDX-FileCopyrightText: Copyright (C) 2025 Bruce Ashfield
#
# SPDX-License-Identifier: GPL-2.0-only
#
# vrunner-backend-xen.sh
# Xen hypervisor backend for vrunner.sh
#
# This backend implements the hypervisor interface for Xen xl toolstack.
# It is sourced by vrunner.sh when VCONTAINER_HYPERVISOR=xen.
#
# This backend runs on a Xen Dom0 host and creates DomU guests using xl.
# Key differences from QEMU backend:
# - Block devices appear as /dev/xvd* instead of /dev/vd*
# - Network uses bridge + iptables NAT instead of QEMU slirp
# - Console uses PV console (hvc0) with serial='pty' for PTY on Dom0
# - Daemon IPC uses direct PTY I/O (no socat bridge needed)
# - VM tracking uses domain name instead of PID
# ============================================================================
# Architecture Setup
# ============================================================================
hv_setup_arch() {
case "$TARGET_ARCH" in
aarch64)
KERNEL_IMAGE="$BLOB_DIR/aarch64/Image"
INITRAMFS="$BLOB_DIR/aarch64/initramfs.cpio.gz"
ROOTFS_IMG="$BLOB_DIR/aarch64/rootfs.img"
HV_CMD="xl"
HV_CONSOLE="hvc0"
;;
x86_64)
KERNEL_IMAGE="$BLOB_DIR/x86_64/bzImage"
INITRAMFS="$BLOB_DIR/x86_64/initramfs.cpio.gz"
ROOTFS_IMG="$BLOB_DIR/x86_64/rootfs.img"
HV_CMD="xl"
HV_CONSOLE="hvc0"
;;
*)
log "ERROR" "Unsupported architecture: $TARGET_ARCH"
exit 1
;;
esac
# Xen domain name: use container name if set, otherwise PID-based
if [ -n "${CONTAINER_NAME:-}" ]; then
HV_DOMNAME="vxn-${CONTAINER_NAME}"
else
HV_DOMNAME="vxn-$$"
fi
HV_VM_PID=""
# Xen domain config path (generated at runtime)
HV_XEN_CFG=""
# Xen-specific: pass block device prefix via kernel cmdline
# so preinit can find rootfs before /proc is mounted
HV_BLK_PREFIX="xvd"
}
hv_check_accel() {
# Xen IS the hypervisor - no KVM check needed
USE_KVM="false"
log "DEBUG" "Xen hypervisor (no KVM check needed)"
}
hv_skip_state_disk() {
# Xen DomU Docker storage lives in the guest's overlay filesystem.
# In daemon mode the domain stays running so storage persists naturally.
# No need to create a 2GB disk image on Dom0.
return 0
}
# ============================================================================
# Container Image Preparation (OCI pull via skopeo)
# ============================================================================
# Pull OCI image on the host so the input disk creation code can package it.
# Called from vrunner.sh before input disk creation. Modifies globals:
# INPUT_PATH - set to the OCI layout directory
# INPUT_TYPE - set to "oci"
# DOCKER_CMD - rewritten to the resolved entrypoint/command
#
# The host resolves the OCI entrypoint using jq (available on Dom0)
# so the guest doesn't need jq to determine what to execute.
hv_prepare_container() {
# Skip if user already provided --input
[ -n "$INPUT_PATH" ] && return 0
# Only act on "run" commands
case "$DOCKER_CMD" in
*" run "*) ;;
*) return 0 ;;
esac
# Check for skopeo
if ! command -v skopeo >/dev/null 2>&1; then
log "ERROR" "skopeo not found. Install skopeo for OCI image pulling."
exit 1
fi
# Parse image name and any trailing command from "docker run [opts] <image> [cmd...]"
# Uses word counting + cut to extract the user command portion from the
# original string, preserving internal spaces (e.g., -c "echo hello && sleep 5").
local args
args=$(echo "$DOCKER_CMD" | sed 's/^[a-z]* run //')
local image=""
local user_cmd=""
local skip_next=false
local found_image=false
local word_count=0
for arg in $args; do
if [ "$found_image" = "true" ]; then
break
fi
word_count=$((word_count + 1))
if [ "$skip_next" = "true" ]; then
skip_next=false
continue
fi
case "$arg" in
--rm|--detach|-d|-i|--interactive|-t|--tty|--privileged|-it)
;;
-p|--publish|-v|--volume|-e|--env|--name|--network|-w|--workdir|--entrypoint|-m|--memory|--cpus)
skip_next=true
;;
--publish=*|--volume=*|--env=*|--name=*|--network=*|--workdir=*|--entrypoint=*|--dns=*|--memory=*|--cpus=*)
;;
-*)
;;
*)
image="$arg"
found_image=true
;;
esac
done
# Extract user command from original string using cut (preserves internal spaces)
if [ "$found_image" = "true" ]; then
user_cmd=$(echo "$args" | cut -d' ' -f$((word_count + 1))-)
# If cut returns the whole string (no fields after image), clear it
[ "$user_cmd" = "$args" ] && [ "$word_count" -ge "$(echo "$args" | wc -w)" ] && user_cmd=""
fi
# Strip /bin/sh -c wrapper from user command — the guest already wraps
# with /bin/sh -c in exec_in_container_background(), so passing it through
# would create nested shells with broken quoting.
case "$user_cmd" in
"/bin/sh -c "*) user_cmd="${user_cmd#/bin/sh -c }" ;;
"sh -c "*) user_cmd="${user_cmd#sh -c }" ;;
esac
if [ -z "$image" ]; then
log "DEBUG" "hv_prepare_container: no image found in DOCKER_CMD"
return 0
fi
log "INFO" "Pulling OCI image: $image"
local oci_dir="$TEMP_DIR/oci-image"
local skopeo_log="$TEMP_DIR/skopeo.log"
if skopeo copy "docker://$image" "oci:$oci_dir:latest" > "$skopeo_log" 2>&1; then
INPUT_PATH="$oci_dir"
INPUT_TYPE="oci"
log "INFO" "OCI image pulled to $oci_dir"
else
log "ERROR" "Failed to pull image: $image"
[ -f "$skopeo_log" ] && while IFS= read -r line; do
log "ERROR" "skopeo: $line"
done < "$skopeo_log"
exit 1
fi
# Resolve entrypoint from OCI config on the host (jq available here).
# Rewrite DOCKER_CMD so the guest receives the actual command to exec,
# avoiding any dependency on jq inside the minimal guest rootfs.
local resolved_cmd="$user_cmd"
if [ -z "$resolved_cmd" ] && command -v jq >/dev/null 2>&1; then
local entrypoint="" oci_cmd=""
local manifest_digest config_digest manifest_file config_file
manifest_digest=$(jq -r '.manifests[0].digest' "$oci_dir/index.json" 2>/dev/null)
manifest_file="$oci_dir/blobs/${manifest_digest/://}"
if [ -f "$manifest_file" ]; then
config_digest=$(jq -r '.config.digest' "$manifest_file" 2>/dev/null)
config_file="$oci_dir/blobs/${config_digest/://}"
if [ -f "$config_file" ]; then
entrypoint=$(jq -r '(.config.Entrypoint // []) | join(" ")' "$config_file" 2>/dev/null)
oci_cmd=$(jq -r '(.config.Cmd // []) | join(" ")' "$config_file" 2>/dev/null)
fi
fi
if [ -n "$entrypoint" ]; then
resolved_cmd="$entrypoint"
[ -n "$oci_cmd" ] && resolved_cmd="$resolved_cmd $oci_cmd"
elif [ -n "$oci_cmd" ]; then
resolved_cmd="$oci_cmd"
fi
log "INFO" "Resolved OCI entrypoint: $resolved_cmd"
fi
if [ -n "$resolved_cmd" ]; then
DOCKER_CMD="$resolved_cmd"
log "INFO" "DOCKER_CMD rewritten to: $DOCKER_CMD"
fi
}
hv_find_command() {
if ! command -v xl >/dev/null 2>&1; then
log "ERROR" "xl (Xen toolstack) not found. Install xen-tools-xl."
exit 1
fi
log "DEBUG" "Using Xen xl toolstack"
}
hv_get_console_device() {
echo "$HV_CONSOLE"
}
# ============================================================================
# VM Configuration Building
# ============================================================================
# Internal: accumulate disk config entries
_XEN_DISKS=()
_XEN_VIF=""
_XEN_9P=()
hv_build_disk_opts() {
_XEN_DISKS=()
# Rootfs (read-only)
_XEN_DISKS+=("'format=raw,vdev=xvda,access=ro,target=$ROOTFS_IMG'")
# Input disk (if any) - check if DISK_OPTS is set (means input disk was created)
if [ -n "$DISK_OPTS" ]; then
# Extract the file path from QEMU-style DISK_OPTS
local input_file
input_file=$(echo "$DISK_OPTS" | sed -n 's/.*file=\([^,]*\).*/\1/p')
if [ -n "$input_file" ]; then
_XEN_DISKS+=("'format=raw,vdev=xvdb,access=rw,target=$input_file'")
fi
fi
# State disk (if any)
if [ -n "$STATE_DISK_OPTS" ]; then
local state_file
state_file=$(echo "$STATE_DISK_OPTS" | sed -n 's/.*file=\([^,]*\).*/\1/p')
if [ -n "$state_file" ]; then
_XEN_DISKS+=("'format=raw,vdev=xvdc,access=rw,target=$state_file'")
fi
fi
}
hv_build_network_opts() {
_XEN_VIF=""
if [ "$NETWORK" = "true" ]; then
# Use default bridge networking
# Xen will attach the vif to xenbr0 or the default bridge
_XEN_VIF="'bridge=xenbr0'"
fi
# If no network, _XEN_VIF stays empty → vif = [] in config
}
hv_build_9p_opts() {
local share_dir="$1"
local share_tag="$2"
# Xen 9p (xen_9pfsd) is not reliable in all environments (e.g. nested
# QEMU→Xen). Keep the interface for future use but don't depend on it
# for daemon IPC — we use serial/PTY + socat instead.
_XEN_9P+=("'tag=$share_tag,path=$share_dir,security_model=none,type=xen_9pfsd'")
}
hv_build_daemon_opts() {
HV_DAEMON_OPTS=""
# Xen daemon mode uses hvc0 with serial='pty' for bidirectional IPC.
# The PTY is created on Dom0 and bridged to a Unix socket via socat.
# This is the same approach runx used (serial_start).
}
hv_build_vm_cmd() {
# For Xen, we generate a domain config file instead of a command line
# HV_OPTS is not used directly; the config file is written by _write_xen_config
HV_OPTS=""
}
# Internal: write Xen domain config file
_write_xen_config() {
local kernel_append="$1"
local config_path="$2"
# Build disk array
local disk_array=""
for d in "${_XEN_DISKS[@]}"; do
if [ -n "$disk_array" ]; then
disk_array="$disk_array, $d"
else
disk_array="$d"
fi
done
# Build vif array
local vif_array=""
if [ -n "$_XEN_VIF" ]; then
vif_array="$_XEN_VIF"
fi
# Determine guest type per architecture:
# x86_64: PV guests work (paravirtualized, no HVM needed)
# aarch64: ARM Xen only supports PVH-style guests (no PV)
local xen_type="pv"
case "$TARGET_ARCH" in
aarch64) xen_type="pvh" ;;
esac
# Memory and vCPUs - configurable via environment
local xen_memory="${VXN_MEMORY:-512}"
local xen_vcpus="${VXN_VCPUS:-2}"
cat > "$config_path" <<XENEOF
# Auto-generated Xen domain config for vxn
name = "$HV_DOMNAME"
type = "$xen_type"
memory = $xen_memory
vcpus = $xen_vcpus
kernel = "$KERNEL_IMAGE"
ramdisk = "$INITRAMFS"
extra = "console=hvc0 quiet loglevel=0 init=/init vcontainer.blk=xvd vcontainer.init=/vxn-init.sh $kernel_append"
disk = [ $disk_array ]
vif = [ $vif_array ]
serial = 'pty'
on_poweroff = "destroy"
on_reboot = "destroy"
on_crash = "destroy"
XENEOF
# Add 9p config if any shares were requested
if [ ${#_XEN_9P[@]} -gt 0 ]; then
local p9_array=""
for p in "${_XEN_9P[@]}"; do
if [ -n "$p9_array" ]; then
p9_array="$p9_array, $p"
else
p9_array="$p"
fi
done
echo "p9 = [ $p9_array ]" >> "$config_path"
fi
log "DEBUG" "Xen config written to $config_path"
}
# ============================================================================
# VM Lifecycle
# ============================================================================
hv_start_vm_background() {
local kernel_append="$1"
local log_file="$2"
local timeout_val="$3"
# Write domain config
HV_XEN_CFG="${TEMP_DIR:-/tmp}/vxn-$$.cfg"
_write_xen_config "$kernel_append" "$HV_XEN_CFG"
# Create the domain
xl create "$HV_XEN_CFG" >> "$log_file" 2>&1
# Xen domains don't have a PID on Dom0 — xl manages them by name.
# For daemon mode, start a lightweight monitor process that stays alive
# while the domain exists. This gives vcontainer-common.sh a real PID
# to check in /proc/$pid for daemon_is_running().
HV_VM_PID="$$"
if [ "$DAEMON_MODE" = "start" ]; then
# Daemon mode: get the domain's hvc0 PTY for direct I/O.
# serial='pty' in the xl config creates a PTY on Dom0.
# We read/write this PTY directly — no socat bridge needed.
local domid
domid=$(xl domid "$HV_DOMNAME" 2>/dev/null)
if [ -n "$domid" ]; then
_XEN_PTY=$(xenstore-read "/local/domain/$domid/console/tty" 2>/dev/null)
if [ -n "$_XEN_PTY" ]; then
log "DEBUG" "Domain $HV_DOMNAME (domid $domid) console PTY: $_XEN_PTY"
echo "$_XEN_PTY" > "$DAEMON_SOCKET_DIR/daemon.pty"
else
log "ERROR" "Could not read console PTY from xenstore for domid $domid"
fi
else
log "ERROR" "Could not get domid for $HV_DOMNAME"
fi
# Monitor process: stays alive while domain exists.
# vcontainer-common.sh checks /proc/$pid → alive means daemon running.
# When domain dies (xl destroy, guest reboot), monitor exits.
local _domname="$HV_DOMNAME"
(while xl list "$_domname" >/dev/null 2>&1; do sleep 10; done) &
HV_VM_PID=$!
else
# Ephemeral mode: capture guest console (hvc0) to log file
# so the monitoring loop in vrunner.sh can see output markers
stdbuf -oL xl console "$HV_DOMNAME" >> "$log_file" 2>&1 &
_XEN_CONSOLE_PID=$!
log "DEBUG" "Console capture started (PID: $_XEN_CONSOLE_PID)"
fi
}
hv_start_vm_foreground() {
local kernel_append="$1"
HV_XEN_CFG="${TEMP_DIR:-/tmp}/vxn-$$.cfg"
_write_xen_config "$kernel_append" "$HV_XEN_CFG"
# Create domain and attach console
xl create -c "$HV_XEN_CFG"
}
hv_is_vm_running() {
xl list "$HV_DOMNAME" >/dev/null 2>&1
}
hv_wait_vm_exit() {
local timeout="${1:-30}"
for i in $(seq 1 "$timeout"); do
hv_is_vm_running || return 0
sleep 1
done
return 1
}
hv_stop_vm() {
log "INFO" "Shutting down Xen domain $HV_DOMNAME..."
xl shutdown "$HV_DOMNAME" 2>/dev/null || true
# Wait for graceful shutdown
hv_wait_vm_exit 15 || {
log "WARN" "Domain didn't shut down gracefully, destroying..."
hv_destroy_vm
}
}
hv_destroy_vm() {
xl destroy "$HV_DOMNAME" 2>/dev/null || true
# Clean up console capture (ephemeral mode)
if [ -n "${_XEN_CONSOLE_PID:-}" ]; then
kill $_XEN_CONSOLE_PID 2>/dev/null || true
fi
}
hv_get_vm_id() {
echo "$HV_DOMNAME"
}
# ============================================================================
# Port Forwarding (iptables NAT for Xen bridge networking)
# ============================================================================
# Track iptables rules for cleanup
_XEN_IPTABLES_RULES=()
hv_setup_port_forwards() {
if [ ${#PORT_FORWARDS[@]} -eq 0 ]; then
return
fi
# Get guest IP from Xen network config
# Wait briefly for the guest to get an IP
local guest_ip=""
for attempt in $(seq 1 30); do
guest_ip=$(xl network-list "$HV_DOMNAME" 2>/dev/null | awk 'NR>1{print $4}' | head -1)
if [ -n "$guest_ip" ] && [ "$guest_ip" != "-" ]; then
break
fi
sleep 1
done
if [ -z "$guest_ip" ] || [ "$guest_ip" = "-" ]; then
log "WARN" "Could not determine guest IP for port forwarding"
return
fi
log "INFO" "Guest IP: $guest_ip"
for pf in "${PORT_FORWARDS[@]}"; do
local host_port="${pf%%:*}"
local rest="${pf#*:}"
local container_port="${rest%%/*}"
local proto="tcp"
if [[ "$rest" == */* ]]; then
proto="${rest##*/}"
fi
iptables -t nat -A PREROUTING -p "$proto" --dport "$host_port" \
-j DNAT --to-destination "$guest_ip:$host_port" 2>/dev/null || true
iptables -A FORWARD -p "$proto" -d "$guest_ip" --dport "$host_port" \
-j ACCEPT 2>/dev/null || true
_XEN_IPTABLES_RULES+=("$proto:$host_port:$guest_ip")
log "INFO" "Port forward: host:$host_port -> $guest_ip:$host_port ($proto)"
done
}
hv_cleanup_port_forwards() {
for rule in "${_XEN_IPTABLES_RULES[@]}"; do
local proto="${rule%%:*}"
local rest="${rule#*:}"
local host_port="${rest%%:*}"
local guest_ip="${rest#*:}"
iptables -t nat -D PREROUTING -p "$proto" --dport "$host_port" \
-j DNAT --to-destination "$guest_ip:$host_port" 2>/dev/null || true
iptables -D FORWARD -p "$proto" -d "$guest_ip" --dport "$host_port" \
-j ACCEPT 2>/dev/null || true
done
_XEN_IPTABLES_RULES=()
}
# ============================================================================
# Idle Timeout
# ============================================================================
hv_idle_shutdown() {
# For Xen, use xl shutdown for graceful stop
xl shutdown "$HV_DOMNAME" 2>/dev/null || true
}
# ============================================================================
# Daemon Lifecycle (Xen-specific overrides)
# ============================================================================
# Xen domains persist via xl, not as child processes. The PID saved by
# vrunner.sh is just a placeholder. These hooks let daemon_is_running()
# and daemon_stop() work correctly for Xen.
# Persist domain name alongside PID file so we can recover it on reconnect
_xen_domname_file() {
echo "${DAEMON_SOCKET_DIR:-/tmp}/daemon.domname"
}
hv_daemon_save_state() {
echo "$HV_DOMNAME" > "$(_xen_domname_file)"
}
hv_daemon_load_state() {
local f="$(_xen_domname_file)"
if [ -f "$f" ]; then
HV_DOMNAME=$(cat "$f" 2>/dev/null)
fi
}
hv_daemon_is_running() {
hv_daemon_load_state
[ -n "$HV_DOMNAME" ] && xl list "$HV_DOMNAME" >/dev/null 2>&1
}
# PTY-based daemon readiness check.
# The guest emits ===PONG=== on hvc0 at daemon startup and in response to PING.
# We read the PTY (saved by hv_start_vm_background) looking for this marker.
hv_daemon_ping() {
local pty_file="$DAEMON_SOCKET_DIR/daemon.pty"
[ -f "$pty_file" ] || return 1
local pty
pty=$(cat "$pty_file")
[ -c "$pty" ] || return 1
# Open PTY for read/write on fd 3
exec 3<>"$pty"
# Send PING (guest also emits PONG at startup)
echo "===PING===" >&3
# Read lines looking for PONG (skip boot messages, log lines)
local line
while IFS= read -t 5 -r line <&3; do
line=$(echo "$line" | tr -d '\r')
case "$line" in
*"===PONG==="*) exec 3<&- 3>&-; return 0 ;;
esac
done
exec 3<&- 3>&- 2>/dev/null
return 1
}
# PTY-based daemon command send.
# Writes base64-encoded command to PTY, reads response with markers.
# Same protocol as socat-based daemon_send in vrunner.sh.
hv_daemon_send() {
local cmd="$1"
local pty_file="$DAEMON_SOCKET_DIR/daemon.pty"
[ -f "$pty_file" ] || { log "ERROR" "No daemon PTY file"; return 1; }
local pty
pty=$(cat "$pty_file")
[ -c "$pty" ] || { log "ERROR" "PTY $pty not a character device"; return 1; }
# Update activity timestamp
touch "$DAEMON_SOCKET_DIR/activity" 2>/dev/null || true
# Encode command
local cmd_b64
cmd_b64=$(echo -n "$cmd" | base64 -w0)
# Open PTY for read/write on fd 3
exec 3<>"$pty"
# Drain any pending output (boot messages, prior log lines)
while IFS= read -t 0.5 -r _discard <&3; do :; done
# Send command
echo "$cmd_b64" >&3
# Read response with markers
local EXIT_CODE=0
local in_output=false
local line
while IFS= read -t 60 -r line <&3; do
line=$(echo "$line" | tr -d '\r')
case "$line" in
*"===OUTPUT_START==="*)
in_output=true
;;
*"===OUTPUT_END==="*)
in_output=false
;;
*"===EXIT_CODE="*"==="*)
EXIT_CODE=$(echo "$line" | sed 's/.*===EXIT_CODE=\([0-9]*\)===/\1/')
;;
*"===END==="*)
break
;;
*)
if [ "$in_output" = "true" ]; then
echo "$line"
fi
;;
esac
done
exec 3<&- 3>&- 2>/dev/null
return ${EXIT_CODE:-0}
}
# Run a container in a memres (persistent) DomU.
# Hot-plugs an input disk, sends ===RUN_CONTAINER=== command via PTY,
# reads output, detaches disk.
# Usage: hv_daemon_run_container <resolved_cmd> <input_disk_path>
hv_daemon_run_container() {
local cmd="$1"
local input_disk="$2"
hv_daemon_load_state
if [ -z "$HV_DOMNAME" ]; then
log "ERROR" "No memres domain name"
return 1
fi
# Hot-plug the input disk as xvdb (read-only)
if [ -n "$input_disk" ] && [ -f "$input_disk" ]; then
log "INFO" "Hot-plugging container disk to $HV_DOMNAME..."
xl block-attach "$HV_DOMNAME" "format=raw,vdev=xvdb,access=ro,target=$input_disk" 2>/dev/null || {
log "ERROR" "Failed to attach block device"
return 1
}
sleep 1 # Let the kernel register the device
fi
# Build the command line: ===RUN_CONTAINER===<cmd_b64>
local raw_line="===RUN_CONTAINER==="
if [ -n "$cmd" ]; then
raw_line="${raw_line}$(echo -n "$cmd" | base64 -w0)"
fi
# Send via PTY and read response (same protocol as hv_daemon_send)
local pty_file="$DAEMON_SOCKET_DIR/daemon.pty"
[ -f "$pty_file" ] || { log "ERROR" "No daemon PTY file"; return 1; }
local pty
pty=$(cat "$pty_file")
[ -c "$pty" ] || { log "ERROR" "PTY $pty not a character device"; return 1; }
touch "$DAEMON_SOCKET_DIR/activity" 2>/dev/null || true
exec 3<>"$pty"
# Drain pending output
while IFS= read -t 0.5 -r _discard <&3; do :; done
# Send command
echo "$raw_line" >&3
# Read response with markers
local EXIT_CODE=0
local in_output=false
local line
while IFS= read -t 120 -r line <&3; do
line=$(echo "$line" | tr -d '\r')
case "$line" in
*"===OUTPUT_START==="*)
in_output=true
;;
*"===OUTPUT_END==="*)
in_output=false
;;
*"===EXIT_CODE="*"==="*)
EXIT_CODE=$(echo "$line" | sed 's/.*===EXIT_CODE=\([0-9]*\)===/\1/')
;;
*"===ERROR==="*)
in_output=true
;;
*"===END==="*)
break
;;
*)
if [ "$in_output" = "true" ]; then
echo "$line"
fi
;;
esac
done
exec 3<&- 3>&- 2>/dev/null
# Detach the input disk
if [ -n "$input_disk" ] && [ -f "$input_disk" ]; then
log "DEBUG" "Detaching container disk from $HV_DOMNAME..."
xl block-detach "$HV_DOMNAME" xvdb 2>/dev/null || true
fi
return ${EXIT_CODE:-0}
}
hv_daemon_stop() {
hv_daemon_load_state
if [ -z "$HV_DOMNAME" ]; then
return 0
fi
log "INFO" "Shutting down Xen domain $HV_DOMNAME..."
# Send shutdown command via PTY (graceful guest shutdown)
local pty_file="$DAEMON_SOCKET_DIR/daemon.pty"
if [ -f "$pty_file" ]; then
local pty
pty=$(cat "$pty_file")
if [ -c "$pty" ]; then
echo "===SHUTDOWN===" > "$pty" 2>/dev/null || true
sleep 2
fi
fi
# Try graceful xl shutdown
if xl list "$HV_DOMNAME" >/dev/null 2>&1; then
xl shutdown "$HV_DOMNAME" 2>/dev/null || true
# Wait for domain to disappear
for i in $(seq 1 15); do
xl list "$HV_DOMNAME" >/dev/null 2>&1 || break
sleep 1
done
fi
# Force destroy if still running
if xl list "$HV_DOMNAME" >/dev/null 2>&1; then
log "WARN" "Domain didn't shut down gracefully, destroying..."
xl destroy "$HV_DOMNAME" 2>/dev/null || true
fi
# Kill monitor process (PID stored in daemon.pid)
local pid_file="$DAEMON_SOCKET_DIR/daemon.pid"
if [ -f "$pid_file" ]; then
local mpid
mpid=$(cat "$pid_file" 2>/dev/null)
[ -n "$mpid" ] && kill "$mpid" 2>/dev/null || true
fi
rm -f "$(_xen_domname_file)" "$pty_file" "$pid_file"
log "INFO" "Xen domain stopped"
}
|