about summary refs log tree commit diff
path: root/Completion/User/_ssh
blob: 1c0d61bebf818241c6c727f45853a7abf7c522e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#compdef ssh ssh-add ssh-agent ssh-keygen

local state lstate line ret=1 expl
typeset -A options

case "$words[1]" in
ssh)
  _arguments -s \
    '-a[disable forwarding of authentication agent connection]' \
    '-c[select encryption cipher]:encryption cipher:(idea des 3des blowfish arcfour tss none)' \
    '-e[set escape character]:escape character (or `none'"'"'):' \
    '(-n)-f[go to background]' \
    '-i[select identity file]:SSH identity file:_files' \
    '-k[disable forwarding of kerberos tickets]' \
    '-l[specify login name]:login name:_users' \
    '-n[redirect stdin from /dev/null]' \
    '*-o[specify extra options]:option string:->option' \
    '-p[specify port on remote host]:port number on remote host:' \
    '-q[quiet operation]' \
    '-P[use non priviledged port]' \
    '-t[force pseudo-tty allocation]' \
    '-v[verbose mode]' \
    '-V[show version number]' \
    '-x[disable X11 forwarding]' \
    '-C[compress all data]' \
    '-L[specify local port forwarding]:local port forwarding:->forward' \
    '-R[specify remote port forwarding]:remote port forwarding:->forward' \
    ':remote host name:_hosts' \
    ':command: _command_names -e' \
    '*::args:->command' && ret=0

  while [[ -n "$state" ]]; do
    lstate="$state"
    state=''

    case "$lstate" in
    option)
      if compset -P '* '; then
        case "$IPREFIX" in
        *(#i)(batchmode|compression|fallbacktorsh|forward(agent|x11)|keepalive|passwordauthentication|rhosts(|rsa)authentication|rsaauthentication|usersh|kerberos(authetication|tgtparsing)|usepriviledgedport)*)
          compadd yes no && ret=0
  	;;
        *(#i)cipher*)
          _description expl 'encryption cipher'
          compadd "$expl[@]" idea des 3des blowfish arcfour tss none && ret=0
          ;;
        *(#i)globalknownhostsfile*)
          _description expl 'global file with known hosts'
          _files "$expl[@]" && ret=0
          ;;
        *(#i)hostname*)
          _description expl 'real host name to log into'
          _hosts "$expl[@]" && ret=0
          ;;
        *(#i)identityfile*)
          _description expl 'SSH identity file'
          _files "$expl[@]" && ret=0
          ;;
        *(#i)(local|remote)forward*)
          state=forward
          ;;
        *(#i)proxycommand*)
          compset -q
  	  shift 1 words
	  (( CURRENT-- ))
          _normal && ret=0
          ;;
        *(#i)stricthostkeychecking*)
          compadd yes no ask
          ;;
        *(#i)userknownhostsfile*)
          _description expl 'user file with known hosts'
          _files "$expl[@]" && ret=0
          ;;
        *(#i)user*)
          _description expl 'user to log in as'
          _users "$expl[@]" && ret=0
          ;;
        *(#i)xauthlocation*)
          _description expl 'xauth program'
          _files "$expl[@]" -g '*(*)' && ret=0
          ;;
        esac
      else
        _description expl 'configure file option'
        compadd "$expl[@]" -M 'm:{a-z}={A-Z}' -S ' ' - \
                BatchMode ClearAllForwardings Cipher Compression CompressionLevel \
	        Host ConnectionAttempts EscapeChar FallBackToRsh ForwardAgent \
	        ForwardX11 GlobalKnownHostsFile HostName IdentityFile KeepAlive \
	        KerberosAuthentication KerberosTgtPassing LocalForward \
	        NumberOfPasswordPrompts PasswordAuthentication Port ProxyCommand \
	        RemoteForward RhostsAuthentication RhostsRSAAuthentication \
	        RSAAuthentication StrictHostKeyChecking TISAuthentication \
	        UsePriviledgedPort User UserKnownHostsFile UseRsh \
                XAuthLocation && ret=0
      fi
      ;;
    forward)
      if compset -P 1 '*:'; then
        if compset -P '*:'; then
          _message 'port number'
        else
          _hosts -S:
        fi
      else
        _message 'listen-port number'
      fi
      return
      ;;
    command)
      shift 1 words
      (( CURRENT-- ))
      _normal
      return
      ;;
    esac

    break;
  done

  return ret
  ;;
ssh-add)
  _arguments -s \
    '-p[read passphrase from stdin]' \
    '-l[list all identities]' \
    '-d[remove identity]' \
    '-D[delete all identities]' \
    '*:SSH identity file:_files'
  return
  ;;
ssh-agent)
  _arguments -s \
    '(:)-k[kill agent automatically]' \
    '(:)-s[force sh-style shell]' \
    '(:)-c[force csh-style shell]' \
    '*::command: _normal'
  return
  ;;
ssh-keygen)
  _arguments \
    '(-p -c -u -P)-b[specify number of bits in key]:bits in key:' \
    '(-p -c)-f[key file]:key file:_files' \
    '(-c -u)-N[specify new passphrase]:new passphrase:' \
    '(-b -u -f)-P[specify old passphrase]:old passphrase:' \
    '(-p -u)-C[specify new comment]:new comment:' \
    '(-b -f -C -u -c)-p[change passphrase of private key file]' \
    '(-b -f -N -p -u)-c[change comment in private and public key files]' \
    '(-b -N -C -p -c)-u[change key cipher to default]'
  return
  ;;
esac