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
|
// MIT License, Copyright (c) 2020 Marvin Borner
#include <def.h>
#include <net.h>
#include <pci.h>
#include <print.h>
#include <rtl8139.h>
u8 ntohb(u8 byte, int num_bits);
u16 ntohs(u16 netshort);
u32 ntohl(u32 netlong);
void ip_handle_packet(struct ip_packet *packet, int len)
{
/* printf("V%d\n", packet->version_ihl); */
u32 test = (u32)packet->src_ip[0];
u8 *ip = (u8 *)ntohl(test);
printf("IP %d.%d.%d.%d\n", ip[0], ip[1], ip[2], ip[3]);
}
void ethernet_handle_packet(struct ethernet_packet *packet, int len)
{
void *data = packet + sizeof(*packet);
int data_len = len - sizeof(*packet);
if (ntohs(packet->type) == ETHERNET_TYPE_ARP) {
print("ARP PACKET\n");
} else if (ntohs(packet->type) == ETHERNET_TYPE_IP4) {
print("IP4 PACKET\n");
ip_handle_packet(data, data_len);
} else if (ntohs(packet->type) == ETHERNET_TYPE_IP6) {
print("IP6 PACKET\n");
ip_handle_packet(data, data_len);
} else {
printf("UNKNOWN PACKET %x\n", ntohs(packet->type));
}
}
void net_install()
{
rtl8139_install();
}
/**
* Utilities
*/
u16 flip_short(u16 short_int)
{
u32 first_byte = *((u8 *)(&short_int));
u32 second_byte = *((u8 *)(&short_int) + 1);
return (first_byte << 8) | (second_byte);
}
u32 flip_long(u32 long_int)
{
u32 first_byte = *((u8 *)(&long_int));
u32 second_byte = *((u8 *)(&long_int) + 1);
u32 third_byte = *((u8 *)(&long_int) + 2);
u32 fourth_byte = *((u8 *)(&long_int) + 3);
return (first_byte << 24) | (second_byte << 16) | (third_byte << 8) | (fourth_byte);
}
u8 flip_byte(u8 byte, int num_bits)
{
u8 t = byte << (8 - num_bits);
return t | (byte >> num_bits);
}
u8 htonb(u8 byte, int num_bits)
{
return flip_byte(byte, num_bits);
}
u8 ntohb(u8 byte, int num_bits)
{
return flip_byte(byte, 8 - num_bits);
}
u16 htons(u16 hostshort)
{
return flip_short(hostshort);
}
u32 htonl(u32 hostlong)
{
return flip_long(hostlong);
}
u16 ntohs(u16 netshort)
{
return flip_short(netshort);
}
u32 ntohl(u32 netlong)
{
return flip_long(netlong);
}
|