Skip to content

Commit

Permalink
Merge pull request #587 from Mirantis/jell/dump-state
Browse files Browse the repository at this point in the history
Dump metadata as a subcommand for virtletctl
  • Loading branch information
jellonek authored Mar 1, 2018
2 parents 5362445 + 9825512 commit c69ed29
Show file tree
Hide file tree
Showing 5 changed files with 452 additions and 0 deletions.
1 change: 1 addition & 0 deletions build/cmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ function build_internal {
install_vendor_internal
mkdir -p "${project_dir}/_output"
go build -i -o "${project_dir}/_output/virtlet" ./cmd/virtlet
go build -i -o "${project_dir}/_output/virtletctl" ./cmd/virtletctl
go build -i -o "${project_dir}/_output/vmwrapper" ./cmd/vmwrapper
go build -i -o "${project_dir}/_output/flexvolume_driver" ./cmd/flexvolume_driver
go test -i -c -o "${project_dir}/_output/virtlet-e2e-tests" ./tests/e2e
Expand Down
44 changes: 44 additions & 0 deletions cmd/virtletctl/virtletctl.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
Copyright 2018 Mirantis
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 main

import (
"flag"
"fmt"
"os"

"github.com/Mirantis/virtlet/pkg/tools"
)

func main() {
if len(os.Args) < 2 {
fmt.Fprintln(os.Stderr, "Error: missing subcommand name")
os.Exit(1)
}

if err := tools.ParseFlags(os.Args[1]); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}

args := flag.Args()

if err := tools.RunSubcommand(args[0], args[1:]); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}
109 changes: 109 additions & 0 deletions pkg/tools/common.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
/*
Copyright 2018 Mirantis
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 tools

import (
"io"

meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
remotecommandconsts "k8s.io/apimachinery/pkg/util/remotecommand"
typedv1 "k8s.io/client-go/kubernetes/typed/core/v1"
v1 "k8s.io/client-go/pkg/api/v1"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/remotecommand"
"k8s.io/client-go/util/exec"
"k8s.io/kubernetes/pkg/api"

// register standard k8s types
_ "k8s.io/kubernetes/pkg/api/install"
)

// SubCommandCommon contains attributes and methods useful for all subcommands.
type SubCommandCommon struct {
client *typedv1.CoreV1Client
config *rest.Config
}

// Setup prepares values for common between subcommands attributes
func (s *SubCommandCommon) Setup(client *typedv1.CoreV1Client, config *rest.Config) {
s.client = client
s.config = config
}

// GetVirtletPods returns a list of virtlet pod
func (s *SubCommandCommon) GetVirtletPods() ([]v1.Pod, error) {
pods, err := s.client.Pods("kube-system").List(meta_v1.ListOptions{
LabelSelector: "runtime=virtlet",
})
if err != nil {
return nil, err
}

return pods.Items, nil
}

// ExecCommandOnContainer given a pod, container, namespace and command
// executes that command remotely returning stdout and stderr output
// as strings and error if any occured.
// If there is provided io.Reader as stdin - it's content will be passed
// to remote command. Similarly if there will be provided instances of io.Writer
// as stdout/stderr - they also will be passed.
// Command is executed without a TTY as stdin.
func (s *SubCommandCommon) ExecInContainer(
pod, container, namespace string,
stdin io.Reader, stdout, stderr io.Writer,
command ...string,
) (int, error) {

req := s.client.RESTClient().Post().
Resource("pods").
Name(pod).
Namespace(namespace).
SubResource("exec").
Param("container", container)

req.VersionedParams(&api.PodExecOptions{
Container: container,
Command: command,
Stdin: stdin != nil,
Stdout: stdout != nil,
Stderr: stderr != nil,
TTY: false,
}, api.ParameterCodec)

executor, err := remotecommand.NewExecutor(s.config, "POST", req.URL())
if err != nil {
return 0, err
}

exitCode := 0
err = executor.Stream(remotecommand.StreamOptions{
SupportedProtocols: remotecommandconsts.SupportedStreamingProtocols,
Stdin: stdin,
Stdout: stdout,
Stderr: stderr,
})

if err != nil {
if c, ok := err.(exec.CodeExitError); ok {
exitCode = c.Code
err = nil
}
}

return exitCode, err
}
181 changes: 181 additions & 0 deletions pkg/tools/dumpmetadata.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,181 @@
/*
Copyright 2018 Mirantis
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 tools

import (
"bytes"
"fmt"
"io/ioutil"
"os"
"strings"

"github.com/davecgh/go-spew/spew"
typedv1 "k8s.io/client-go/kubernetes/typed/core/v1"
v1 "k8s.io/client-go/pkg/api/v1"
"k8s.io/client-go/rest"

"github.com/Mirantis/virtlet/pkg/metadata"
)

const (
// TODO: pass that as command line arg and use make default as constant
// used there and in cmd/virtlet/virtlet.go
virtletDBPath = "/var/lib/virtlet/virtlet.db"
defaultIndentString = " "
)

// DumpMetadata contains data needed by dump-metedata subcommand.
type DumpMetadata struct {
SubCommandCommon
}

var _ SubCommand = &DumpMetadata{}

// RegisterFlags implements RegisterFlags method of SubCommand interface.
func (d DumpMetadata) RegisterFlags() {
}

// Run implements Run method of SubCommand interface.
func (d DumpMetadata) Run(clientset *typedv1.CoreV1Client, config *rest.Config, args []string) error {
d.Setup(clientset, config)

pods, err := d.GetVirtletPods()
if err != nil {
return err
}

if len(pods) == 0 {
return fmt.Errorf("Not found any Virtlet pod")
}

for _, pod := range pods {
fname, err := d.copyOutFile(&pod)
if err != nil {
fmt.Fprintf(os.Stderr, "Can't extract metadata db for pod %q: %v\n", pod.Name, err)
continue
}
defer os.Remove(fname)
if err := dumpMetadata(fname); err != nil {
fmt.Fprintf(os.Stderr, "Can't dump metadata for pod %q: %v\n", pod.Name, err)
}
}

return nil
}

func (d *DumpMetadata) copyOutFile(pod *v1.Pod) (string, error) {
fmt.Printf("Virtlet pod name: %s\n", pod.Name)

stdout := &bytes.Buffer{}
stderr := &bytes.Buffer{}
stdin := bytes.NewBufferString("")

exitCode, err := d.ExecInContainer(
pod.Name,
"virtlet",
"kube-system",
stdin,
stdout,
stderr,
"/bin/cat",
virtletDBPath,
)
if err != nil {
return "", err
}

if exitCode != 0 {
return "", fmt.Errorf("remote command exit code was %d and its stderr output was:\n%s", exitCode, stderr.String())
}

f, err := ioutil.TempFile("/tmp", "virtlet-")
defer f.Close()
if err != nil {
return "", fmt.Errorf("error during opening tempfile: %v\n", err)
}
f.Write(stdout.Bytes())

return f.Name(), nil
}

func dumpMetadata(fname string) error {
s, err := metadata.NewMetadataStore(fname)
if err != nil {
return fmt.Errorf("can't open metadata db: %v", err)
}

printlnIndented(1, "Sandboxes:")
sandboxes, err := s.ListPodSandboxes(nil)
if err != nil {
return fmt.Errorf("can't list sandboxes: %v", err)
}

for _, smeta := range sandboxes {
if sinfo, err := smeta.Retrieve(); err != nil {
return fmt.Errorf("can't retrieve sandbox: %v", err)
} else if err := dumpSandbox(smeta.GetID(), sinfo, s); err != nil {
return fmt.Errorf("can't dump sandbox: %v", err)
}
}

printlnIndented(1, "Images:")
images, err := s.ImagesInUse()
if err != nil {
return fmt.Errorf("can't dump images: %v", err)
}

for image := range images {
printlnIndented(2, image)
}

return nil
}

func dumpSandbox(podid string, sandbox *metadata.PodSandboxInfo, s metadata.MetadataStore) error {
printlnIndented(2, "Sandbox id: %s", podid)
printlnIndented(0, spew.Sdump(sandbox))

printlnIndented(3, "Containers:")
containers, err := s.ListPodContainers(podid)
if err != nil {
return fmt.Errorf("can't retrieve list of containers: %v", err)
}

for _, cmeta := range containers {
printIndented(4, "Container id: %s", cmeta.GetID())
if cinfo, err := cmeta.Retrieve(); err != nil {
return fmt.Errorf("can't retrieve container metadata: %v", err)
} else {
printIndented(0, spew.Sdump(cinfo))
}
}

return nil
}

func printlnIndented(level int, format string, data ...interface{}) {
printIndented(level, format+"\n", data...)
}

func printIndented(level int, format string, data ...interface{}) {
printIndentedWith(defaultIndentString, 2*level, format, data...)
}

func printIndentedWith(with string, length int, format string, data ...interface{}) {
indentString := strings.Repeat(with, (length/len(with))+1)[:length]
fmt.Printf("%s%s", indentString, fmt.Sprintf(format, data...))
}
Loading

0 comments on commit c69ed29

Please sign in to comment.