/usr/share/pyshared/pysnmp/v2/asn1.py is in python-pysnmp2 2.0.9-3build1.
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 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 | """
Basic Encoding Rules (BER) for fundamental and non-structured SNMP
application specific ASN.1 data types.
Written by Ilya Etingof <ilya@glas.net>, 1999-2002.
This code is partially derived from Simon Leinen's <simon@switch.ch>
BER Perl module.
"""
import string
# Import package components
import error
class Error(error.Generic):
"""Base class for asn1 module exceptions
"""
pass
class UnknownTag(Error):
"""Unknown BER tag
"""
pass
class OverFlow(Error):
"""Data item does not fit the packet
"""
pass
class UnderRun(Error):
"""Short BER data stream
"""
pass
class BadEncoding(Error):
"""Incorrect BER encoding
"""
pass
class TypeError(Error):
"""ASN.1 data type incompatibility
"""
pass
class BadArgument(Error):
"""Malformed argument
"""
pass
class BERHEADER:
"""BER packet header encoders & decoders
"""
# BER class types
CLASS = {
'UNIVERSAL' : 0x00,
'APPLICATION' : 0x40,
'CONTEXT' : 0x80,
'PRIVATE' : 0xC0,
}
# BER format types
FORMAT = {
'SIMPLE' : 0x00,
'CONSTRUCTED' : 0x20
}
# BER tags for various ASN.1 data types
TAGS = {
# Primitive ASN.1 types tags
'BOOLEAN' : 0x00 | FORMAT['SIMPLE'] | CLASS['UNIVERSAL'],
'INTEGER' : 0x02 | FORMAT['SIMPLE'] | CLASS['UNIVERSAL'],
'BITSTRING' : 0x03 | FORMAT['SIMPLE'] | CLASS['UNIVERSAL'],
'OCTETSTRING' : 0x04 | FORMAT['SIMPLE'] | CLASS['UNIVERSAL'],
'NULL' : 0x05 | FORMAT['SIMPLE'] | CLASS['UNIVERSAL'],
'OBJECTID' : 0x06 | FORMAT['SIMPLE'] | CLASS['UNIVERSAL'],
'SEQUENCE' : 0x10 | FORMAT['CONSTRUCTED'] | CLASS['UNIVERSAL'],
'SET' : 0x11 | FORMAT['CONSTRUCTED'] | CLASS['UNIVERSAL'],
# Primitive SNMP application specific tags
'IPADDRESS' : 0x00 | FORMAT['SIMPLE'] | CLASS['APPLICATION'],
'COUNTER32' : 0x01 | FORMAT['SIMPLE'] | CLASS['APPLICATION'],
'UNSIGNED32' : 0x02 | FORMAT['SIMPLE'] | CLASS['APPLICATION'],
'GAUGE32' : 0x02 | FORMAT['SIMPLE'] | CLASS['APPLICATION'],
'TIMETICKS' : 0x03 | FORMAT['SIMPLE'] | CLASS['APPLICATION'],
'OPAQUE' : 0x04 | FORMAT['SIMPLE'] | CLASS['APPLICATION'],
'NSAPADDRESS' : 0x05 | FORMAT['SIMPLE'] | CLASS['APPLICATION'],
'COUNTER64' : 0x06 | FORMAT['SIMPLE'] | CLASS['APPLICATION'],
# SNMP v.2 exception tags
'noSuchObject' : 0x00 | FORMAT['SIMPLE'] | CLASS['CONTEXT'],
'noSuchInstance' : 0x01 | FORMAT['SIMPLE'] | CLASS['CONTEXT'],
'endOfMibView' : 0x02 | FORMAT['SIMPLE'] | CLASS['CONTEXT']
}
def encode_tag(self, name):
"""
encode_tag(name) -> octet stream
Encode ASN.1 data item (specified by name) into its numeric
representation.
"""
# Lookup the tag ID by name
if self.TAGS.has_key(name):
return '%c' % self.TAGS[name]
raise UnknownTag('Unknown tag: ' + name)
def encode_length(self, length):
"""
encode_length(length) -> octet string
Encode ASN.1 data item length (integer) into octet stream
representation.
"""
# If given length fits one byte
if length < 0x80:
# Pack it into one octet
return '%c' % length
# One extra byte required
elif length < 0xFF:
# Pack it into two octets
return '%c%c' % (0x81, length)
# Two extra bytes required
elif length < 0xFFFF:
# Pack it into three octets
return '%c%c%c' % (0x82, \
(length >> 8) & 0xFF, \
length & 0xFF)
# Three extra bytes required
elif length < 0xFFFFFF:
# Pack it into three octets
return '%c%c%c%c' % (0x83, \
(length >> 16) & 0xFF, \
(length >> 8) & 0xFF, \
length & 0xFF)
# More octets may be added
else:
raise OverFlow('Too large length: ' + str(length))
def decode_tag(self, tag):
"""
decode_tag(tag) -> name
Decode a tag (octet) into symbolic representation of ASN.1 data
item type tag.
"""
# Lookup tag in the dictionary of known tags
for key in self.TAGS.keys():
if tag == self.TAGS[key]:
return key
raise UnknownTag('Unknown tag: ' + repr(tag))
def decode_length(self, input):
"""
decode_length(input) -> (length, size)
Return the data item's length (integer) and the size of length
data (integer).
"""
try:
# Get the most-significant-bit
msb = ord(input[0]) & 0x80
if not msb:
return (ord(input[0]) & 0x7F, 1)
# Get the size if the length
size = ord(input[0]) & 0x7F
# One extra byte length
if msb and size == 1:
return (ord(input[1]), size+1)
# Two extra bytes length
elif msb and size == 2:
result = ord(input[1])
result = result << 8
return (result | ord(input[2]), size+1)
# Two extra bytes length
elif msb and size == 3:
result = ord(input[1])
result = result << 8
result = result | ord(input[2])
result = result << 8
return (result | ord(input[3]), size+1)
else:
raise OverFlow('Too many length bytes: ' + str(size))
except StandardError, why:
raise BadEncoding('Malformed input: ' + str(why))
#
# ASN.1 object classes
#
class ASN1OBJECT(BERHEADER):
"""
Basic ASN.1 object. Defines behaviour and properties of
various ASN.1 objects.
"""
def __init__(self, value=None):
"""Store ASN.1 value
"""
self.value = None
self.update(value)
def __str__(self):
"""Return string representation of class instance
"""
return '%s: %s' % (self.__class__.__name__, str(self.value))
def __repr__(self):
"""Return native representation of instance payload
"""
return self.__class__.__name__ + '(' + repr(self.value) + ')'
def __call__(self):
"""Return instance payload
"""
if self.value is None:
raise BadArgument('Uninitialized object payload')
return self.value
def __cmp__(self, other):
"""Attempt to compare the payload of instances of the same class
"""
try:
return self._cmp(other)
except AttributeError:
pass
except StandardError, why:
raise TypeError('Cannot compare %s vs %s: %s'\
% (str(self), str(other), why))
return cmp(self.value, other)
def update(self, value):
"""
"""
if value is None:
return
if hasattr(self, '_range'):
try:
if self._range(value):
raise OverFlow('Value %s does not fit the %s type' \
% (str(value), self.__class__.__name__))
except StandardError, why:
raise TypeError('Cannot range check value %s: %s'\
% (str(value), why))
self.value = value
def encode(self, value=None):
"""
encode() -> string
BER encode object payload whenever possible
"""
self.update(value)
try:
result = self._encode()
return self.encode_tag(self.__class__.__name__) + \
self.encode_length(len(result)) + result
except AttributeError:
raise TypeError('No encoder defined for %s object' %\
self.__class__.__name__)
except StandardError, why:
raise BadArgument('Encoder failure (bad input?): ' + str(why))
def decode(self, input):
"""
decode(input) -> (value, rest)
BER decode input (string) into ASN1 object payload, return
the rest of input stream.
"""
try:
tag = self.decode_tag(ord(input[0]))
if tag != self.__class__.__name__:
raise TypeError('Type mismatch: %s vs %s' %\
(self.__class__.__name__, tag))
(length, size) = self.decode_length(input[1:])
if len(input) < length:
raise UnderRun('Short input')
self.update(self._decode(input[1+size:1+size+length]))
return (self.value, input[1+size+length:])
except AttributeError:
raise TypeError('No decoder defined for %s object' %\
self.__class__.__name__)
except StandardError, why:
raise BadEncoding('Decoder failure (bad input?): '\
+ str(why))
class INTEGER(ASN1OBJECT):
"""An ASN.1, indefinite length integer object
"""
def _encode(self):
"""
_encode() -> octet stream
Encode tagged integer into octet stream.
"""
value = self.value
octets = []
while 1:
octets.insert(0, value & 0xff)
if value == 0 or value == -1:
break
value = value >> 8
if value == 0 and octets[0] & 0x80:
octets.insert(0, 0)
while len(octets) > 1 and \
(octets[0] == 0 and octets[1] & 0x80 == 0 or \
octets[0] == 0xff and octets[1] & 0x80 != 0):
del octets[0]
return string.join(map(chr, octets), '')
def _decode(self, input):
"""
_decode(input)
Decode octet stream into signed ASN.1 integer (of any length).
"""
octets = map(ord, input)
if octets[0] & 0x80:
value = -1L
else:
value = 0L
for octet in octets:
value = value << 8 | octet
try:
return int(value)
except OverflowError:
return value
class UNSIGNED32(INTEGER):
"""ASN.1 UNSIGNED32 object
"""
def _range(self, value):
"""
"""
return value < 0 or value & ~0xffffffffL
class TIMETICKS(UNSIGNED32):
"""ASN.1 TIMETICKS object
"""
pass
class UPTIME(UNSIGNED32):
"""ASN.1 UPTIME object
"""
pass
class COUNTER32(UNSIGNED32):
"""ASN.1 COUNTER32 object
"""
pass
class GAUGE32(UNSIGNED32):
"""ASN.1 GAUGE32 object
"""
pass
class COUNTER64(UNSIGNED32):
"""ASN.1 COUNTER64 object
"""
def _range(self, value):
"""
"""
return value < 0 or value & ~0xffffffffffffffffL
class SEQUENCE(ASN1OBJECT):
"""ASN.1 sequence object
"""
def _encode(self):
"""
_encode() -> octet stream
Encode ASN.1 sequence (specified as string) into octet
string.
"""
if self.value is None:
return ''
return self.value
def _decode(self, input):
"""
_decode(input)
Decode octet stream into ASN.1 sequence.
"""
return input
class OPAQUE(SEQUENCE):
"""ASN.1 opaque object
"""
pass
class OCTETSTRING(SEQUENCE):
"""ASN.1 octet string object
"""
pass
class OBJECTID(ASN1OBJECT):
"""ASN.1 Object ID object (taken and returned as string in conventional
"dotted" representation)
"""
def _encode(self):
"""
_encode() -> octet stream
Encode ASN.1 Object ID into octet stream.
"""
# Turn string type Object ID into numeric representation
oid = self.str2num(self.value)
# Make sure the Object ID is long enough
if len(oid) < 2:
raise BadArgument('Short Object ID: ' + str(oid))
# Build the first twos
index = 0
result = oid[index] * 40
result = result + oid[index+1]
try:
result = [ '%c' % int(result) ]
except OverflowError:
raise BadArgument('Too large initial sub-IDs: ' + str(oid[index:]))
# Setup index
index = index + 2
# Cycle through subids
for subid in oid[index:]:
if subid > -1 and subid < 128:
# Optimize for the common case
result.append('%c' % (subid & 0x7f))
elif subid < 0 or subid > 0xFFFFFFFFL:
raise BadArgument('Too large Sub-Object ID: ' + str(subid))
else:
# Pack large Sub-Object IDs
res = [ '%c' % (subid & 0x7f) ]
subid = subid >> 7
while subid > 0:
res.insert(0, '%c' % (0x80 | (subid & 0x7f)))
subid = subid >> 7
# Convert packed Sub-Object ID to string and add packed
# it to resulted Object ID
result.append(string.join(res, ''))
# Convert BER encoded Object ID to string and return
return string.join(result, '')
def _decode(self, input):
"""
_decode(input)
Decode octet stream into ASN.1 Object ID
"""
oid = []
index = 0
# Get the first subid
subid = ord(input[index])
oid.append(int(subid / 40))
oid.append(int(subid % 40))
index = index + 1
# Loop through the rest
while index < len(input):
# Get a subid
subid = ord(input[index])
if subid < 128:
oid.append(subid)
index = index + 1
else:
# Construct subid from a number of octets
next = subid
subid = 0
while next >= 128:
# Collect subid
subid = (subid << 7) + (next & 0x7F)
# Take next octet
index = index + 1
next = ord(input[index])
# Just for sure
if index > len(input):
raise BadArgument('Malformed sub-Object ID')
# Append a subid to oid list
subid = (subid << 7) + next
oid.append(subid)
index = index + 1
# Turn numeric Object ID into string representation
return self.num2str(oid)
def _cmp(self, other):
"""
"""
return cmp(self.str2num(self.value), self.str2num(other()))
def isaprefix(self, other):
"""
isaprefix(other) -> boolean
Compare our own OID with the other one (given as a string),
return non-None if ours is a prefix of the other OID.
This is intended to be used for MIB tables retrieval.
"""
# Convert into numeric
value = self.str2num(self.value)
ovalue = self.str2num(other)
# Pick the shortest oid
if len(value) <= len(ovalue):
# Get the length
length = len(value)
# Compare oid'es
if value[:length] == ovalue[:length]:
return not None
# Our OID turned to be greater than the other
return None
def str2num(self, soid):
"""
str2num(soid) -> noid
Convert Object ID "soid" presented in a dotted form into an
Object ID "noid" represented as a list of numeric sub-ID's.
"""
# Convert string into a list and filter out empty members
# (leading dot causes this)
try:
toid = filter(lambda x: len(x), string.split(soid, '.'))
except:
raise BadArgument('Malformed Object ID: ' + str(soid))
# Convert a list of symbols into a list of numbers
try:
noid = map(lambda x: string.atol(x), toid)
except:
raise BadArgument('Malformed Object ID: ' + str(soid))
if not noid:
raise BadArgument('Empty Object ID: ' + str(soid))
return noid
def num2str(self, noid):
"""
num2str(noid) -> snoid
Convert Object ID "noid" presented as a list of numeric
sub-ID's into Object ID "soid" in dotted notation.
"""
if not noid:
raise BadArgument('Empty numeric Object ID')
# Convert a list of number into a list of symbols and merge all
# list members into a string
try:
soid = reduce(lambda x, y: x+y,\
map(lambda x: '.%lu' % x, noid))
except:
raise BadArgument('Malformed numeric Object ID: '+ str(noid))
if not soid:
raise BadArgument('Empty numeric Object ID: ' + str(noid))
return soid
class IPADDRESS(ASN1OBJECT):
"""ASN.1 IP address object (taken and returned as string in conventional
"dotted" representation)
"""
def _encode(self):
"""
_encode() -> octet stream
Encode ASN.1 IP address into octet stream.
"""
# Assume address is given in dotted notation
try:
packed = string.split(self.value, '.')
except:
raise BadArgument('Malformed IP address: '+ str(self.value))
# Make sure it is four octets length
if len(packed) != 4:
raise BadArgument('Malformed IP address: '+ str(self.value))
# Convert string octets into integer counterparts
# (this is still not immune to octet overflow)
try:
packed = map(lambda x: string.atoi (x), packed)
except string.atoi_error:
raise BadArgument('Malformed IP address: '+ str(self.value))
# Build a result
result = '%c%c%c%c' % (packed[0], packed[1],\
packed[2], packed[3])
# Return encoded result
return result
def _decode(self, input):
"""
_decode(input)
Decode octet stream into ASN.1 IP address
"""
if len(input) != 4:
raise BadEncoding('Malformed IP address: '+ str(input))
return '%d.%d.%d.%d' % \
(ord(input[0]), ord(input[1]), \
ord(input[2]), ord(input[3]))
class NULL(ASN1OBJECT):
"""ASN.1 NULL object
"""
def _encode(self):
"""
_encode() -> octet stream
Encode ASN.1 NULL object into octet stream.
"""
return ''
def _decode(self, input):
"""
_decode(input)
Decode octet stream into ASN.1 IP address
"""
if input:
raise BadEncoding('Non-empty NULL value: %s' % str(input))
return ''
def _range(self, value):
"""
"""
return value
class noSuchObject(NULL):
"""SNMP v.2 noSuchObject exception
"""
pass
class noSuchInstance(NULL):
"""SNMP v.2 noSuchInstance exception
"""
pass
class endOfMibView(NULL):
"""SNMP v.2 endOfMibView exception
"""
pass
#
# BER data stream decoder
#
def decode(input):
"""
decode(input) -> (asn1, rest)
Decode input octet stream (string) into ASN.1 object and return
the rest of input (string).
"""
tag = BERHEADER().decode_tag(ord(input[0]))
try:
object = eval(tag + '()')
return (object, object.decode(input)[1])
except NameError, why:
raise UnknownTag('Unsuppored ASN.1 data type: %s' % tag)
except StandardError, why:
raise BadEncoding('Decoder failure (bad input?): ' + str(why))
|