lmangani / cap2wei

Simple scripts to convert HUAWEI TMF/PTMF traces to PCAP / CLEAR LOGs
MIT License
4 stars 8 forks source link

Can't convert .ptmf file to .pcap -ptmf2pcap.pl #1

Open ialmahi opened 8 years ago

ialmahi commented 8 years ago

I'm PS core engineer and we use Huawei equipments, it has been a while looking for a way to decode their PTMF/TMF traces to PCAP. i tried to use your ptmf2pcap script to convert the trace in centos 6.4 machine.

I have installed Perl and it's module, however, when i run ./ptmf2pcap cdr.ptmf i got the below error: "Parsing & Converting records.... [.........................................................................mergecap: Can't open /tmp/cdr-tmp/pt*.pcap: No such file or directory ]

Done!

" Below is the ptmf2pcap script: (

!/usr/bin/perl

App: ptmf2pcap

Version: 0.2b (28/11/2014)

Author: L. Mangani, C. Mangani

Description: Script to convert HUAWEI PTMF binary trace to PCAP & Clear TEXT

==========================================================================

The MIT License (MIT) Copyright © 2014 Lorenzo Mangani, Celeste Mangani

Permission is hereby granted, free of charge, to any person obtaining a copy of this

software and associated documentation files (the “Software”), to deal in the Software

without restriction, including without limitation the rights to use, copy, modify, merge,

publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons

to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies

or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,

INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR

PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE

FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,

ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

==========================================================================

ALPHA STATUS & UNTESTED! USE AT YOUR OWN RISK!

TO-DO:

- Find out what else is the header (protocol type, etc)

use strict; use warnings; use IPC::Cmd qw[can_run run]; use Encode; use Encode::Guess;

print "ptmf2pcap: Convert HUAWEI PTMF Binary to PCAP/PLAINTEXT (alpha) \n\n";

my $full_path = can_run('text2pcap') or warn 'text2pcap is not installed! Please install wireshark \n'; $full_path = can_run('mergecap') or warn 'mergecap is not installed! Please install wireshark \n'; $full_path = can_run('bittwiste') or warn 'bittwiste is not installed! Please install from http://bittwist.sourceforge.net \n';

my $filename = $ARGV[0];

if (@ARGV == 0 || ! $filename =~ /.ptmf$/i || ! -e $filename ) { print "Error: PTMF file not found or invalid!\n"; print "Usage: \n"; print " ./ptmf2pcap.pl {filename.ptmf} \n\n"; exit(); }

my $target = $ARGV[0]; $target =~ s{.[^.]+$}{};

Sanitize and Shrink target

$target =~ tr/a-zA-Z0-9//dc; if (length($target) 20) { $target =~ s/.{20}\K.*//s; }

my $tmp = "/tmp/$target-tmp";

if ( ! -d "$tmp" ) { system("mkdir $tmp"); if ( ! -d "$tmp" ) { print "Failed to create tmp \n"; exit(); } }

system("rm -rf ./$target-ptmf.log");

print "Parsing & Converting records.... \n";

my $hexdata = cat $filename | xxd -p | tr -d '\n';

my $hexdata = cat "$filename";

my $hexdata_pack = unpack "H*", $hexdata;

my @values = split('6d736730', $hexdata_pack); # Msg0

my $count = -1; my $hdr; my $from_ip = ''; my $to_ip = ''; my $from_port = 0; my $to_port = 0; my $ts; my $command; my $t_ms; my $t_ts; my $t_dt; my $t_yr; my $t_tm; my $fragments=0; my $valen=0; my $fcount=0; my $proto=17; my $viaproto='UDP';

