Skip to content
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

Difficult to override default firecracker command runner when not using jailer #605

Open
bduffany opened this issue Dec 10, 2024 · 0 comments

Comments

@bduffany
Copy link
Contributor

bduffany commented Dec 10, 2024

I tried temporarily disabling jailer to try and debug an issue that I suspect might have been related to running firecracker under jailer.

When not using jailer, the default firecracker command runner sets stdin, stdout, stderr to os.Stdin, os.Stdout, os.Stderr respectively. I didn't want that behavior (especially stdin), because I'm running several VMs at once from the same go binary. So I tried to override it.

However, I discovered that the SDK makes it difficult to override these. The default firecracker command is set here:

m.cmd = configureBuilder(defaultFirecrackerVMMCommandBuilder, cfg).Build(ctx)

Note, it uses a private function, configureBuilder:

func configureBuilder(builder VMCommandBuilder, cfg Config) VMCommandBuilder {
return builder.
WithSocketPath(cfg.SocketPath).
AddArgs("--id", cfg.VMID).
AddArgs(seccompArgs(&cfg)...)
}

At first glance, that function seems small enough to just copy. However, it references this private seccompArgs function, which would also need to be copied:

func seccompArgs(cfg *Config) []string {
var args []string
if !cfg.Seccomp.Enabled {
args = append(args, "--no-seccomp")
} else if len(cfg.Seccomp.Filter) > 0 {
args = append(args, "--seccomp-filter", cfg.Seccomp.Filter)
}
return args
}

I think maybe a better alternative to WithProcessRunner in this case could be to have a function like WithCommandModifier(defaultBuilder VMCommandBuilder) VMCommandBuilder that allows modifying the default command builder, instead of just the WithProcessRunner(cmd *exec.Command) which requires code-copying from the SDK.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant