|
| 1 | +/* |
| 2 | + Copyright The containerd Authors. |
| 3 | +
|
| 4 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + you may not use this file except in compliance with the License. |
| 6 | + You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | + Unless required by applicable law or agreed to in writing, software |
| 11 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + See the License for the specific language governing permissions and |
| 14 | + limitations under the License. |
| 15 | +*/ |
| 16 | + |
| 17 | +package command |
| 18 | + |
| 19 | +import ( |
| 20 | + "bytes" |
| 21 | + "encoding/json" |
| 22 | + "io" |
| 23 | + "os" |
| 24 | + "path/filepath" |
| 25 | + "syscall" |
| 26 | + "text/template" |
| 27 | + |
| 28 | + specs "github.com/opencontainers/runtime-spec/specs-go" |
| 29 | + "github.com/urfave/cli" |
| 30 | +) |
| 31 | + |
| 32 | +var ociHook = cli.Command{ |
| 33 | + Name: "oci-hook", |
| 34 | + Usage: "provides a base for OCI runtime hooks to allow arguments to be injected.", |
| 35 | + Action: func(context *cli.Context) error { |
| 36 | + state, err := loadHookState(os.Stdin) |
| 37 | + if err != nil { |
| 38 | + return err |
| 39 | + } |
| 40 | + var ( |
| 41 | + ctx = newTemplateContext(state) |
| 42 | + args = []string(context.Args()) |
| 43 | + env = os.Environ() |
| 44 | + ) |
| 45 | + if err := newList(&args).render(ctx); err != nil { |
| 46 | + return err |
| 47 | + } |
| 48 | + if err := newList(&env).render(ctx); err != nil { |
| 49 | + return err |
| 50 | + } |
| 51 | + return syscall.Exec(args[0], args, env) |
| 52 | + }, |
| 53 | +} |
| 54 | + |
| 55 | +func loadHookState(r io.Reader) (*specs.State, error) { |
| 56 | + var s specs.State |
| 57 | + if err := json.NewDecoder(r).Decode(&s); err != nil { |
| 58 | + return nil, err |
| 59 | + } |
| 60 | + return &s, nil |
| 61 | +} |
| 62 | + |
| 63 | +func newTemplateContext(state *specs.State) *templateContext { |
| 64 | + t := &templateContext{ |
| 65 | + state: state, |
| 66 | + } |
| 67 | + t.funcs = template.FuncMap{ |
| 68 | + "id": t.id, |
| 69 | + "bundle": t.bundle, |
| 70 | + "rootfs": t.rootfs, |
| 71 | + "pid": t.pid, |
| 72 | + "annotation": t.annotation, |
| 73 | + "status": t.status, |
| 74 | + } |
| 75 | + return t |
| 76 | +} |
| 77 | + |
| 78 | +type templateContext struct { |
| 79 | + state *specs.State |
| 80 | + funcs template.FuncMap |
| 81 | +} |
| 82 | + |
| 83 | +func (t *templateContext) id() string { |
| 84 | + return t.state.ID |
| 85 | +} |
| 86 | + |
| 87 | +func (t *templateContext) bundle() string { |
| 88 | + return t.state.Bundle |
| 89 | +} |
| 90 | + |
| 91 | +func (t *templateContext) rootfs() string { |
| 92 | + return filepath.Join(t.state.Bundle, "rootfs") |
| 93 | +} |
| 94 | + |
| 95 | +func (t *templateContext) pid() int { |
| 96 | + return t.state.Pid |
| 97 | +} |
| 98 | + |
| 99 | +func (t *templateContext) annotation(k string) string { |
| 100 | + return t.state.Annotations[k] |
| 101 | +} |
| 102 | + |
| 103 | +func (t *templateContext) status() string { |
| 104 | + return t.state.Status |
| 105 | +} |
| 106 | + |
| 107 | +func render(ctx *templateContext, source string, out io.Writer) error { |
| 108 | + t, err := template.New("oci-hook").Funcs(ctx.funcs).Parse(source) |
| 109 | + if err != nil { |
| 110 | + return err |
| 111 | + } |
| 112 | + return t.Execute(out, ctx) |
| 113 | +} |
| 114 | + |
| 115 | +func newList(l *[]string) *templateList { |
| 116 | + return &templateList{ |
| 117 | + l: l, |
| 118 | + } |
| 119 | +} |
| 120 | + |
| 121 | +type templateList struct { |
| 122 | + l *[]string |
| 123 | +} |
| 124 | + |
| 125 | +func (l *templateList) render(ctx *templateContext) error { |
| 126 | + buf := bytes.NewBuffer(nil) |
| 127 | + for i, s := range *l.l { |
| 128 | + buf.Reset() |
| 129 | + if err := render(ctx, s, buf); err != nil { |
| 130 | + return err |
| 131 | + } |
| 132 | + (*l.l)[i] = buf.String() |
| 133 | + } |
| 134 | + buf.Reset() |
| 135 | + return nil |
| 136 | +} |
0 commit comments