代做CS 168 Spring 2025 Project 3: Transport帮做Python编程

CS 168 Spring 2025

Project 3: Transport

In this project, you will implement a subset of the TCP protocol. Your implementation will provide reliability, though it wonʼt include congestion control.

Lectures needed for this project: Lecture 11 (Reliability), 12 (TCP Implementation).

You can work on this project alone, or with one partner. You can keep the same partner from an earlire project, or choose a different partner. Reminder: Our course policies page has a collaboration policy that you must follow.

Setup

Operating System Installation

This project has been tested to work on Linux and Mac.

If youʼre on Windows, we recommend using WSL.

Python Installation

This project has been tested to work on Python 3.7. (It probably works on newer versions of Python as well, but use at your own risk.)

If you run python3 --version or python --version in your terminal and you see output of the form. Python 3.7.*, youʼre all set.

Starter Code

Download a copy of the starter code here.

In your terminal, use cd to navigate to the cs168-sp25-proj3-transport/ext/cs168p2 directory. All of the Python commands should be run from this directory.

To check that your setup works, in your terminal, run:

python ../../pox.py config=tests/sanity_test.cfg

If you see this message, everything should be set up correctly:

[test] [00:00:02] All checks passed, test PASSED

You should only edit ext/cs168p2/student_socket.py. There are comments clearly indicating the places where you should fill in code.

Guidelines:

Donʼt modify any other files.

Donʼt add any new files.

Donʼt add any imports.

Donʼt edit any code outside the sections indicated by the comments.

Donʼt add any hard-coded global variables.

Adding helper methods is fine.

In general, if we havenʼt told you to use something, you probably donʼt need it. Our goal is not to trick you!

New Spec

Note: This spec has been rewritten for Fall 2024 to be clearer and provide a few extra hints. It may contain bugs.

If you would like to work off the previous version of the spec, you can find it here.

Project Overview

This project is split into 9 stages.

In Project 3A, youʼll need to complete Stages 1–5.

In Project 3B, youʼll need to complete Stages 6–9.

Each stage has its own unit tests, provided to you locally. Your grade will be determined only by these unit tests (no hidden tests).

To run a unit test, navigate to cs168-sp25-proj3-transport/ext/cs168p2, and run one of these commands, replacing 5 with the number of the stage you want to test:

python autograder.py s5 # Runs unit tests for Stage 5.

python autograder.py all # Runs all unit tests.

python autograder.py all 5 # Runs all unit tests up to and including Stage 5.

If a test fails, youʼll see some output like this:

test_s1_t1 (__main__.test_s1_t1.test_s1_t1) ...

Running test: ./tests/s1_t1.cfg

Tracefile: ./trace/s1_t1/2024-08-22T16:09:52.593234

../../pox.py config=./tests/s1_t1.cfg tcpip.pcap --node=r1 --no-tx --filename=./trace/s1_t1/20

FAIL

To see nicely-formatted output for that specific test, take the last line, just before the “FAIL,” drop the --filename argument, and run that command in your terminal:

../../pox.py config=./tests/s1_t1.cfg tcpip.pcap --node=r1 --no-tx

Code Overview

You will be implementing the StudentUSocket class in student_socket.py, which represents a TCP socket.

student_socket.py also contains other useful methods, which weʼll describe below.

Modular Arithmetic

Sequence numbers are 32 bits long, and they can wrap around (e.g. 0xFFFFFFFF + 1 = 0x00000000).

Whenever you perform. arithmetic operations on sequence numbers, use these operators:

State

The instance variable self.state records the state of the current TCP connection.

self.state is always assigned to one of the values in this list:

[CLOSED, LISTEN, SYN_RECEIVED, ESTABLISHED, SYN_SENT, FIN_WAIT_1, FIN_WAIT_2, CLOSING, TIME_WA

Weʼll describe more details about each state as they come up in the spec.

Send Sequence Space: TXControlBlock

The instance variable self.tx_data is a byte array representing what youʼre sending. The user will append bytes to the back of this array, and you will remove bytes from the front of this array as you send them out.

The instance variable self.snd is a TXControlBlock object, which has information about the outgoing bytestream that you are sending.

The TXControlBlock object has the following relevant instance variables:

self.snd.iss: Your initial sequence number.

self.snd.una: The oldest unacknowledged sequence number that you sent.

self.snd.nxt: The next sequence number you should send.

self.snd.wnd: The current size of your send window, determined by how much buffer space the other side (recipient) has left.

This diagram shows the bytestream that you are sending and what the instance variables represent:

Receive Sequence Space: RXControlBlock

The instance variable self.rx_data is a byte array representing what youʼre receiving. As you receive packets, you should append their payloads (in the correct order) to this byte array so that the user can read them.

The instance variable self.rcv is a RXControlBlock object, which has information about the incoming bytestream that you are receiving.

The RXControlBlock object has the following relevant instance variables:

self.rcv.nxt: The next sequence number you expect to receive.

self.rcv.wnd: The current size of your receive window, determined by how much buffer space you have left.

This diagram shows the bytestream that you are sending and what the instance variables represent:

Receiving Incoming Segments

The packets you send and receive are TCP/IP packets.

If you receive an IP packet p, you can extract the TCP header and payload like this:

seg = p.tcp

If you receive a TCP segment seg, you can extract these fields from its header:

seg.seq: The sequence number.

seg.ack: The ack number.

seg.win: The advertised window (how much buffer space left on the other side).

seg.ACK: Whether this segment has the ACK flag set (Boolean value).

seg.SYN: Whether this segment has the SYN flag set (Boolean value).

seg.FIN: Whether this segment has the FIN flag set (Boolean value).

If you receive a TCP segment seg, you can extract the payload like this:

seg.payload # The payload.

len(seg.payload) # Length of the payload.

Sending Outgoing Segments

To create a new packet, you can use the function self.new_packet(ack=True, data=None, syn=False), which takes in the following arguments:

ack: Whether to set the ACK flag. True by default.

data: The TCP payload to send. None by default.

syn: Whether to set the SYN flag. False by default.



热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图