add docker support and udp proto in redirs
This commit is contained in:
parent
6a77e1294e
commit
39d75031ba
5 changed files with 35 additions and 9 deletions
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/env -S deno run -A --unstable
|
#!/bin/env -S deno run -A --unstable
|
||||||
|
|
||||||
import { daemon_send, new_cmd_disable, new_cmd_enable, new_cmd_status, new_cmd_stop } from "./src/lib.ts";
|
import { daemon_send, new_cmd_disable, new_cmd_enable, new_cmd_status, new_cmd_stop } from "./src/lib.ts";
|
||||||
import { load_all_configs, new_container_config, save_container_config } from "./src/lib/config.ts";
|
import { load_all_container_configs, new_container_config, save_container_config } from "./src/lib/config.ts";
|
||||||
import { load_base, new_container_context } from "./src/lib/create.ts";
|
import { load_base, new_container_context } from "./src/lib/create.ts";
|
||||||
import { container_paths, socket_path } from "./src/lib/paths.ts";
|
import { container_paths, socket_path } from "./src/lib/paths.ts";
|
||||||
import { log_from, run } from "./src/lib/utils.ts";
|
import { log_from, run } from "./src/lib/utils.ts";
|
||||||
|
@ -78,7 +78,7 @@ Commands:
|
||||||
export async function create(name: string, base_name: string) {
|
export async function create(name: string, base_name: string) {
|
||||||
log("loading base", base_name);
|
log("loading base", base_name);
|
||||||
const base = await load_base(base_name);
|
const base = await load_base(base_name);
|
||||||
const known_containers = await load_all_configs();
|
const known_containers = await load_all_container_configs();
|
||||||
|
|
||||||
const paths = container_paths(name);
|
const paths = container_paths(name);
|
||||||
await Deno.mkdir(paths.base);
|
await Deno.mkdir(paths.base);
|
||||||
|
|
1
instance/local/.gitignore
vendored
1
instance/local/.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
/containers/*
|
/containers/*
|
||||||
|
/config.json
|
||||||
/state.json
|
/state.json
|
||||||
|
|
|
@ -78,6 +78,7 @@ export function start_runner(config: ContainerConfig) {
|
||||||
stdin: "null",
|
stdin: "null",
|
||||||
stdout: "null",
|
stdout: "null",
|
||||||
},
|
},
|
||||||
|
syscall_filter: ["add_key", "keyctl", "bpf"],
|
||||||
});
|
});
|
||||||
const container_loop = loop_process(command, {
|
const container_loop = loop_process(command, {
|
||||||
on_start: () => log("container", name, "started"),
|
on_start: () => log("container", name, "started"),
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
import { container_paths, containers_path } from "./paths.ts";
|
import { container_paths, containers_path, state_config_path } from "./paths.ts";
|
||||||
import { exists, log_from } from "./utils.ts";
|
import { exists, log_from } from "./utils.ts";
|
||||||
|
import { z } from "https://deno.land/x/zod@v3.22.4/mod.ts";
|
||||||
|
|
||||||
const log = log_from("config");
|
const log = log_from("config");
|
||||||
|
|
||||||
export type ContainerConfig = ReturnType<typeof new_container_config>;
|
export function new_container_config(name: string): ContainerConfig {
|
||||||
export function new_container_config(name: string) {
|
|
||||||
return {
|
return {
|
||||||
name,
|
name,
|
||||||
version: 0,
|
version: 0,
|
||||||
|
@ -12,12 +12,32 @@ export function new_container_config(name: string) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type ContainerConfig = ReturnType<typeof parse_container_config>;
|
||||||
|
export function parse_container_config(json: string) {
|
||||||
|
return z.object({
|
||||||
|
name: z.string(),
|
||||||
|
version: z.number(),
|
||||||
|
redirects: z.array(
|
||||||
|
z
|
||||||
|
.tuple([
|
||||||
|
z.number(),
|
||||||
|
z.number(),
|
||||||
|
])
|
||||||
|
.or(z.tuple([
|
||||||
|
z.number(),
|
||||||
|
z.number(),
|
||||||
|
z.literal("tcp").or(z.literal("udp")),
|
||||||
|
])),
|
||||||
|
),
|
||||||
|
}).parse(JSON.parse(json));
|
||||||
|
}
|
||||||
|
|
||||||
export async function load_container_config(name: string) {
|
export async function load_container_config(name: string) {
|
||||||
const config_path = container_paths(name).configuration;
|
const config_path = container_paths(name).configuration;
|
||||||
log("loading config for", name);
|
log("loading config for", name);
|
||||||
if (!exists(config_path)) return null;
|
if (!exists(config_path)) return null;
|
||||||
const content = await Deno.readTextFile(config_path);
|
const content = await Deno.readTextFile(config_path);
|
||||||
const read = JSON.parse(content);
|
const read = parse_container_config(content);
|
||||||
const default_ = new_container_config(name);
|
const default_ = new_container_config(name);
|
||||||
if (read.version < default_.version) throw new Error("read conf version is outdated");
|
if (read.version < default_.version) throw new Error("read conf version is outdated");
|
||||||
return { ...default_, ...read } as ContainerConfig;
|
return { ...default_, ...read } as ContainerConfig;
|
||||||
|
@ -30,7 +50,7 @@ export async function save_container_config(config: ContainerConfig) {
|
||||||
await Deno.writeTextFile(config_path, serialized);
|
await Deno.writeTextFile(config_path, serialized);
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function load_all_configs() {
|
export async function load_all_container_configs() {
|
||||||
const names = Array.from(Deno.readDirSync(containers_path()))
|
const names = Array.from(Deno.readDirSync(containers_path()))
|
||||||
.filter((e) => e.isDirectory)
|
.filter((e) => e.isDirectory)
|
||||||
.map((e) => e.name);
|
.map((e) => e.name);
|
||||||
|
|
|
@ -7,8 +7,9 @@ const log = log_from("nspawn");
|
||||||
export function container_command(name: string, directory: string, opts?: {
|
export function container_command(name: string, directory: string, opts?: {
|
||||||
veth?: boolean;
|
veth?: boolean;
|
||||||
boot?: boolean;
|
boot?: boolean;
|
||||||
ports?: [number, number][];
|
ports?: ([number, number] | [number, number, "tcp" | "udp"])[];
|
||||||
cmd_opts?: Deno.CommandOptions;
|
cmd_opts?: Deno.CommandOptions;
|
||||||
|
syscall_filter?: string[];
|
||||||
}) {
|
}) {
|
||||||
const args = [
|
const args = [
|
||||||
`--machine=${name}`,
|
`--machine=${name}`,
|
||||||
|
@ -16,7 +17,10 @@ export function container_command(name: string, directory: string, opts?: {
|
||||||
];
|
];
|
||||||
if (opts?.veth ?? false) args.push("--network-veth");
|
if (opts?.veth ?? false) args.push("--network-veth");
|
||||||
if (opts?.boot ?? false) args.push("--boot");
|
if (opts?.boot ?? false) args.push("--boot");
|
||||||
for (const [from, to] of opts?.ports ?? []) args.push(`--port=${from}:${to}`);
|
for (const [from, to, proto] of opts?.ports ?? []) {
|
||||||
|
args.push(proto === undefined ? `--port=${from}:${to}` : `--port=${proto}:${from}:${to}`);
|
||||||
|
}
|
||||||
|
for (const call of opts?.syscall_filter ?? []) args.push(`--system-call-filter=${call}`);
|
||||||
const command = new Deno.Command("systemd-nspawn", { ...opts?.cmd_opts, args });
|
const command = new Deno.Command("systemd-nspawn", { ...opts?.cmd_opts, args });
|
||||||
return command;
|
return command;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue