KallistiOS git master
Independent SDK for the Sega Dreamcast
Loading...
Searching...
No Matches
net.h
Go to the documentation of this file.
1/* KallistiOS ##version##
2
3 include/kos/net.h
4 Copyright (C) 2002 Megan Potter
5 Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013,
6 2016 Lawrence Sebald
7
8*/
9
10/** \file kos/net.h
11 \brief Network support.
12 \ingroup networking_drivers
13
14 This file contains declarations related to networking support.
15
16 \author Lawrence Sebald
17 \author Megan Potter
18*/
19
20#ifndef __KOS_NET_H
21#define __KOS_NET_H
22
23#include <sys/cdefs.h>
24__BEGIN_DECLS
25
26#include <arch/types.h>
27#include <sys/queue.h>
28#include <netinet/in.h>
29
30/* All functions in this header return < 0 on failure, and 0 on success. */
31
32/** \defgroup networking Networking
33 \brief APIs and drivers for network and internet connectivity
34
35 KOS' built-in network stack supports UDP over IPv4, and to some degree has
36 some basic IPv6 support as well. This will change over time, hopefully
37 leaving us with full TCP and UDP support both over IPv4 and IPv6.
38*/
39
40/** \defgroup networking_drivers Drivers
41 \brief Low-level Drivers for Network Devices
42 \ingroup networking
43*/
44
45/** \brief Structure describing one usable network device.
46 \ingroup networking_drivers
47
48 Each usable network device should have one of these describing it. These
49 must be registered to the network layer before the device is usable.
50
51 \headerfile kos/net.h
52*/
53typedef struct knetif {
54 /** \brief Device list handle (not a function!) */
55 LIST_ENTRY(knetif) if_list;
56
57 /** \brief Device name ("bba", "la", etc) */
58 const char *name;
59
60 /** \brief Long description of the device */
61 const char *descr;
62
63 /** \brief Unit index (starts at zero and counts upwards for multiple
64 network devices of the same type) */
65 int index;
66
67 /** \brief Internal device ID (for whatever the driver wants) */
69
70 /** \brief Interface flags */
72
73 /** \brief The device's MAC address */
74 uint8 mac_addr[6];
75
76 /** \brief The device's IP address (if any) */
77 uint8 ip_addr[4];
78
79 /** \brief The device's netmask */
80 uint8 netmask[4];
81
82 /** \brief The device's gateway's IP address */
83 uint8 gateway[4];
84
85 /** \brief The device's broadcast address */
86 uint8 broadcast[4];
87
88 /** \brief The device's DNS server address */
89 uint8 dns[4];
90
91 /** \brief The device's MTU */
92 int mtu;
93
94 /** \brief The device's Link-local IPv6 address */
95 struct in6_addr ip6_lladdr;
96
97 /** \brief Any further IPv6 addresses the device has.
98 The first address in this list will always be used, unless otherwise
99 specified. */
102
103 /** \brief The device's gateway's IPv6 address */
104 struct in6_addr ip6_gateway;
105
106 /** \brief Default MTU over IPv6 */
108
109 /** \brief Default hop limit over IPv6 */
111
112 /* All of the following callback functions should return a negative
113 value on failure, and a zero or positive value on success. Some
114 functions have special values, as noted. */
115
116 /** \brief Attempt to detect the device.
117 \param self The network device in question.
118 \return 0 on success, <0 on failure.
119 */
120 int (*if_detect)(struct knetif * self);
121
122 /** \brief Initialize the device.
123 \param self The network device in question.
124 \return 0 on success, <0 on failure.
125 */
126 int (*if_init)(struct knetif * self);
127
128 /** \brief Shutdown the device.
129 \param self The network device in question.
130 \return 0 on success, <0 on failure.
131 */
132 int (*if_shutdown)(struct knetif * self);
133
134 /** \brief Start the device (after init or stop).
135 \param self The network device in question.
136 \return 0 on success, <0 on failure.
137 */
138 int (*if_start)(struct knetif * self);
139
140 /** \brief Stop (hibernate) the device.
141 \param self The network device in question.
142 \return 0 on success, <0 on failure
143 */
144 int (*if_stop)(struct knetif * self);
145
146 /** \brief Queue a packet for transmission.
147 \param self The network device in question.
148 \param data The packet to transmit.
149 \param len The length of the packet in bytes.
150 \param blocking 1 if we should block if needed, 0 otherwise.
151 \retval NETIF_TX_OK On success.
152 \retval NETIF_TX_ERROR On general failure.
153 \retval NETIF_TX_AGAIN If non-blocking and we must block to send.
154 */
155 int (*if_tx)(struct knetif * self, const uint8 * data, int len,
156 int blocking);
157
158 /** \brief Commit any queued output packets.
159 \param self The network device in question.
160 \return 0 on success, <0 on failure.
161 */
162 int (*if_tx_commit)(struct knetif * self);
163
164 /** \brief Poll for queued receive packets, if necessary.
165 \param self The network device in question.
166 \return 0 on success, <0 on failure.
167 */
168 int (*if_rx_poll)(struct knetif * self);
169
170 /** \brief Set flags; you should generally manipulate flags through here so
171 that the driver gets a chance to act on the info.
172 \param self The network device in question.
173 \param flags_and Bitmask to and with the flags.
174 \param flags_or Bitmask to or with the flags.
175 */
176 int (*if_set_flags)(struct knetif * self, uint32 flags_and, uint32 flags_or);
177
178 /** \brief Set the device's multicast list.
179 \param self The network device in question.
180 \param list The list of MAC addresses (6 * count bytes).
181 \param count The number of addresses in list.
182 */
183 int (*if_set_mc)(struct knetif *self, const uint8 *list, int count);
184} netif_t;
185
186/** \defgroup net_drivers_flags netif_t Flags
187 \brief Network interface flags
188 \ingroup networking_drivers
189 @{
190*/
191#define NETIF_NO_FLAGS 0x00000000 /**< \brief No flags set */
192#define NETIF_REGISTERED 0x00000001 /**< \brief Is it registered? */
193#define NETIF_DETECTED 0x00000002 /**< \brief Is it detected? */
194#define NETIF_INITIALIZED 0x00000004 /**< \brief Has it been initialized? */
195#define NETIF_RUNNING 0x00000008 /**< \brief Has start() been called? */
196#define NETIF_PROMISC 0x00010000 /**< \brief Promiscuous mode */
197#define NETIF_NEEDSPOLL 0x01000000 /**< \brief Needs to be polled for input */
198#define NETIF_NOETH 0x10000000 /**< \brief Does not use ethernet */
199/** @} */
200
201/** \defgroup net_drivers_returns TX Return Values
202 \brief Driver return values for TX network interfaces
203 \ingroup networking_drivers
204 @{
205 */
206#define NETIF_TX_OK 0 /**< \brief Tx success */
207#define NETIF_TX_ERROR -1 /**< \brief Tx general error */
208#define NETIF_TX_AGAIN -2 /**< \brief Retry Tx later */
209/** @} */
210
211/** \defgroup net_drivers_blocking Blocking Types
212 \brief Blocking type avlues for network interfaces
213 \ingroup networking_drivers
214 @{
215 */
216#define NETIF_NOBLOCK 0 /**< \brief Don't block for Tx */
217#define NETIF_BLOCK 1 /**< \brief Blocking is OK for Tx */
218/** @} */
219
220/** \cond */
221/* Define the list type */
222LIST_HEAD(netif_list, knetif);
223/** \endcond */
224
225/** \defgroup networking_ip IP
226 \brief API for the Internet Protocol
227 \ingroup networking
228*/
229
230/** \defgroup networking_ipv4 IPv4
231 \brief IPv4 Network Stack
232 \ingroup networking_ip
233*/
234
235/** \brief IPv4 Packet header.
236 \headerfile kos/net.h
237 \ingroup networking_ipv4
238*/
239typedef struct ip_hdr_s {
240 uint8 version_ihl; /**< \brief IP version and header length */
241 uint8 tos; /**< \brief Type of Service */
242 uint16 length; /**< \brief Length */
243 uint16 packet_id; /**< \brief Packet ID */
244 uint16 flags_frag_offs; /**< \brief Flags and fragment offset */
245 uint8 ttl; /**< \brief Time to live */
246 uint8 protocol; /**< \brief IP protocol */
247 uint16 checksum; /**< \brief IP checksum */
248 uint32 src; /**< \brief Source IP address */
249 uint32 dest; /**< \brief Destination IP address */
250} ip_hdr_t;
251
252/** \defgroup networking_ipv6 IPv6
253 \brief IPv6 Network Stack
254 \ingroup networking_ip
255*/
256
257/** \brief IPv6 Packet header.
258 \headerfile kos/net.h
259 \ingroup networking_ipv6
260*/
261typedef struct ipv6_hdr_s {
262 uint8 version_lclass; /**< \brief Version and low-order class
263 byte */
264 uint8 hclass_lflow; /**< \brief High-order class byte, low-order
265 flow byte */
266 uint16 lclass; /**< \brief Low-order class byte */
267 uint16 length; /**< \brief Length */
268 uint8 next_header; /**< \brief Next header type */
269 uint8 hop_limit; /**< \brief Hop limit */
270 struct in6_addr src_addr; /**< \brief Source IP address */
271 struct in6_addr dst_addr; /**< \brief Destination IP address */
272} ipv6_hdr_t;
273
274/***** net_arp.c **********************************************************/
275
276/** \defgroup networking_arp ARP
277 \brief API for the Address Resolution Protocol
278 \ingroup networking
279*/
280
281/** \brief Init ARP.
282 \ingroup networking_arp
283
284 \retval 0 On success (no error conditions defined).
285*/
286int net_arp_init(void);
287
288/** \brief Shutdown ARP.
289 \ingroup networking_arp
290 */
292
293/** \brief Add an entry to the ARP cache manually.
294 \ingroup networking_arp
295
296 \param nif The network device in use.
297 \param mac The MAC address of the entry.
298 \param ip The IPv4 address of the entry.
299 \param timestamp The entry's timestamp. Set to 0 for a permanent
300 entry, otherwise set to the current number of
301 milliseconds since boot (i.e, timer_ms_gettime64()).
302
303 \retval 0 On success.
304 \retval -1 Error allocating memory.
305*/
306int net_arp_insert(netif_t *nif, const uint8 mac[6], const uint8 ip[4],
307 uint64 timestamp);
308
309/** \brief Look up an entry from the ARP cache.
310 \ingroup networking_arp
311
312 If no entry is found, then an ARP query will be sent and an error will be
313 returned. If you specify a packet with the call, it will be sent when the
314 reply comes in.
315
316 \param nif The network device in use.
317 \param ip_in The IP address to lookup.
318 \param mac_out Storage for the MAC address, if found.
319 \param pkt A simple IPv4 header, if you want to send one when a
320 response comes in (if not found immediately).
321 \param data Packet data to go with the header.
322 \param data_size The size of data.
323
324 \retval 0 On success.
325 \retval -1 A query is outstanding for that address.
326 \retval -2 Address not found, query generated.
327 \retval -3 Error allocating memory.
328*/
329int net_arp_lookup(netif_t *nif, const uint8 ip_in[4], uint8 mac_out[6],
330 const ip_hdr_t *pkt, const uint8 *data, int data_size);
331
332/** \brief Do a reverse ARP lookup.
333 \ingroup networking_arp
334
335 This function looks for an IP for a given mac address; note that if this
336 fails, you have no recourse.
337
338 \param nif The network device in use.
339 \param ip_out Storage for the IPv4 address.
340 \param mac_in The MAC address to look up.
341
342 \retval 0 On success.
343 \retval -1 On failure.
344*/
345int net_arp_revlookup(netif_t *nif, uint8 ip_out[4], const uint8 mac_in[6]);
346
347/** \brief Receive an ARP packet and process it (called by net_input).
348 \ingroup networking_arp
349
350 \param nif The network device in use.
351 \param pkt The packet received.
352 \param len The length of the packet.
353
354 \retval 0 On success (no error conditions defined).
355*/
356int net_arp_input(netif_t *nif, const uint8 *pkt, int len);
357
358/** \brief Generate an ARP who-has query on the given device.
359 \ingroup networking_arp
360
361 \param nif The network device to use.
362 \param ip The IP to query.
363
364 \retval 0 On success (no error conditions defined).
365*/
366int net_arp_query(netif_t *nif, const uint8 ip[4]);
367
368
369/***** net_input.c *********************************************************/
370
371/** \brief Network input callback type.
372 \ingroup networking_drivers
373
374 \param nif The network device in use.
375 \param pkt The packet received.
376 \param len The length of the packet, in bytes.
377
378 \return 0 on success, <0 on failure.
379*/
380typedef int (*net_input_func)(netif_t *nif, const uint8 *pkt, int len);
381
382/** \brief Where will input packets be routed?
383 \ingroup networking_drivers
384 */
386
387/** \brief Device drivers should call this function to submit packets received
388 in the background.
389 \ingroup networking_drivers
390
391 This function may or may not return immediately but it won't take an
392 infinitely long time (so it's safe to call inside interrupt handlers).
393
394 \param device The network device submitting packets.
395 \param data The packet to submit.
396 \param len The length of the packet, in bytes.
397
398 \return 0 on success, <0 on failure.
399*/
400int net_input(netif_t *device, const uint8 *data, int len);
401
402/** \brief Setup a network input target.
403 \ingroup networking_drivers
404
405 \param t The new target callback.
406
407 \return The old target.
408*/
410
411/***** net_icmp.c *********************************************************/
412
413/** \defgroup networking_icmp ICMP
414 \brief API for the Internet Control Message Protocol
415 \ingroup networking
416*/
417
418/** \defgroup networking_icmpv4 ICMPv4
419 \brief API for v4 of the Internet Control Message
420 Protocol
421 \ingroup networking_icmp
422*/
423
424/** \brief ICMPv4 echo reply callback type.
425 \ingroup networking_icmpv4
426
427 \param ip The IPv4 address the reply is from.
428 \param seq The sequence number of the packet.
429 \param delta_us The time difference, in microseconds.
430 \param ttl The TTL value in the packet.
431 \param data Any data in the packet.
432 \param len The length of the data, in bytes.
433*/
434typedef void (*net_echo_cb)(const uint8 *ip, uint16 seq, uint64 delta_us,
435 uint8 ttl, const uint8 *data, size_t len);
436
437/** \brief Where will we handle possibly notifying the user of ping replies?
438 \ingroup networking_icmp
439 */
441
442/** \brief Send an ICMP Echo packet to the specified IP.
443 \ingroup networking_icmpv4
444
445 \param net The network device to use.
446 \param ipaddr The IPv4 address to send to.
447 \param ident A packet identifier.
448 \param seq A packet sequence number.
449 \param data Data to send with the packet.
450 \param size The size of the data to send.
451
452 \return 0 on success, <0 on failure.
453*/
454int net_icmp_send_echo(netif_t *net, const uint8 ipaddr[4], uint16 ident,
455 uint16 seq, const uint8 *data, size_t size);
456
457/** \defgroup networking_icmp_unreach Unreachable Values
458 \brief Valid values for net_icmp_send_dest_unreach().
459 \ingroup networking_icmpv4
460 @{
461*/
462#define ICMP_PROTOCOL_UNREACHABLE 2 /**< \brief Protocol unreachable */
463#define ICMP_PORT_UNREACHABLE 3 /**< \brief Port unreachable */
464/** @} */
465
466/** \brief Send an ICMP Destination Unreachable packet in reply to the given
467 message.
468 \ingroup networking_icmpv4
469
470 \param net The network device to use.
471 \param code The type of message this is.
472 \param msg The message that caused this error.
473
474 \return 0 on success, <0 on failure.
475*/
476int net_icmp_send_dest_unreach(netif_t *net, uint8 code, const uint8 *msg);
477
478/** \brief Valid values for the code in the net_icmp_send_time_exceeded()
479 function.
480 \ingroup networking_icmpv4
481 */
482#define ICMP_REASSEMBLY_TIME_EXCEEDED 1
483
484/** \brief Send an ICMP Time Exceeded packet in reply to the given message.
485 \ingroup networking_icmp
486
487 \param net The network device to use.
488 \param code The type of message this is.
489 \param msg The message that caused this error.
490
491 \return 0 on success, <0 on failure.
492*/
493int net_icmp_send_time_exceeded(netif_t *net, uint8 code, const uint8 *msg);
494
495/***** net_ipv4.c *********************************************************/
496
497/** \brief IPv4 statistics structure.
498 \ingroup networking_ipv4
499
500 This structure holds some basic statistics about the IPv4 layer of the
501 stack, and can be retrieved with the appropriate function.
502
503 \headerfile kos/net.h
504*/
505typedef struct net_ipv4_stats {
506 uint32 pkt_sent; /** \brief Packets sent out successfully */
507 uint32 pkt_send_failed; /** \brief Packets that failed to send */
508 uint32 pkt_recv; /** \brief Packets received successfully */
509 uint32 pkt_recv_bad_size; /** \brief Packets of a bad size */
510 uint32 pkt_recv_bad_chksum; /** \brief Packets with a bad checksum */
511 uint32 pkt_recv_bad_proto; /** \brief Packets with an unknown proto */
513
514/** \brief Retrieve statistics from the IPv4 layer.
515 \ingroup networking_ipv4
516
517 \return The net_ipv4_stats_t structure.
518*/
520
521/** \brief Create a 32-bit IP address, based on the individual numbers
522 contained within the IP.
523 \ingroup networking_ipv4
524
525 \param addr Array of IP address octets.
526
527 \return The address, in host byte order.
528*/
530
531/** \brief Parse an IP address that is packet into a uint32 into an array of
532 the individual bytes.
533 \ingroup networking_ipv4
534
535 \param addr The full address, in host byte order.
536 \param out The output buffer.
537*/
539
540/***** net_icmp6.c ********************************************************/
541
542/** \defgroup networking_icmpv6 ICMPv6
543 \brief API for v6 of the Internet Control Message
544 Protocol
545 \ingroup networking_icmp
546*/
547
548/** \brief ICMPv6 echo reply callback type.
549 \ingroup networking_icmpv6
550
551 \param ip The IPv6 address the reply is from.
552 \param seq The sequence number of the packet.
553 \param delta_us The time difference, in microseconds.
554 \param hlim The hop limit value in the packet.
555 \param data Any data in the packet.
556 \param len The length of the data, in bytes.
557*/
558typedef void (*net6_echo_cb)(const struct in6_addr *ip, uint16 seq,
559 uint64 delta_us, uint8 hlim, const uint8 *data,
560 size_t len);
561
562/** \brief Where will we handle possibly notifying the user of ping replies?
563 \ingroup networking_icmpv6
564 */
566
567/** \brief Send an ICMPv6 Echo (PING6) packet to the specified device.
568 \ingroup networking_icmpv6
569
570 \param net The network device to use.
571 \param dst The address to send to.
572 \param ident A packet identifier.
573 \param seq A packet sequence number.
574 \param data Data to send with the packet.
575 \param size Length of the data, in bytes.
576
577 \return 0 on success, <0 on failure.
578*/
579int net_icmp6_send_echo(netif_t *net, const struct in6_addr *dst, uint16 ident,
580 uint16 seq, const uint8 *data, size_t size);
581
582/** \brief Send a Neighbor Solicitation packet on the specified device.
583 \ingroup networking_icmpv6
584
585 \param net The network device to use.
586 \param dst The destination address.
587 \param target The target address.
588 \param dupdet 1 if this is for duplicate detection.
589
590 \return 0 on success, <0 on failure.
591*/
592int net_icmp6_send_nsol(netif_t *net, const struct in6_addr *dst,
593 const struct in6_addr *target, int dupdet);
594
595/** \brief Send a Neighbor Advertisement packet on the specified device.
596 \ingroup networking_icmpv6
597
598 \param net The network device to use.
599 \param dst The destination address.
600 \param target The target address.
601 \param sol 1 if solicited, 0 otherwise.
602
603 \return 0 on success, <0 on failure.
604*/
605int net_icmp6_send_nadv(netif_t *net, const struct in6_addr *dst,
606 const struct in6_addr *target, int sol);
607
608/** \brief Send a Router Solicitation request on the specified interface.
609 \ingroup networking_icmpv6
610
611 \param net The network device to use.
612
613 \return 0 on success, <0 on failure.
614*/
616
617/** \defgroup networking_icmpv6_unreachable Destination Unreachable Codes
618 \brief Destination unreachable packet types
619 \ingroup networking_icmpv6
620
621 Only port unreachable really makes sense
622
623 @{
624*/
625#define ICMP6_DEST_UNREACH_NO_ROUTE 0 /**< \brief No route available */
626#define ICMP6_DEST_UNREACH_PROHIBITED 1 /**< \brief Access prohibited */
627#define ICMP6_DEST_UNREACH_BEYOND_SCOPE 2 /**< \brief Gone beyond scope */
628#define ICMP6_DEST_UNREACH_ADDR_UNREACH 3 /**< \brief Address unreachable */
629#define ICMP6_DEST_UNREACH_PORT_UNREACH 4 /**< \brief Port unreachable */
630#define ICMP6_DEST_UNREACH_FAIL_EGRESS 5 /**< \brief Egress failure */
631#define ICMP6_DEST_UNREACH_BAD_ROUTE 6 /**< \brief Bad route specified */
632/** @} */
633
634/** \brief Send a destination unreachable packet on the specified interface.
635 \ingroup networking_icmpv6
636
637 \param net The network device to use.
638 \param code The type of message this is.
639 \param ppkt The message that caused this error.
640 \param psz Size of the original message.
641
642 \return 0 on success, <0 on failure.
643*/
644int net_icmp6_send_dest_unreach(netif_t *net, uint8 code, const uint8 *ppkt,
645 size_t psz);
646
647/** \defgroup networking_icmpv6_time_exceeded Time Exceeded Codes
648 \brief Time exceeded codes for ICMPv6
649 \ingroup networking_icmpv6
650
651 Only fragment reassembly time exceeded makes sense
652
653 @{
654*/
655#define ICMP6_TIME_EXCEEDED_HOPS_EXC 0 /**< \brief Hops exceeded */
656#define ICMP6_TIME_EXCEEDED_FRAGMENT 1 /**< \brief Reassembly time gone */
657/** @} */
658
659/** \brief Send a time exceeded message on the specified interface.
660 \ingroup networking_icmpv6
661
662 \param net The network device to use.
663 \param code The error code.
664 \param ppkt The message that caused this error.
665 \param psz Size of the original packet.
666
667 \return 0 on success, <0 on failure.
668*/
670 size_t psz);
671
672/** \defgroup networking_icmpv6_param_problem Parameter Problem Codes
673 \brief Codes for ICMPv6 parameter problem packets
674 \ingroup networking_icmpv6
675 @{
676 */
677#define ICMP6_PARAM_PROB_BAD_HEADER 0 /**< \brief Malformed header */
678#define ICMP6_PARAM_PROB_UNK_HEADER 1 /**< \brief Unknown header */
679#define ICMP6_PARAM_PROB_UNK_OPTION 2 /**< \brief Unknown header option */
680/** @} */
681
682/** \brief Send an ICMPv6 Parameter Problem about the given packet.
683 \ingroup networking_icmpv6
684
685 \param net The network device to use.
686 \param code The error code.
687 \param ptr Where in the packet is the error?
688 \param ppkt The message that caused the error.
689 \param psz Size of the original packet.
690
691 \return 0 on success, <0 on failure.
692*/
694 const uint8 *ppkt, size_t psz);
695
696/***** net_ipv6.c *********************************************************/
697
698/** \brief IPv6 statistics structure.
699 \ingroup networking_ipv6
700
701 This structure holds some basic statistics about the IPv6 layer of the
702 stack, and can be retrieved with the appropriate function.
703
704 \headerfile kos/net.h
705*/
706typedef struct net_ipv6_stats {
707 uint32 pkt_sent; /**< \brief Packets sent out successfully */
708 uint32 pkt_send_failed; /**< \brief Packets that failed to send */
709 uint32 pkt_recv; /**< \brief Packets received successfully */
710 uint32 pkt_recv_bad_size; /**< \brief Packets of a bad size */
711 uint32 pkt_recv_bad_proto; /**< \brief Packets with an unknown proto */
712 uint32 pkt_recv_bad_ext; /**< \brief Packets with an unknown hdr */
714
715/** \brief Retrieve statistics from the IPv6 layer.
716 \ingroup networking_ipv6
717
718 \return The global IPv6 stats structure.
719*/
721
722/***** net_ndp.c **********************************************************/
723
724/** \defgroup networking_ndp NDP
725 \brief API for the Neighbor Discovery Protocol
726 \ingroup networking
727 @{
728*/
729
730/** \brief Init NDP.
731 \retval 0 On success (no error conditions defined).
732*/
733int net_ndp_init(void);
734
735/** \brief Shutdown NDP. */
737
738/** \brief Garbage collect timed out NDP entries.
739 This will be called periodically as NDP queries come in.
740*/
741void net_ndp_gc(void);
742
743/** \brief Add an entry to the NDP cache.
744 \param nif The network device in question.
745 \param mac The MAC address for the entry.
746 \param ip The IPv6 address for the entry.
747 \param unsol Was this unsolicited?
748 \return 0 on success, <0 on failure.
749*/
750int net_ndp_insert(netif_t *nif, const uint8 mac[6], const struct in6_addr *ip,
751 int unsol);
752
753/** \brief Look up an entry from the NDP cache.
754
755 If no entry is found, then an NDP query will be sent and an error will be
756 returned. If you specify a packet with the call, it will be sent when the
757 reply comes in.
758
759 \param net The network device to use.
760 \param ip The IPv6 address to query.
761 \param mac_out Storage for the MAC address on success.
762 \param pkt A simple IPv6 header, if you want to send a packet
763 when a reply comes in.
764 \param data Anything that comes after the header.
765 \param data_size The size of data.
766 \return 0 on success, <0 on failure.
767*/
768int net_ndp_lookup(netif_t *net, const struct in6_addr *ip, uint8 mac_out[6],
769 const ipv6_hdr_t *pkt, const uint8 *data, int data_size);
770
771/** @} */
772
773/***** net_udp.c **********************************************************/
774
775/** \defgroup networking_udp UDP
776 \brief API for the User Datagram Protocol
777 \ingroup networking
778 @{
779*/
780
781/** \brief UDP statistics structure.
782
783 This structure holds some basic statistics about the UDP layer of the stack,
784 and can be retrieved with the appropriate function.
785
786 \headerfile kos/net.h
787*/
788typedef struct net_udp_stats {
789 uint32 pkt_sent; /**< \brief Packets sent out successfully */
790 uint32 pkt_send_failed; /**< \brief Packets that failed to send */
791 uint32 pkt_recv; /**< \brief Packets received successfully */
792 uint32 pkt_recv_bad_size; /**< \brief Packets of a bad size */
793 uint32 pkt_recv_bad_chksum; /**< \brief Packets with a bad checksum */
794 uint32 pkt_recv_no_sock; /**< \brief Packets with to a closed port */
796
797/** \brief Retrieve statistics from the UDP layer.
798
799 \return The global UDP stats struct.
800*/
802
803/** \brief Init UDP.
804
805 \retval 0 On success (no error conditions defined).
806*/
807int net_udp_init(void);
808
809/** \brief Shutdown UDP. */
811
812/** @} */
813
814/***** net_tcp.c **********************************************************/
815
816/** \defgroup networking_tcp TCP
817 \brief API for the Transmission Control Protocol
818 \ingroup networking
819 @{
820*/
821
822/** \brief Init TCP.
823 \retval 0 On success (no error conditions defined).
824*/
825int net_tcp_init(void);
826
827/** \brief Shutdown TCP. */
829
830/** @} */
831
832/***** net_crc.c **********************************************************/
833
834/** \defgroup networking_crc CRC
835 \brief API for Cyclic Redundancy Checking
836 \ingroup networking
837 @{
838*/
839
840/** \brief Calculate a "little-endian" CRC-32 over a block of data.
841
842 \param data The data to calculate over.
843 \param size The size of the data, in bytes.
844
845 \return The calculated CRC-32.
846*/
847uint32 net_crc32le(const uint8 *data, int size);
848
849/** \brief Calculate a "big-endian" CRC-32 over a block of data.
850
851 \param data The data to calculate over.
852 \param size The size of the data, in bytes.
853
854 \return The calculated CRC-32.
855*/
856uint32 net_crc32be(const uint8 *data, int size);
857
858/** \brief Calculate a CRC16-CCITT over a block of data.
859
860 \note Based on code found online at
861 http://www.ccsinfo.com/forum/viewtopic.php?t=24977
862
863 \param data The data to calculate over.
864 \param size The size of the data, in bytes.
865 \param start The value to start with. This could be a previous
866 return value from this function (if continuing a
867 previous calculation) or some initial seed value
868 (typically 0xFFFF or 0x0000).
869
870 \return The calculated CRC16-CCITT.
871*/
872uint16 net_crc16ccitt(const uint8 *data, int size, uint16 start);
873
874/** @} */
875
876/***** net_multicast.c ****************************************************/
877
878/** \defgroup networking_multicast Multicast
879 \brief API for Managing the Multicast List
880 \ingroup networking
881 @{
882*/
883
884/** \brief Add a entry to our multicast list.
885
886 This function will auto-commit the multicast list to the network interface
887 in the process.
888
889 \param mac The MAC address to add.
890 \return 0 on success, <0 on failure.
891*/
892int net_multicast_add(const uint8 mac[6]);
893
894/** \brief Delete a entry from our multicast list.
895
896 This function will auto-commit the multicast list to the network interface
897 in the process.
898
899 \param mac The MAC address to add.
900 \return 0 on success, <0 on failure.
901*/
902int net_multicast_del(const uint8 mac[6]);
903
904/** \brief Check if an address is on the multicast list.
905 \param mac The MAC address to check for.
906 \retval 0 The address is not in the list.
907 \retval 1 The address is in the list.
908 \retval -1 On error.
909*/
910int net_multicast_check(const uint8 mac[6]);
911
912/** \brief Init multicast support.
913 \return 0 on success, !0 on error.
914*/
916
917/** \brief Shutdown multicast support. */
919
920/** @} */
921
922/***** net_core.c *********************************************************/
923
924/** \brief Interface list; note: do not manipulate directly!
925 \ingroup networking_drivers
926 */
927extern struct netif_list net_if_list;
928
929/** \brief Function to retrieve the interface list.
930 \ingroup networking_drivers
931
932 \warning
933 Do not manipulate what this returns to you!
934
935 \return The network interface list.
936*/
937struct netif_list * net_get_if_list(void);
938
939/** \brief The default network device, used with sockets (read-only).
940 \ingroup networking_drivers
941*/
943
944/** \brief Set our default device to an arbitrary device.
945 \ingroup networking_drivers
946
947 \param n The device to set as default.
948
949 \return The old default device.
950*/
952
953/** \brief Register a network device.
954 \ingroup networking_drivers
955
956 \param device The device to register.
957 \
958 \return 0 on success, <0 on failure.
959*/
961
962/** \brief Unregister a network device.
963 \ingroup networking_drivers
964
965 \param device The device to unregister.
966
967 \return 0 on success, <0 on failure.
968*/
970
971/** \brief Init network support.
972 \ingroup networking_drivers
973
974 \note To auto-detect the IP address to assign to the
975 default device (i.e, over DHCP or from the flashrom
976 on the Dreamcast), pass 0 as the IP parameter.
977
978 \param ip The IPv4 address to set on the default device, in
979 host byte order.
980
981 \return 0 on success, <0 on failure.
982*/
984
985/** \brief Shutdown network support.
986 \ingroup networking_drivers
987*/
988void net_shutdown(void);
989
990__END_DECLS
991
992#endif /* __KOS_NET_H */
int net_arp_input(netif_t *nif, const uint8 *pkt, int len)
Receive an ARP packet and process it (called by net_input).
int net_arp_init(void)
Init ARP.
void net_arp_shutdown(void)
Shutdown ARP.
int net_arp_lookup(netif_t *nif, const uint8 ip_in[4], uint8 mac_out[6], const ip_hdr_t *pkt, const uint8 *data, int data_size)
Look up an entry from the ARP cache.
int net_arp_revlookup(netif_t *nif, uint8 ip_out[4], const uint8 mac_in[6])
Do a reverse ARP lookup.
int net_arp_query(netif_t *nif, const uint8 ip[4])
Generate an ARP who-has query on the given device.
int net_arp_insert(netif_t *nif, const uint8 mac[6], const uint8 ip[4], uint64 timestamp)
Add an entry to the ARP cache manually.
uint32 net_crc32le(const uint8 *data, int size)
Calculate a "little-endian" CRC-32 over a block of data.
uint16 net_crc16ccitt(const uint8 *data, int size, uint16 start)
Calculate a CRC16-CCITT over a block of data.
uint32 net_crc32be(const uint8 *data, int size)
Calculate a "big-endian" CRC-32 over a block of data.
int net_input(netif_t *device, const uint8 *data, int len)
Device drivers should call this function to submit packets received in the background.
netif_t * net_set_default(netif_t *n)
Set our default device to an arbitrary device.
struct netif_list * net_get_if_list(void)
Function to retrieve the interface list.
net_input_func net_input_target
Where will input packets be routed?
netif_t * net_default_dev
The default network device, used with sockets (read-only).
int net_reg_device(netif_t *device)
Register a network device.
int(* net_input_func)(netif_t *nif, const uint8 *pkt, int len)
Network input callback type.
Definition net.h:380
void net_shutdown(void)
Shutdown network support.
int net_init(uint32 ip)
Init network support.
net_input_func net_input_set_target(net_input_func t)
Setup a network input target.
int net_unreg_device(netif_t *device)
Unregister a network device.
struct netif_list net_if_list
Interface list; note: do not manipulate directly!
net_echo_cb net_icmp_echo_cb
Where will we handle possibly notifying the user of ping replies?
int net_icmp_send_time_exceeded(netif_t *net, uint8 code, const uint8 *msg)
Send an ICMP Time Exceeded packet in reply to the given message.
void(* net_echo_cb)(const uint8 *ip, uint16 seq, uint64 delta_us, uint8 ttl, const uint8 *data, size_t len)
ICMPv4 echo reply callback type.
Definition net.h:434
int net_icmp_send_echo(netif_t *net, const uint8 ipaddr[4], uint16 ident, uint16 seq, const uint8 *data, size_t size)
Send an ICMP Echo packet to the specified IP.
int net_icmp_send_dest_unreach(netif_t *net, uint8 code, const uint8 *msg)
Send an ICMP Destination Unreachable packet in reply to the given message.
int net_icmp6_send_echo(netif_t *net, const struct in6_addr *dst, uint16 ident, uint16 seq, const uint8 *data, size_t size)
Send an ICMPv6 Echo (PING6) packet to the specified device.
int net_icmp6_send_param_prob(netif_t *net, uint8 code, uint32 ptr, const uint8 *ppkt, size_t psz)
Send an ICMPv6 Parameter Problem about the given packet.
net6_echo_cb net_icmp6_echo_cb
Where will we handle possibly notifying the user of ping replies?
void(* net6_echo_cb)(const struct in6_addr *ip, uint16 seq, uint64 delta_us, uint8 hlim, const uint8 *data, size_t len)
ICMPv6 echo reply callback type.
Definition net.h:558
int net_icmp6_send_time_exceeded(netif_t *net, uint8 code, const uint8 *ppkt, size_t psz)
Send a time exceeded message on the specified interface.
int net_icmp6_send_rsol(netif_t *net)
Send a Router Solicitation request on the specified interface.
int net_icmp6_send_nadv(netif_t *net, const struct in6_addr *dst, const struct in6_addr *target, int sol)
Send a Neighbor Advertisement packet on the specified device.
int net_icmp6_send_nsol(netif_t *net, const struct in6_addr *dst, const struct in6_addr *target, int dupdet)
Send a Neighbor Solicitation packet on the specified device.
int net_icmp6_send_dest_unreach(netif_t *net, uint8 code, const uint8 *ppkt, size_t psz)
Send a destination unreachable packet on the specified interface.
void net_ipv4_parse_address(uint32 addr, uint8 out[4])
Parse an IP address that is packet into a uint32 into an array of the individual bytes.
uint32 net_ipv4_address(const uint8 addr[4])
Create a 32-bit IP address, based on the individual numbers contained within the IP.
net_ipv4_stats_t net_ipv4_get_stats(void)
Retrieve statistics from the IPv4 layer.
net_ipv6_stats_t net_ipv6_get_stats(void)
Retrieve statistics from the IPv6 layer.
void net_multicast_shutdown(void)
Shutdown multicast support.
int net_multicast_check(const uint8 mac[6])
Check if an address is on the multicast list.
int net_multicast_init(void)
Init multicast support.
int net_multicast_del(const uint8 mac[6])
Delete a entry from our multicast list.
int net_multicast_add(const uint8 mac[6])
Add a entry to our multicast list.
int net_ndp_insert(netif_t *nif, const uint8 mac[6], const struct in6_addr *ip, int unsol)
Add an entry to the NDP cache.
void net_ndp_shutdown(void)
Shutdown NDP.
void net_ndp_gc(void)
Garbage collect timed out NDP entries.
int net_ndp_lookup(netif_t *net, const struct in6_addr *ip, uint8 mac_out[6], const ipv6_hdr_t *pkt, const uint8 *data, int data_size)
Look up an entry from the NDP cache.
int net_ndp_init(void)
Init NDP.
void net_tcp_shutdown(void)
Shutdown TCP.
int net_tcp_init(void)
Init TCP.
net_udp_stats_t net_udp_get_stats(void)
Retrieve statistics from the UDP layer.
void net_udp_shutdown(void)
Shutdown UDP.
int net_udp_init(void)
Init UDP.
typedef LIST_HEAD(nmmgr_list, nmmgr_handler) nmmgr_list_t
Name handler list type.
unsigned short uint16
16-bit unsigned integer
Definition types.h:34
unsigned long long uint64
64-bit unsigned integer
Definition types.h:32
unsigned long uint32
32-bit unsigned integer
Definition types.h:33
unsigned char uint8
8-bit unsigned integer
Definition types.h:35
Definitions for the Internet address family.
Structure used to store an IPv6 address.
Definition in.h:57
IPv4 Packet header.
Definition net.h:239
uint16 length
Length.
Definition net.h:242
uint8 tos
Type of Service.
Definition net.h:241
uint16 checksum
IP checksum.
Definition net.h:247
uint32 dest
Destination IP address.
Definition net.h:249
uint32 src
Source IP address.
Definition net.h:248
uint16 flags_frag_offs
Flags and fragment offset.
Definition net.h:244
uint8 ttl
Time to live.
Definition net.h:245
uint16 packet_id
Packet ID.
Definition net.h:243
uint8 protocol
IP protocol.
Definition net.h:246
uint8 version_ihl
IP version and header length.
Definition net.h:240
IPv6 Packet header.
Definition net.h:261
uint16 length
Length.
Definition net.h:267
uint8 next_header
Next header type.
Definition net.h:268
uint16 lclass
Low-order class byte.
Definition net.h:266
uint8 hop_limit
Hop limit.
Definition net.h:269
uint8 hclass_lflow
High-order class byte, low-order flow byte.
Definition net.h:264
uint8 version_lclass
Version and low-order class byte.
Definition net.h:262
IPv4 statistics structure.
Definition net.h:505
uint32 pkt_sent
Definition net.h:506
uint32 pkt_recv
Packets that failed to send.
Definition net.h:508
uint32 pkt_send_failed
Packets sent out successfully.
Definition net.h:507
uint32 pkt_recv_bad_proto
Packets with a bad checksum.
Definition net.h:511
uint32 pkt_recv_bad_size
Packets received successfully.
Definition net.h:509
uint32 pkt_recv_bad_chksum
Packets of a bad size.
Definition net.h:510
IPv6 statistics structure.
Definition net.h:706
uint32 pkt_recv
Packets received successfully.
Definition net.h:709
uint32 pkt_recv_bad_ext
Packets with an unknown hdr.
Definition net.h:712
uint32 pkt_sent
Packets sent out successfully.
Definition net.h:707
uint32 pkt_send_failed
Packets that failed to send.
Definition net.h:708
uint32 pkt_recv_bad_size
Packets of a bad size.
Definition net.h:710
uint32 pkt_recv_bad_proto
Packets with an unknown proto.
Definition net.h:711
UDP statistics structure.
Definition net.h:788
uint32 pkt_recv_bad_size
Packets of a bad size.
Definition net.h:792
uint32 pkt_send_failed
Packets that failed to send.
Definition net.h:790
uint32 pkt_sent
Packets sent out successfully.
Definition net.h:789
uint32 pkt_recv_no_sock
Packets with to a closed port.
Definition net.h:794
uint32 pkt_recv_bad_chksum
Packets with a bad checksum.
Definition net.h:793
uint32 pkt_recv
Packets received successfully.
Definition net.h:791
Structure describing one usable network device.
Definition net.h:53
uint32 mtu6
Default MTU over IPv6.
Definition net.h:107
int ip6_addr_count
Definition net.h:101
int index
Unit index (starts at zero and counts upwards for multiple network devices of the same type)
Definition net.h:65
struct in6_addr * ip6_addrs
Any further IPv6 addresses the device has.
Definition net.h:100
int mtu
The device's MTU.
Definition net.h:92
uint32 dev_id
Internal device ID (for whatever the driver wants)
Definition net.h:68
LIST_ENTRY(knetif) if_list
Device list handle (not a function!)
const char * descr
Long description of the device.
Definition net.h:61
int hop_limit
Default hop limit over IPv6.
Definition net.h:110
const char * name
Device name ("bba", "la", etc)
Definition net.h:58
uint32 flags
Interface flags.
Definition net.h:71
Common integer types.