Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Unified Diff: appengine/swarming/swarming_bot/bot_code/bot_main.py

Issue 2024313003: Send authorization headers when calling Swarming backend. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/swarming/swarming_bot/bot_code/bot_main.py
diff --git a/appengine/swarming/swarming_bot/bot_code/bot_main.py b/appengine/swarming/swarming_bot/bot_code/bot_main.py
index 121cd6dcd40e13368dbed95b86c9785ee3563b61..e45aaca43ce663b80c8325b7c9351ed8506719cc 100644
--- a/appengine/swarming/swarming_bot/bot_code/bot_main.py
+++ b/appengine/swarming/swarming_bot/bot_code/bot_main.py
@@ -20,7 +20,6 @@ import logging
import optparse
import os
import shutil
-import signal
import sys
import tempfile
import threading
@@ -29,6 +28,8 @@ import traceback
import zipfile
import common
+import file_refresher
+import remote_client
import singleton
from api import bot
from api import os_utilities
@@ -170,6 +171,19 @@ def setup_bot(skip_reboot):
botobj.restart('Starting new swarming bot: %s' % THIS_FILE)
+def get_authentication_headers(botobj):
+ """Calls bot_config.get_authentication_headers() if it is defined.
+
+ Doesn't catch exceptions.
+ """
+ if _in_load_test_mode():
+ return (None, None)
+ logging.info('get_authentication_headers()')
+ from config import bot_config
+ func = getattr(bot_config, 'get_authentication_headers', None)
+ return func(botobj) if func else (None, None)
+
+
### end of bot_config handler part.
@@ -228,8 +242,8 @@ def post_error_task(botobj, error, task_id):
'message': error,
'task_id': task_id,
}
- return net.url_read_json(
- botobj.server + '/swarming/api/v1/bot/task_error/%s' % task_id, data=data)
+ return botobj.remote.url_read_json(
+ '/swarming/api/v1/bot/task_error/%s' % task_id, data=data)
def on_shutdown_hook(b):
@@ -256,19 +270,30 @@ def get_bot():
config = get_config()
assert not config['server'].endswith('/'), config
- # Create a temporary object to call the hooks.
- botobj = bot.Bot(
+ # Use temporary Bot object to call get_attributes. Attributes are needed to
+ # construct the "real" bot.Bot.
+ attributes = get_attributes(
+ bot.Bot(
+ remote_client.RemoteClient(config['server'], None),
attributes,
config['server'],
config['server_version'],
os.path.dirname(THIS_FILE),
- on_shutdown_hook)
- return bot.Bot(
- get_attributes(botobj),
+ on_shutdown_hook))
+
+ # Make remote client callback use the returned bot object. We assume here
+ # RemoteClient doesn't call its callback in the constructor (since 'botobj' is
+ # undefined during the construction).
+ botobj = bot.Bot(
+ remote_client.RemoteClient(
+ config['server'],
+ lambda: get_authentication_headers(botobj)),
+ attributes,
config['server'],
config['server_version'],
os.path.dirname(THIS_FILE),
on_shutdown_hook)
+ return botobj
def clean_isolated_cache(botobj):
@@ -335,16 +360,24 @@ def run_bot(arg_error):
# clause is kept there "just in case".
logging.exception('server_ping threw')
+ # Next we make sure the bot can make authenticated calls by grabbing
+ # the auth headers, retrying on errors a bunch of times. We don't give up
+ # if it fails though (maybe the bot will "fix itself" later).
+ botobj = get_bot()
+ try:
+ botobj.remote.initialize(quit_bit)
+ except remote_client.InitializationError as exc:
+ botobj.post_error('failed to grab auth headers: %s' % exc.last_error)
+ logging.error('Can\'t grab auth headers, continuing anyway...')
+
if quit_bit.is_set():
logging.info('Early quit 1')
return 0
# If this fails, there's hardly anything that can be done, the bot can't
# even get to the point to be able to self-update.
- botobj = get_bot()
- resp = net.url_read_json(
- botobj.server + '/swarming/api/v1/bot/handshake',
- data=botobj._attributes)
+ resp = botobj.remote.url_read_json(
+ '/swarming/api/v1/bot/handshake', data=botobj._attributes)
if not resp:
logging.error('Failed to contact for handshake')
else:
@@ -411,8 +444,8 @@ def poll_server(botobj, quit_bit):
"""
# Access to a protected member _XXX of a client class - pylint: disable=W0212
start = time.time()
- resp = net.url_read_json(
- botobj.server + '/swarming/api/v1/bot/poll', data=botobj._attributes)
+ resp = botobj.remote.url_read_json(
+ '/swarming/api/v1/bot/poll', data=botobj._attributes)
if not resp:
return False
logging.debug('Server response:\n%s', resp)
@@ -436,8 +469,8 @@ def poll_server(botobj, quit_bit):
'output_chunk_start': 0,
'task_id': resp['task_id'],
}
- net.url_read_json(
- botobj.server + '/swarming/api/v1/bot/task_update/%s' % resp['task_id'],
+ botobj.remote.url_read_json(
+ '/swarming/api/v1/bot/task_update/%s' % resp['task_id'],
data=params)
return False
@@ -496,6 +529,7 @@ def run_manifest(botobj, manifest, start):
failure = False
internal_failure = False
msg = None
+ headers_dumper = None
work_dir = os.path.join(botobj.base_dir, 'work')
try:
try:
@@ -523,6 +557,16 @@ def run_manifest(botobj, manifest, start):
task_result_file = os.path.join(work_dir, 'task_runner_out.json')
if os.path.exists(task_result_file):
os.remove(task_result_file)
+
+ # Start a thread that periodically puts authentication headers to a file on
+ # disk. task_runner reads them from there before making HTTP calls to the
+ # swarming server.
+ headers_file = os.path.join(work_dir, 'bot_auth_headers.json')
+ if botobj.remote.uses_auth:
+ headers_dumper = file_refresher.FileRefresher(
+ headers_file, botobj.remote.get_authentication_headers)
+ headers_dumper.start()
+
command = [
sys.executable, THIS_FILE, 'task_runner',
'--swarming-server', url,
@@ -533,7 +577,10 @@ def run_manifest(botobj, manifest, start):
'--start', str(start),
'--min-free-space', str(get_min_free_space()),
]
+ if headers_dumper:
+ command.extend(['--auth-headers-file', headers_file])
logging.debug('Running command: %s', command)
+
# Put the output file into the current working directory, which should be
# the one containing swarming_bot.zip.
log_path = os.path.join(botobj.base_dir, 'logs', 'task_runner_stdout.log')
@@ -594,6 +641,8 @@ def run_manifest(botobj, manifest, start):
e, traceback.format_exc()[-2048:])
internal_failure = True
finally:
+ if headers_dumper:
+ headers_dumper.stop()
if internal_failure:
post_error_task(botobj, msg, task_id)
call_hook(
@@ -624,12 +673,12 @@ def update_bot(botobj, version):
new_zip = os.path.join(os.path.dirname(THIS_FILE), new_zip)
# Download as a new file.
- url = botobj.server + '/swarming/api/v1/bot/bot_code/%s' % version
- if not net.url_retrieve(new_zip, url):
+ url_path = '/swarming/api/v1/bot/bot_code/%s' % version
+ if not botobj.remote.url_retrieve(new_zip, url_path):
# It can happen when a server is rapidly updated multiple times in a row.
botobj.post_error(
'Unable to download %s from %s; first tried version %s' %
- (new_zip, url, version))
+ (new_zip, botobj.server + url_path, version))
# Poll again, this may work next time. To prevent busy-loop, sleep a little.
time.sleep(2)
return
@@ -744,6 +793,6 @@ def main(args):
try:
return run_bot(error)
finally:
- call_hook(bot.Bot(None, None, None, os.path.dirname(THIS_FILE), None),
+ call_hook(bot.Bot(None, None, None, None, os.path.dirname(THIS_FILE), None),
'on_bot_shutdown')
logging.info('main() returning')

Powered by Google App Engine
This is Rietveld 408576698