type
status
slug
date
summary
tags
category
password
icon

Lab Checkpoint 5: down the stack (the network interface)

这里的check4应该是checkpoint5,check 5应该是checkpoint6,因为本来的checkpoint没有做任何编码上的工作
这里的check4应该是checkpoint5,check 5应该是checkpoint6,因为本来的checkpoint没有做任何编码上的工作

接口定义

  1. void NetworkInterface::send_datagram(const InternetDatagram &dgram, const Address &next hop); This method is called when the caller (e.g., your TCPConnection or a router) wants to send an outbound Internet (IP) datagram to the next hop. It’s your interface’s job to translate this datagram into an Ethernet frame and (eventually) send it. • If the destination Ethernet address is already known, send it right away. Create an Ethernet frame (with type = EthernetHeader::TYPE IPv4), set the payload to be the serialized datagram, and set the source and destination addresses. • If the destination Ethernet address is unknown, broadcast an ARP request for the next hop’s Ethernet address, and queue the IP datagram so it can be sent after the ARP reply is received.
    1. Except: You don’t want to flood the network with ARP requests. If the network interface already sent an ARP request about the same IP address in the last five seconds, don’t send a second request—just wait for a reply to the first one. Again, queue the datagram until you learn the destination Ethernet address.
  1. void NetworkInterface::recv_frame(const EthernetFrame &frame); This method is called when an Ethernet frame arrives from the network. The code should ignore any frames not destined for the network interface (meaning, the Ethernet destination is either the broadcast address or the interface’s own Ethernet address stored in the ethernet address member variable).
      • If the inbound frame is IPv4 , parse the payload as an InternetDatagram and, if successful (meaning the parse() method returned ParseResult::NoError), push the resulting datagram on to the datagrams_received_queue.
      • If the inbound frame is ARP, parse the payload as an ARPMessage and, if successful, remember the mapping between the sender’s IP address and Ethernet address for 30 seconds. (Learn mappings from both requests and replies.) In addition, if it’s an ARP request asking for our IP address, send an appropriate ARP reply.
  1. void NetworkInterface::tick(const size t ms since last tick); This is called as time passes. Expire any IP-to-Ethernet mappings that have expired.

Q&A

How do I convert an IP address that comes in the form of an Address object, into a raw 32-bit integer that I can write into the ARP message? Use the Address::ipv4_numeric() method.
确实难度不高,给出代码仓库吧:
minnow
KMSorSMSUpdated Jun 30, 2024
 
cs144Lab3cs144Lab6
Loading...
liamY
liamY
Chasing Possible
最新发布
Enter AMX (Advanced Matrix Extensions)
2025-3-26
ktransformers相关内容学习
2025-2-16
sglang_benchmark
2025-2-7
SnapKV: LLM Knows What You are Looking for Before Generation
2024-12-12
数字电路复习
2024-12-11
CacheBlend: Fast Large Language Model Serving with Cached Knowledge Fusion论文学习
2024-11-23
公告
🎉Liam’s blog🎉
-- 全新上线 ---
👏欢迎comment👏
⚠️由于浏览器缓存的原因,有些内容是更新了的但是需要手动刷新3次左右,页面才会显示更新内容