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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
|
#! /usr/bin/env python3
# Copyright 2020 VyOS maintainers and contributors <maintainers@vyos.io>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library. If not, see <http://www.gnu.org/licenses/>.
#
# Syntax
# ping HOST
# [ audible ]
# [ adaptive ]
# [ allow-broadcast]
# [ count REQUESTS ]
# [ mark N ]
# [ flow LABEL ]
# [ flood ]
# [ interval ]
# [ pattern PATTERN ]
# [ timestamp ]
# [ tos VALUE ]
# [ quiet ]
# [ bypass-routing ]
# [ size SIZE ]
# [ ttl TTL ]
# [ vrf table ]
# [ verbose ]
import os
import sys
import ipaddress
options = {
'audible': {
'ping': '{command} -a',
'type': 'noarg',
'help': 'Make a noise on ping'
},
'adaptive': {
'ping': '{command} -A',
'type': 'noarg',
'help': 'Adativly set interpacket interval'
},
'allow-broadcast': {
'ping': '{command} -b',
'type': 'noarg',
'help': 'Ping broadcast address'
},
'bypass-route': {
'ping': '{command} -r',
'type': 'noarg',
'help': 'Bypass normal routing tables'
},
'count': {
'ping': '{command} -c {value}',
'type': '<requests>',
'help': 'Number of requests to send'
},
'deadline': {
'ping': '{command} -w {value}',
'type': '<seconds>',
'help': 'Number of seconds before ping exits'
},
'flood': {
'ping': '{command} -f',
'type': 'noarg',
'help': 'Send 100 requests per second'
},
'interface': {
'ping': '{command} -I {value}',
'type': '<interface> <X.X.X.X> <h:h:h:h:h:h:h:h>',
'help': 'Interface to use as source for ping'
},
'interval': {
'ping': '{command} -i {value}',
'type': '<seconds>',
'help': 'Number of seconds to wait between requests'
},
'mark': {
'ping': '{command} -m {value}',
'type': '<fwmark>',
'help': 'Mark request for special processing'
},
'numeric': {
'ping': '{command} -n',
'type': 'noarg',
'help': 'Do not resolve DNS names'
},
'no-loopback': {
'ping': '{command} -L',
'type': 'noarg',
'help': 'Supress loopback of multicast pings'
},
'pattern': {
'ping': '{command} -p {value}',
'type': '<pattern>',
'help': 'Pattern to fill out the packet'
},
'timestamp': {
'ping': '{command} -D',
'type': 'noarg',
'help': 'Print timestamp of output'
},
'tos': {
'ping': '{command} -Q {value}',
'type': '<tos>',
'help': 'Mark packets with specified TOS'
},
'quiet': {
'ping': '{command} -q',
'type': 'noarg',
'help': 'Only print summary lines'
},
'record-route': {
'ping': '{command} -R',
'type': 'noarg',
'help': 'Record route the packet takes'
},
'size': {
'ping': '{command} -s {value}',
'type': '<bytes>',
'help': 'Number of bytes to send'
},
'ttl': {
'ping': '{command} -t {value}',
'type': '<ttl>',
'help': 'Maximum packet lifetime'
},
'vrf': {
'ping': 'ip vrf exec {value} {command}',
'type': '<vrf>',
'help': 'Use specified VRF table'
},
'verbose': {
'ping': '{command} -v',
'type': 'noarg',
'help': 'Verbose output'}
}
ping = {
4: '/bin/ping',
6: '/bin/ping6',
}
class List (list):
def first (self):
return self.pop(0) if self else ''
def last(self):
return self.pop() if self else ''
def prepend(self,value):
self.insert(0,value)
def expension_failure(option, completions):
reason = 'Ambiguous' if completions else 'Invalid'
sys.stderr.write('\n\n {} command: {} [{}]\n\n'.format(reason,' '.join(sys.argv), option))
if completions:
sys.stderr.write(' Possible completions:\n ')
sys.stderr.write('\n '.join(completions))
sys.stderr.write('\n')
sys.stdout.write('<nocomps>')
sys.exit(1)
def complete(prefix):
return [o for o in options if o.startswith(prefix)]
def convert(command, args):
while args:
shortname = args.first()
longnames = complete(shortname)
if len(longnames) != 1:
expension_failure(shortname, longnames)
longname = longnames[0]
if options[longname]['type'] == 'noarg':
command = options[longname]['ping'].format(
command=command, value='')
elif not args:
sys.exit(f'ping: missing argument for {longname} option')
else:
command = options[longname]['ping'].format(
command=command, value=args.first())
return command
if __name__ == '__main__':
args = List(sys.argv[1:])
host = args.first()
if not host:
sys.exit("ping: Missing host")
if host == '--get-options':
args.first() # pop ping
args.first() # pop IP
while args:
option = args.first()
matched = complete(option)
if not args:
sys.stdout.write(' '.join(matched))
sys.exit(0)
if len(matched) > 1 :
sys.stdout.write(' '.join(matched))
sys.exit(0)
if options[matched[0]]['type'] == 'noarg':
continue
value = args.first()
if not args:
matched = complete(option)
sys.stdout.write(options[matched[0]]['type'])
sys.exit(0)
try:
version = ipaddress.ip_address(host).version
except ValueError:
sys.exit(f'ping: Unknown host: {host}')
command = convert(ping[version],args)
# print(f'{command} {host}')
os.system(f'{command} {host}')
|