This file is indexed.

/usr/lib/plainbox-providers-1/checkbox/bin/gateway_ping_test is in plainbox-provider-checkbox 0.3-2.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
#!/usr/bin/python3

import os
import re
import sys

import logging
import socket
import struct
import subprocess
import gettext
import time

from gettext import gettext as _

from argparse import ArgumentParser


class Route(object):
    """Gets routing information from the system.
    """

    # auxiliary functions
    def _hex_to_dec(self, string):
        """Returns the integer value of a hexadecimal string s
        """
        return int(string, 16)

    def _num_to_dotted_quad(self, number):
        """Convert long int to dotted quad string
        """
        return socket.inet_ntoa(struct.pack("<L", number))

    def _get_default_gateway_from_proc(self):
        """"Returns the current default gateway, reading that from /proc
        """
        logging.debug("Reading default gateway information from /proc")
        try:
            file = open("/proc/net/route")
            route = file.read()
        except:
            logging.error("Failed to read def gateway from /proc")
            return None
        else:
            h = re.compile("\n(?P<interface>\w+)\s+00000000\s+"
                           "(?P<def_gateway>[\w]+)\s+")
            w = h.search(route)
            if w:
                if w.group("def_gateway"):
                    return (self._num_to_dotted_quad(
                            self._hex_to_dec(w.group("def_gateway"))))
                else:
                    logging.error("Could not find def gateway info in /proc")
                    return None
            else:
                logging.error("Could not find def gateway info in /proc")
                return None

    def _get_default_gateway_from_bin_route(self):
        """Get default gateway from /sbin/route -n
        Called by get_default_gateway
        and is only used if could not get that from /proc
        """
        logging.debug("Reading default gateway information from route binary")
        routebin = subprocess.getstatusoutput("export LANGUAGE=C; "
                                              "/usr/bin/env route -n")

        if routebin[0] == 0:
            h = re.compile("\n0.0.0.0\s+(?P<def_gateway>[\w.]+)\s+")
            w = h.search(routebin[1])
            if w:
                def_gateway = w.group("def_gateway")
                if def_gateway:
                    return def_gateway

        logging.error("Could not find default gateway by running route")
        return None

    def get_hostname(self):
        return socket.gethostname()

    def get_default_gateway(self):
        t1 = self._get_default_gateway_from_proc()
        if not t1:
            t1 = self._get_default_gateway_from_bin_route()

        return t1


def get_host_to_ping(interface=None, verbose=False, default=None):
    #Get list of all IPs from all my interfaces,
    interface_list = subprocess.check_output(["ip", "-o", 'addr', 'show'])

    reg = re.compile('\d: (?P<iface>\w+) +inet (?P<address>[\d\.]+)/'
                     '(?P<netmask>[\d]+) brd (?P<broadcast>[\d\.]+)')
    # Will magically exclude lo because it lacks brd field
    interfaces = reg.findall(interface_list.decode())

    # ping -b the network on each one (one ping only)
    # exclude the ones not specified in iface
    for iface in interfaces:
        if not interface or iface[0] == interface:
            #Use check_output even if I'll discard the output
            #looks cleaner than using .call and redirecting stdout to null
            try:
                (subprocess
                 .check_output(["ping", "-q", "-c", "1", "-b", iface[3]],
                               stderr=subprocess.STDOUT))
            except subprocess.CalledProcessError:
                pass
    # If default host given, ping it as well,
    # to try to get it into the arp table.
    # Needed in case it's not responding to broadcasts.
    if default:
        try:
            subprocess.check_output(["ping", "-q", "-c", "1", default],
                                    stderr=subprocess.STDOUT)
        except subprocess.CalledProcessError:
            pass

    ARP_POPULATE_TRIES = 10
    num_tries = 0

    while num_tries < ARP_POPULATE_TRIES:
        #Get output from arp -a -n to get known IPs
        known_ips = subprocess.check_output(["arp", "-a", "-n"])
        reg = re.compile('\? \((?P<ip>[\d.]+)\) at (?P<mac>[a-f0-9\:]+) '
                         '\[ether\] on (?P<iface>[\w\d]+)')

        #Filter (if needed) IPs not on the specified interface
        pingable_ips = [pingable[0] for pingable in reg.findall(
                        known_ips.decode()) if not interface
                        or pingable[2] == interface]

        # If the default given ip is among the remaining ones,
        # ping that.
        if default and default in pingable_ips:
            if verbose:
                print("Desired ip address %s is reachable, using it" % default)
            return default

        #If not, choose another IP.
        address_to_ping = pingable_ips[0] if len(pingable_ips) else None
        if verbose:
            print("Desired ip address %s is not reachable from %s. "
                  % (default, interface))
            print("using %s instead." % address_to_ping)

        if address_to_ping:
            return address_to_ping

        time.sleep(2)
        num_tries += 1

    # Wait time expired
    return None


