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

Windows kubectl sends full path as User-Agent #44419

Closed
mml opened this issue Apr 12, 2017 · 4 comments · Fixed by #44423
Closed

Windows kubectl sends full path as User-Agent #44419

mml opened this issue Apr 12, 2017 · 4 comments · Fixed by #44423
Assignees

Comments

@mml
Copy link
Contributor

mml commented Apr 12, 2017

It looks like kubectl uses path.Base instead of filepath.Base, and the former does not work correctly when the OS uses a path separator besides ‘/’. This only affects kubectl on Windows, AFAICT.

We should patch kubectl and also modify kube-apiserver to discard this information when contacted by old clients. We should also cherry pick this onto 1.6, 1.5, and 1.4.

@monopole has a fix for kubectl, and I have a fix for kube-apiserver.

monopole added a commit to monopole/kubernetes that referenced this issue Apr 13, 2017
**What this PR does / why we need it**:

The User-Agent reported by clients (e.g. kubectl) in request
headers should include the name of the client executable
but not the full path to that executable.

This PR changes how this name is determined by using the
operating-system specific package "path/filepath" (meant for
working with file system paths) instead of the "path" package
(meant for URL paths).

This fixes a problem on the Windows OS in the case where, if the
user has not set their PATH to point to the location of their
client executable, the User-Agent includes the full path - which
is unnecessary.

Fixes: kubernetes#44419
k8s-github-robot pushed a commit that referenced this issue Apr 14, 2017
Automatic merge from submit-queue (batch tested with PRs 44362, 44421, 44468, 43878, 44480)

Drop leading path of KUBECTL.EXE if it shows up in User-Agent.

Partial fix for #44419 

Release note: kube-apiserver now drops unneeded path information if an older version of Windows kubectl sends it.
monopole added a commit to monopole/kubernetes that referenced this issue Apr 14, 2017
**What this PR does / why we need it**:

The User-Agent reported by clients (e.g. kubectl) in request
headers should include the name of the client executable
but not the full path to that executable.

This PR changes how this name is determined by using the
operating-system specific package "path/filepath" (meant for
working with file system paths) instead of the "path" package
(meant for URL paths).

This fixes a problem on the Windows OS in the case where, if the
user has not set their PATH to point to the location of their
client executable, the User-Agent unnecessarily includes the
full path.

Fixes: kubernetes#44419
k8s-github-robot pushed a commit that referenced this issue Apr 15, 2017
Automatic merge from submit-queue

Use OS-specific libs when computing client User-Agent in kubectl, etc.

**What this PR does / why we need it**:

The User-Agent reported by clients (e.g. kubectl) in request
headers should include the name of the client executable
but not the full path to that executable.

This PR changes how this name is determined by using the
operating-system specific package "path/filepath" (meant for
working with file system paths) instead of the "path" package
(meant for URL paths).

This fixes a problem on the Windows OS in the case where, if the
user has not set their PATH to point to the location of their
client executable, the User-Agent includes the full path - which
is unnecessary.

Fixes: #44419

```release-note
Use OS-specific libs when computing client User-Agent in kubectl, etc.
```
k8s-github-robot pushed a commit that referenced this issue Apr 17, 2017
Automatic merge from submit-queue (batch tested with PRs 44519, 43194, 44513)

Use regexp instead of substring to do search and replace.

enisoc pointed out how ToLower can change (lengthen even!) the length of
a string given arbitrary input.

Follow-up to #44421 for #44419
@mml
Copy link
Contributor Author

mml commented Apr 17, 2017

I have cherry picks in progress for the kube-apiserver part: #44575 #44585 #44586

I couldn't easily get the kubectl fix to pick onto 1.6. Hopefully @monopole has better luck.

@mml
Copy link
Contributor Author

mml commented Apr 17, 2017

(Re-opening until the fixes are backported and released.)

@mml mml reopened this Apr 17, 2017
@mml mml assigned mml and unassigned monopole Apr 17, 2017
k8s-github-robot pushed a commit that referenced this issue Apr 18, 2017
Automatic merge from submit-queue

Use OS-specific libs when computing client User-Agent in kubectl, etc.

This PR fixes issue 44419 in the release branch.
This PR is a patchable version of mainline PR #44423 for 1.6 release branch

The original full PR
  #44423
came after a large PR
  #40777
that split /vendor/BUILD into hundreds of BUILD files.

Thus PR 44423's version of rest/BUILD does not exist
in the 1.6 release branch, and had to be tweaked here.

```release-note
Fix for [Windows kubectl sending full path to binary in User Agent](#44419).
```
@mml
Copy link
Contributor Author

mml commented Apr 18, 2017

The kubectl fix is now on 1.6 (#44622).

jayunit100 pushed a commit to jayunit100/kubernetes that referenced this issue Apr 25, 2017
**What this PR does / why we need it**:

The User-Agent reported by clients (e.g. kubectl) in request
headers should include the name of the client executable
but not the full path to that executable.

This PR changes how this name is determined by using the
operating-system specific package "path/filepath" (meant for
working with file system paths) instead of the "path" package
(meant for URL paths).

This fixes a problem on the Windows OS in the case where, if the
user has not set their PATH to point to the location of their
client executable, the User-Agent unnecessarily includes the
full path.

Fixes: kubernetes#44419
@0xmichalis
Copy link
Contributor

Seems fixed - @mml please reopen if there is anything left

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants