Skip to main content
留学咨询

comp3301

By May 15, 2020No Comments

COMP3301/COMP7308 2019 Assignment 1 (DRAFT)• Due: During pracs on 21st and 23rd of August 2019• Revision : 222 (DRAFT)1 RFC 8086 – GRE-in-UDP EncapsulationThis assignment asks you to write a simplified implementation of RFC 8086 – GRE in UDP encapsulationcalled greu. The implementation will support multiplexing multiple IP or Ethernet tunnels over a singleUDP socket.The purpose this assignment is to expose you to event driven programming, working against existing APIsand libraries, and the use of the OpenBSD code style and tool chain.This is an individual assignment. You should feel free to discuss aspects of C programming and theassignment specification with fellow students. You should not actively help (or seek help from) otherstudents with the actual coding of your assignment solution. It is cheating to look at another student’scode and it is cheating to allow your code to be seen or shared in printed or electronic form. You shouldnote that all submitted code may be subject to automated checks for plagiarism and collusion. If we detectplagiarism or collusion, formal misconduct proceedings will be initiated against you. If you’re havingtrouble, seek help from a member of the teaching staff. Don’t be tempted to copy another student’s code.You should read and understand the statements on student misconduct in the course profile and on theschool web-site: https://www.itee.uq.edu.au/itee-student-misconduct-including-plagiarism2 Specificationsgreu is used to tunnel multiple network connections over a single UDP connection. It supports tunnellingboth IP (layer 3) and Ethernet (layer 2) packets inside the GRE protocol.Each network tunnel is connected to the kernel via the tun(4) and tap(4) device drivers. Packets readfrom the kernel are encapsulated in GRE before being sent on the UDP socket. GRE packets receivedfrom the socket are decapsulated and written to the appropriate device.2.1 Code StyleYour code is to be written according to OpenBSD’s style guide, as per the style(9) man page.2.2 CompilationYour code is to be built on an amd64 OpenBSD 6.5 system. It must compile as a result of running make(8)in the root directory of your submitted assignment. Compilation must produce a binary called greu ineither the same directory, or in the obj directory if it exists.Compilation of greu must succeed with -Wall passed as a flag to the compiler.12.3 InvocationWhen run with no arguments, or extra or unknown options, greu should print a usage message to stderr:usage: greu [-46d] [-l address] [-p port][-e /dev/tapX[@key]] [-i /dev/tunX[@key]]server [port]and terminate with a non-zero exit code.greu takes the following command line arguments:-4 Force greu to use IPv4 addresses only.-6 Force greu to use IPv6 addresses only.-d Do not daemonise. If this option is specified, greu will run in the foreground and log to stderr. Bydefault greu will daemonise.-l address Bind to the specified local address. By default greu does not bind to a local address.-p port Use the specified source port. By default greu should use the destination port as the sourceport.-e /dev/tapX[@key] Tunnel Ethernet traffic for the specified tunnel device. If @key is specified, enablethe use of the GRE Key extension header. This option may be specified multiple times to addEthernet tunnels.-i /dev/tunX[@key] Tunnel IPv4 and IPv6 traffic for the specified tunnel device. If @key is specified,enable the use of the GRE Key extension header. This option may be specified multiple times toadd IP tunnels.server The IP address or host name of the remote tunnel endpoint.port Use the specified port on the server as the remote tunnel endpoint. By default greu should useport 4754 as per the RFC.At least one IP or Ethernet tunnel must be configured.If greu is unable to bind to the specified local address and port, connect to the remote server and port, oropen the specified tunnel interfaces, it should generate an appropriate error and terminate with a non-zeroexit status.2.4 Functionality• greu should use a single UDP socket to connect to the address specified by the command linearguments for exchange of GRE-in-UDP packets– it must support both IPv4 and IPv6 sockets– addresses may be numeric IP addresses or host names– ports may be numeric or a name listed in /etc/services• Repeated specification of command line options may overwrite previously set values• greu is only required to implemented a simplified RFC8086:– DTLS support is not required– it only has to create a single UDP connection to the server– it can expect to receive replies to the local port it transmits from– encoding entropy by using multiple source ports is not required– it will act as a client talking to a server• It only needs to support GRE Version 0 encapsulation2• It does not need to implement any GRE extensions apart from the GRE Key Extension header• It must support tunnelling Ethernet and IP packets– Ethernet packets are identified by the Transparent Ethernet protocol identifier (0x6558)– IPv4 and IPv6 packets are identified by their respective Ethernet protocol identifierss (0x0800and 0x86dd).• Tunnels are uniquely identified by their type (Ethernet or IP) and the Key (no key, or a 32bitnumber)– The same Key may be used by IP and Ethernet tunnels– The same Key must not be reused by the same type of tunnel2.5 Required Dependenciesgreu must only use the following libraries and the APIs they provide to implement the above functionality.2.5.1 libclibc refers to the ISO or POSIX standard C library provided by UNIX and UNIX like operating systems.A libc contains the APIs required by greu for such tasks as resolving host and service names to IPaddresses and ports, creating network sockets and connections, and opening and reading files.2.5.2 libeventAccording to http://libevent.org/, libevent:. . . provides a mechanism to execute a callback function when a specific event occurs on a filedescriptor or after a timeout has been reached. Furthermore, libevent also support callbacksdue to signals or regular timeouts.OpenBSD ships with libevent 1.4 with local patches. It is this version of libevent in the base systemwhat you are required to write greu against.2.5.3 tun(4)According to the tun(4) manual page:The tun driver provides a network interface pseudo-device. Packets sent to this interfacecan be read by a userland process and processed as desired. Packets written by the userlandprocess are injected back into the kernel networking subsystem.It is important to note that the type of IP packet is included as a 4 byte prefix on packets read from orwritten to the device.2.5.4 tap(4)According to the tap(4) manual page:The tap driver provides an Ethernet interface pseudo-device. Packets sent to this interfacecan be read by a userland process and processed as desired. Packets written by the userlandprocess are injected back into the kernel networking subsystem.32.6 Logging APIgreu may use the log.c and log.h file supplied by the course, rather than implementing this functionalityitself.The API and documentation is provided at https://github.com/dgwynne/lerr. If used, the code shouldcopied into the submitted assignment.2.7 Restrictions• greu must operate as a single process/thread, therefore it may not fork (after daemonising) or createthreads.2.8 RecommendationsThe focus of this assignment is event driven programming, not on creating new implementations of commonfunctionality. It is strongly recommended that the following APIs are used as part of your program:• getopt(3) – get option character from command line argument list• err(3), warn(3), etc – formatted error messages• getaddrinfo(3) – host and service name to socket address structure• gai_strerror(3) – get error message string from EAI_xxx error code• strtonum(3) – reliably convert string value to an integer• daemon(3) – run in the background• ioctl(2) – control device, used to configure non-blocking file descriptor operation3 SubmissionSubmission must be made electronically by committing to your Subversion repository onsource.eait.uq.edu.au. In order to mark your assignment the markers will check out ass1from your rep
ository. Code checked in to any other part of your repository will not be marked.As per the source.eait.uq.edu.au usage guidelines, you should only commit source code and MakefilesThe due date for the code submission is the beggining of your prac session, either 2pm on Wednesday the21st, or 12pm on Friday the 23rd of August 2019. Note that no submissions can be made more than 120hours past the deadline under any circumstances.4 Testing4.1 EthernetA server is running on the IPv4 address of fungus.labs.eait.uq.edu.au on port 3301 that implementsa GRE-in-UDP server. This server implements a virtual Ethernet switch, allowing GRE-in-UDP tunnelsto communicate, but has no support for IPv4 and IPv6 tunnels. The server has the following Keys andIPv4 subnets configured:• No Key: 100.64.0.1/24• Key 0: 100.64.1.1/24• Key 3301: 100.64.33.1/24• Key 7308: 100.64.73.1/24IPv4 addresses can be requested via DHCP on all four networks. The server should support communicationbetween tunnels connected to the same networks.44.2 IPIP tunnel connectivity may be tested by using greu on different computers, using each other as the remotepeer.4.3 Packet InspectionSeveral tools are available that are capture and disect network packets for inspection. These may be usedto verify that the packets on the wire conform to the expected format. tcpdump(8) is available in theOpenBSD base system, and supports disection of GRE inside UDP. An example of it’s usage:# tcpdump -v -e -i em0 -Tgre host fungus.labs.eait.uq.edu.au and port 3301tcpdump: listening on em0, link-type EN10MB10:57:34.583486 bc:2c:55:36:7f:fb 74:88:2a:d4:b2:00 ip 88: dlgbox.eait.uq.edu.au.3301 > fungus.labs.eait.uq.edu.au.3301: [udp sum ok] gre [] 6558 fe:e1:ba:dd:8c:f9 fe:e1:ba:da:ab:9c ip 42: 100.64.0.38 > 100.64.0.1: icmp: echo request (id:0000 seq:0) [icmp cksum ok] (ttl 64, id 1, len 28) (ttl 64, id 1, len 74)5  

admin

Author admin

More posts by admin