zsh-workers
 help / color / mirror / code / Atom feed
From: Aaron Peschel <aaron.peschel@gmail.com>
To: zsh-workers@zsh.org
Subject: Re: [PATCH] Parse Additional SSH known_hosts Syntax
Date: Thu, 12 Dec 2013 15:55:07 -0800	[thread overview]
Message-ID: <CAGN0+FQUGOnKij=c4qf8cazZZd_geWzz64fwzDqNw1T4nVsnHA@mail.gmail.com> (raw)
In-Reply-To: <CAGN0+FRbA4s2wOZ4HjcABdYad6ygpD5a_ut+d2ZhD+Js65+aHw@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 2225 bytes --]

Hello,

The patch got corrupted in the email. I have attached the patch here instead.

--Aaron

On Thu, Dec 12, 2013 at 3:52 PM, Aaron Peschel <aaron.peschel@gmail.com> wrote:
> Hello,
>
> I have created a patch for ZSH to support additional known_hosts
> syntax. Feedback would be appreciated.
>
> Thank you!
>
> Aaron Peschel
>
> -----
>
> From 3d05d6f46ac89f1d91f6e7ab4981c2dc410c956a Mon Sep 17 00:00:00 2001
> From: Aaron Peschel <apeschel@zendesk.com>
> Date: Thu, 12 Dec 2013 15:43:55 -0800
> Subject: [PATCH 1/1] Parse Additional SSH known_hosts Syntax
>
> ZSH does not currently support the full known_hosts syntax. The
> known_hosts file supports lines starting with "[hostname]:post". ZSH
> currently discards these lines, which breaks SSH auto-completion on
> hosts using a non-standard SSH port. This patch adds support for this
> syntax and allows auto-completion to work in this case.
> ---
>  Completion/Unix/Type/_hosts | 15 +++++++++++++--
>  1 file changed, 13 insertions(+), 2 deletions(-)
>
> diff --git a/Completion/Unix/Type/_hosts b/Completion/Unix/Type/_hosts
> index 499caed..c3133dc 100644
> --- a/Completion/Unix/Type/_hosts
> +++ b/Completion/Unix/Type/_hosts
> @@ -41,9 +41,20 @@ if ! zstyle -a ":completion:${curcontext}:hosts"
> hosts _hosts; then
>
>      for khostfile in $khostfiles; do
>        if [[ -r $khostfile ]]; then
> -        khosts=(${${(s:,:)${(j:,:)${(u)${(f)"$(<$khostfile)"}%%[
> |#]*}}}:#*[\[\]]*})
> +        khosts=(${(s/,/j/,/u)${(f)"$(<$khostfile)"}%%[ |#]*})
> +
> +        # known_hosts syntax supports the host being in the form
> [hostname]:port
> +        # The filter below extracts the hostname from lines using this format.
> +        khosts=($(for host ($khosts); do
> +          if [[ $host =~ "\[(.*)\]:\d*" ]]; then
> +            echo $match
> +          else
> +            echo $host
> +          fi
> +        done))
> +
>          if [[ -z $useip ]]; then
> -         khosts=(${${${khosts:#(#s)[0-9]##.[0-9]##.[0-9]##.[0-9]##(#e)}:#(#s)[0-9a-f:]##(#e)}:#*[\[\]]*})
> +          khosts=(${${khosts:#(#s)[0-9]##.[0-9]##.[0-9]##.[0-9]##(#e)}:#(#s)[0-9a-f:]##(#e)})
>          fi
>          _cache_hosts+=($khosts)
>        fi
> --
> 1.8.3.4 (Apple Git-47)

[-- Attachment #2: 0001-Parse-Additional-SSH-known_hosts-Syntax.patch --]
[-- Type: application/octet-stream, Size: 1793 bytes --]

From 3d05d6f46ac89f1d91f6e7ab4981c2dc410c956a Mon Sep 17 00:00:00 2001
From: Aaron Peschel <apeschel@zendesk.com>
Date: Thu, 12 Dec 2013 15:43:55 -0800
Subject: [PATCH 1/1] Parse Additional SSH known_hosts Syntax

ZSH does not currently support the full known_hosts syntax. The
known_hosts file supports lines starting with "[hostname]:post". ZSH
currently discards these lines, which breaks SSH auto-completion on
hosts using a non-standard SSH port. This patch adds support for this
syntax and allows auto-completion to work in this case.
---
 Completion/Unix/Type/_hosts | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/Completion/Unix/Type/_hosts b/Completion/Unix/Type/_hosts
index 499caed..c3133dc 100644
--- a/Completion/Unix/Type/_hosts
+++ b/Completion/Unix/Type/_hosts
@@ -41,9 +41,20 @@ if ! zstyle -a ":completion:${curcontext}:hosts" hosts _hosts; then
 
     for khostfile in $khostfiles; do
       if [[ -r $khostfile ]]; then
-        khosts=(${${(s:,:)${(j:,:)${(u)${(f)"$(<$khostfile)"}%%[ |#]*}}}:#*[\[\]]*})
+        khosts=(${(s/,/j/,/u)${(f)"$(<$khostfile)"}%%[ |#]*})
+
+        # known_hosts syntax supports the host being in the form [hostname]:port
+        # The filter below extracts the hostname from lines using this format.
+        khosts=($(for host ($khosts); do
+          if [[ $host =~ "\[(.*)\]:\d*" ]]; then
+            echo $match
+          else
+            echo $host
+          fi
+        done))
+
         if [[ -z $useip ]]; then
-	  khosts=(${${${khosts:#(#s)[0-9]##.[0-9]##.[0-9]##.[0-9]##(#e)}:#(#s)[0-9a-f:]##(#e)}:#*[\[\]]*})
+          khosts=(${${khosts:#(#s)[0-9]##.[0-9]##.[0-9]##.[0-9]##(#e)}:#(#s)[0-9a-f:]##(#e)})
         fi
         _cache_hosts+=($khosts)
       fi
-- 
1.8.3.4 (Apple Git-47)


  reply	other threads:[~2013-12-12 23:55 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-12 23:52 Aaron Peschel
2013-12-12 23:55 ` Aaron Peschel [this message]
2013-12-20 20:04   ` Aaron Peschel
2013-12-20 20:31     ` Bart Schaefer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAGN0+FQUGOnKij=c4qf8cazZZd_geWzz64fwzDqNw1T4nVsnHA@mail.gmail.com' \
    --to=aaron.peschel@gmail.com \
    --cc=zsh-workers@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).