#!/usr/local/bin/perl package Net::BitTorrent::PeerPacket; use strict; use warnings; use Carp qw(croak); use base 'Exporter'; our $VERSION = '1.2'; # Build list of packet names, order is significant, as the index of the type # represents it's code in BitTorrent my ( @code_num_to_str, %code_str_to_num ); BEGIN { @code_num_to_str = qw( BT_CHOKE BT_UNCHOKE BT_INTERESTED BT_UNINTERESTED BT_HAVE BT_BITFIELD BT_REQUEST BT_PIECE BT_CANCEL ); # The array @code_num_to_str serves as a packet code to packet name # map. Flip that into a hash that serves as a name to code map %code_str_to_num = map { $code_num_to_str[$_] => $_ } 0 .. $#code_num_to_str; $code_str_to_num{'BT_HANDSHAKE'} = -1; } # Turn the hash of name-id pairs into a bunch of constants based on the names use constant \%code_str_to_num; # Allow for the export of our build and parse subroutines and bt codes our @EXPORT_OK = ( 'bt_build_packet', 'bt_parse_packet', keys %code_str_to_num ); # create an :all tag for subroutines and constants and a :constants tag for # just the constants our %EXPORT_TAGS = ( 'all' => [@EXPORT_OK], 'constants' => [@code_num_to_str], ); # Map build and parse subroutines my $bt_base_code = -1; my (%bt_dispatch) = map( { $bt_base_code++ => $_ }{ build => \&_build_handshake_packet, parse => sub { croak('unimplemented') }, }, { build => sub { return _build_packet(BT_CHOKE) }, parse => { bt_code => BT_CHOKE }, }, { build => sub { return _build_packet(BT_UNCHOKE) }, parse => { bt_code => BT_UNCHOKE }, }, { build => sub { return _build_packet(BT_INTERESTED) }, parse => { bt_code => BT_INTERESTED }, }, { build => sub { return _build_packet(BT_UNINTERESTED) }, parse => { bt_code => BT_UNINTERESTED }, }, { build => \&_build_have_packet, parse => \&_parse_have_packet, }, { build => \&_build_bitfield_packet, parse => \&_parse_bitfield_packet, }, { build => \&_build_request_packet, parse => \&_parse_request_packet, }, { build => \&_build_piece_packet, parse => \&_parse_piece_packet, }, { build => \&_build_cancel_packet, parse => \&_parse_cancel_packet, }, ); ########################################################################## # P U B L I C S U B R O U T I N E S ########################################################################## sub bt_build_packet { # hashify arguments @_ % 2 == 0 or croak("Even number of elements expected, but not received"); my %args = @_; _hash_defines( \%args, 'bt_code' ); my $bt_code = $args{bt_code}; # look-up build subroutine defined $bt_dispatch{$bt_code} or croak("Invalid BT code ($bt_code) found"); my $sub_ref = $bt_dispatch{$bt_code}{build}; # execute the subroutine return $sub_ref->( \%args ); } sub bt_parse_packet { my ($packet_ref) = @_; # handle the handshake if it is passed in if ( unpack( 'c', ${$packet_ref} ) eq 0x13 ) { return _parse_handshake_packet($packet_ref); } my ($bt_code) = unpack( 'x4C', ${$packet_ref} ); defined $bt_dispatch{$bt_code} or croak("Invalid BT code ($bt_code) found"); my $parse_ref = $bt_dispatch{$bt_code}{parse}; # for easy packets, we just get the hash ref back return $parse_ref if ( ref $parse_ref eq 'HASH' ); # execute the subroutine return $parse_ref->( \substr( ${$packet_ref}, 5 ) ); } 1; ########################################################################## # P R I V A T E S U B R O U T I N E S ########################################################################## # # _build_handshake_packet INFO_HASH PEER_ID # Return a handshake packet # sub _build_handshake_packet { my ($args) = @_; _hash_defines( $args, 'info_hash', 'peer_id' ); my $packet = pack( 'c/a* a8 a20 a20', 'BitTorrent protocol', '', $args->{info_hash}, $args->{peer_id} ); return $packet; } # # _build_have_packet PIECE_INDEX # Return a have packet # sub _build_have_packet { my ($args) = @_; _hash_defines( $args, 'piece_index' ); my $packet_body = pack( 'N', $args->{piece_index} ); return _build_packet( BT_HAVE, $packet_body ); } # # _build_bitfield_packet BITFIELD # Return a bitfield packet # sub _build_bitfield_packet { my ($args) = @_; _hash_defines( $args, 'bitfield_ref' ); return _build_packet( BT_BITFIELD, '', $args->{bitfield_ref} ); } # # _build_request_packet PIECE_INDEX BIT_OFFSET BIT_LENGTH # Return a request packet # sub _build_request_packet { my ($args) = @_; _hash_defines( $args, 'piece_index', 'block_offset', 'block_size' ); my $packet_body = pack( 'NNN', $args->{piece_index}, $args->{block_offset}, $args->{block_size} ); return _build_packet( BT_REQUEST, $packet_body ); } # # _build_piece_packet PIECE_INDEX BIT_OFFSET DATA # Return a piece packet # sub _build_piece_packet { my ($args) = @_; _hash_defines( $args, 'piece_index', 'block_offset', 'data_ref' ); my $packet_body = pack( 'NN', $args->{piece_index}, $args->{block_offset} ); return _build_packet( BT_PIECE, $packet_body, $args->{data_ref} ); } # # _build_cancel_packet PIECE_INDEX BIT_OFFSET BIT_LENGTH # Return a cancel packet # sub _build_cancel_packet { my ($args) = @_; _hash_defines( $args, 'piece_index', 'block_offset', 'block_size' ); my $packet_body = pack( 'NNN', $args->{piece_index}, $args->{block_offset}, $args->{block_size} ); return _build_packet( BT_CANCEL, $packet_body ); } # # _build_packet BT_CODE PACKET_BODY DATA_REF # _build_packet ends up getting called by all of the _build_*_packet # subroutines. This routine accepts the BitTorrent packet code (as # an integer), an optional packet body and optional data reference. # sub _build_packet { my ( $_code, $packet_body, $data_ref ) = @_; $packet_body = '' unless defined $packet_body; $data_ref = \'' unless defined $data_ref; my $packet = pack( 'NCa*a*', length($packet_body) + length( ${$data_ref} ) + 1, $_code, $packet_body, ${$data_ref} ); return $packet; } # # _parse_handshake_packet ENTIRE_PACKET # Return a parsed handshake packet # sub _parse_handshake_packet { my ($packet_ref) = @_; my ( $protocol_name, $reserved_space, $info_hash, $peer_id ) = unpack( 'c/a* a8 a20 a20', ${$packet_ref} ); return { bt_code => BT_HANDSHAKE, protocol => $protocol_name, info_hash => $info_hash, peer_id => $peer_id, }; } # # _parse_have_packet PACKET_PAYLOAD # Return a parsed have packet # sub _parse_have_packet { my ($packet_ref) = @_; my ($piece_index) = unpack( 'N', $$packet_ref ); return { bt_code => BT_HAVE, piece_index => $piece_index }; } # # _parse_bitfield_packet PACKET_PAYLOAD # Return a parsed bitfield packet # sub _parse_bitfield_packet { my ($packet_ref) = @_; return { bt_code => BT_BITFIELD, bitfield_ref => $packet_ref, }; } # # _parse_request_packet PACKET_PAYLOAD # Return a parsed request packet # sub _parse_request_packet { my ($packet_ref) = @_; my ( $piece_index, $block_offset, $block_size ) = unpack( 'NNN', $$packet_ref ); return { bt_code => BT_REQUEST, piece_index => $piece_index, block_offset => $block_offset, block_size => $block_size, }; } # # _parse_piece_packet PACKET_PAYLOAD # Return a parsed piece packet # sub _parse_piece_packet { my ($packet_ref) = @_; my ( $piece_index, $block_offset ) = unpack( 'NN', $$packet_ref ); return { bt_code => BT_PIECE, piece_index => $piece_index, block_offset => $block_offset, data_ref => \substr( $$packet_ref, 8 ), }; } # # _parse_cancel_packet PACKET_PAYLOAD # Return a parsed cancel packet # sub _parse_cancel_packet { my ($packet_ref) = @_; my ( $piece_index, $block_offset, $block_size ) = unpack( 'NNN', $$packet_ref ); return { bt_code => BT_CANCEL, piece_index => $piece_index, block_offset => $block_offset, block_size => $block_size, }; } # # _hash_defines HASH_REFERENCE LIST_OF_KEYS # Makes sure that the given hash defines values for all keys in the list. # sub _hash_defines { my ( $hash, @keys ) = @_; ref $hash eq 'HASH' or croak("Hash reference not found"); for my $key (@keys) { defined $hash->{$key} or croak("$key not specified"); } return 1; } 1; =pod =head1 NAME Net::BitTorrent::PeerPacket - Parse/Build Peer Packets from BitTorrent =head1 SYNOPSIS # import everything use Net::BitTorrent::PeerPacket qw(:all); # or be more selective use Net::BitTorrent::PeerPacket qw(bt_build_packet :constants); # Encode a packet my $binary_packet = bt_build_packet($key1, $value1, $key2, $value2); # Decode a packet my $parsed_packet = bt_parse_packet($binary_data); =head1 DESCRIPTION C handles parsing and building binary data shared between BitTorrent peers. The module optionally exports a single subroutine for building packets and another for parsing packets, as well as, a constant for each packet type defined by BitTorrent. =head1 CONSTANTS There are ten primary types of packets that are shared between peers on a BitTorrent network. The following constants are how the type of packet being build/parsed are represented within this module. =over 4 =item BT_HANDSHAKE Used to start communication between peers. =item BT_CHOKE Tell a peer that it is choked. =item BT_UNCHOKE Tell a peer that it is unchoked. =item BT_INTERESTED Used to tell a peer that it has a piece that you need. =item BT_UNINTERESTED Used to tell a peer that it has no pieces that you need. =item BT_HAVE Used to tell a peer that you now have a specific piece. =item BT_BITFIELD Used right after a handshake, this tells a peer all of the pieces that you have and don't have in one message. =item BT_REQUEST Used to request a block of data from a piece that a peer has. =item BT_PIECE Used to return a block of data that was requested. =item BT_CANCEL Used to tell a peer that you no longer need the piece that you were downloading from them. =back =head1 SUBROUTINES =head2 bt_build_packet This subroutine is responsible for building all types of BitTorrent packets. The arguments are passed into the subroutine as a list of key-value pairs. The resultant packet is sent back as a scalar. Depending on the requested packet type, the required arguments vary. One argument that is common to all calls is the C. The C maps to a C constant exported by this module and determines the type of packet that will be built. What follows is a list of the different BT codes and the details of calling this subroutine with those codes. =head3 BT_HANDSHAKE Passing the C code causes a handshake packet to be generated. This type of packet is sent as soon as peers are connected and requires two additional keys: =over 4 =item * info_hash The hash found in the C<.torrent> file that represents the download. =item * peer_id The peer ID for the local peer. This should be the same as what is reported to the tracker for the swarm. =back =head3 BT_CHOKE Passing the C code causes a choke packet to be generated. This type of packet requires no additional data and therefore no additional arguments. =head3 BT_UNCHOKE Passing the C code causes an unchoke packet to be generated. This type of packet requires no additional data and therefore no additional arguments. =head3 BT_INTERESTED Passing the C code causes an interested packet to be generated. This type of packet requires no additional data and therefore no additional arguments. =head3 BT_UNINTERESTED Passing the C code causes an uninterested packet to be generated. This type of packet requires no additional data and therefore no additional arguments. =head3 BT_HAVE Passing the C code causes a have packet to be generated. This type of packet requires a piece index in addition to the BT code. =over 4 =item piece_index The piece index is the zero-based numeric index of a piece within a torrent. =back =head3 BT_BITFIELD Passing the C code causes a bit field packet to be generated. This type of packet requires the bit field be specified in addition to the BT code. =over 4 =item bitfield_ref The bit field is passed in as a reference to a scalar. The scalar contains binary data representing the pieces that are present and missing. =back =head3 BT_REQUEST Passing the C code causes a request packet to be generated. This type of packet requires the piece index along with block offset and size in addition to the BT code. =over 4 =item piece_index The piece index is the zero-based numeric index of a piece within a torrent. =item block_offset The block offset is the zero-based byte offset of the requested data within the specified piece. =item block_size The block size is the size of the data requested. Be sure not to set this value too large, as some clients will end your connection if your request is too big. =back =head3 BT_PIECE Passing the C code causes a piece packet to be generated. This type of packet requires the piece index along with block offset and the data to be transferred in addition to the BT code. =over 4 =item piece_index The piece index is the zero-based numeric index of a piece within a torrent. =item block_offset The block offset is the zero-based byte offset of the requested data within the specified piece. =item data_ref The data reference is a reference to a scalar containing the data at the specified block offset within the specified piece. =back =head3 BT_CANCEL Passing the C code causes a cancel packet to be generated. This type of packet requires the piece index along with block offset and size in addition to the BT code. =over 4 =item piece_index The piece index is the zero-based numeric index of a piece within a torrent. =item block_offset The block offset is the zero-based byte offset of the requested data within the specified piece. =item block_size The block size is the size of the data requested. Be sure not to set this value too large, as some clients will end your connection if your request is too big. =back =head2 bt_parse_packet This subroutine is responsible for parsing all types of BitTorrent packets. It accepts a single argument, which is a reference to a scalar that contains the raw packet data. It returns a hash reference containing the parsed data. Depending on the packet type, the keys in the returned hash vary. One key that is common to all packets is the bt_code. The bt_code maps to a BT_ constant exported by this module and reveals the type of packet that was parsed. What follows is a list of the different BT codes that might be returned and the additional keys that will be packaged with each code. =head3 BT_CHOKE The resultant hash from a choke packet will only contain the C key. =head3 BT_UNCHOKE The resultant hash from an unchoke packet will only contain the C key. =head3 BT_INTERESTED The resultant hash from an interested packet will only contain the C key. =head3 BT_UNINTERESTED The resultant hash from an uninterested packet will only contain the C key. =head3 BT_HAVE The resultant hash from a have packet will only contain the C key and the following additional keys. =over 4 =item piece_index The piece index is the zero-based numeric index of a piece within a torrent. =back =head3 BT_BITFIELD The resultant hash from a bit field packet will only contain the C key and the following additional keys. =over 4 =item bitfield_ref The bit field is passed in as a reference to a scalar. The scalar contains binary data representing the pieces that are present and missing. =back =head3 BT_REQUEST The resultant hash from a request packet will only contain the C key and the following additional keys. =over 4 =item piece_index The piece index is the zero-based numeric index of a piece within a torrent. =item block_offset The block offset is the zero-based byte offset of the requested data within the specified piece. =item block_size The block size is the size of the data requested. Be sure not to set this value too large, as some clients will end your connection if your request is too big. =back =head3 BT_PIECE The resultant hash from a piece packet will only contain the C key and the following additional keys. =over 4 =item piece_index The piece index is the zero-based numeric index of a piece within a torrent. =item block_offset The block offset is the zero-based byte offset of the requested data within the specified piece. =item data_ref The data reference is a reference to a scalar containing the data at the specified block offset within the specified piece. =back =head3 BT_CANCEL The resultant hash from a cancel packet will only contain the C key and the following additional keys. =over 4 =item piece_index The piece index is the zero-based numeric index of a piece within a torrent. =item block_offset The block offset is the zero-based byte offset of the requested data within the specified piece. =item block_size The block size is the size of the data requested. Be sure not to set this value too large, as some clients will end your connection if your request is too big. =back =head1 INSTALL perl Build.PL ./Build ./Build test ./Build install =head1 AUTHOR Josh McAdams =cut __END__