forked from farrokhi/pyprotosim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libDiameter.py
838 lines (762 loc) · 27.5 KB
/
libDiameter.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
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
#!/usr/bin/env python
##################################################################
# Copyright (c) 2012, Sergej Srepfler <[email protected]>
# February 2012 - Nov 2012
# Version 0.3.1, Last change on Nov 17, 2012
# This software is distributed under the terms of BSD license.
##################################################################
# All functions needed to build/decode diameter messages
import xml.dom.minidom as minidom
import struct
import codecs
import socket
import sys
import logging
import time
import string
# Diameter Header fields
DIAMETER_FLAG_MANDATORY = 0x40
DIAMETER_FLAG_VENDOR = 0x80
DIAMETER_HDR_REQUEST = 0x80
DIAMETER_HDR_PROXIABLE = 0x40
DIAMETER_HDR_ERROR = 0x20
DIAMETER_HDR_RETRANSMIT = 0x10
# Include common routines for all modules
ERROR = -1
# Hopefully let's keep dictionary definition compatibile
class AVPItem:
def __init__(self):
self.code=0
self.name=""
self.vendor=0
self.type=""
self.mandatory=""
class HDRItem:
def __init__(self):
self.ver=0
self.flags=0
self.len=0
self.cmd=0
self.appId=0
self.HobByHop=0
self.EndToEnd=0
self.msg=""
#----------------------------------------------------------------------
utf8encoder=codecs.getencoder("utf_8")
utf8decoder=codecs.getdecoder("utf_8")
#----------------------------------------------------------------------
# Dictionary routines
# Load simplified dictionary from <file>
def LoadDictionary(file):
global dict_avps
global dict_vendors
global dict_commands
global asString
global asUTF8
global asU32
global asI32
global asU64
global asI64
global asF32
global asF64
global asIPAddress
global asIP
global asTime
doc = minidom.parse(file)
node = doc.documentElement
dict_avps = doc.getElementsByTagName("avp")
dict_vendors = doc.getElementsByTagName("vendor")
dict_commands=doc.getElementsByTagName("command")
# Now lets process typedefs
asString=["OctetString"]
asUTF8=["UTF8String"]
asI32=["Integer32"]
asU32=["Unsigned32"]
asF32=["Float32"]
asI64=["Integer64"]
asU64=["Unsigned64"]
asF64=["Float64"]
asIPAddress=["IPAddress"]
asIP=["IP"]
asTime=["Time"]
dict_typedefs=doc.getElementsByTagName("typedef")
for td in dict_typedefs:
tName=td.getAttribute("name")
tType=td.getAttribute("type")
if tType in asString:
asString.append(tName)
if tType in asUTF8:
asUTF8.append(tName)
if tType in asU32:
asU32.append(tName)
if tType in asI32:
asI32.append(tName)
if tType in asI64:
asI64.append(tName)
if tType in asU64:
asU64.append(tName)
if tType in asF32:
asF32.append(tName)
if tType in asF64:
asF64.append(tName)
if tType in asIPAddress:
asIPAddress.append(tName)
if tType in asIP:
asIP.append(tName)
if tType in asTime:
asTime.append(tName)
# Find AVP definition in dictionary: User-Name->1
# on finish A contains all data
def dictAVPname2code(A,avpname,avpvalue):
global dict_avps
dbg="Searching dictionary for N",avpname,"V",avpvalue
logging.debug(dbg)
for avp in dict_avps:
A.name = avp.getAttribute("name")
A.code = avp.getAttribute("code")
A.mandatory=avp.getAttribute("mandatory")
A.type = avp.getAttribute("type")
vId = avp.getAttribute("vendor-id")
if avpname==A.name:
if vId=="":
A.vendor=0
else:
A.vendor=dictVENDORid2code(vId)
return
dbg="Searching dictionary failed for N",avpname,"V",avpvalue
bailOut(dbg)
# Find AVP definition in dictionary: 1->User-Name
# on finish A contains all data
def dictAVPcode2name(A,avpcode,vendorcode):
global dict_avps
dbg="Searching dictionary for ","C",avpcode,"V",vendorcode
logging.debug(dbg)
A.vendor=dictVENDORcode2id(int(vendorcode))
for avp in dict_avps:
A.name = avp.getAttribute("name")
A.type = avp.getAttribute("type")
A.code = int(avp.getAttribute("code"))
A.mandatory=avp.getAttribute("mandatory")
vId = avp.getAttribute("vendor-id")
if int(avpcode)==A.code:
if vId=="":
vId="None"
if vId==A.vendor:
return
logging.info("Unsuccessful search")
A.code=avpcode
A.name="Unknown Attr-"+str(A.code)+" (Vendor:"+A.vendor+")"
A.type="OctetString"
return
# Find Vendor definition in dictionary: 10415->TGPP
def dictVENDORcode2id(code):
global dict_vendors
dbg="Searching Vendor dictionary for C",code
logging.debug(dbg)
for vendor in dict_vendors:
vCode=vendor.getAttribute("code")
vId=vendor.getAttribute("vendor-id")
if code==int(vCode):
return vId
dbg="Searching Vendor dictionary failed for C",code
bailOut(dbg)
# Find Vendor definition in dictionary: TGPP->10415
def dictVENDORid2code(vendor_id):
global dict_vendors
dbg="Searching Vendor dictionary for V",vendor_id
logging.debug(dbg)
for vendor in dict_vendors:
Code=vendor.getAttribute("code")
vId=vendor.getAttribute("vendor-id")
if vendor_id==vId:
return int(Code)
dbg="Searching Vendor dictionary failed for V",vendor_id
bailOut(dbg)
# Find Command definition in dictionary: Capabilities-Exchange->257
def dictCOMMANDname2code(name):
global dict_commands
for command in dict_commands:
cName=command.getAttribute("name")
cCode=command.getAttribute("code")
if cName==name:
return int(cCode)
dbg="Searching CMD dictionary failed for N",name
bailOut(dbg)
# Find Command definition in dictionary: 257->Capabilities-Exchange
def dictCOMMANDcode2name(flags,code):
global dict_commands
cmd=ERROR
for command in dict_commands:
cName=command.getAttribute("name")
cCode=command.getAttribute("code")
if code==int(cCode):
cmd=cName
if cmd==ERROR:
return cmd
if flags&DIAMETER_HDR_REQUEST==DIAMETER_HDR_REQUEST:
dbg=cmd+" Request"
else:
dbg=cmd+" Answer"
return dbg
#----------------------------------------------------------------------
# These are defined on Unix python.socket, but not on Windows
# Pack/Unpack IP address
def inet_pton(address_family, ip_string):
#Convert an IP address from text represenation to binary form
if address_family == socket.AF_INET:
return socket.inet_aton(ip_string)
elif address_family == socket.AF_INET6:
# IPv6: The use of "::" indicates one or more groups of 16 bits of zeros.
# We deal with this form of wildcard using a special marker.
JOKER = "*"
while "::" in ip_string:
ip_string = ip_string.replace("::", ":" + JOKER + ":")
joker_pos = None
# The last part of an IPv6 address can be an IPv4 address
ipv4_addr = None
if "." in ip_string:
ipv4_addr = ip_string.split(":")[-1]
result = ""
parts = ip_string.split(":")
for part in parts:
if part == JOKER:
# Wildcard is only allowed once
if joker_pos is None:
joker_pos = len(result)
else:
bailOut("Illegal syntax for IP address")
elif part == ipv4_addr:
# FIXME: Make sure IPv4 can only be last part
# FIXME: inet_aton allows IPv4 addresses with less than 4 octets
result += socket.inet_aton(ipv4_addr)
else:
# Each part must be 16bit. Add missing zeroes before decoding.
try:
result += part.rjust(4, "0").decode("hex")
except TypeError:
bailOut("Illegal syntax for IP address")
# If there's a wildcard, fill up with zeros to reach 128bit (16 bytes)
if JOKER in ip_string:
result = (result[:joker_pos] + "\x00" * (16 - len(result))
+ result[joker_pos:])
if len(result) != 16:
bailOut("Illegal syntax for IP address")
return result
else:
bailOut("Address family not supported")
def inet_ntop(address_family, packed_ip):
#Convert an IP address from binary form into text represenation
if address_family == socket.AF_INET:
return socket.inet_ntoa(packed_ip)
elif address_family == socket.AF_INET6:
# IPv6 addresses have 128bits (16 bytes)
if len(packed_ip) != 16:
bailOut("Illegal syntax for IP address")
parts = []
for left in [0, 2, 4, 6, 8, 10, 12, 14]:
try:
value = struct.unpack("!H", packed_ip[left:left+2])[0]
hexstr = hex(value)[2:]
except TypeError:
bailOut("Illegal syntax for IP address")
parts.append(hexstr.lstrip("0").lower())
result = ":".join(parts)
while ":::" in result:
result = result.replace(":::", "::")
# Leaving out leading and trailing zeros is only allowed with ::
if result.endswith(":") and not result.endswith("::"):
result = result + "0"
if result.startswith(":") and not result.startswith("::"):
result = "0" + result
return result
else:
bailOut("Address family not supported yet")
#Pack IP address
def pack_address(address):
# This has issue on Windows platform
# addrs=socket.getaddrinfo(address, None)
# This is NOT a proper code, but it will do for now
# unfortunately, getaddrinfo does not work on windows with IPv6
if address.find('.')!=ERROR:
raw = inet_pton(socket.AF_INET,address);
d=struct.pack('!h4s',1,raw)
return d
if address.find(':')!=ERROR:
raw = inet_pton(socket.AF_INET6,address);
d=struct.pack('!h16s',2,raw)
return d
dbg='Malformed IP'
bailOut(dbg)
#----------------------------------------------------------------------
#
# Decoding section
#
def decode_Integer32(data):
ret=struct.unpack("!I",data.decode("hex"))[0]
return int(ret)
def decode_Integer64(data):
ret=struct.unpack("!Q",data.decode("hex"))[0]
return int(ret)
def decode_Unsigned32(data):
ret=struct.unpack("!I",data.decode("hex"))[0]
return int(ret)
def decode_Unsigned64(data):
ret=struct.unpack("!Q",data.decode("hex"))[0]
return int(ret)
def decode_Float32(data):
ret=struct.unpack("!f",data.decode("hex"))[0]
return ret
def decode_Float64(data):
ret=struct.unpack("!d",data.decode("hex"))[0]
return ret
def decode_Address(data):
if len(data)<=16:
data=data[4:12]
ret=inet_ntop(socket.AF_INET,data.decode("hex"))
else:
data=data[4:36]
ret=inet_ntop(socket.AF_INET6,data.decode("hex"))
return ret
def decode_IP(data):
if len(data)<=16:
ret=inet_ntop(socket.AF_INET,data.decode("hex"))
else:
ret=inet_ntop(socket.AF_INET6,data.decode("hex"))
return ret
def decode_OctetString(data,dlen):
fs="!"+str(dlen-8)+"s"
dbg="Deconding String with format:",fs
logging.debug(dbg)
ret=struct.unpack(fs,data.decode("hex")[0:dlen-8])[0]
return ret
#Hex Comments
#0x00..0x7F Only byte of a 1-byte character encoding
#0x80..0xBF Continuation characters (1-3 continuation characters)
#0xC0..0xDF First byte of a 2-byte character encoding
#0xE0..0xEF First byte of a 3-byte character encoding
#0xF0..0xF4 First byte of a 4-byte character encoding
#Note:0xF5-0xFF cannot occur
def decode_UTF8String(data,dlen):
fs="!"+str(dlen-8)+"s"
dbg="Decoding UTF8 format:",fs
logging.debug(dbg)
ret=struct.unpack(fs,data.decode("hex")[0:dlen-8])[0]
utf8=utf8decoder(ret)
return utf8[0]
def decode_Grouped(data):
dbg="Decoding Grouped:"
ret=[]
for gmsg in splitMsgAVPs(data):
ret.append(decodeAVP(gmsg))
return ret
#AVP_Time contains a second count since 1900
def decode_Time(data):
seconds_between_1900_and_1970 = ((70*365)+17)*86400
ret=struct.unpack("!I",data.decode("hex"))[0]
return int(ret)-seconds_between_1900_and_1970
#----------------------------------------------------------------------
# Quit program with error
def bailOut(msg):
logging.error(msg)
sys.exit(1)
#Split message into parts (remove field from remaining body)
def chop_msg(msg,size):
return (msg[0:size],msg[size:])
#----------------------------------------------------------------------
# 0 1 2 3
# 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | AVP Code |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# |V M P r r r r r| AVP Length |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Vendor-ID (opt) |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Data ...
# +-+-+-+-+-+-+-+-+
# Common finish routine for all encoded AVPs
# Result is properly encoded AVP as hex string (padding is added separately)
def encode_finish(A,flags,pktlen,data):
ret=data
if A.vendor!=0:
ret=("%08X" % int(A.vendor)) + ret
flags|=DIAMETER_FLAG_VENDOR
pktlen+=4
dbg="Packing","C:",A.code,"F:",flags,"V:",A.vendor,"L:",pktlen,"D:",ret
logging.debug(dbg)
ret=("%08X"%int(A.code))+("%02X"%int(flags))+("%06X"%pktlen)+ret
return ret
def encode_OctetString(A,flags,data):
fs="!"+str(len(data))+"s"
dbg="Encoding String format:",fs
logging.debug(dbg)
ret=struct.pack(fs,data).encode("hex")
pktlen=8+len(ret)/2
return encode_finish(A,flags,pktlen,ret)
def encode_UTF8String(A,flags,data):
utf8data=utf8encoder(data)[0]
fs="!"+str(len(utf8data))+"s"
dbg="Encoding UTF8",utf8data,"L",len(utf8data),"F",fs
logging.debug(dbg)
ret=struct.pack(fs,utf8data).encode("hex")
pktlen=8+len(ret)/2
return encode_finish(A,flags,pktlen,ret)
def encode_Integer32(A,flags,data):
r=struct.pack("!I",data)
ret=r.encode("hex")
pktlen=12
return encode_finish(A,flags,pktlen,ret)
def encode_Unsigned32(A,flags,data):
r=struct.pack("!I",int(data))
ret=r.encode("hex")
pktlen=12
return encode_finish(A,flags,pktlen,ret)
def encode_Float32(A,flags,data):
ret=struct.pack("!f",data).encode("hex")
pktlen=12
return encode_finish(A,flags,pktlen,ret)
def encode_Integer64(A,flags,data):
ret=struct.pack("!Q",data).encode("hex")
pktlen=16
return encode_finish(A,flags,pktlen,ret)
def encode_Unsigned64(A,flags,data):
ret=struct.pack("!Q",data).encode("hex")
pktlen=16
return encode_finish(A,flags,pktlen,ret)
def encode_Float64(A,flags,data):
ret=struct.pack("!d",data).encode("hex")
pktlen=16
return encode_finish(A,flags,pktlen,ret)
def encode_Address(A,flags,data):
ret=pack_address(data).encode("hex")
pktlen=8+len(ret)/2
return encode_finish(A,flags,pktlen,ret)
def encode_IP(A,flags,data):
ret=pack_address(data).encode("hex")[4:]
pktlen=8+len(ret)/2
return encode_finish(A,flags,pktlen,ret)
def encode_Enumerated(A,flags,data):
global dict_avps
if isinstance(data,str):
# Replace with enum code value
for avp in dict_avps:
Name = avp.getAttribute("name")
if Name==A.name:
for e in avp.getElementsByTagName("enum"):
if data==e.getAttribute("name"):
return encode_Integer32(A,flags,int(e.getAttribute("code")))
dbg="Enum name=",data,"not found for AVP",A.name
bailOut(dbg)
else:
return encode_Integer32(A,flags,data)
#AVP_Time contains a second count since 1900
#But unix counts time from EPOCH (1.1.1970)
def encode_Time(A,flags,data):
seconds_between_1900_and_1970 = ((70*365)+17)*86400
r=struct.pack("!I",data+seconds_between_1900_and_1970)
ret=r.encode("hex")
pktlen=12
return encode_finish(A,flags,pktlen,ret)
#----------------------------------------------------------------------
#Set mandatory flag as specified in dictionary
def checkMandatory(mandatory):
flags=0
if mandatory=="must":
flags|=DIAMETER_FLAG_MANDATORY
return flags
def do_encode(A,flags,data):
if A.type in asUTF8:
return encode_UTF8String(A,flags,data)
if A.type in asI32:
return encode_Integer32(A,flags,data)
if A.type in asU32:
return encode_Unsigned32(A,flags,data)
if A.type in asI64:
return encode_Integer64(A,flags,data)
if A.type in asU64:
return encode_Unsigned64(A,flags,data)
if A.type in asF32:
return encode_Float32(A,flags,data)
if A.type in asF64:
return encode_Float64(A,flags,data)
if A.type in asIPAddress:
return encode_Address(A,flags,data)
if A.type in asIP:
return encode_IP(A,flags,data)
if A.type in asTime:
return encode_Time(A,flags,data)
if A.type=="Enumerated":
return encode_Enumerated(A,flags,data)
# default is OctetString
return encode_OctetString(A,flags,data)
# Find AVP Definition in dictionary and encode it
def getAVPDef(AVP_Name,AVP_Value):
A=AVPItem()
dictAVPname2code(A,AVP_Name,AVP_Value)
if A.name=="":
logging.error("AVP with that name not found")
return ""
if A.code==0:
logging.error("AVP Code not found")
return ""
if A.type=="":
logging.error("AVP type not defined")
return ""
if A.vendor<0:
logging.error("Vendor ID does not match")
return ""
else:
data=AVP_Value
dbg="AVP dictionary def","N",A.name,"C",A.code,"M",A.mandatory,"T",A.type,"V",A.vendor,"D",data
logging.debug(dbg)
flags=checkMandatory(A.mandatory)
return do_encode(A,flags,data)
################################
# Main encoding routine
def encodeAVP(AVP_Name,AVP_Value):
if type(AVP_Value).__name__=='list':
p=''
for x in AVP_Value:
while len(x)/2<calc_padding(len(x)/2):
x=x+'00'
p=p+x
msg=getAVPDef(AVP_Name,p.decode("hex"))
else:
msg=getAVPDef(AVP_Name,AVP_Value)
dbg="AVP",AVP_Name,AVP_Value,"Encoded as:",msg
logging.info(dbg)
return msg
# Calculate message padding
def calc_padding(msg_len):
return (msg_len+3)&~3
#----------------------------------------------------------------------
################################
# Main decoding routine
# Input: single AVP as HEX string
def decodeAVP(msg):
(scode,msg)=chop_msg(msg,8)
(sflag,msg)=chop_msg(msg,2)
(slen,msg)=chop_msg(msg,6)
dbg="Decoding ","C",scode,"F",sflag,"L",slen,"D",msg
logging.debug(dbg)
mcode=struct.unpack("!I",scode.decode("hex"))[0]
mflags=ord(sflag.decode("hex"))
data_len=struct.unpack("!I","\00"+slen.decode("hex"))[0]
mvid=0
if mflags & DIAMETER_FLAG_VENDOR:
(svid,msg)=chop_msg(msg,8)
mvid=struct.unpack("!I",svid.decode("hex"))[0]
data_len-=4
A=AVPItem()
dictAVPcode2name(A,mcode,mvid)
dbg="Read","N",A.name,"T",A.type,"C",A.code,"F",mflags,"L",data_len,"V",A.vendor,mvid,"D",msg
logging.debug(dbg)
ret=""
decoded=False
if A.type in asI32:
logging.debug("Decoding Integer32")
ret= decode_Integer32(msg)
decoded=True
if A.type in asI64:
decoded=True
logging.debug("Decoding Integer64")
ret= decode_Integer64(msg)
if A.type in asU32:
decoded=True
logging.debug("Decoding Unsigned32")
ret= decode_Unsigned32(msg)
if A.type in asU64:
decoded=True
logging.debug("Decoding Unsigned64")
ret= decode_Unsigned64(msg)
if A.type in asF32:
decoded=True
logging.debug("Decoding Float32")
ret= decode_Float32(msg)
if A.type in asF64:
decoded=True
logging.debug("Decoding Float64")
ret= decode_Float64(msg)
if A.type in asUTF8:
decoded=True
logging.debug("Decoding UTF8String")
ret= decode_UTF8String(msg,data_len)
if A.type in asIPAddress:
decoded=True
logging.debug("Decoding IPAddress")
ret= decode_Address(msg)
if A.type in asIP:
decoded=True
logging.debug("Decoding IP")
ret= decode_IP(msg)
if A.type in asTime:
decoded=True
logging.debug("Decoding Time")
ret= decode_Time(msg)
if A.type=="Grouped":
decoded=True
logging.debug("Decoding Grouped")
ret= decode_Grouped(msg)
if not decoded:
# default is OctetString
logging.debug("Decoding OctetString")
ret= decode_OctetString(msg,data_len)
dbg="Decoded as",A.name,ret
logging.info(dbg)
return (A.name,ret)
# Search for AVP in undecoded list
# Return value if exist, ERROR if not
def findAVP(what,list):
for avp in list:
if isinstance(avp,tuple):
(Name,Value)=avp
else:
(Name,Value)=decodeAVP(avp)
if Name==what:
return Value
return ERROR
#----------------------------------------------------------------------
# 0 1 2 3
# 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Version | Message Length |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | command flags | Command-Code |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Application-ID |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Hop-by-Hop Identifier |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | End-to-End Identifier |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | AVPs ...
# +-+-+-+-+-+-+-+-+-+-+-+-+-
# Join AVPs (add padding)
def joinAVPs(avps):
data=""
for avp in avps:
while len(avp)/2<calc_padding(len(avp)/2):
avp=avp+"00"
data=data+avp
return data
# Set flags to desired state
def setFlags(H,flag):
H.flags|=flag
return
# Create diameter Request from <avps> and fields from Header H
def createReq(H,avps):
H.flags|=DIAMETER_HDR_REQUEST
return createRes(H,avps)
# Create diameter Response from <avps> and fields from Header H
def createRes(H,avps):
# first add all avps into single string
data=joinAVPs(avps)
# since all data is hex ecoded, divide by 2 and add header length
H.len=len(data)/2+20
ret="01"+"%06X" % H.len+"%02X"%int(H.flags) + "%06X"%int(H.cmd)
ret=ret+"%08X"%H.appId+"%08X"%H.HopByHop+ "%08X"%H.EndToEnd+data
dbg="Header fields","L",H.len,"F",H.flags,"C",H.cmd,"A",H.appId,"H",H.HopByHop,"E",H.EndToEnd
logging.debug(dbg)
dbg="Diameter hdr+data",ret
logging.debug(dbg)
return ret
# Set Hop-by-Hop and End-to-End fields to sane values
def initializeHops(H):
# Not by RFC, but close enough
try:
initializeHops.Hop_by_Hop+=1
initializeHops.End_to_End+=1
except:
initializeHops.Hop_by_Hop=int(time.time())
initializeHops.End_to_End=(initializeHops.Hop_by_Hop%32768)*32768
H.HopByHop=initializeHops.Hop_by_Hop
H.EndToEnd=initializeHops.End_to_End
return
#----------------------------------------------------------------------
# Main message decoding routine
# Input: diameter message as HEX string
# Result: class H with splitted message (header+message)
# AVPs in message are NOT splitted
def stripHdr(H,msg):
dbg="Incoming Diameter msg",msg
logging.info(dbg)
if len(msg)==0:
return ERROR
(sver,msg)=chop_msg(msg,2)
(slen,msg)=chop_msg(msg,6)
(sflag,msg)=chop_msg(msg,2)
(scode,msg)=chop_msg(msg,6)
(sapp,msg)=chop_msg(msg,8)
(shbh,msg)=chop_msg(msg,8)
(sete,msg)=chop_msg(msg,8)
dbg="Split hdr","V",sver,"L",slen,"F",sflag,"C",scode,"A",sapp,"H",shbh,"E",sete,"D",msg
logging.debug(dbg)
H.ver=ord(sver.decode("hex"))
H.flags=ord(sflag.decode("hex"))
H.len=struct.unpack("!I","\00"+slen.decode("hex"))[0]
H.cmd=struct.unpack("!I","\00"+scode.decode("hex"))[0]
H.appId=struct.unpack("!I",sapp.decode("hex"))[0]
H.HopByHop=struct.unpack("!I",shbh.decode("hex"))[0]
H.EndToEnd=struct.unpack("!I",sete.decode("hex"))[0]
dbg="Read","V",H.ver,"L",H.len,"F",H.flags,"C",H.cmd,"A",H.appId,"H",H.HopByHop,"E",H.EndToEnd
logging.debug(dbg)
dbg=dictCOMMANDcode2name(H.flags,H.cmd)
logging.info(dbg)
H.msg=msg
return
# Split AVPs from message
# Input: H.msg as hex string
# Result: list of undecoded AVPs
def splitMsgAVPs(msg):
ret=[]
dbg="Incoming avps",msg
logging.debug(dbg)
while len(msg)<>0:
slen="00"+msg[10:16]
mlen=struct.unpack("!I",slen.decode("hex"))[0]
#Increase to boundary
plen=calc_padding(mlen)
(avp,msg)=chop_msg(msg,2*plen)
dbg="Single AVP","L",mlen,plen,"D",avp
logging.info(dbg)
ret.append(avp)
return ret
#----------------------------------------------------------------------
# Connect to host:port (TCP)
def Connect(host,port):
# Create a socket (SOCK_STREAM means a TCP socket)
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect((host, port))
return sock
#----------------------------------------------------------------------
# DateTime routines
def getCurrentDateTime():
t=time.localtime()
return t.tm_year,t.tm_mon,t.tm_mday,t.tm_hour,t.tm_min,t.tm_sec
# converts seconds since epoch to date
def epoch2date(sec):
t=time.localtime(sec)
return t.tm_year,t.tm_mon,t.tm_mday,t.tm_hour,t.tm_min,t.tm_sec
# converts to seconds since epoch
def date2epoch(tYear,tMon,tDate,tHr,tMin,tSec):
t=time.strptime("{0} {1} {2} {3} {4} {5}".format(tYear,tMon,tDate,tHr,tMin,tSec),"%Y %m %d %H %M %S")
return time.mktime(t)
######################################################
# History
# Ver 0.1 - Feb 06, 2012 - initial version
# Ver 0.1.1 - Feb 07, 2012 - commands moved into dictionary
# Ver 0.1.2 - Feb 11, 2012 - internal reorganization, code cleanup
# Ver 0.2.0 - Feb 17, 2012 - EAP-Payload decoder
# Ver 0.2.1 - Feb 19, 2012 - EAP-Payload + AKA/AKA' C calculations
# Ver 0.2.2 - Feb 23, 2012 - Testing client AKA/AKA'
# Ver 0.2.3 - Feb 25, 2012 - Multiple bugfixes, logging
# Ver 0.2.4 - Mar 05, 2012 - Simplified dictionary, AVP types in sets
# Ver 0.2.5 - Mar 14, 2012 - Windows support (socket.inet_ntop, inet_pton)
# Ver 0.2.6 - Mar 18, 2012 - inet_ntop&pton now supports IPv6 on all platforms
# Ver 0.2.7 - May 12, 2012 - Grouped, Float support
# Ver 0.2.8 - May 25, 2012 - EAP functions moved to separate source
# Ver 0.3.1 - Nov 12, 2012 - bugfix in encoding grouped list (fixed wrong length)
# - ipv6 encoding bugfix, comments added
# - logging levels modified, Time support added
# - Enumerated now supports named values
# - Fixed IP handling (now supports IP & IPAddress packing)