1 / 28

Raw Sockets

Raw Sockets. Raw Sockets. TCP/IP Stack. 67 Bootp DHCP. 69. 25. 21. 23. 53. 161. TCP Port #. UDP Port #. IPv6 41. EGP 8. OSPF 89. 6. 17. Port address. protocol. 1. 2. IP address. frame type. MAC address. User TCP. User UDP. IGMP. ICMP (ping, etc). TCP. TCP. UDP. RAW.

holt
Download Presentation

Raw Sockets

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Raw Sockets

  2. Raw Sockets

  3. TCP/IP Stack 67 Bootp DHCP 69 25 21 23 53 161 TCPPort # UDPPort # IPv641 EGP8 OSPF89 6 17 Port address protocol 1 2 IP address frametype MAC address

  4. User TCP User UDP IGMP ICMP (ping, etc) TCP TCP UDP RAW RAW port port port ICMP UDP stack TCP stack echotimestamp port 2 port 89 1 17 6 17 UDP 6 TCP 1 ICMP 2 IGMP 89 OSPF

  5. What can raw sockets do? Bypass TCP/UDP layers Read and write ICMP and IGMP packets ping, traceroute, multicast routing daemon Read and write IP datagrams with an IP protocol field not processed by the kernel OSPF Send and receive your own IP packets with your own IP header using the IP_HDRINCL socket option can build and send TCP and UDP packets testing, hacking only superuser can create raw socket though You need to do all protocol processing at user-level

  6. Creating Raw Sockets Only Superuser can create socket(AF_INET, SOCK_RAW, protocol) where protocol is one of the constants, IPPROTO_xxx, such as IPPROTO_ICMP. bind can be called on the raw socket, but this is rare. This function sets only the local address: There is no concept of a port number with a raw socket. connect can be called on the raw socket, but this is rare. This function sets only the foreign address: Again, there is no concept of a port number with a raw socket.

  7. Creating Raw Sockets: IP Header option The IP_HDRINCL socket option can be set as follows: const int on = 1; if (setsockopt(sockfd, IPPROTO_IP, IP_HDRINCL, &on, sizeof(on)) < 0) error

  8. Raw Socket Output Normal output is performed by calling sendto or sendmsg and specifying the destination IP address write, writev, or send can also be called if the socket has been connected. If the IP_HDRINCL option is not set, kernel prepends the IP header The kernel sets the protocol field of the IPv4 header that it builds to the third argument from the call to socket. If the IP_HDRINCL option is set, the starting address of the data for the kernel to send specifies the first byte of the IP header. The process builds the entire IP header, except: (i) the IPv4 identification field can be set to 0, which tells the kernel to set this value; (ii) the kernel always calculates and stores the IPv4 header checksum; and (iii) IP options may or may not be included The kernel fragments raw packets that exceed the outgoing interface MTU.

  9. Raw Socket Input Which received IP datagrams does the kernel pass to raw sockets? Received UDP packets and received TCP packets are never passed to a raw socket. read at the datalink layer Most ICMP packets are passed to a raw socket after the kernel has finished processing the ICMP message. Except echo request, timestamp request, and address mask request All IGMP packets are passed to a raw socket after the kernel has finished processing the IGMP message. All IP datagrams with a protocol field that the kernel does not understand are passed to a raw socket. If the datagram arrives in fragments, nothing is passed to a raw socket until all fragments have arrived and have been reassembled.

  10. Raw Socket Input When the kernel has an IP datagram, all raw sockets for all processes are examined, looking for all matching sockets. A copy of the IP datagram is delivered to each matching socket. The following tests are performed for each raw socket and only if all three tests are true is the datagram delivered to the socket: If a nonzero protocol is specified, protocol field must match If a local IP address is bound to the raw socket by bind, then the destination IP address of the received datagram must match If a foreign IP address was specified for the raw socket by connect, then the source IP address of the received datagram must match Notice that if a raw socket is created with a protocol of 0, and neither bind nor connect is called, then that socket receives a copy of every raw datagram the kernel passes to raw sockets.

  11. Raw Socket Input Whenever a received datagram is passed to a raw IPv4 socket, the entire datagram, including the IP header, is passed to the process For a raw IPv6 socket, only the payload (i.e., no IPv6 header or any extension headers) is passed to the socket

  12. Raw Socket Input Whenever a received datagram is passed to a raw IPv4 socket, the entire datagram, including the IP header, is passed to the process For a raw IPv6 socket, only the payload (i.e., no IPv6 header or any extension headers) is passed to the socket

  13. Example: Ping Program Send an ICMP echo request to some IP address and receive an ICMP echo reply. #ping 172.10.1.3 Ping 172.10.1.3: 56 bytes of data Reply from 172.10.1.3: bytes=56 time<10ms ttl=255 … (4 replies) Not active : Request Timeout

  14. ICMP Message set the identifier to the PID of the ping process and we increment the sequence number by one for each packet we send We store the 8-byte timestamp of when the packet is sent as the optional data. The rules of ICMP require that the identifier, sequence number, and any optional data be returned in the echo reply. Storing the timestamp in the packet lets us calculate the RTT when the reply is received.

  15. ICMP Message

  16. ICMP Echo Message

  17. ICMP Echo Message

  18. ICMP Echo Message

  19. Ping Program main Sig_Alrm Read loop Send_v4 Proc_v4 recvfrom Send an echo request once a second Infinite receive loop

  20. Traceroute Example Determines the path IP datagrams follow Uses TTL field(IPv4) or hop limit(IPv6) and two ICMP messages One UDP datagram is sent by the host with TTL=1 to the destination 1st hop router sends an ICMP “time exceed in transit” error TTL is increased to 2, and another datagram is sent Process repeats with a final datagram with a port number not in use on the destination, so that destination can send “ICMP port unreachable” error

  21. ICMP Daemon

  22. Datalink Access Uses Watch packets on the interface Programs can be run as applications than as part of kernel Ways to access the datalink BSD Packet Filter Datalink Provider Interface Linux SOL_PACKET interface Public library: libpcap

  23. BSD Packet filter application application process Writing is not frequent. Why? buffer buffer kernel IPv6 filter IPv4 filter BPF datalink Filters: tcp, udp, tcp[15:1] 1 byte starting at offset 15

  24. BPF reduces its’ overhead by Filtering is within the kernel Only a part of each packet is transmitted Uses buffering for both read and write to reduce number of system calls. Accessing a BPF: Open a BPF device, Use ioctl to set the properties like Load the filter, set read timeout, set buffer size, attach a DL to BPF, enable Promiscuous mode etc.

  25. Linux : SOCK_PACKET Superuser privileges are required Fd =socket(AF_INET, SOCK_PACKET, htons (ETH_P_ALL)) ETH_P_IP, ETH_P_ARP, ETH_IP_IPV6 • Disadvantages: • No kernel buffering, hence, more system calls • No device filtering, hence, ETH_IP_P will give • packets from Ethernet, PPP, SLIP links, and loop • back devices

  26. ICMP Format subtype

  27. Ping Program Create a raw socket to send/receive ICMP echo request and echo reply packets Install SIGALRM handler to process output Sending echo request packets every t second Build ICMP packets (type, code, checksum, id, seq, sending timestamp as optional data) Enter an infinite loop processing input Use recvmsg() to read from the network Parse the message and retrieve the ICMP packet Print ICMP packet information, e.g., peer IP address, round-trip time

  28. Traceroute program Create a UDP socket and bind source port To send probe packets with increasing TTL For each TTL value, use timer to send a probe every three seconds, and send 3 probes in total Create a raw socket to receive ICMP packets If timeout, printing “ *” If ICMP “port unreachable”, then terminate If ICMP “TTL expired”, then printing hostname of the router and round trip time to the router

More Related