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

Verify checksum for localkube #2245

Merged
merged 1 commit into from
Dec 1, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 56 additions & 1 deletion pkg/minikube/bootstrapper/localkube/localkube_caching.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,17 @@ limitations under the License.
package localkube

import (
"crypto/sha256"
"encoding/hex"
"fmt"
"io"
"io/ioutil"
"net/url"
"os"
"path/filepath"
"strings"

"github.com/golang/glog"
download "github.com/jimmidyson/go-download"
"github.com/pkg/errors"

Expand All @@ -42,15 +47,55 @@ func (l *localkubeCacher) getLocalkubeCacheFilepath() string {
filepath.Base(url.QueryEscape("localkube-"+l.k8sConf.KubernetesVersion)))
}

func (l *localkubeCacher) getLocalkubeSha256CacheFilepath() string {
return l.getLocalkubeCacheFilepath() + ".sha256"
}

func localkubeURIWasSpecified(config bootstrapper.KubernetesConfig) bool {
// see if flag is different than default -> it was passed by user
return config.KubernetesVersion != constants.DefaultKubernetesVersion
}

func (l *localkubeCacher) isLocalkubeCached() bool {
url, err := util.GetLocalkubeDownloadURL(l.k8sConf.KubernetesVersion, constants.LocalkubeLinuxFilename)
if err != nil {
glog.Warningf("Unable to get localkube checksum url...continuing.")
return true
}
opts := download.FileOptions{
Mkdirs: download.MkdirAll,
}

if err := download.ToFile(url+".sha256", l.getLocalkubeSha256CacheFilepath(), opts); err != nil {
glog.Warningf("Unable to check localkube checksum... continuing.")
return true
}

if _, err := os.Stat(l.getLocalkubeCacheFilepath()); os.IsNotExist(err) {
return false
}

localkubeSha256, err := ioutil.ReadFile(l.getLocalkubeSha256CacheFilepath())
if err != nil {
glog.Infof("Error reading localkube checksum: %s", err)
return false
}

h := sha256.New()
f, err := os.Open(l.getLocalkubeCacheFilepath())
if err != nil {
glog.Infof("Error opening localkube for checksum verification: %s", err)
return false
}
if _, err := io.Copy(h, f); err != nil {
glog.Infof("Error copying contents to hasher: %s", err)
}

actualChecksum := hex.EncodeToString(h.Sum(nil))
if strings.TrimSpace(string(localkubeSha256)) != actualChecksum {
glog.Infof("Localkube checksums do not match actual: %s expected: %s", actualChecksum, string(localkubeSha256))
return false
}
return true
}

Expand All @@ -68,7 +113,14 @@ func (l *localkubeCacher) downloadAndCacheLocalkube() error {
},
}
fmt.Println("Downloading localkube binary")
return download.ToFile(url, l.getLocalkubeCacheFilepath(), opts)
if err := download.ToFile(url, l.getLocalkubeCacheFilepath(), opts); err != nil {
return errors.Wrap(err, "downloading localkube")
}
if err := download.ToFile(url+".sha256", l.getLocalkubeSha256CacheFilepath(), opts); err != nil {
return errors.Wrap(err, "downloading localkube checksum")
}

return nil
}

func (l *localkubeCacher) fetchLocalkubeFromURI() (assets.CopyableFile, error) {
Expand All @@ -84,9 +136,12 @@ func (l *localkubeCacher) fetchLocalkubeFromURI() (assets.CopyableFile, error) {

func (l *localkubeCacher) genLocalkubeFileFromURL() (assets.CopyableFile, error) {
if !l.isLocalkubeCached() {
glog.Infoln("Localkube not cached or checksum does not match, downloading...")
if err := l.downloadAndCacheLocalkube(); err != nil {
return nil, errors.Wrap(err, "Error attempting to download and cache localkube")
}
} else {
glog.Infoln("Using cached localkube")
}
localkubeFile, err := assets.NewFileAsset(l.getLocalkubeCacheFilepath(), "/usr/local/bin", "localkube", "0777")
if err != nil {
Expand Down
45 changes: 0 additions & 45 deletions pkg/minikube/bootstrapper/localkube/localkube_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@ limitations under the License.
package localkube

import (
"os"
"testing"

"k8s.io/minikube/pkg/minikube/bootstrapper"
"k8s.io/minikube/pkg/minikube/constants"
"k8s.io/minikube/pkg/minikube/tests"
)

func TestStartCluster(t *testing.T) {
Expand Down Expand Up @@ -220,46 +218,3 @@ func TestGetHostLogs(t *testing.T) {
})
}
}

func TestIsLocalkubeCached(t *testing.T) {
tempDir := tests.MakeTempDir()
defer os.RemoveAll(tempDir)

inputArr := [...]string{
"v1.3.3",
"1.3.0",
"http://test-url.localkube.com/localkube-binary",
"file:///test/dir/to/localkube-binary",
}

localkubeCacher := localkubeCacher{
k8sConf: bootstrapper.KubernetesConfig{},
}

inner := func(input string) {
localkubeCacher.k8sConf = bootstrapper.KubernetesConfig{
KubernetesVersion: input,
}
if localkubeCacher.isLocalkubeCached() {
t.Errorf("IsLocalKubeCached returned true even though %s was not cached",
localkubeCacher.getLocalkubeCacheFilepath())
return
}

f, err := os.Create(localkubeCacher.getLocalkubeCacheFilepath())
if err != nil {
t.Errorf("failed to create dummy cache file: %v", err)
return
}
f.Close()
defer os.Remove(f.Name())
if !localkubeCacher.isLocalkubeCached() {
t.Errorf("IsLocalKubeCached returned false even though %s was cached",
localkubeCacher.getLocalkubeCacheFilepath())
}

}
for _, input := range inputArr {
inner(input)
}
}