diff options
author | John Estabrook <jestabro@sentrium.io> | 2019-09-18 11:38:28 -0500 |
---|---|---|
committer | John Estabrook <jestabro@sentrium.io> | 2019-10-01 11:21:12 -0500 |
commit | 90ec8f4eacb53be74276b476bfb3ef51da42e72e (patch) | |
tree | f5de05c05775af2731815077c022f2b5e8512bd3 | |
parent | ab6d6ec47c8ea47b2ea05d62b72e2864d7895bd4 (diff) | |
download | vyos-1x-90ec8f4eacb53be74276b476bfb3ef51da42e72e.tar.gz vyos-1x-90ec8f4eacb53be74276b476bfb3ef51da42e72e.zip |
T1424: Check for http error or redirect, when loading remote files.
(ported from vyatta-cfg f051e369)
-rw-r--r-- | python/vyos/remote.py | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/python/vyos/remote.py b/python/vyos/remote.py index 49936ec08..f8a21f068 100644 --- a/python/vyos/remote.py +++ b/python/vyos/remote.py @@ -121,16 +121,34 @@ def get_remote_config(remote_file): if request['protocol'] in ('scp', 'sftp'): check_and_add_host_key(request['host']) + redirect_opt = '' + + if request['protocol'] in ('http', 'https'): + redirect_opt = '-L' + # Try header first, and look for 'OK' or 'Moved' codes: + curl_cmd = 'curl {0} -q -I {1}'.format(redirect_opt, remote_file) + try: + curl_output = subprocess.check_output(curl_cmd, shell=True, + universal_newlines=True) + except subprocess.CalledProcessError: + sys.exit(1) + + return_vals = re.findall(r'^HTTP\/\d+\.?\d\s+(\d+)\s+(.*)$', + curl_output, re.MULTILINE) + for val in return_vals: + if int(val[0]) not in [200, 301, 302]: + print('HTTP error: {0} {1}'.format(*val)) + sys.exit(1) + if request['user'] and not request['passwd']: curl_cmd = 'curl -# -u {0} {1}'.format(request['user'], remote_file) else: - curl_cmd = 'curl -# {0}'.format(remote_file) + curl_cmd = 'curl {0} -# {1}'.format(redirect_opt, remote_file) - config_file = None try: config_file = subprocess.check_output(curl_cmd, shell=True, universal_newlines=True) - except subprocess.CalledProcessError as err: - print("Called process error: {}.".format(err)) + except subprocess.CalledProcessError: + config_file = None return config_file |