forked from coreos/dev-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautoupdate.py
772 lines (638 loc) · 28 KB
/
autoupdate.py
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import json
import os
import errno
import re
import subprocess
import time
import urllib2
import urlparse
import cherrypy
import autoupdate_lib
import common_util
import log_util
# Module-local log function.
def _Log(message, *args):
return log_util.LogWithTag('UPDATE', message, *args)
UPDATE_FILE = 'update.gz'
KERNEL_UPDATE_FILE = 'kernel_update.gz'
METADATA_FILE = 'update.meta'
KERNEL_METADATA_FILE = 'kernel_update.meta'
CACHE_DIR = 'cache'
class AutoupdateError(Exception):
"""Exception classes used by this module."""
pass
def _ChangeUrlPort(url, new_port):
"""Return the URL passed in with a different port"""
scheme, netloc, path, query, fragment = urlparse.urlsplit(url)
host_port = netloc.split(':')
if len(host_port) == 1:
host_port.append(new_port)
else:
host_port[1] = new_port
print host_port
netloc = "%s:%s" % tuple(host_port)
return urlparse.urlunsplit((scheme, netloc, path, query, fragment))
def _NonePathJoin(*args):
"""os.path.join that filters None's from the argument list."""
return os.path.join(*filter(None, args))
class HostInfo(object):
"""Records information about an individual host.
Members:
attrs: Static attributes (legacy)
log: Complete log of recorded client entries
"""
def __init__(self):
# A dictionary of current attributes pertaining to the host.
self.attrs = {}
# A list of pairs consisting of a timestamp and a dictionary of recorded
# attributes.
self.log = []
def __repr__(self):
return 'attrs=%s, log=%s' % (self.attrs, self.log)
def AddLogEntry(self, entry):
"""Append a new log entry."""
# Append a timestamp.
assert not 'timestamp' in entry, 'Oops, timestamp field already in use'
entry['timestamp'] = time.strftime('%Y-%m-%d %H:%M:%S')
# Add entry to hosts' message log.
self.log.append(entry)
class HostInfoTable(object):
"""Records information about a set of hosts who engage in update activity.
Members:
table: Table of information on hosts.
"""
def __init__(self):
# A dictionary of host information. Keys are normally IP addresses.
self.table = {}
def __repr__(self):
return '%s' % self.table
def GetInitHostInfo(self, host_id):
"""Return a host's info object, or create a new one if none exists."""
return self.table.setdefault(host_id, HostInfo())
def GetHostInfo(self, host_id):
"""Return an info object for given host, if such exists."""
return self.table.get(host_id)
class UpdateMetadata(object):
"""Object containing metadata about an update payload."""
def __init__(self, sha1, sha256, size, is_delta_format):
self.sha1 = sha1
self.sha256 = sha256
self.size = size
self.is_delta_format = is_delta_format
class Autoupdate(object):
"""Class that contains functionality that handles Chrome OS update pings.
Members:
serve_only: serve only pre-built updates. static_dir must contain
update.gz.
use_test_image: use coreos_test_image.bin rather than the standard.
urlbase: base URL, other than devserver, for update images.
forced_image: path to an image to use for all updates.
payload_path: path to pre-generated payload to serve.
src_image: if specified, creates a delta payload from this image.
proxy_port: port of local proxy to tell client to connect to you
through.
vm: set for VM images (doesn't patch kernel)
board: board for the image. Needed for pre-generating of updates.
copy_to_static_root: copies images generated from the cache to ~/static.
private_key: path to private key in PEM format.
critical_update: whether provisioned payload is critical.
remote_payload: whether provisioned payload is remotely staged.
max_updates: maximum number of updates we'll try to provision.
host_log: record full history of host update events.
"""
_PAYLOAD_URL_PREFIX = '/static/'
_FILEINFO_URL_PREFIX = '/api/fileinfo/'
SHA1_ATTR = 'sha1'
SHA256_ATTR = 'sha256'
SIZE_ATTR = 'size'
ISDELTA_ATTR = 'is_delta'
def __init__(self, serve_only=None, test_image=False, urlbase=None,
forced_image=None, payload_path=None,
proxy_port=None, src_image='', vm=False, board=None,
copy_to_static_root=True, private_key=None,
critical_update=False, remote_payload=False, max_updates= -1,
host_log=False, devserver_dir=None, scripts_dir=None,
static_dir=None):
self.devserver_dir = devserver_dir,
self.scripts_dir = scripts_dir
self.static_dir = static_dir
self.serve_only = serve_only
self.use_test_image = test_image
if urlbase:
self.urlbase = urlbase
else:
self.urlbase = None
self.forced_image = forced_image
self.payload_path = payload_path
self.src_image = src_image
self.proxy_port = proxy_port
self.vm = vm
self.board = board
self.copy_to_static_root = copy_to_static_root
self.private_key = private_key
self.critical_update = critical_update
self.remote_payload = remote_payload
self.max_updates = max_updates
self.host_log = host_log
# Path to pre-generated file.
self.pregenerated_path = None
# Initialize empty host info cache. Used to keep track of various bits of
# information about a given host. A host is identified by its IP address.
# The info stored for each host includes a complete log of events for this
# host, as well as a dictionary of current attributes derived from events.
self.host_infos = HostInfoTable()
@classmethod
def _ReadMetadataFromStream(cls, stream):
"""Returns metadata obj from input json stream that implements .read()."""
file_attr_dict = {}
try:
file_attr_dict = json.loads(stream.read())
except IOError:
return None
sha1 = file_attr_dict.get(cls.SHA1_ATTR)
sha256 = file_attr_dict.get(cls.SHA256_ATTR)
size = file_attr_dict.get(cls.SIZE_ATTR)
is_delta = file_attr_dict.get(cls.ISDELTA_ATTR)
return UpdateMetadata(sha1, sha256, size, is_delta)
@staticmethod
def _ReadMetadataFromFile(payload_dir, legacy_image):
"""Returns metadata object from the metadata_file in the payload_dir"""
if legacy_image:
metadata_file = os.path.join(payload_dir, METADATA_FILE)
else:
metadata_file = os.path.join(payload_dir, KERNEL_METADATA_FILE)
if os.path.exists(metadata_file):
with open(metadata_file, 'r') as metadata_stream:
return Autoupdate._ReadMetadataFromStream(metadata_stream)
@classmethod
def _StoreMetadataToFile(cls, payload_dir, metadata_obj, legacy_image):
"""Stores metadata object into the metadata_file of the payload_dir"""
file_dict = {cls.SHA1_ATTR: metadata_obj.sha1,
cls.SHA256_ATTR: metadata_obj.sha256,
cls.SIZE_ATTR: metadata_obj.size,
cls.ISDELTA_ATTR: metadata_obj.is_delta_format}
if legacy_image:
metadata_file = os.path.join(payload_dir, METADATA_FILE)
else:
metadata_file = os.path.join(payload_dir, KERNEL_METADATA_FILE)
with open(metadata_file, 'w') as file_handle:
json.dump(file_dict, file_handle)
def _GetLatestImageDir(self, board):
"""Returns the latest image dir based on shell script."""
cmd = '%s/get_latest_image.sh --board %s' % (self.scripts_dir, board)
return os.popen(cmd).read().strip()
@staticmethod
def _GetVersionFromDir(image_dir):
"""Returns the version of the image based on version.txt."""
with open('%s/version.txt' % image_dir, 'r') as ver_file:
for line in ver_file:
key, _, value = line.partition('=')
if key == 'COREOS_VERSION':
return value.strip('"\'\t ')
raise AutoupdateError('Failed to parse version.txt in %s' % image_dir)
@staticmethod
def _CanUpdate(client_version, latest_version):
"""Returns true if the latest_version is greater than the client_version.
"""
_Log('client version %s latest version %s', client_version, latest_version)
client_tokens = [int(i) for i in re.split('[^0-9]', client_version) if i]
latest_tokens = [int(i) for i in re.split('[^0-9]', latest_version) if i]
return latest_tokens > client_tokens
def _GetImageName(self):
"""Returns the name of the image that should be used."""
if self.use_test_image:
image_name = 'coreos_test_image.bin'
else:
image_name = 'coreos_developer_image.bin'
return image_name
@staticmethod
def _IsDeltaFormatFile(filename):
try:
file_handle = open(filename, 'r')
delta_magic = 'CrAU'
magic = file_handle.read(len(delta_magic))
return magic == delta_magic
except IOError:
# For unit tests, we may not have real files, so it's ok to
# ignore these IOErrors. In any case, this value is not being
# used in update_engine at all as of now.
return False
def GenerateUpdateFile(self, src_image, image_path, output_dir,
legacy_image):
"""Generates an update gz given a full path to an image.
Args:
image_path: Full path to image.
Raises:
subprocess.CalledProcessError if the update generator fails to generate a
stateful payload.
"""
if legacy_image:
update_path = os.path.join(output_dir, UPDATE_FILE)
else:
update_path = os.path.join(output_dir, KERNEL_UPDATE_FILE)
_Log('Generating update image %s', update_path)
update_command = [
'cros_generate_update_payload',
'--image', image_path,
'--output', update_path,
]
if not legacy_image:
update_command.extend(['--include_kernel'])
if src_image:
update_command.extend(['--src_image', src_image])
if self.private_key:
update_command.extend(['--private_key', self.private_key])
_Log('Running %s', ' '.join(update_command))
subprocess.check_call(update_command)
def FindCachedUpdateImageSubDir(self, src_image, dest_image):
"""Find directory to store a cached update.
Given one, or two images for an update, this finds which cache directory
should hold the update files, even if they don't exist yet.
Returns:
A directory path for storing a cached update, of the following form:
Non-delta updates:
CACHE_DIR/<dest_hash>
Delta updates:
CACHE_DIR/<src_hash>_<dest_hash>
Signed updates (self.private_key):
CACHE_DIR/<src_hash>_<dest_hash>+<private_key_hash>
"""
update_dir = ''
if src_image:
update_dir += common_util.GetFileMd5(src_image) + '_'
update_dir += common_util.GetFileMd5(dest_image)
if self.private_key:
update_dir += '+' + common_util.GetFileMd5(self.private_key)
if not self.vm:
update_dir += '+patched_kernel'
return os.path.join(CACHE_DIR, update_dir)
def GenerateUpdateImage(self, image_path, output_dir, legacy_image):
"""Force generates an update payload based on the given image_path.
Args:
src_image: image we are updating from (Null/empty for non-delta)
image_path: full path to the image.
output_dir: the directory to write the update payloads to
Raises:
AutoupdateError if it failed to generate either update or stateful
payload.
"""
_Log('Generating update for image %s', image_path)
try:
os.makedirs(output_dir)
except OSError as e:
if e.errno == errno.EEXIST:
pass
try:
self.GenerateUpdateFile(self.src_image, image_path, output_dir,
legacy_image)
except subprocess.CalledProcessError:
os.system('rm -rf "%s"' % output_dir)
raise AutoupdateError('Failed to generate update in %s' % output_dir)
def GenerateUpdateImageWithCache(self, image_path, static_image_dir,
legacy_image):
"""Force generates an update payload based on the given image_path.
Args:
image_path: full path to the image.
static_image_dir: the directory to move images to after generating.
Returns:
update directory relative to static_image_dir. None if it should
serve from the static_image_dir.
Raises:
AutoupdateError if it we need to generate a payload and fail to do so.
"""
_Log('Generating update for src %s image %s', self.src_image, image_path)
# Which sub_dir of static_image_dir should hold our cached update image
cache_sub_dir = self.FindCachedUpdateImageSubDir(self.src_image, image_path)
_Log('Caching in sub_dir "%s"', cache_sub_dir)
# The cached payloads exist in a cache dir
if legacy_image:
cache_update_payload = os.path.join(static_image_dir,
cache_sub_dir, UPDATE_FILE)
else:
cache_update_payload = os.path.join(static_image_dir,
cache_sub_dir, KERNEL_UPDATE_FILE)
full_cache_dir = os.path.join(static_image_dir, cache_sub_dir)
# Check to see if this cache directory is valid.
if not os.path.exists(cache_update_payload):
self.GenerateUpdateImage(image_path, full_cache_dir, legacy_image)
# Generate the cache file.
self.GetLocalPayloadAttrs(full_cache_dir, legacy_image)
if legacy_image:
cache_metadata_file = os.path.join(full_cache_dir, METADATA_FILE)
else:
cache_metadata_file = os.path.join(full_cache_dir, KERNEL_METADATA_FILE)
# Generation complete, copy if requested.
if self.copy_to_static_root:
# The final results exist directly in static
if legacy_image:
update_payload = os.path.join(static_image_dir,
UPDATE_FILE)
metadata_file = os.path.join(static_image_dir, METADATA_FILE)
else:
update_payload = os.path.join(static_image_dir,
KERNEL_UPDATE_FILE)
metadata_file = os.path.join(static_image_dir, KERNEL_METADATA_FILE)
common_util.CopyFile(cache_update_payload, update_payload)
common_util.CopyFile(cache_metadata_file, metadata_file)
return None
else:
return cache_sub_dir
def GenerateLatestUpdateImage(self, board, client_version,
static_image_dir, legacy_image):
"""Generates an update using the latest image that has been built.
This will only generate an update if the newest update is newer than that
on the client or client_version is 'ForcedUpdate'.
Args:
board: Name of the board.
client_version: Current version of the client or 'ForcedUpdate'
static_image_dir: the directory to move images to after generating.
Returns:
Name of the update directory relative to the static dir. None if it should
serve from the static_image_dir.
Raises:
AutoupdateError if it failed to generate the payload or can't update
the given client_version.
"""
latest_image_dir = self._GetLatestImageDir(board)
latest_version = self._GetVersionFromDir(latest_image_dir)
latest_image_path = os.path.join(latest_image_dir, self._GetImageName())
# Check to see whether or not we should update.
if client_version != 'ForcedUpdate' and not self._CanUpdate(
client_version, latest_version):
raise AutoupdateError('Update check received but no update available '
'for client')
return self.GenerateUpdateImageWithCache(latest_image_path,
static_image_dir=static_image_dir,
legacy_image=legacy_image)
def GenerateUpdatePayload(self, board, client_version, static_image_dir,
legacy_image):
"""Generates an update for an image and returns the relative payload dir.
Returns:
payload dir relative to static_image_dir. None if it should
serve from the static_image_dir.
Raises:
AutoupdateError if it failed to generate the payload.
"""
if legacy_image:
dest_path = os.path.join(static_image_dir, UPDATE_FILE)
else:
dest_path = os.path.join(static_image_dir, KERNEL_UPDATE_FILE)
if self.payload_path:
# If the forced payload is not already in our static_image_dir,
# copy it there.
src_path = os.path.abspath(self.payload_path)
# Only copy the files if the source directory is different from dest.
if os.path.dirname(src_path) != os.path.abspath(static_image_dir):
common_util.CopyFile(src_path, dest_path)
# Serve from the main directory so rel_path is None.
return None
elif self.forced_image:
return self.GenerateUpdateImageWithCache(
self.forced_image,
static_image_dir=static_image_dir,
legacy_image=legacy_image)
else:
if not board:
raise AutoupdateError(
'Failed to generate update. '
'You must set --board when pre-generating latest update.')
return self.GenerateLatestUpdateImage(board, client_version,
static_image_dir, legacy_image)
def PreGenerateUpdate(self):
"""Pre-generates an update and prints out the relative path it.
Returns relative path of the update.
Raises:
AutoupdateError if it failed to generate the payload.
"""
_Log('Pre-generating the update payload')
# Does not work with labels so just use static dir.
pregenerated_update = self.GenerateUpdatePayload(self.board, '0.0.0.0',
self.static_dir)
print 'PREGENERATED_UPDATE=%s' % _NonePathJoin(pregenerated_update,
UPDATE_FILE)
return pregenerated_update
def _GetRemotePayloadAttrs(self, url):
"""Returns hashes, size and delta flag of a remote update payload.
Obtain attributes of a payload file available on a remote devserver. This
is based on the assumption that the payload URL uses the /static prefix. We
need to make sure that both clients (requests) and remote devserver
(provisioning) preserve this invariant.
Args:
url: URL of statically staged remote file (http://host:port/static/...)
Returns:
A tuple containing the SHA1, SHA256, file size and whether or not it's a
delta payload (Boolean).
"""
if self._PAYLOAD_URL_PREFIX not in url:
raise AutoupdateError(
'Payload URL does not have the expected prefix (%s)' %
self._PAYLOAD_URL_PREFIX)
fileinfo_url = url.replace(self._PAYLOAD_URL_PREFIX,
self._FILEINFO_URL_PREFIX)
_Log('Retrieving file info for remote payload via %s', fileinfo_url)
try:
conn = urllib2.urlopen(fileinfo_url)
metadata_obj = Autoupdate._ReadMetadataFromStream(conn)
# These fields are required for remote calls.
if not metadata_obj:
raise AutoupdateError('Failed to obtain remote payload info')
if not metadata_obj.is_delta_format:
metadata_obj.is_delta_format = ('_mton' in url) or ('_nton' in url)
return metadata_obj
except IOError as e:
raise AutoupdateError('Failed to obtain remote payload info: %s', e)
def GetLocalPayloadAttrs(self, payload_dir, legacy_image):
"""Returns hashes, size and delta flag of a local update payload.
Args:
payload_dir: Path to the directory the payload is in.
Returns:
A tuple containing the SHA1, SHA256, file size and whether or not it's a
delta payload (Boolean).
"""
if legacy_image:
filename = os.path.join(payload_dir, UPDATE_FILE)
else:
filename = os.path.join(payload_dir, KERNEL_UPDATE_FILE)
if not os.path.exists(filename):
raise AutoupdateError('%s not present in payload dir %s' %
(filename, payload_dir))
metadata_obj = Autoupdate._ReadMetadataFromFile(payload_dir, legacy_image)
if not metadata_obj or not (metadata_obj.sha1 and
metadata_obj.sha256 and
metadata_obj.size):
sha1 = common_util.GetFileSha1(filename)
sha256 = common_util.GetFileSha256(filename)
size = common_util.GetFileSize(filename)
is_delta_format = self._IsDeltaFormatFile(filename)
metadata_obj = UpdateMetadata(sha1, sha256, size, is_delta_format)
Autoupdate._StoreMetadataToFile(payload_dir, metadata_obj, legacy_image)
return metadata_obj
def _ProcessUpdateComponents(self, app, event):
"""Processes the app and event components of an update request.
Returns tuple containing forced_update_label, client_version, board and
app_id
"""
# Initialize an empty dictionary for event attributes to log.
log_message = {}
# Determine request IP, strip any IPv6 data for simplicity.
client_ip = cherrypy.request.remote.ip.split(':')[-1]
# Obtain (or init) info object for this client.
curr_host_info = self.host_infos.GetInitHostInfo(client_ip)
client_version = 'ForcedUpdate'
board = None
app_id = None
if app:
client_version = app.getAttribute('version')
channel = app.getAttribute('track')
board = (app.hasAttribute('board') and app.getAttribute('board')
or self.board)
app_id = app.getAttribute('appid')
# Add attributes to log message
log_message['version'] = client_version
log_message['track'] = channel
log_message['board'] = board
curr_host_info.attrs['last_known_version'] = client_version
if event:
event_result = int(event[0].getAttribute('eventresult'))
event_type = int(event[0].getAttribute('eventtype'))
client_previous_version = (event[0].getAttribute('previousversion')
if event[0].hasAttribute('previousversion')
else None)
# Store attributes to legacy host info structure
curr_host_info.attrs['last_event_status'] = event_result
curr_host_info.attrs['last_event_type'] = event_type
# Add attributes to log message
log_message['event_result'] = event_result
log_message['event_type'] = event_type
if client_previous_version is not None:
log_message['previous_version'] = client_previous_version
# Log host event, if so instructed.
if self.host_log:
curr_host_info.AddLogEntry(log_message)
return (curr_host_info.attrs.pop('forced_update_label', None),
client_version, board, app_id)
def _GetStaticUrl(self):
"""Returns the static url base that should prefix all payload responses."""
x_forwarded_host = cherrypy.request.headers.get('X-Forwarded-Host')
if x_forwarded_host:
hostname = 'http://' + x_forwarded_host
else:
hostname = cherrypy.request.base
if self.urlbase:
static_urlbase = self.urlbase
elif self.serve_only:
static_urlbase = '%s/static/archive' % hostname
else:
static_urlbase = '%s/static' % hostname
# If we have a proxy port, adjust the URL we instruct the client to
# use to go through the proxy.
if self.proxy_port:
static_urlbase = _ChangeUrlPort(static_urlbase, self.proxy_port)
_Log('Using static url base %s', static_urlbase)
_Log('Handling update ping as %s', hostname)
return static_urlbase
def HandleUpdatePing(self, data, label=None):
"""Handles an update ping from an update client.
Args:
data: XML blob from client.
label: optional label for the update.
Returns:
Update payload message for client.
"""
# Get the static url base that will form that base of our update url e.g.
# http://hostname:8080/static/update.gz.
static_urlbase = self._GetStaticUrl()
_Log(data)
# Parse the XML we got into the components we care about.
protocol, app, event, update_check = autoupdate_lib.ParseUpdateRequest(data)
# #########################################################################
# Process attributes of the update check.
forced_update_label, client_version, board, app_id = self._ProcessUpdateComponents(
app, event)
if app_id == '{e96281a6-d1af-4bde-9a0a-97b76e56dc57}':
legacy_image = True
else:
legacy_image = False
# We only process update_checks in the update rpc.
if not update_check:
_Log('Non-update check received. Returning blank payload')
# TODO(sosa): Generate correct non-updatecheck payload to better test
# update clients.
return autoupdate_lib.GetNoUpdateResponse(protocol)
# In case max_updates is used, return no response if max reached.
if self.max_updates > 0:
self.max_updates -= 1
elif self.max_updates == 0:
_Log('Request received but max number of updates handled')
return autoupdate_lib.GetNoUpdateResponse(protocol)
_Log('Update Check Received. Client is using protocol version: %s',
protocol)
if forced_update_label:
if label:
_Log('Label: %s set but being overwritten to %s by request', label,
forced_update_label)
label = forced_update_label
# #########################################################################
# Finally its time to generate the omaha response to give to client that
# lets them know where to find the payload and its associated metadata.
metadata_obj = None
try:
# Are we provisioning a remote or local payload?
if self.remote_payload:
# If no explicit label was provided, use the value of --payload.
if not label:
label = self.payload_path
# Form the URL of the update payload. This assumes that the payload
# file name is a devserver constant (which currently is the case).
url = '/'.join(filter(None, [static_urlbase, label, UPDATE_FILE]))
# Get remote payload attributes.
metadata_obj = self._GetRemotePayloadAttrs(url)
else:
static_image_dir = _NonePathJoin(self.static_dir, label)
rel_path = None
# Serving files only, don't generate an update.
if not self.serve_only:
# Generate payload if necessary.
rel_path = self.GenerateUpdatePayload(board, client_version,
static_image_dir, legacy_image)
if legacy_image:
filename = UPDATE_FILE
else:
filename = KERNEL_UPDATE_FILE
url = '/'.join(filter(None, [static_urlbase, label, rel_path,
filename]))
local_payload_dir = _NonePathJoin(static_image_dir, rel_path)
metadata_obj = self.GetLocalPayloadAttrs(local_payload_dir, legacy_image)
except AutoupdateError as e:
# Raised if we fail to generate an update payload.
_Log('Failed to process an update: %r', e)
return autoupdate_lib.GetNoUpdateResponse(protocol)
_Log('Responding to client to use url %s to get image', url)
return autoupdate_lib.GetUpdateResponse(
metadata_obj.sha1, metadata_obj.sha256, metadata_obj.size, url,
metadata_obj.is_delta_format, protocol, self.critical_update)
def HandleHostInfoPing(self, ip):
"""Returns host info dictionary for the given IP in JSON format."""
assert ip, 'No ip provided.'
if ip in self.host_infos.table:
return json.dumps(self.host_infos.GetHostInfo(ip).attrs)
def HandleHostLogPing(self, ip):
"""Returns a complete log of events for host in JSON format."""
# If all events requested, return a dictionary of logs keyed by IP address.
if ip == 'all':
return json.dumps(
dict([(key, self.host_infos.table[key].log)
for key in self.host_infos.table]))
# Otherwise we're looking for a specific IP address, so find its log.
if ip in self.host_infos.table:
return json.dumps(self.host_infos.GetHostInfo(ip).log)
# If no events were logged for this IP, return an empty log.
return json.dumps([])
def HandleSetUpdatePing(self, ip, label):
"""Sets forced_update_label for a given host."""
assert ip, 'No ip provided.'
assert label, 'No label provided.'
self.host_infos.GetInitHostInfo(ip).attrs['forced_update_label'] = label