/var/lib/pcp/testsuite/secure/pcppdu.python is in pcp-testsuite 3.8.12ubuntu1.
This file is owned by root:root, with mode 0o644.
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 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 | # PCP protocol support
#
# Florian Weimer / Red Hat Product Security Team
import struct
import collections
from operator import itemgetter as _itemgetter
import sys
CVERSION = 1
UNKNOWN_VERSION = 0
PDU_VERSION2 = 2
PDU_VERSION = PDU_VERSION2
PDU_ERROR = 0x7000
PDU_RESULT = 0x7001
PDU_PROFILE = 0x7002
PDU_FETCH = 0x7003
PDU_DESC_REQ = 0x7004
PDU_DESC = 0x7005
PDU_INSTANCE_REQ = 0x7006
PDU_INSTANCE = 0x7007
PDU_TEXT_REQ = 0x7008
PDU_TEXT = 0x7009
PDU_CONTROL_REQ = 0x700a
PDU_CREDS = 0x700c
PDU_PMNS_IDS = 0x700d
PDU_PMNS_NAMES = 0x700e
PDU_PMNS_CHILD = 0x700f
PDU_PMNS_TRAVERSE = 0x7010
def read_fully(sock, n):
result = str("")
while len(result) < n:
result += sock.recv(n - len(result))
return result
def read_pdu(sock):
"Reads the PDU, removing the length from the header."
length = read_fully(sock, 4)
length1, = struct.unpack(">i", length)
return read_fully(sock, length1 - 4)
# Generated by collections command (not presented in python 2.4
# Header = collections.namedtuple("Header", "type from_")
class Header(tuple):
'Header(type, from_)'
__slots__ = ()
_fields = ('type', 'from_')
def __new__(_cls, type, from_):
return tuple.__new__(_cls, (type, from_))
@classmethod
def _make(cls, iterable, new=tuple.__new__, len=len):
'Make a new Header object from a sequence or iterable'
result = new(cls, iterable)
if len(result) != 2:
raise TypeError('Expected 2 arguments, got %d' % len(result))
return result
def __repr__(self):
return 'Header(type=%r, from_=%r)' % self
def _asdict(t):
'Return a new dict which maps field names to their values'
return {'type': t[0], 'from_': t[1]}
def _replace(_self, **kwds):
'Return a new Header object replacing specified fields with new values'
result = _self._make(map(kwds.pop, ('type', 'from_'), _self))
if kwds:
raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result
def __getnewargs__(self):
return tuple(self)
type = property(_itemgetter(0))
from_ = property(_itemgetter(1))
# Generated by collections command (not presented in python 2.4
#ExtendedError = collections.namedtuple("ExtendedError", "code datum")
class ExtendedError(tuple):
'ExtendedError(code, datum)'
__slots__ = ()
_fields = ('code', 'datum')
def __new__(_cls, code, datum):
return tuple.__new__(_cls, (code, datum))
@classmethod
def _make(cls, iterable, new=tuple.__new__, len=len):
'Make a new ExtendedError object from a sequence or iterable'
result = new(cls, iterable)
if len(result) != 2:
raise TypeError('Expected 2 arguments, got %d' % len(result))
return result
def __repr__(self):
return 'ExtendedError(code=%r, datum=%r)' % self
def _asdict(t):
'Return a new dict which maps field names to their values'
return {'code': t[0], 'datum': t[1]}
def _replace(_self, **kwds):
'Return a new ExtendedError object replacing specified fields with new values'
result = _self._make(map(kwds.pop, ('code', 'datum'), _self))
if kwds:
raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result
def __getnewargs__(self):
return tuple(self)
code = property(_itemgetter(0))
datum = property(_itemgetter(1))
def parse_error(blob):
(typ, from_, code, datum) = struct.unpack(">iiii", blob)
return Header(typ, from_), ExtendedError(code, datum)
# Generated by collections command (not presented in python 2.4
#PMNSIDs = collections.namedtuple("PmnsIDs", "sts idlist")
class PMNSIDs(tuple):
'PmnsIDs(sts, idlist)'
__slots__ = ()
_fields = ('sts', 'idlist')
def __new__(_cls, sts, idlist):
return tuple.__new__(_cls, (sts, idlist))
@classmethod
def _make(cls, iterable, new=tuple.__new__, len=len):
'Make a new PmnsIDs object from a sequence or iterable'
result = new(cls, iterable)
if len(result) != 2:
raise TypeError('Expected 2 arguments, got %d' % len(result))
return result
def __repr__(self):
return 'PmnsIDs(sts=%r, idlist=%r)' % self
def _asdict(t):
'Return a new dict which maps field names to their values'
return {'sts': t[0], 'idlist': t[1]}
def _replace(_self, **kwds):
'Return a new PmnsIDs object replacing specified fields with new values'
result = _self._make(map(kwds.pop, ('sts', 'idlist'), _self))
if kwds:
raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result
def __getnewargs__(self):
return tuple(self)
sts = property(_itemgetter(0))
idlist = property(_itemgetter(1))
def parse_pmns_ids(blob):
(typ, from_, sts, elems) = struct.unpack(">iiii", blob[:16])
return Header(typ, from_), PMNSIDs(
sts, struct.unpack(">" + "I" * elems, blob[16:]))
# Generated by collections command (not presented in python 2.4
#Units = collections.namedtuple\
# ("Units", "scaleCount scaleTime scaleSpace dimCount dimTime dimSpace")
class Units(tuple):
'Units(scaleCount, scaleTime, scaleSpace, dimCount, dimTime, dimSpace)'
__slots__ = ()
_fields = ('scaleCount', 'scaleTime', 'scaleSpace', 'dimCount', 'dimTime', 'dimSpace')
def __new__(_cls, scaleCount, scaleTime, scaleSpace, dimCount, dimTime, dimSpace):
return tuple.__new__(_cls, (scaleCount, scaleTime, scaleSpace, dimCount, dimTime, dimSpace))
@classmethod
def _make(cls, iterable, new=tuple.__new__, len=len):
'Make a new Units object from a sequence or iterable'
result = new(cls, iterable)
if len(result) != 6:
raise TypeError('Expected 6 arguments, got %d' % len(result))
return result
def __repr__(self):
return 'Units(scaleCount=%r, scaleTime=%r, scaleSpace=%r, dimCount=%r, dimTime=%r, dimSpace=%r)' % self
def _asdict(t):
'Return a new dict which maps field names to their values'
return {'scaleCount': t[0], 'scaleTime': t[1], 'scaleSpace': t[2], 'dimCount': t[3], 'dimTime': t[4], 'dimSpace': t[5]}
def _replace(_self, **kwds):
'Return a new Units object replacing specified fields with new values'
result = _self._make(map(kwds.pop, ('scaleCount', 'scaleTime', 'scaleSpace', 'dimCount', 'dimTime', 'dimSpace'), _self))
if kwds:
raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result
def __getnewargs__(self):
return tuple(self)
scaleCount = property(_itemgetter(0))
scaleTime = property(_itemgetter(1))
scaleSpace = property(_itemgetter(2))
dimCount = property(_itemgetter(3))
dimTime = property(_itemgetter(4))
dimSpace = property(_itemgetter(5))
def _split84(b):
return (b >> 4) & 15, b & 15
# Generated by collections command (not presented in python 2.4
#Desc = collections.namedtuple("Desc", "pmid units")
class Desc(tuple):
'Desc(pmid, units)'
__slots__ = ()
_fields = ('pmid', 'units')
def __new__(_cls, pmid, units):
return tuple.__new__(_cls, (pmid, units))
@classmethod
def _make(cls, iterable, new=tuple.__new__, len=len):
'Make a new Desc object from a sequence or iterable'
result = new(cls, iterable)
if len(result) != 2:
raise TypeError('Expected 2 arguments, got %d' % len(result))
return result
def __repr__(self):
return 'Desc(pmid=%r, units=%r)' % self
def _asdict(t):
'Return a new dict which maps field names to their values'
return {'pmid': t[0], 'units': t[1]}
def _replace(_self, **kwds):
'Return a new Desc object replacing specified fields with new values'
result = _self._make(map(kwds.pop, ('pmid', 'units'), _self))
if kwds:
raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result
def __getnewargs__(self):
return tuple(self)
pmid = property(_itemgetter(0))
units = property(_itemgetter(1))
def parse_desc(blob):
try:
print "len string =", len(blob)
print "fmt len =", struct.calcsize(">iiIiIiBBBB")
(typ, from_, pmid, typ2, indom, sem, u1, u2, u3, u4) = \
struct.unpack(">iiIiIiBBBB", blob)
# TODO: check byte order (translated from bitfields)
# u1 is padding
scaleCount, scaleTime = _split84(u2)
scaleSpace, dimCount = _split84(u3)
dimTime, dimSpace = _split84(u4)
return Header(typ, from_), Desc(pmid, Units(
scaleCount, scaleTime, scaleSpace, dimCount, dimTime, dimSpace))
except struct.error:
sys.stderr.write("test-case-succeeded")
sys.exit(200)
PM_VAL_INSITU = 0
PM_VAL_DPTR = 1
PM_VAL_SPTR = 2
# Generated by collections command (not presented in python 2.4
#ValueBlock = collections.namedtuple("ValueBlock", "vtype vbuf")
class ValueBlock(tuple):
'ValueBlock(vtype, vbuf)'
__slots__ = ()
_fields = ('vtype', 'vbuf')
def __new__(_cls, vtype, vbuf):
return tuple.__new__(_cls, (vtype, vbuf))
@classmethod
def _make(cls, iterable, new=tuple.__new__, len=len):
'Make a new ValueBlock object from a sequence or iterable'
result = new(cls, iterable)
if len(result) != 2:
raise TypeError('Expected 2 arguments, got %d' % len(result))
return result
def __repr__(self):
return 'ValueBlock(vtype=%r, vbuf=%r)' % self
def _asdict(t):
'Return a new dict which maps field names to their values'
return {'vtype': t[0], 'vbuf': t[1]}
def _replace(_self, **kwds):
'Return a new ValueBlock object replacing specified fields with new values'
result = _self._make(map(kwds.pop, ('vtype', 'vbuf'), _self))
if kwds:
raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result
def __getnewargs__(self):
return tuple(self)
vtype = property(_itemgetter(0))
vbuf = property(_itemgetter(1))
# Generated by collections command (not presented in python 2.4
#Value = collections.namedtuple("Value", "inst value")
class Value(tuple):
'Value(inst, value)'
__slots__ = ()
_fields = ('inst', 'value')
def __new__(_cls, inst, value):
return tuple.__new__(_cls, (inst, value))
@classmethod
def _make(cls, iterable, new=tuple.__new__, len=len):
'Make a new Value object from a sequence or iterable'
result = new(cls, iterable)
if len(result) != 2:
raise TypeError('Expected 2 arguments, got %d' % len(result))
return result
def __repr__(self):
return 'Value(inst=%r, value=%r)' % self
def _asdict(t):
'Return a new dict which maps field names to their values'
return {'inst': t[0], 'value': t[1]}
def _replace(_self, **kwds):
'Return a new Value object replacing specified fields with new values'
result = _self._make(map(kwds.pop, ('inst', 'value'), _self))
if kwds:
raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result
def __getnewargs__(self):
return tuple(self)
inst = property(_itemgetter(0))
value = property(_itemgetter(1))
# Generated by collections command (not presented in python 2.4
#ValueSet = collections.namedtuple("ValueSet", "pmid valfmt values")
class ValueSet(tuple):
'ValueSet(pmid, valfmt, values)'
__slots__ = ()
_fields = ('pmid', 'valfmt', 'values')
def __new__(_cls, pmid, valfmt, values):
return tuple.__new__(_cls, (pmid, valfmt, values))
@classmethod
def _make(cls, iterable, new=tuple.__new__, len=len):
'Make a new ValueSet object from a sequence or iterable'
result = new(cls, iterable)
if len(result) != 3:
raise TypeError('Expected 3 arguments, got %d' % len(result))
return result
def __repr__(self):
return 'ValueSet(pmid=%r, valfmt=%r, values=%r)' % self
def _asdict(t):
'Return a new dict which maps field names to their values'
return {'pmid': t[0], 'valfmt': t[1], 'values': t[2]}
def _replace(_self, **kwds):
'Return a new ValueSet object replacing specified fields with new values'
result = _self._make(map(kwds.pop, ('pmid', 'valfmt', 'values'), _self))
if kwds:
raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result
def __getnewargs__(self):
return tuple(self)
pmid = property(_itemgetter(0))
valfmt = property(_itemgetter(1))
values = property(_itemgetter(2))
# Generated by collections command (not presented in python 2.4
#Result = collections.namedtuple("Result", "when data")
class Result(tuple):
'Result(when, data)'
__slots__ = ()
_fields = ('when', 'data')
def __new__(_cls, when, data):
return tuple.__new__(_cls, (when, data))
@classmethod
def _make(cls, iterable, new=tuple.__new__, len=len):
'Make a new Result object from a sequence or iterable'
result = new(cls, iterable)
if len(result) != 2:
raise TypeError('Expected 2 arguments, got %d' % len(result))
return result
def __repr__(self):
return 'Result(when=%r, data=%r)' % self
def _asdict(t):
'Return a new dict which maps field names to their values'
return {'when': t[0], 'data': t[1]}
def _replace(_self, **kwds):
'Return a new Result object replacing specified fields with new values'
result = _self._make(map(kwds.pop, ('when', 'data'), _self))
if kwds:
raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result
def __getnewargs__(self):
return tuple(self)
when = property(_itemgetter(0))
data = property(_itemgetter(1))
def __fetch_value_block(blob, index):
offset = index * 4 - 4
header, = struct.unpack(">I", blob[offset : offset + 4])
typ = header >> 24
# TODO: actually reduce string length by 4?
length = header & 0xFFFFFF - 4
return ValueBlock(typ, blob[offset + 4 : offset + 4 + length])
def parse_result(blob):
offset = 20
typ, from_, sec, usec, numpmid = struct.unpack(">iiiii", blob[:offset])
data = []
for i in range(numpmid):
pmid, numval, valfmt = struct.unpack(
">Iii", blob[offset : offset + 12])
offset += 12
values = []
for j in range(numval):
inst, value = struct.unpack(">ii", blob[offset : offset + 8])
offset += 8
if valfmt == PM_VAL_INSITU:
values.append(Value(inst, value))
else:
values.append(Value(inst, __fetch_value_block(blob, value)))
data.append(ValueSet(pmid, valfmt, values))
return Result((sec, usec), data)
def send_pdu(sock, typ, from_, data):
"Adds a length/type/from header and sends the data over the socket."
header = struct.pack(">iii", len(data) + 12, typ, from_)
# print("> " + repr(header + data))
sock.send(header + data)
# Generated by collections command (not presented in python 2.4
#Cred = collections.namedtuple("Cred", "c_type c_vala c_valb c_valc")
class Cred(tuple):
'Cred(c_type, c_vala, c_valb, c_valc)'
__slots__ = ()
_fields = ('c_type', 'c_vala', 'c_valb', 'c_valc')
def __new__(_cls, c_type, c_vala, c_valb, c_valc):
return tuple.__new__(_cls, (c_type, c_vala, c_valb, c_valc))
@classmethod
def _make(cls, iterable, new=tuple.__new__, len=len):
'Make a new Cred object from a sequence or iterable'
result = new(cls, iterable)
if len(result) != 4:
raise TypeError('Expected 4 arguments, got %d' % len(result))
return result
def __repr__(self):
return 'Cred(c_type=%r, c_vala=%r, c_valb=%r, c_valc=%r)' % self
def _asdict(t):
'Return a new dict which maps field names to their values'
return {'c_type': t[0], 'c_vala': t[1], 'c_valb': t[2], 'c_valc': t[3]}
def _replace(_self, **kwds):
'Return a new Cred object replacing specified fields with new values'
result = _self._make(map(kwds.pop, ('c_type', 'c_vala', 'c_valb', 'c_valc'), _self))
if kwds:
raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result
def __getnewargs__(self):
return tuple(self)
c_type = property(_itemgetter(0))
c_vala = property(_itemgetter(1))
c_valb = property(_itemgetter(2))
c_valc = property(_itemgetter(3))
def send_creds(sock, from_, creds):
# TODO: check byte order (translated from bitfields
send_pdu(sock, PDU_CREDS, from_,
struct.pack(">i", len(creds))
+ str("").join([struct.pack(">BBBB", *c) for c in creds]))
def __pad_to_4(b):
"Adds NUL bytes at the end to make sure that the length is == 0 (mod 4)."
return b + (str(""), str("\0\0\0"), str("\0\0"), str("\0e"))[len(b) & 3]
def send_pmns_names(sock, from_, names, status=False):
strlen = sum([len(x) + 1 for x in names])
if status:
not_implemented()
else:
send_pdu(sock, PDU_PMNS_NAMES, from_,
struct.pack(">iii", strlen, 0, len(names))
+ str("").join([struct.pack(">I", len(x)) + __pad_to_4(x)
for x in names]))
def send_pmns_child(sock, from_, name, subtype=0):
send_pdu(sock, PDU_PMNS_CHILD, from_,
struct.pack(">ii", subtype, len(name))
+ name)
def send_pmns_traverse(sock, from_, name, subtype=0):
send_pdu(sock, PDU_PMNS_TRAVERSE, from_,
struct.pack(">ii", subtype, len(name))
+ name)
def send_desc_req(sock, from_, pmid):
send_pdu(sock, PDU_DESC_REQ, from_, struct.pack(">I", pmid))
# Generated by collections command (not presented in python 2.4
#InDomProfile = collections.namedtuple("InDomProfile", "indom state instances")
class InDomProfile(tuple):
'InDomProfile(indom, state, instances)'
__slots__ = ()
_fields = ('indom', 'state', 'instances')
def __new__(_cls, indom, state, instances):
return tuple.__new__(_cls, (indom, state, instances))
@classmethod
def _make(cls, iterable, new=tuple.__new__, len=len):
'Make a new InDomProfile object from a sequence or iterable'
result = new(cls, iterable)
if len(result) != 3:
raise TypeError('Expected 3 arguments, got %d' % len(result))
return result
def __repr__(self):
return 'InDomProfile(indom=%r, state=%r, instances=%r)' % self
def _asdict(t):
'Return a new dict which maps field names to their values'
return {'indom': t[0], 'state': t[1], 'instances': t[2]}
def _replace(_self, **kwds):
'Return a new InDomProfile object replacing specified fields with new values'
result = _self._make(map(kwds.pop, ('indom', 'state', 'instances'), _self))
if kwds:
raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result
def __getnewargs__(self):
return tuple(self)
indom = property(_itemgetter(0))
state = property(_itemgetter(1))
instances = property(_itemgetter(2))
# Generated by collections command (not presented in python 2.4
# Profile = collections.namedtuple("Profile", "state profiles")
class Profile(tuple):
'Profile(state, profiles)'
__slots__ = ()
_fields = ('state', 'profiles')
def __new__(_cls, state, profiles):
return tuple.__new__(_cls, (state, profiles))
@classmethod
def _make(cls, iterable, new=tuple.__new__, len=len):
'Make a new Profile object from a sequence or iterable'
result = new(cls, iterable)
if len(result) != 2:
raise TypeError('Expected 2 arguments, got %d' % len(result))
return result
def __repr__(self):
return 'Profile(state=%r, profiles=%r)' % self
def _asdict(t):
'Return a new dict which maps field names to their values'
return {'state': t[0], 'profiles': t[1]}
def _replace(_self, **kwds):
'Return a new Profile object replacing specified fields with new values'
result = _self._make(map(kwds.pop, ('state', 'profiles'), _self))
if kwds:
raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result
def __getnewargs__(self):
return tuple(self)
state = property(_itemgetter(0))
profiles = property(_itemgetter(1))
def send_profile(sock, from_, ctxnum, instprof):
send_pdu(sock, PDU_PROFILE, from_,
struct.pack(">iiii", ctxnum, instprof.state,
len(instprof.profiles), 0)
+ str("").join([struct.pack(">Iii" + "i" * len(x.instances),
x.indom, x.state, len(x.instances),
*x.instances)
for x in instprof.profiles]))
def send_fetch(sock, from_, ctxnum, pmidlist, when=(0, 0)):
sec, usec = when
send_pdu(sock, PDU_FETCH, from_,
struct.pack(">iiii" + "i" * len(pmidlist),
ctxnum, sec, usec, len(pmidlist),
*pmidlist))
def send_text_req(sock, from_, ident, text):
send_pdu(sock, PDU_TEXT_REQ, from_,
struct.pack(">ii", ident, len(text))
+ text)
def send_instance_req(sock, from_, indom, name, when=(0, 0), inst=-1):
sec, usec = when
send_pdu(sock, PDU_INSTANCE_REQ, from_,
struct.pack(">Iiiii", indom, sec, usec, inst, len(name))
+ name)
def client_handshake(sock, from_):
header, error = parse_error(read_pdu(sock))
send_creds(sock, from_, [Cred(CVERSION, PDU_VERSION, 0, 0)])
|