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 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
|
.\"
.\" $Id: libnet.3,v 1.48 1999/10/27 23:44:26 route Exp $
.\"
.\" Copyright (c) 1998, 1999 Mike D. Schiffman <mike@infonexus.com>
.\"
.\"
.TH LIBNET 3 "10 27 99" "libnet 1.0" ""
.SH NAME
libnet \- "libpwrite" Network Routine Library
.SH DESCRIPTION
The Network Library provides a simple API for commonly used low-level network
functions (mainly packet injection). Using libnet, it is easy to build and
write arbitrary network packets. It provides a portable framework for
low-level network packet writing and handling (use libnet in conjunction
with libpcap and you can write some really cool stuff). Libnet includes
packet creation at the IP layer and at the link layer as well as a host of
supplementary and complementary functionality.
For a much more verbose treatment of libnet, including verbosely commented
examples, please see the online web-based documentation at
http://www.packetfactory/libnet/manual/.
.SH SYNOPSIS
.nf
.ft B
#include <libnet.h>
.ft
.LP
.ft B
PACKET MEMORY MANAGEMENT ROUTINES
int libnet_init_packet(size_t p_size, u_char **buf);
int libnet_destroy_packet(u_char **buf);
int libnet_init_packet_arena(struct libnet_arena **arena, u_short p_num,
.ti +8
int p_size);
u_char *libnet_next_packet_from_arena(struct libnet_arena **arena,
.ti +8
int p_size);
int libnet_destroy_packet_arena(struct libnet_arena **arena);
ADDRESS RESOLUTION ROUTINES
u_char *libnet_host_lookup(u_long in, u_short use_name);
void libnet_host_lookup_r(u_long in, u_short use_name, u_char *buf);
u_long libnet_name_resolve(u_char *hostname, u_short use_name);
u_long libnet_get_ipaddr(struct libnet_link_int *l, const u_char *device,
.ti +8
const u_char *buf);
struct ether_addr *libnet_get_hwaddr(struct libnet_link_int *l,
.ti +8
const u_char *device, const u_char *buf);
PACKET INJECTION FRAMEWORK ROUTINES
int libnet_open_raw_sock(int protocol);
int libnet_close_raw_sock(int fd);
int libnet_select_device(struct sockaddr_in *sin, u_char **device,
.ti +8
u_char *ebuf);
struct libnet_link_int *libnet_open_link_interface(char *device, char *ebuf);
int libnet_close_link_interface(struct libnet_link_int *l);
int libnet_write_ip(int sock, u_char *packet, int len);
int libnet_write_link_layer(struct libnet_link_int *l, const u_char *device,
.ti +8
u_char *buf, int len);
int libnet_do_checksum(u_char *buf, int protocol, int len);
u_short libnet_ip_check(u_short *buf, int len);
PACKET BUILDER ROUTINES
int libnet_build_arp(u_short hrd, u_short pro, u_short hln, u_short pln,
.ti +8
u_short op, u_char *sha, u_char *spa, u_char *tha,
.ti +8
u_char *tpa, const u_char *payload, int payload_s,
.ti +8
u_char *buf);
int libnet_build_dns(u_short id, u_short flags, u_short num_q,
.ti +8
u_short num_anws_rr, u_short num_auth_rr,
.ti +8
u_short num_addi_rr, const u_char *payload, int payload_s,
.ti +8
u_char *buf);
int libnet_build_ethernet(u_char *daddr, u_char *saddr, u_short id,
.ti +8
const u_char *payload, int payload_s, u_char *buf);
int libnet_build_icmp_echo(u_char type, u_char code, u_short id,
.ti +8
u_short seq, const u_char *payload, int payload_s,
.ti +8
u_char *buf);
int libnet_build_icmp_mask(u_char type, u_char code, u_short id,
.ti +8
u_short seq, u_long mask, const u_char *payload,
.ti +8
int payload_s, u_char *buf);
int libnet_build_icmp_unreach(u_char type, u_char code,
.ti +8
u_short orig_len, u_char orig_tos, u_short orig_id,
.ti +8
u_short orig_frag, u_char orig_ttl, u_char orig_prot,
.ti +8
u_long orig_src, u_long orig_dst, const u_char *orig_payload,
.ti +8
int payload_s, u_char *buf);
int libnet_build_icmp_timeexceed(u_char type, u_char code,
.ti +8
u_short orig_len, u_char orig_tos, u_short orig_id,
.ti +8
u_short orig_frag, u_char orig_ttl, u_char orig_prot,
.ti +8
u_long orig_src, u_long orig_dst, const u_char *orig_payload,
.ti +8
int payload_s, u_char *buf);
int libnet_build_icmp_redirect(u_char type, u_char code, u_long gateway
.ti +8
u_short orig_len, u_char orig_tos, u_short orig_id,
.ti +8
u_short orig_frag, u_char orig_ttl, u_char orig_prot,
.ti +8
u_long orig_src, u_long orig_dst, const u_char *orig_payload,
.ti +8
int payload_s, u_char *buf);
int libnet_build_icmp_timestamp(u_char type, u_char code, u_short id,
.ti +8
u_short seq, n_time otime, n_time rtime, n_time ttime,
.ti +8
const u_char *payload, int payload_s, u_char *buf);
int libnet_build_igmp(u_char type, u_char code, u_long ip,
.ti +8
const u_char *payload, int payload_s, u_char *buf);
int libnet_build_ip(u_short len, u_char tos, u_short id, u_short frag,
.ti +8
u_char ttl, u_char prot, u_long saddr, u_long daddr,
.ti +8
const u_char *payload, int payload_s, u_char *buf);
int libnet_build_ospf(u_short len, u_char type, u_long router_id,
.ti +8
u_long area_id, u_short auth_type, const char *payload,
.ti +8
int payload_s, u_char *buf);
int libnet_build_ospf_hello(u_long netmask, u_short interval,
.ti +8
u_char options, u_char priority, u_int dead_interval,
.ti +8
u_long des_router, u_long backup, u_long neighbor,
.ti +8
const char *payload, int payload_s, u_char *buf);
int libnet_build_ospf_dbd(u_short len, u_char options, u_char type,
.ti +8
u_int sequence_num, const char *payload, int payload_s,
.ti +8
u_char *buf);
int libnet_build_ospf_lsr(u_int type, u_int ls_id, u_long adv_router,
.ti +8
const char *payload, int payload_s, u_char *buf);
int libnet_build_ospf_lsu(u_int num, const char *payload, int payload_s,
.ti +8
u_char *buf);
int libnet_build_ospf_lsa(u_short age, u_char options, u_char type,
.ti +8
u_int ls_id, u_long adv_router, u_int sequence_num,
.ti +8
u_short len, const char *payload, int payload_s,
.ti +8
u_char *buf);
int libnet_build_ospf_lsa_rtr(u_short flags, u_short num, u_int id,
.ti +8
u_int data, u_char type, u_char tos, u_short metric,
.ti +8
const char *payload, int payload_s, u_char *buf);
int libnet_build_ospf_lsa_net(u_long netmask, u_int router_id,
.ti +8
const char *payload, int payload_s, u_char *buf);
int libnet_build_ospf_lsa_sum(u_long netmask, u_int metric, u_int tos,
.ti +8
const char *payload, int payload_s, u_char *buf);
int libnet_build_ospf_lsa_as(u_long netmask, u_int metric,
.ti +8
u_long fwd_addr, u_int tag, const char *payload,
.ti +8
int payload_s, u_char *buf);
int libnet_build_rip(u_char command, u_char ver, u_short rd, u_short af,
.ti +8
u_short rt, u_long addr, u_long mask, u_long next_hop,
.ti +8
u_long metric, const u_char *payload, int payload_s,
.ti +8
u_char *buf);
int libnet_build_tcp(u_short sport, u_short dport, u_long seq,
.ti +8
u_long ack, u_char control, u_short win, u_short urg,
.ti +8
const u_char *payload, int payload_s, u_char *buf);
int libnet_build_udp(u_short sport, u_short dport,
.ti +8
const u_char *payload, int payload_s, u_char *buf);
int libnet_insert_ipo(struct ipoption *opt, u_char opt_len, u_char *buf);
int libnet_insert_tcpo(struct tcpoption *opt, u_char opt_len,
.ti +8
u_char *buf);
MISCELLANEOUS SUPPORT ROUTINES
int libnet_seed_prand();
u_long libnet_get_prand(int type);
void libnet_hex_dump(u_char *buf, int len, int swap, FILE *stream);
int libnet_plist_chain_new(struct libnet_plist_chain **head,
.ti +8
char *tok_list);
int libnet_plist_chain_next_pair(struct libnet_plist_chain *p,
.ti +8
u_short *bport, u_short *eport);
int libnet_plist_chain_dump(struct libnet_plist_chain *p);
u_char *libnet_plist_chain_dump_string(struct libnet_plist_chain *p);
int libnet_plist_chain_free(struct libnet_plist_chain *p);
void libnet_error(int severity, char *msg, ...);
ASN.1 BER ROUTINES
u_char *libnet_build_asn1_int(u_char *data, int *datalen, u_char type,
.ti +8
long *int_p, int int_s);
u_char *libnet_build_asn1_uint(u_char *data, int *datalen, u_char type,
.ti +8
u_char *int_p, int int_s);
u_char *libnet_build_asn1_string(u_char *data, int *datalen, u_char type,
.ti +8
u_long *string, int str_s);
u_char *libnet_build_asn1_header(u_char *data, int *datalen, u_char type,
.ti +8
int len);
u_char *libnet_build_asn1_length(u_char *data, int *datalen, int len);
u_char *libnet_build_asn1_sequence(u_char *data, int *datalen,
.ti +8
u_char type, int len);
u_char *libnet_build_asn1_objid(u_char *data, int *datalen, u_char type,
.ti +8
oid *objid, int oid_s);
u_char *libnet_build_asn1_null(u_char *data, int *datalen, u_char type);
u_char *libnet_build_asn1_bitstring(u_char *data, int *datalen,
.ti +8
u_char type, u_long *string, int str_s);
.ft
.fi
.PP
.SH ADDRESS RESOLUTION ROUTINES
\fBlibnet_host_lookup()\fP converts the supplied network-ordered (big-endian)
IPv4 address into its human-readable coutnerpart. If use_name is 1,
\fBlibnet_host_lookup()\fP will attempt to resolve this IP address and return a
hostname, otherwise (or if the lookup fails), the function returns a
dotted-decimal ASCII string. This function is hopelessly non re-entrant
as it uses static data. Users concerned with re-entrancy should use
\fBlibnet_host_lookup_r()\fP.
\fBlibnet_host_lookup_r()\fP is the (planned) reentrant version of the above
function. As soon as reentrant network resolver libraries become available
this function will likewise be reentrant. An additional argument of a buffer
to store the converted (or resolved) IPv4 address is supplied by the user.
\fBlibnet_name_resolve()\fP takes a NULL terminated ASCII string representation
of an IPv4 address (dots and decimals or canonical hostname if use_name is
1) and converts it into a network-ordered (big-endian) 4-byte value.
\fBlibnet_get_ipaddr()\fP takes a pointer to a link layer interface struct, a
pointer to the network device name, and an empty buffer to be used in case
of error. Upon success the function returns the IP address of the
specified interface in network-byte order or 0 upon error (and errbuf will
contain a reason).
\fBlibnet_get_hwaddr()\fP takes a pointer to a link layer interface struct, a
pointer to the network device name, and an empty buffer to be used in case
of error. The function returns the MAC address of the specified interface
upon success or 0 upon error (and errbuf will contain a reason).
.SH PACKET MEMORY MANAGEMENT ROUTINES
\fBlibnet_init_packet()\fP initializes a packet for use. If the size
parameter is omitted (or negative) the library will pick a reasonable
value for the user (currently LIBNET_MAX_PACKET). If the memory allocation is
successful, the memory is zeroed and the function returns 1. If there is
an error, the function returns -1. Since this function calls malloc, you
certainly should, at some point, make a corresponding call to destroy_packet().
\fBlibnet_destroy_packet()\fP frees the memory associated with the packet.
\fBlibnet_init_packet_arena()\fP allocates and initializes a memory pool. If
you plan on building and sending several different packets, this is a good
choice. It allocates a pool of memory from which you can grab chunks to
build packets (see next_packet_from_arena() below). It takes the address
to an arena structure pointer (so it can modify the structure elements),
and hints on the possible packet size and number of packets. The last two
arguments are used to compute the size of the memory pool. The function
returns -1 if the malloc fails or 1 if everything goes ok.
\fBlibnet_next_packet_from_arena()\fP returns a chunk of memory from the arena
of the requested size pool and decrements the available byte counter. If
the requested memory is not available from the arena, it returns NULL.
Note that there is nothing preventing a poorly coded application from using
more memory than requested and causing all kinds of problems. Take heed.
\fBlibnet_destroy_packet_arena()\fP frees the memory associated with the arena.
During packet or arena initilization and utilization, if 0 is passed for
either of size values, the functions make a best guest. If 0 is passed
for the packet size, it adjusts it to be LIBNET_MAX_PACKET, and if 0 is
passed for the packet number (in the case of libnet_init_packet_arena) it
adjusts it to be 3. Be aware that this is 196605 bytes of memory.
The number of bytes allocated may actually be slightly more than requested
due to alignment constraints (values are aligned on a 4-byte boundry).
For the above three functions, it is a checked runtime error for arena to
be a NULL pointer.
The arena interface also includes LIBNET_GET_ARENA_SIZE which returns the total
size of an arena and LIBNET_GET_ARENA_REMAINING_BYTES which returns the
remaining bytes of usable memory from an arena.
.SH PACKET INJECTION FRAMEWORK ROUTINES
\fBlibnet_open_raw_sock()\fP opens a raw IPv4 socket of the supplied protocol
type and sets the IP_HDRINCL socket option. Returned is the socket file
descriptor or -1 on error.
\fBlibnet_close_raw_sock()\fP closes an opened raw socket. Returned is 1
upon success or -1 on error.
\fBlibnet_select_device()\fP will run through the list of interfaces and select
one for use (ignoring the loopback device). If device points to NULL, (don't
pass in a NULL pointer, the function expects a pointer to a pointer, and
C can't derefence a NULL pointer) it will try to fill it in with the first
non-loopback device it finds, otherwise, it will try to open the specified
device. If successful, 1 is returned (and if device was NULL, it will now
contain the device name which can be used in libnet_*link*() type calls).
If an error occurs, -1 is returned and errbuf will contain a reason.
\fBlibnet_open_link_interface()\fP opens a low-level packet interface. This is
required to write link layer frames. Supplied is a u_char pointer to the
interface device name and a u_char pointer to an error buffer. Returned is
a filled in libnet_link_int struct or NULL on error.
\fBlibnet_close_link_interface()\fP closes an opened low-level packet interface.
Returned is 1 upon success or -1 on error.
\fBlibnet_write_ip()\fP writes an IP packet to the network. The first
argument is the socket created with \fBlibnet_open_raw_sock()\fP, the second
is a pointer to a buffer containing a complete IP datagram, and the third
argument is the total packet size. It returns the number of bytes written.
\fBlibnet_write_link_layer()\fP writes an link-layer frame to the network. The
first argument is a pointer to a filled in libnet_link_int structure, the next
is a pointer to the network device, the next is the raw packet and the last
is the packet size. Returned is the number of bytes written or -1 on error.
\fBlibnet_do_checksum()\fP calculates the checksum for the packet header. The
first argument is a pointer to the constructed IPv4 packet buffer. The second
is the transport protocol used and the third is the packet length (not including
the IP header). The function calculates the checksum for the transport
protocol and fills it in at the appropriate header location. This function
should be called only after a complete packet has been built. Note that when
using raw sockets the IP checksum is always computed by the kernel, but when
using link layer interfaces, the IP checksum must be explicitly computed.
The function returns 1 upon success or -1 if an error occurs.
.SH PACKET BUILDER ROUTINES
For all of the build_* functions, it is a checked runtime error for buf
to be a NULL pointer (the function will return -1), but an unchecked error
for the optional payload or the packet header itself to exceed the allocated
memory. Take heed.
\fBlibnet_build_arp()\fP constructs an ARP packet. Supplied are the following:
hardware addresss type, protocol address type, the hardware addess length,
the protocol address length, the ARP packet type, the sender hardware
address, the sender protocol address, the target hardware address, the target
protocol address, the packet payload, the payload size, and finally, a pointer
to the packet header memory. Note that this function only builds ethernet/IP
ARP packets, and consequently the first value should be ARPHRD_ETHER. The
ARP packet type should be one of the following: ARPOP_REQUEST, ARPOP_REPLY,
ARPOP_REVREQUEST, ARPOP_REVREPLY, ARPOP_INVREQUEST, or ARPOP_INVREPLY.
\fBlibnet_build_dns()\fP constructs a DNS packet. Supplied are the following:
DNS packet ID, flags, number of questions, number of answer resource records,
number of authority resource records, number of additional resource records.
All of the above are unsigned shorts. All of the `interesting` fields of the
header are variable in content and length, and therefore have to be included
at the programmer's discretion. We use the standard libnet payload and
payload size interface for this. Finally, please be sure to include a pointer
to some preallocated memory.
\fBlibnet_build_ethernet()\fP constructs an ethernet packet. Supplied is the
destination address, source address (as arrays of unsigned character bytes)
and the ethernet frame type, a pointer to an optional data payload, the
payload length, and a pointer to a pre-allocated block of memory for the
packet. The ethernet packet type should be one of the following:
Value Type
.ti
ETHERTYPE_PUP PUP protocol
.ti
ETHERTYPE_IP IP protocol
.ti
ETHERTYPE_ARP ARP protocol
.ti
ETHERTYPE_REVARP Reverse ARP protocol
.ti
ETHERTYPE_VLAN IEEE VLAN tagging
.ti
ETHERTYPE_LOOPBACK Used to test intefaces
Please note that some low-level interfaces (bpf in particular) do
not allow for the spoofing of ethernet addresses without kernel modification.
\fBlibnet_build_icmp_echo()\fP builds an ICMP_ECHO / ICMP_ECHOREPLY packet.
Supplied is a byte for the packet type, a byte for the code, an unsigned
short for the packet id, an unsigned short for the packet sequence number,
and a pointer to an optional data payload, the payload length, and a pointer
to a pre-allocated block of memory for the packet. The type should be
ICMP_ECHOREPLY or ICMP_ECHO and the code should be 0.
\fBlibnet_build_icmp_mask()\fP builds an ICMP_MASKREQ / ICMP_MASKREPLY packet.
Supplied is a byte for the packet type, a byte for the code, an unsigned
short for the packet id, an unsigned short for the packet sequence number,
a 32-bit subnet mask, a pointer to an optional data payload, the payload
length, and a pointer to a pre-allocated block of memory for the packet.
The type should be ICMP_MASKREQ or ICMP_MASKREPLY and the code should be 0.
\fBlibnet_build_icmp_unreach()\fP builds an ICMP_UNREACH packet. Supplied is
the normal ICMP stuff, a byte for the packet type and a byte for the code. Next
come the values for the IP header that caused the error that necessitated the
unreachable. The standard payload arguments to this function actually apply
to the original IP packet and will be tacked on there. The type should be
ICMP_UNREACH and the code should be one of the following 16 different
unreachable codes:
Code Symbolic Name
.ti
0 ICMP_UNREACH_NET
.ti
1 ICMP_UNREACH_HOST
.ti
2 ICMP_UNREACH_PROTOCOL
.ti
3 ICMP_UNREACH_PORT
.ti
4 ICMP_UNREACH_NEEDFRAG
.ti
5 ICMP_UNREACH_SRCFAIL
.ti
6 ICMP_UNREACH_NET_UNKNOWN
.ti
7 ICMP_UNREACH_HOST_UNKNOWN
.ti
8 ICMP_UNREACH_ISOLATED
.ti
9 ICMP_UNREACH_NET_PROHIB
.ti
10 ICMP_UNREACH_HOST_PROHIB
.ti
11 ICMP_UNREACH_TOSNET
.ti
12 ICMP_UNREACH_TOSHOST
.ti
13 ICMP_UNREACH_FILTER_PROHIB
.ti
14 ICMP_UNREACH_HOST_PRECEDENCE
.ti
15 ICMP_UNREACH_PRECEDENCE_CUTOFF
\fBlibnet_build_icmp_timeexceed()\fP builds an ICMP_TIMEXCEED packet. Supplied
is the normal ICMP stuff, a byte for the packet type and a byte for the code.
Next come the values for the IP header that caused the error that necessitated
the unreachable. The standard payload arguments to this function actually
apply to the original IP packet and will be tacked on there. The type should
be ICMP_REDIRECT and the code should be ICMP_TIMXCEED_INTRANS or
ICMP_TIMXCEED_REASS.
\fBlibnet_build_icmp_redirect()\fP builds an ICMP_REDIRECT packet. Supplied
is a byte for the packet type, a byte for the code, and the unsigned long
IP address of the gateway that should be used. Next come the values for
the IP header that caused the error that necessitated the redirect.
The standard payload arguments to this function actually apply to the
original IP packet and will be tacked on there. The type should be
ICMP_REDIRECT and the code should be one of the following:
Code Symbolic Name
.ti
0 ICMP_UNREACH_NET
.ti
1 ICMP_UNREACH_HOST
.ti
2 ICMP_UNREACH_PROTOCOL (redirect for type of service and network)
.ti
3 ICMP_UNREACH_PORT (redirect for type of service and host)
\fBlibnet_build_icmp_timestamp()\fP builds an ICMP_TSTAMP / ICMP_TSTAMPREPLY
packet. Supplied is a byte for the packet type, a byte for the code, an
unsigned short for the packet id, an unsigned short for the packet sequence
number, the three timestamp values, a pointer to an optional data payload,
the payload length, and a pointer to a pre-allocated block of memory for the
packet. The type should be ICMP_TSTAMP or ICMP_TSTAMPREPLY and the code
should be 0.
\fBlibnet_build_igmp()\fP builds an IGMP packet. Supplied is a byte for the
packet type, a byte for the code, an unsigned long for the Class D address,
and the other usual things.
\fBlibnet_build_ip()\fP builds an IP packet. Supplied is the packet length
(not including the IP header), the IP tos bits, the IP ID, the fragmentation
flags and offset, the packet TTL, the transport protocol, the source and
destination IP addresses (in network-byte order), a pointer to an
optional data payload, the payload length, and a pointer to a
pre-allocated block of memory for the packet. To just build an IP header
with no data payload, only IP_H bytes need to be allocated. The payload
and payload size arguments should not be used to build any of the supported
transport protocol-type packets; for these transports, the relevant functions
should be used. The payload arguments should only be used to build an
arbitrary IP packet with a payload.
.PP
.SH OSPF PACKET CREATION ROUTINES
\fBlibnet_build_ospf()\fP builds a OSPF packet. You pass the packet length
(not including the OSPF header), the packet type, 32-bit router ID, 32-bit
area ID, the authentication type, a pointer to an optional data payload, the
payload length, and a pointer to a pre-allocated block of memory for the
packet. The payload should not be used to build the Hello, LSA, LSU, LSR, or
DBD packets. The following variables are to be used for the OSPF packet type:
OSPF_UMD UMd monitoring packet
.ti
OSPF_HELLO Hello packet
.ti
OSPF_DBD Database Desc. packet
.ti
OSPF_LSR Link State Request packet
.ti
OSPF_LSU Link State Update packet
.ti
OSPF_LSA Link State Ack. packet
The following are the possible authentication types:
OSPF_AUTH_NULL NULL password
.ti
OSPF_AUTH_SIMPLE plaintext, 8 char pass.
.ti
OSPF_AUTH_MD5 MD5
The following is the structure used for the 64 bit field when using
MD5:
struct auth {
.ti
u_short ospf_auth_null; /* NULL 16 bits */
.ti
u_char ospf_auth_keyid; /* Key ID */
.ti
u_char ospf_auth_len; /* Auth data len */
.ti
u_int ospf_auth_seq; /* Sequence num */
.ti
};
\fBlibnet_build_ospf_hello()\fP builds an OSPF Hello packet. You pass the
netmask for the interface, the number of seconds since the last packet was
sent,
possible options, the router's priority (if 0, it can't be a backup router),
the time (in seconds) until a router is deemed down, the networks designated
router, the networks backup router, a neighbor, a pointer to an optional data
payload, the payload length, and a pointer to a pre-allocated block of
memory used for the packet. If there are more than one neighbors that are to
be included in the packet, just allocate enough space for the packet buf, and
pass the neighbors as the "optional data payload."
\fBlibnet_build_ospf_dbd()\fP builds an OSPF DataBase Description (DBD)
packet.
You pass the maximum length of an IP packet the interface can use, packet
options, the type of exchange occuring, a sequence number, a pointer to an
optional data payload, the payload length, and a pointer to a pre-allocated
block of memory for the packet. The following can be used for the type
variable:
DBD_IBIT Init bit
.ti
DBD_MBIT More DBD packets to come
.ti
DBD_MSBIT sender is the master
\fBlibnet_build_ospf_lsr()\fP builds an OSPF Link State Request (LSR) packet.
You pass the type of link state packet being requested, the link state ID, the
advertising router, a pointer to an optional data payload, the payload length,
and a pointer to a pre-allocated block of memory for the packet. See the
\fBlibnet_build_ospf_lsa()\fP section for more information regarding
variables.
\fBlibnet_build_ospf_lsu()\fP builds an OSPF Link State Update (LSU) packet.
You pass the number of Link State Acknowledgment (LSA) packets that will be in
the packet, a pointer to an optional data payload, the payload length, and a
pointer to a pre-allocated block of memory for the packet.
\fBlibnet_build_ospf_lsa()\fP builds an OSPF Link State Acknowledgement (LSA)
packet. You pass the link state age, packet options, type of LSA, the link
state ID, the advertising router, the packet's sequence number, the length of
the packet (_not_ including the LSA header length), a pointer to an optional
data payload, the payload length, and a pointer to a pre-allocated block of
memory for the packet. The following variables can be used for the type of
LSA:
LS_TYPE_RTR Router LSA
.ti
LS_TYPE_NET Network LSA
.ti
LS_TYPE_IP Summary LSA (IP Network)
.ti
LS_TYPE_ASBR Summary LSA (ASBR)
.ti
LS_TYPE_ASEXT AS-External LSA
\fBlibnet_build_ospf_lsa_rtr()\fP builds an OSPF Link State Router packet.
You
pass the optional packet flags, the number of links within that packet, the
link ID (helps describe the next variable), the info for the specified link
ID,
the type of router link, the number of TOS metrics for this link, the metric
(the cost of using the link), a pointer to an optional data payload, the
payload length, and a pointer to a pre-allocated block of memory for the
packet. The possible flags (not including 0x00) are as follows:
RTR_FLAGS_W W bit
.ti
RTR_FLAGS_E E bit
.ti
RTR_FLAGS_B B bit
.ti
The possible link ID's are as follows:
LINK_ID_NBR_ID Neighbors router ID
.ti
LINK_ID_IP_DES IP addr of router
.ti
LINK_ID_SUB IP subnet number
The possible values for the router type are as follows:
RTR_TYPE_PTP Point-to-point
.ti
RTR_TYPE_TRANS Connection to a "transit network"
.ti
RTR_TYPE_STUB Connection to a "stub network"
.ti
RTR_TYPE_VRTL Connection to a "virtual link"
\fBlibnet_build_ospf_lsa_net()\fP builds an OSPF Link Sate Network packet.
You
pass the interface's netmask, the router ID, a pointer to an optional data
payload, the payload length, and a pointer to a pre-allocated block of memory
for the packet.
\fBlibnet_build_ospf_lsa_sum()\fP builds an OSPF Link State Summary packet.
You
pass the interface's netmask, the cost of using the link (metric), the TOS
and metric, which is passed as a unsigned integer but the first 8 bits are the
TOS and the last 24 bits are the TOS metric, a pointer to an optional data
payload, the payload length, and a pointer to a pre-allocated block of memory
for the packet.
\fBlibnet_buils_ospf_lsa_as()\fP builds an OSPF Link State AS External packet.
You pass the interface's netmask, the cost of using the link (metric), the
forwarding address, the external route tag, a pointer to an optional data
payload, the payload length, and a pointer to a pre-allocated block of memory
for the packet. In reality, the metric only uses the last 24 bits of the
unsigned int. The first 8bits are reserved for a possible bit to be set (the
E bit, see above for more info). The variable AS_E_BIT_ON can be used
logically to set the E bit on.
.SH OSPF MACROS
\fBLIBNET_OSPF_AUTHCPY()\fP simply copies, byte for byte, your authentication
buf to the pre-allocated block of memory for your packet.
.SH OSPF FUNCTION VARIABLES
Random variables:
IPPROTO_OSPF 89
.ti
OSPFVERSION 2
Header Lengths:
OSPF_H OSPF header
.ti
HELLO_H Hello header
.ti
DBD_H DBD header
.ti
LSR_H LSR header
.ti
LSU_H LSU header
.ti
LSA_H LSA header
.ti
LS_RTR_LEN LS-Router header
.ti
LS_NET_LEN LS-Network header
.ti
LS_SUM_LEN LS-Summary header
.ti
LS_AS_EXT_LEN LS-AS External header
Packet options:
OPT_EBIT AS-external-LSAs are flooded
.ti
OPT_MCBIT IP multicast dgrams are forwarded
.ti
OPT_NPBIT Handles type-7 LSAs
.ti
OPT_EABIT Sends/recv's AS-external LSAs
.ti
OPT_DCBIT Handles demand circuits
\fBlibnet_build_rip()\fP constructs a RIP (routing information protocol)
packet. The values supplied depend on the version of the RIP packet you
desire to build. The following table applies:
Passing Order Datatype RIP v1 RIPv2
.ti
first byte command command
.ti
second byte version version
.ti
third ushort zero routing domain
.ti
fourth ushort address family address family
.ti
fifth ushort zero route tag
.ti
sixth ulong IP address IP address
.ti
seventh ulong zero subnet mask
.ti
eighth ulong zero next hop IP
.ti
ninth ulong metric metric
.ti
tenth const u_char * Packet payload
.ti
eleventh int Packet payload size
.ti
twelfth u_char * Packet header memory
The command should be one of the following: RIPCMD_REQUEST, RIPCMD_RESPONSE,
RIPCMD_TRACEON, RIPCMD_TRACEOFF, RIPCMD_POLL, RIPCMD_POLLENTRY, or
RIPCMD_MAX. The version should be RIPVER_1 or RIPVER_2.
\fBlibnet_build_tcp()\fP builds a TCP packet. Supplied is the source port,
destination port, the sequence and acknowledgement numbers, the control bits
(which can be logically OR'd together to set multiple flags -- see the example
below), the advertised window size, the urgent pointer, a pointer to an
optional data payload, the payload size, and lastly, the pointer to a
pre-allocated block of memory for the packet. To just build a TCP header
with no data payload, only TCP_H bytes need be allocated.
\fBlibnet_build_udp()\fP builds a UDP packet. Supplied is the source port, the
destination port, a pointer to an optional data payload, the payload size,
and lastly, a pointer to a pre-allocated block of memory for the packet.
To just build a UDP header with no data payload, only UDP_H bytes need to
be allocated.
\fBlibnet_insert_ipo()\fP inserts IP options into an already created IP packet.
Supplied is a pointer to an ip option struct (which must be filled in by the
user), the size of the options list, and a pointer the completed packet. The
function returns -1 if the options would make the packet too large (greater
then 65535 bytes) or 1 otherwise. It is an unchecked runtime error for
the user to have not allocated enough heap memory for the packet + options.
\fBlibnet_insert_tcpo()\fP inserts TCP options into an already created IP
packet. Replace the pointer to an IP option struct with one to a TCP option
struct and this function is exactly the same as above.
.SH MISCELLANEOUS SUPPORT ROUTINES
\fBlibnet_seed_prand()\fP seeds the psuedorandom number generator. Returns 1
on success, -1 on failure.
\fBlibnet_get_prand()\fP returns a positive psuedorandom integer of the
specified type. Expects type to be one of five symbolics PR2, PR8, PR16,
PRu16, PR32 or PRu32. PR2 returns a one or a zero, PR8 returns a byte, PR16
returns up to a signed short (from 0 to 32767), PRu16 returns an unsigned
short (from 0 to 65535), PR32 returns a signed long (from 0 to 2147483647)
and PRu32 returns an unsigned long number (from 0 to 4294967295).
\fBlibnet_hex_dump()\fP prints a packet out in hex. Supplied is the packet
and its length, a swap flag, and a pointer to a previously opened
stream. The swap flag (1 or 0) specifies whether or not to print the packet
as it appears in memory (0) or to swap the bytes into host order (1).
\fBlibnet_plist_chain_new()\fP builds a new libnet port list chain. A libnet
port list chain is a fast and simple way of implementing port list ranges
(useful for applications that employ a list of ports like a port scanner).
You'll see naive implementations that allocate an entire array of 65535 bytes
and fill in the desired ports one by one. However, we only really need to
store the beginning port and the ending port, and we can efficiently store
multiple port ranges (delimated by commas) by using a linked list chain with
each node holding the beginning and ending port for a particular range. For
example, The port range `1-1024` would occupy one node with the bport being 1
and the eport being 1024. The port range `25,110-161,6000` would result
in 3 nodes being allocated. Single ports are taken as single ranges (port
25 ends up being 25-25). A port list range without a terminating port
(port_num - ) is considered shorthand for (port_num - 65535).
The arguments are a pointer to libnet_plist_chain pointer (which will end
up being the head of the linked list) and pointer to the port list itself.
The function checks this character port list for valid tokens (1234567890,- )
and returns an error if an unrecognized token is found. Upon success the
function returns 1, and head points to the newly formed port list (and also
contains the number of nodes in the list. If an error occurs (an unrecognized
token is found or malloc fails) -1 is returned and head is set to NULL.
libnet_plist_chain_next_pair() should be used to extract port list pairs.
\fBlibnet_plist_chain_next_pair()\fP fetchs the next pair of ports from the
list. The function takes a pointer to the head of the prebuilt list and
a pointer to a u_short that will contain the beginning port and a pointer
to a u_short that will contain the ending port. The function returns 1 and
fills in these values if there are nodes remaining, or if the port list
chain is exhausted, it returns 0.
\fBlibnet_plist_chain_dump()\fP prints the list (as lists of integers).
\fBlibnet_plist_chain_dump_string()\fP returns a string containing the
port list chain.
\fBlibnet_plist_chain_free()\fP frees the entire list.
\fBlibnet_error()\fP dumps an error message to stderr. Included is the
severity of the message (LIBNET_ERR_WARNING, LIBNET_ERR_CRITICAL, or
LIBNET_ERR_FATAL) and the message string itself. If the severity is
LIBNET_ERR_FATAL, the function will exit the program. This is the only
defined exit point in the whole library.
.SH ASN.1 BER ROUTINES
\fBlibnet_build_asn1_int()\fP
\fBlibnet_build_asn1_uint()\fP
\fBlibnet_build_asn1_string()\fP
\fBlibnet_build_asn1_header()\fP
\fBlibnet_build_asn1_length()\fP
\fBlibnet_build_asn1_sequence()\fP
\fBlibnet_build_asn1_objid()\fP
\fBlibnet_build_asn1_null()\fP
\fBlibnet_build_asn1_bitstring()\fP
.SH SYMBOLIC CONSTANTS
To make your life and code cleaner, libnet defines symbolic constants to make
your life easier.
Default packet header sizes:
.ti
LIBNET_ARP_H ARP
.ti
LIBNET_DNS_H DNS
.ti
LIBNET_ETH_H ethernet
.ti
LIBNET_ICMP_H ICMP header (base)
.ti
LIBNET_ICMP_ECHO_H ICMP_ECHO / ICMP_ECHOREPLY
.ti
LIBNET_ICMP_MASK_H ICMP_MASKREQ / ICMP_MASKREPLY
.ti
LIBNET_ICMP_UNREACH_H ICMP_UNREACHABLE (base)
.ti
LIBNET_ICMP_REDIRECT_H ICMP_REDIRECT (base)
.ti
LIBNET_ICMP_TS_H ICMP_TSTAMP (base)
.ti
LIBNET_ICMP_TIMXCEED_H ICMP_TIMXCEED (base)
.ti
LIBNET_IGMP_H IGMP
.ti
LIBNET_IP_H IP
.ti
LIBNET_RIP_H RIP
.ti
LIBNET_TCP_H TCP
.ti
LIBNET_UDP_H UDP
Standard memory sizes for packets:
.ti
LIBNET_PACKET Standard packet size (IP_H + TCP_H)
.ti
LIBNET_OPTS Maximum IP options list
.ti
LIBNET_MAX_PACKET Maximum IPv4 packet size
Other constants you should know about:
IP Type Of Service constants:
.ti
IPTOS_LOWDELAY Minimize delay
.ti
IPTOS_THROUGHPUT Maximize throughput
.ti
IPTOS_RELIABILITY Maximize reliability
.ti
IPTOS_MINCOST Minimize monetary cost
IP Fragmentation flags:
.ti
IP_DF Don't fragment this datagram
.ti
IP_MF More fragments en route
TCP control bits:
.ti
TH_URG Urgent flag
.ti
TH_ACK Acknowledgement field valid
.ti
TH_PSH Push this data to application layer
.ti
TH_RST Reset the referenced connection
.ti
TH_SYN Synchronize connection state
.ti
TH_FIN Finished sending data
.SH COMPLIATION USING THE CONFIGURE SCRIPT
To properly compile your applications under libnet, you should use the
`libnet-config` script. This script is created during the GNU configure
process will ensure that future compilations linked against libnet contain the
correct CPP and CFLAG options as well as additional libraries for the targeted
architecture. To invoke it simply:
gcc `libnet-config --defines --cflags` foo.c -o foo `libnet-config --libs`
The script handles all libnet dependencies and concessions for the architecture
it was compiled on.
.SH SEE ALSO
pcap(3), bpf(4), dlpi(7P)
.SH AUTHOR
Mike D. Schiffman <mike@infonexus.com>
See the online web reference manual for additional contributers.
.LP
The current version is always available:
.LP
.RS
.I http://www.packetfactory.net/libnet
.RE
.SH BUGS
Solaris raw sockets are cooked. They do not allow one to set the ip_len,
ip_frag or the ip_id (including IP options at the raw socket layer doesn't work
either). To work around this, use the link-layer API instead of raw socket
functions.
The Berkeley Packet Filter does not allow for the arbitrary specification
of source ethernet addresses. This is not so much a bug as an oversight
in the protocol. Included with the distribution is lkm code to work around
this.
The OSPF functionality has not been extensively tested as yet and is
considered to be in beta release.
Please send bug reports to mike@infonexus.com.
|