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

Use GetVersion() API instead of ver command #55143

Merged
merged 1 commit into from Nov 22, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions pkg/kubelet/winstats/BUILD
Expand Up @@ -25,6 +25,7 @@ go_library(
"@io_bazel_rules_go//go/platform:windows_amd64": [
"perfcounter_nodestats.go",
"perfcounters.go",
"version.go",
],
"//conditions:default": [],
}),
Expand All @@ -36,6 +37,7 @@ go_library(
"@io_bazel_rules_go//go/platform:windows_amd64": [
"//vendor/github.com/JeffAshton/win_pdh:go_default_library",
"//vendor/github.com/golang/glog:go_default_library",
"//vendor/golang.org/x/sys/windows:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/util/wait:go_default_library",
],
"//conditions:default": [],
Expand Down
11 changes: 6 additions & 5 deletions pkg/kubelet/winstats/perfcounter_nodestats.go
Expand Up @@ -21,9 +21,7 @@ package winstats
import (
"errors"
"os"
"os/exec"
"runtime"
"strings"
"sync"
"syscall"
"time"
Expand Down Expand Up @@ -57,13 +55,16 @@ func (p *perfCounterNodeStatsClient) startMonitoring() error {
return err
}

version, err := exec.Command("cmd", "/C", "ver").Output()
kernelVersion, err := getKernelVersion()
if err != nil {
return err
}

osImageVersion, err := getOSImageVersion()
if err != nil {
return err
}

osImageVersion := strings.TrimSpace(string(version))
kernelVersion := extractVersionNumber(osImageVersion)
p.nodeInfo = nodeInfo{
kernelVersion: kernelVersion,
osImageVersion: osImageVersion,
Expand Down
96 changes: 96 additions & 0 deletions pkg/kubelet/winstats/version.go
@@ -0,0 +1,96 @@
// +build windows

/*
Copyright 2017 The Kubernetes 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 winstats

import (
"fmt"
"unsafe"

"golang.org/x/sys/windows"
)

// getCurrentVersionVal gets value of speficied key from registry.
func getCurrentVersionVal(key string) (string, error) {
var h windows.Handle
if err := windows.RegOpenKeyEx(windows.HKEY_LOCAL_MACHINE,
windows.StringToUTF16Ptr(`SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\`),
0,
windows.KEY_READ,
&h); err != nil {
return "", err
}
defer windows.RegCloseKey(h)

var buf [128]uint16
var typ uint32
n := uint32(len(buf) * int(unsafe.Sizeof(buf[0]))) // api expects array of bytes, not uint16
if err := windows.RegQueryValueEx(h,
windows.StringToUTF16Ptr(key),
nil,
&typ,
(*byte)(unsafe.Pointer(&buf[0])),
&n); err != nil {
return "", err
}

return windows.UTF16ToString(buf[:]), nil
}

// getVersionRevision gets revision from UBR registry.
func getVersionRevision() (uint16, error) {
revisionString, err := getCurrentVersionVal("UBR")
if err != nil {
return 0, err
}

revision, err := windows.UTF16FromString(revisionString)
if err != nil {
return 0, err
}

return revision[0], nil
}

// getKernelVersion gets the version of windows kernel.
func getKernelVersion() (string, error) {
ver, err := windows.GetVersion()
if err != nil {
return "", err
}

revision, err := getVersionRevision()
if err != nil {
return "", err
}

major := ver & 0xFF
minor := (ver >> 8) & 0xFF
build := (ver >> 16) & 0xFFFF
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So if I'm reading this correctly, the value 0xABCDEF would be parsed as:

major = EF
minor = CD
build = AB

Is that correct? Or should it be the other way around?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tallclair right. A tipical example is 0x23F00206, represents 6.2.9200.

return fmt.Sprintf("%d.%d.%05d.%d\n", major, minor, build, revision), nil
}

// getOSImageVersion gets the osImage name and version.
func getOSImageVersion() (string, error) {
productName, err := getCurrentVersionVal("ProductName")
if err != nil {
return "", nil
}

return productName, nil
}
9 changes: 0 additions & 9 deletions pkg/kubelet/winstats/winstats.go
Expand Up @@ -18,7 +18,6 @@ limitations under the License.
package winstats

import (
"regexp"
"time"

cadvisorapi "github.com/google/cadvisor/info/v1"
Expand Down Expand Up @@ -135,11 +134,3 @@ func (c *statsClient) createRootContainerInfo() (*cadvisorapiv2.ContainerInfo, e

return &rootInfo, nil
}

// extractVersionNumber gets the version number from the full version string on Windows
// e.g. extracts "10.0.14393" from "Microsoft Windows [Version 10.0.14393]"
func extractVersionNumber(fullVersion string) string {
re := regexp.MustCompile("[^0-9.]")
version := re.ReplaceAllString(fullVersion, "")
return version
}
7 changes: 0 additions & 7 deletions pkg/kubelet/winstats/winstats_test.go
Expand Up @@ -116,13 +116,6 @@ func TestWinVersionInfo(t *testing.T) {
KernelVersion: "v42"})
}

func TestExtractVersionNumber(t *testing.T) {
fullVersion := "Microsoft Windows [Version 10.0.14393]"
versionNumber := extractVersionNumber(fullVersion)
expected := "10.0.14393"
assert.Equal(t, expected, versionNumber)
}

func getClient(t *testing.T) Client {
f := fakeWinNodeStatsClient{}
c, err := newClient(f)
Expand Down