Skip to content

fix(kubectl): recognize absolute Windows paths #132592

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

adalinesimonian
Copy link

@adalinesimonian adalinesimonian commented Jun 27, 2025

What type of PR is this?

/kind bug

What this PR does / why we need it:

This PR fixes a bug where kubectl cp would incorrectly interpret Windows absolute paths as pod specifications. Before this change, paths like C:\temp\file.txt would be parsed as a pod named C with file path \temp\file.txt because the colon character was used as a delimiter to separate pod specifications from file paths.

The fix adds Windows-specific path detection that checks for the Windows absolute path pattern before attempting to parse pod specifications. This ensures that Windows users can use absolute paths with kubectl cp without running into parsing errors.

Which issue(s) this PR is related to:

Fixes #101985

Special notes for your reviewer:

  • The fix is Windows-specific and only activates when runtime.GOOS == "windows".
  • I added test coverage for Windows path scenarios, but the new tests only run on Windows.
  • I've done my best to maintain backward compatibility and not affect Unix/Linux path handling.
  • All existing tests continue to pass, and new Windows-specific tests have been added. The rest of the tests in staging/src/k8s.io/kubectl/pkg/cmd/ now pass on Windows after these changes.

Besides the above, just a disclaimer that I am completely new to contributing to this repository. I don't have a good mental model of how all of the pieces fit together here. Though, I've done my best to try, and I am happy for any feedback or guidance.

Does this PR introduce a user-facing change?

kubectl cp now correctly handles Windows absolute paths, such as C:\path\to\file, instead of incorrectly interpreting them as pod specifications.

Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:

N/A

@k8s-ci-robot k8s-ci-robot added release-note Denotes a PR that will be considered when it comes time to generate release notes. do-not-merge/invalid-commit-message Indicates that a PR should not merge because it has an invalid commit message. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Jun 27, 2025
Copy link

linux-foundation-easycla bot commented Jun 27, 2025

CLA Signed

The committers listed above are authorized under a signed CLA.

  • ✅ login: adalinesimonian / name: Adaline Valentina Simonian (f785bce)

@k8s-ci-robot k8s-ci-robot added the do-not-merge/needs-kind Indicates a PR lacks a `kind/foo` label and requires one. label Jun 27, 2025
@k8s-ci-robot
Copy link
Contributor

Welcome @adalinesimonian!

It looks like this is your first PR to kubernetes/kubernetes 🎉. Please refer to our pull request process documentation to help your PR have a smooth ride to approval.

You will be prompted by a bot to use commands during the review process. Do not be afraid to follow the prompts! It is okay to experiment. Here is the bot commands documentation.

You can also check if kubernetes/kubernetes has its own contribution guidelines.

You may want to refer to our testing guide if you run into trouble with your tests not passing.

If you are having difficulty getting your pull request seen, please follow the recommended escalation practices. Also, for tips and tricks in the contribution process you may want to read the Kubernetes contributor cheat sheet. We want to make sure your contribution gets all the attention it needs!

Thank you, and welcome to Kubernetes. 😃

@k8s-ci-robot k8s-ci-robot added do-not-merge/needs-sig Indicates an issue or PR lacks a `sig/foo` label and requires one. cncf-cla: no Indicates the PR's author has not signed the CNCF CLA. needs-triage Indicates an issue or PR lacks a `triage/foo` label and requires one. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Jun 27, 2025
@k8s-ci-robot
Copy link
Contributor

This issue is currently awaiting triage.

If a SIG or subproject determines this is a relevant issue, they will accept it by applying the triage/accepted label and provide further guidance.

The triage/accepted label can be added by org members by writing /triage accepted in a comment.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@k8s-ci-robot
Copy link
Contributor

Hi @adalinesimonian. Thanks for your PR.

I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@k8s-ci-robot k8s-ci-robot added the needs-priority Indicates a PR lacks a `priority/foo` label and requires one. label Jun 27, 2025
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: adalinesimonian
Once this PR has been reviewed and has the lgtm label, please assign eddiezane for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot requested review from ardaguclu and seans3 June 27, 2025 23:59
@k8s-ci-robot k8s-ci-robot added area/kubectl sig/cli Categorizes an issue or PR as relevant to SIG CLI. and removed do-not-merge/needs-sig Indicates an issue or PR lacks a `sig/foo` label and requires one. labels Jun 27, 2025
@github-project-automation github-project-automation bot moved this to Needs Triage in SIG CLI Jun 27, 2025
@k8s-ci-robot k8s-ci-robot added cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. and removed cncf-cla: no Indicates the PR's author has not signed the CNCF CLA. labels Jun 28, 2025
@adalinesimonian
Copy link
Author

/kind bug

@k8s-ci-robot k8s-ci-robot added kind/bug Categorizes issue or PR as related to a bug. and removed do-not-merge/needs-kind Indicates a PR lacks a `kind/foo` label and requires one. labels Jun 28, 2025
Fixes issue 101985

Before this change, kubectl cp would misinterpret Windows absolute paths
like "C:\temp\file.txt" as pod specifications because it would split on
the colon character, treating "C" as a pod name and  "\temp\file.txt" as
the file path.

This fix adds Windows path detection in extractFileSpec() by checking
for the pattern [drive letter]:[backslash or forward slash] before
attempting to parse pod specifications. It also adjusts path handling to
properly handle Windows drive letters in tar operations, and all tests
at staging/src/k8s.io/kubectl/pkg/cmd/ now pass on Windows systems.

Changes made:

- Added isWindowsAbsolutePath() to detect Windows absolute paths
- Added stripWindowsDriveLetter() to strip the drive letter from Windows
  paths for consistent processing
- Modified extractFileSpec() to check for Windows paths first when
  running on Windows
- Modified stripPathShortcuts() to handle Windows path separators
- Added test coverage for Windows path handling
@adalinesimonian adalinesimonian force-pushed the fix-101985-kubectl-absolute-windows-paths branch from 7bf1a4b to f785bce Compare June 28, 2025 00:13
@k8s-ci-robot k8s-ci-robot removed the do-not-merge/invalid-commit-message Indicates that a PR should not merge because it has an invalid commit message. label Jun 28, 2025
@Ashishm0511
Copy link

Assign

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/kubectl cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. kind/bug Categorizes issue or PR as related to a bug. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. needs-priority Indicates a PR lacks a `priority/foo` label and requires one. needs-triage Indicates an issue or PR lacks a `triage/foo` label and requires one. release-note Denotes a PR that will be considered when it comes time to generate release notes. sig/cli Categorizes an issue or PR as relevant to SIG CLI. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
Status: Needs Triage
Development

Successfully merging this pull request may close these issues.

kubectl cp command fails when passing full Windows path such as c:\Temp\foobar.txt
3 participants