def ping(host, interface, count, deadline, verbose=False):
    command = "ping -c %s -w %s %s" % (count, deadline, host)
    if interface:
        command = ("ping -I%s -c %s -w %s %s"
                   % (interface, count, deadline, host))

    reg = re.compile(r"(\d+) packets transmitted, (\d+) received, (\d+)% packet loss")
    ping_summary = None

    output = os.popen(command)
    for line in output.readlines():
        if verbose:
            print(line.rstrip())

        received = re.findall(reg, line)
        if received:
            ping_summary = received[0]

    ping_summary={'transmitted': int(ping_summary[0]),
                  'received': int(ping_summary[1]),
                  'pct_loss': int(ping_summary[2])}
    return ping_summary


def main(args):

    gettext.textdomain("checkbox")

    default_count = 2
    default_delay = 4

    route = Route()

    parser = ArgumentParser()
    parser.add_argument("host",
                        nargs='?',
                        default=route.get_default_gateway(),
                        help="Host to ping")
    parser.add_argument("-c", "--count",
                        default=default_count,
                        type=int,
                        help="Number of packets to send.")
    parser.add_argument("-d", "--deadline",
                        default=default_delay,
                        type=int,
                        help="Timeouts in seconds.")
    parser.add_argument("-t", "--threshold",
                        default=0,
                        type=int,
                        help="Percentage of allowed packet loss before "
                             "considering test failed. Defaults to 0 "
                             "(meaning any packet loss will fail the test)")
    parser.add_argument("-v", "--verbose",
                        action='store_true',
                        help="Be verbose.")
    parser.add_argument("-I", "--interface",
                        help="Interface to ping from.")
    args = parser.parse_args()

    #Ensure count and deadline make sense. Adjust them if not.

    if args.deadline != default_delay and args.count != default_count:
        #Ensure they're both consistent, and exit with a warning if
        #not, rather than modifying what the user explicitly set.
        if args.deadline <= args.count:
            print("ERROR: not enough time for %s pings in %s seconds" %
                  (args.count, args.deadline))
            return(1)
    elif args.deadline != default_delay:
        #Adjust count according to delay.
        args.count = args.deadline - 1
        if args.count < 1:
            args.count = 1
        if args.verbose:
            print("Adjusting ping count to %s to fit in %s-second deadline" %
                  (args.count, args.deadline))
    else:
        #Adjust delay according to count
        args.deadline = args.count + 1
        if args.verbose:
            print("Adjusting deadline to %s seconds to fit %s pings" %
                  (args.deadline, args.count))

    #If given host is not pingable, override with something pingable.
    host = get_host_to_ping(interface=args.interface,
                            verbose=args.verbose, default=args.host)

    if args.verbose:
        print("Checking connectivity to %s" % host)
    ping_summary = None
    if host:
        ping_summary = ping(host, args.interface, args.count,
                            args.deadline, args.verbose)

    if ping_summary == None or ping_summary['received'] == 0:
        print(_("No Internet connection"))
        return 1
    elif ping_summary['transmitted'] != ping_summary['received']:
        print(_("Connection established, but lost {}% of packets".format(
                                                  ping_summary['pct_loss'])))
        if ping_summary['pct_loss'] > args.threshold:
            print(_("FAIL: {}% packet loss is higher"
                    "than {}% threshold").format(ping_summary['pct_loss'],
                                                 args.threshold))
            return 1
        else:
            print(_("PASS: {}% packet loss is within {}% threshold").format(
                                   ping_summary['pct_loss'], args.threshold))
            return 0
    else:
        print(_("Internet connection fully established"))
        return 0

if __name__ == "__main__":
    sys.exit(main(sys.argv[1:]))