
Remove build tags which are already implied by the name of the file. Ensures build tags are used consistently Signed-off-by: Derek McGowan <derek@mcg.dev>
79 lines
2.3 KiB
Go
79 lines
2.3 KiB
Go
/*
|
|
Copyright The containerd Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package server
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/pkg/errors"
|
|
"golang.org/x/net/context"
|
|
"k8s.io/utils/exec"
|
|
|
|
sandboxstore "github.com/containerd/containerd/pkg/cri/store/sandbox"
|
|
"github.com/containerd/containerd/pkg/ioutil"
|
|
)
|
|
|
|
func (c *criService) portForward(ctx context.Context, id string, port int32, stream io.ReadWriter) error {
|
|
stdout := ioutil.NewNopWriteCloser(stream)
|
|
stderrBuffer := new(bytes.Buffer)
|
|
stderr := ioutil.NewNopWriteCloser(stderrBuffer)
|
|
// localhost is resolved to 127.0.0.1 in ipv4, and ::1 in ipv6.
|
|
// Explicitly using ipv4 IP address in here to avoid flakiness.
|
|
cmd := []string{"wincat.exe", "127.0.0.1", fmt.Sprint(port)}
|
|
err := c.execInSandbox(ctx, id, cmd, stream, stdout, stderr)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "failed to execute port forward in sandbox: %s", stderrBuffer.String())
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *criService) execInSandbox(ctx context.Context, sandboxID string, cmd []string, stdin io.Reader, stdout, stderr io.WriteCloser) error {
|
|
// Get sandbox from our sandbox store.
|
|
sb, err := c.sandboxStore.Get(sandboxID)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "failed to find sandbox %q in store", sandboxID)
|
|
}
|
|
|
|
// Check the sandbox state
|
|
state := sb.Status.Get().State
|
|
if state != sandboxstore.StateReady {
|
|
return errors.Errorf("sandbox is in %s state", fmt.Sprint(state))
|
|
}
|
|
|
|
opts := execOptions{
|
|
cmd: cmd,
|
|
stdin: stdin,
|
|
stdout: stdout,
|
|
stderr: stderr,
|
|
tty: false,
|
|
resize: nil,
|
|
}
|
|
exitCode, err := c.execInternal(ctx, sb.Container, sandboxID, opts)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to exec in sandbox")
|
|
}
|
|
if *exitCode == 0 {
|
|
return nil
|
|
}
|
|
return &exec.CodeExitError{
|
|
Err: errors.Errorf("error executing command %v, exit code %d", cmd, *exitCode),
|
|
Code: int(*exitCode),
|
|
}
|
|
}
|