foreach my $val (@values) { $count++; $valen = length($val); if ($count = 1 && $valen 194 ) {

print "## RECORD $count\n";

print "## LEN $len\n";

Header

my $head = substr $val, 1,193; if ( $head ) {

Parse Header (reversed, work in progress!)

$hdr = unpack "A*", $head;

print "HDR: $hdr \n";

Parse SRC, DST IPs

$from_ip = substr "$hdr", 107,8; #114,121 $from_ip = join '.', unpack "C", pack "H", $from_ip; $to_ip = substr "$hdr", 145,8; $to_ip = join '.', unpack "C", pack "H", $to_ip;

Parse SRC, DST PORTs

$from_port = substr "$hdr", 141,2; $from_port = "$from_port" . substr "$hdr", 139,2; $from_port = hex($from_port); $to_port = substr "$hdr", 179,2; $to_port = "$to_port" . substr "$hdr", 177,2; $to_port = hex($to_port);

Year

$t_yr = substr "$hdr", 47,4; $t_yr = hex($t_yr);

Date

$t_dt = substr "$hdr", 51,4; $t_dt = join '-', unpack "C", pack "H", $t_dt;

Time chunk

$t_tm = substr "$hdr", 55,6; $t_tm = join ':', unpack "C", pack "H", $t_tm;

Milliseconds chunk

$t_ms = substr "$hdr", 63,8; $t_ms = hex($t_ms);

Assemble %H:%M:%S.

$t_ts = $t_tm.".".$t_ms;

Assemble %Y-%m-%d %H:%M:%S.

$t_ts = $t_yr."-".$t_dt." ".$t_ts;

}

if ($valen 200 ) {

Hex Message, stripped

$val = substr $val, 194;

Check & Strip first pair

my $check = substr $val, 0, 2; $check =~ s/(([0-9a-f][0-9a-f])+)/pack('H*', $1)/ie;

$check =~ s/[^[:ascii:]]//g;

$check =~ s/\x{0001}//g; $check =~ tr/\x{0001}-\x{001f}//d; if ($check eq "" ) {

print "[CHOP]";

$val = substr $val, 2; }

my $log = "$val"; $log =~ s/(([0-9a-f][0-9a-f])+)/pack('H*', $1)/ie;

Remove non-ASCII

$log =~ s/[\x80-\xFF]//g;

$viaproto = $log =~ /Via: SIP\/2.0\/(.*) /g; if ($viaproto eq "UDP") { $proto = 17; } elsif ($viaproto eq "TCP") { $proto = 6; }

my $decoder = guess_encoding($log);

print "DECODER: $decoder \n";

Check if printable, otherwise skip packet

if ( $decoder =~ /Encode::XS=SCALAR/ ) {

if ( $log =~ /[[:alpha:]]/ ) {

HEX Packet

Fix HEX spacing

$val =~ s/[^ ]{2}(?=[^\n ])/$& /g;

Add row header

$val =~ s/^/00000 /;

Inkject TS extracted from header

$val = $t_ts."\n".$val;

print "*";

Write to temp file and send to text2cap

my $filename = $tmp.'/pt'.$count.'.txt'; open(my $fh, '', $filename) or die "Could not open file '$filename' $!"; print $fh $val; close $fh; $fragments++;

$command = "text2pcap -q -t '%Y-%m-%d %H:%M:%S.' -u $from_port,$to_port -i $proto $tmp/pt$count.txt $tmp/pt$count.pcap"; system($command);

if ($from_port 1) { system("bittwiste -I $tmp/pt$count.pcap -O $tmp/pt$count-2.pcap -T ip -s $from_ip /dev/null 2&1"); system("bittwiste -I $tmp/pt$count-2.pcap -O $tmp/pt$count-3.pcap -T ip -d $to_ip /dev/null 2&1");

IBRA system("rm -rf $tmp/pt$count.pcap");

IBRA system("rm -rf $tmp/pt$count-2.pcap");

}

if ( -T "$siplog" ) {

my $filelog = './'.$target.'-ptmf.log';

my $filelog = '/tmp/siplog.log';

open(my $fh2, '', $filelog) or die "Could not open log file '$filename' $!"; print $fh2 "$from_ip:$from_port - $to_ip:$to_port \n"; print $fh2 "$log\n";

print $fh2 $log;

close $fh2;

}

Avoid too many files open, mergedown

if ( $fragments 200 ) { $fragments = 0;

print "\n Too many fragments! Interim merge-down...";

print "[M]";

Merge pcaps

$command = "mergecap -w $tmp/merge-tmp-ptmf.pcap $tmp/pt.pcap"; system($command);

Cleanup

IBRA $command = "rm -rf $tmp/pt.pcap";

system($command);

$fcount = system("ls -afq $tmp | wc -l");

print "\n $fcount files after \n";

system($command); $command = "mv $tmp/merge-tmp-ptmf.pcap $tmp/pt-merged-$count.pcap"; system($command); }

} else { $val = $t_ts."\n"."NULL\n\n"; print ".";

}

}

} else {

Initial Header w/ report date and other useless (?) info

print "["; $ts = substr $val, -32, 32; $ts =~ s/(([0-9a-f][0-9a-f])+)/pack('H*', $1)/ie;

print "\nREPORT DATE: $ts\n";

}

}

Merge pcaps

$command = "mergecap -w $target-ptmf.pcap $tmp/pt*.pcap"; system($command);

Cleanup

$command = "rm -rf $tmp";

system($command);

print "] \n\n";

print "Done!\n\n";

print "Original: $filename \n"; print "PCAP: $target-ptmf.pcap \n"; print "TEXT-Log: $target-ptmf.log \n\n";

exit 0; )

Appreciate your valuable support.

lmangani commented 8 years ago

Hi @ialmahi No need to paste the script as this is its repository. Do you have text2pcap on your system? What should the traces contain? Mind this was only tested with SIP and IMS logs extraction so far.

ialmahi commented 8 years ago

Hi Imangani,

Yes i have text2pcap. The trace contains "PDP Context Activation" requests for 2G and 3G. not SIP nor IMS.

lmangani commented 8 years ago

That explains the results - if you can provide an example packet and an example for the potential contents, we might be able to figure how to extract it.

ialmahi commented 8 years ago

Attached is snapshot of "attach request" packet form Huawei ptmf trace viewer. Attached also is a full trace file. attach packet ARKSGSN_Usn User Trace_2015-12-22-09-41-46.ptmf.gz

byaruhaf commented 8 years ago

Having the Same issue

λ ROVCOS-MBP Bohan → sudo ./ptmf2pcap.pl NormalSMSFlow.ptmf
ptmf2pcap: Convert HUAWEI PTMF Binary to PCAP/PLAINTEXT (alpha)

Parsing & Converting records....
[......mergecap: Can't open /tmp/NormalSMSFlow-tmp/pt*.pcap: No such file or directory (no more information)
]

Done!

Original: NormalSMSFlow.ptmf
PCAP:     NormalSMSFlow-ptmf.pcap
TEXT-Log: NormalSMSFlow-ptmf.log
lmangani commented 8 years ago

Huawei seems to be changing the format on each release without any clear logic, so it's hard to keep up for non-SIP and Log events. Further examples shared here or privately might help attempts in this direction.

byaruhaf commented 8 years ago

Shared privately to your email.

jazst21 commented 6 years ago

.........................................................................................................................mergecap: Can't open /tmp/510101052618479SGBRN-tmp/pt*.pcap: No such file or directory (no more information) ]

Done!

Original: 510101052618479_SGBRN8_TSEL_USN User Trace_2018-03-07-23-48-48.ptmf PCAP: 510101052618479SGBRN-ptmf.pcap TEXT-Log: 510101052618479SGBRN-ptmf.log same issue. this ptmf is for SGSN-MME node. can anyone help with the right ptmf2cap converter ?