inet.hh revision 5761
12SN/A/*
21762SN/A * Copyright (c) 2002-2005 The Regents of The University of Michigan
32SN/A * All rights reserved.
42SN/A *
52SN/A * Redistribution and use in source and binary forms, with or without
62SN/A * modification, are permitted provided that the following conditions are
72SN/A * met: redistributions of source code must retain the above copyright
82SN/A * notice, this list of conditions and the following disclaimer;
92SN/A * redistributions in binary form must reproduce the above copyright
102SN/A * notice, this list of conditions and the following disclaimer in the
112SN/A * documentation and/or other materials provided with the distribution;
122SN/A * neither the name of the copyright holders nor the names of its
132SN/A * contributors may be used to endorse or promote products derived from
142SN/A * this software without specific prior written permission.
152SN/A *
162SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Nathan Binkert
292665Ssaidi@eecs.umich.edu *          Steve Reinhardt
302SN/A */
312SN/A
321078SN/A#ifndef __BASE_INET_HH__
331078SN/A#define __BASE_INET_HH__
341078SN/A
351114SN/A#include <iosfwd>
361078SN/A#include <string>
371114SN/A#include <utility>
381114SN/A#include <vector>
391114SN/A
401114SN/A#include "base/range.hh"
411114SN/A#include "dev/etherpkt.hh"
421114SN/A#include "sim/host.hh"
431078SN/A
441078SN/A#include "dnet/os.h"
451078SN/A#include "dnet/eth.h"
461078SN/A#include "dnet/ip.h"
471078SN/A#include "dnet/ip6.h"
481078SN/A#include "dnet/addr.h"
491078SN/A#include "dnet/arp.h"
501078SN/A#include "dnet/icmp.h"
511078SN/A#include "dnet/tcp.h"
521078SN/A#include "dnet/udp.h"
531078SN/A#include "dnet/intf.h"
541078SN/A#include "dnet/route.h"
551078SN/A#include "dnet/fw.h"
561078SN/A#include "dnet/blob.h"
571078SN/A#include "dnet/rand.h"
582SN/A
591114SN/Anamespace Net {
602SN/A
611114SN/A/*
621114SN/A * Ethernet Stuff
631114SN/A */
641114SN/Astruct EthAddr : protected eth_addr
651114SN/A{
661114SN/A  protected:
671114SN/A    void parse(const std::string &addr);
681078SN/A
691114SN/A  public:
701114SN/A    EthAddr();
711114SN/A    EthAddr(const uint8_t ea[ETH_ADDR_LEN]);
721114SN/A    EthAddr(const eth_addr &ea);
731114SN/A    EthAddr(const std::string &addr);
741114SN/A    const EthAddr &operator=(const eth_addr &ea);
751114SN/A    const EthAddr &operator=(const std::string &addr);
761079SN/A
771114SN/A    int size() const { return sizeof(eth_addr); }
781114SN/A
791114SN/A    const uint8_t *bytes() const { return &data[0]; }
801114SN/A    uint8_t *bytes() { return &data[0]; }
811114SN/A
821114SN/A    const uint8_t *addr() const { return &data[0]; }
831114SN/A    bool unicast() const { return data[0] == 0x00; }
841114SN/A    bool multicast() const { return data[0] == 0x01; }
851114SN/A    bool broadcast() const { return data[0] == 0xff; }
861114SN/A    std::string string() const;
871137SN/A
881137SN/A    operator uint64_t() const
891137SN/A    {
901137SN/A        uint64_t reg = 0;
911137SN/A        reg |= ((uint64_t)data[0]) << 40;
921137SN/A        reg |= ((uint64_t)data[1]) << 32;
931137SN/A        reg |= ((uint64_t)data[2]) << 24;
941137SN/A        reg |= ((uint64_t)data[3]) << 16;
951137SN/A        reg |= ((uint64_t)data[4]) << 8;
961137SN/A        reg |= ((uint64_t)data[5]) << 0;
971137SN/A        return reg;
981137SN/A    }
991137SN/A
1001114SN/A};
1011114SN/A
1021114SN/Astd::ostream &operator<<(std::ostream &stream, const EthAddr &ea);
1031114SN/Abool operator==(const EthAddr &left, const EthAddr &right);
1041114SN/A
1051114SN/Astruct EthHdr : public eth_hdr
1061078SN/A{
1071078SN/A    uint16_t type() const { return ntohs(eth_type); }
1081114SN/A    const EthAddr &src() const { return *(EthAddr *)&eth_src; }
1091114SN/A    const EthAddr &dst() const { return *(EthAddr *)&eth_dst; }
1101079SN/A
1111114SN/A    int size() const { return sizeof(eth_hdr); }
1121079SN/A
1131079SN/A    const uint8_t *bytes() const { return (const uint8_t *)this; }
1141079SN/A    const uint8_t *payload() const { return bytes() + size(); }
1151079SN/A    uint8_t *bytes() { return (uint8_t *)this; }
1161079SN/A    uint8_t *payload() { return bytes() + size(); }
1171078SN/A};
1181078SN/A
1191114SN/Aclass EthPtr
1201114SN/A{
1211114SN/A  protected:
1221114SN/A    friend class IpPtr;
1232566SN/A    EthPacketPtr p;
1241114SN/A
1251114SN/A  public:
1261114SN/A    EthPtr() {}
1272566SN/A    EthPtr(const EthPacketPtr &ptr) : p(ptr) { }
1281114SN/A
1291114SN/A    EthHdr *operator->() { return (EthHdr *)p->data; }
1301114SN/A    EthHdr &operator*() { return *(EthHdr *)p->data; }
1311114SN/A    operator EthHdr *() { return (EthHdr *)p->data; }
1321114SN/A
1331114SN/A    const EthHdr *operator->() const { return (const EthHdr *)p->data; }
1341114SN/A    const EthHdr &operator*() const { return *(const EthHdr *)p->data; }
1351114SN/A    operator const EthHdr *() const { return (const EthHdr *)p->data; }
1361114SN/A
1372566SN/A    const EthPtr &operator=(const EthPacketPtr &ptr) { p = ptr; return *this; }
1381114SN/A
1392566SN/A    const EthPacketPtr packet() const { return p; }
1402566SN/A    EthPacketPtr packet() { return p; }
1411114SN/A    bool operator!() const { return !p; }
1421114SN/A    operator bool() const { return p; }
1431114SN/A};
1441114SN/A
1451114SN/A/*
1461114SN/A * IP Stuff
1471114SN/A */
1481114SN/Astruct IpOpt;
1491114SN/Astruct IpHdr : public ip_hdr
1501078SN/A{
1511078SN/A    uint8_t  version() const { return ip_v; }
1521092SN/A    uint8_t  hlen() const { return ip_hl * 4; }
1531078SN/A    uint8_t  tos() const { return ip_tos; }
1541078SN/A    uint16_t len() const { return ntohs(ip_len); }
1551078SN/A    uint16_t id() const { return ntohs(ip_id); }
1561078SN/A    uint16_t frag_flags() const { return ntohs(ip_off) >> 13; }
1571078SN/A    uint16_t frag_off() const { return ntohs(ip_off) & 0x1fff; }
1581078SN/A    uint8_t  ttl() const { return ip_ttl; }
1591078SN/A    uint8_t  proto() const { return ip_p; }
1601092SN/A    uint16_t sum() const { return ip_sum; }
1611078SN/A    uint32_t src() const { return ntohl(ip_src); }
1621078SN/A    uint32_t dst() const { return ntohl(ip_dst); }
1631078SN/A
1641092SN/A    void sum(uint16_t sum) { ip_sum = sum; }
1655761Ssaidi@eecs.umich.edu    void id(uint16_t _id) { ip_id = htons(_id); }
1665761Ssaidi@eecs.umich.edu    void len(uint16_t _len) { ip_len = htons(_len); }
1675761Ssaidi@eecs.umich.edu
1681078SN/A
1691114SN/A    bool options(std::vector<const IpOpt *> &vec) const;
1701079SN/A
1711079SN/A    int size() const { return hlen(); }
1721079SN/A    const uint8_t *bytes() const { return (const uint8_t *)this; }
1731079SN/A    const uint8_t *payload() const { return bytes() + size(); }
1741079SN/A    uint8_t *bytes() { return (uint8_t *)this; }
1751079SN/A    uint8_t *payload() { return bytes() + size(); }
1761078SN/A};
1771078SN/A
1781114SN/Aclass IpPtr
1791114SN/A{
1801114SN/A  protected:
1811114SN/A    friend class TcpPtr;
1821114SN/A    friend class UdpPtr;
1832566SN/A    EthPacketPtr p;
1841114SN/A
1852566SN/A    void set(const EthPacketPtr &ptr)
1861114SN/A    {
1875484Snate@binkert.org        p = 0;
1885484Snate@binkert.org
1895484Snate@binkert.org        if (ptr) {
1905484Snate@binkert.org            EthHdr *eth = (EthHdr *)ptr->data;
1915484Snate@binkert.org            if (eth->type() == ETH_TYPE_IP)
1925484Snate@binkert.org                p = ptr;
1935484Snate@binkert.org        }
1941114SN/A    }
1951114SN/A
1961114SN/A  public:
1975484Snate@binkert.org    IpPtr() : p(0) {}
1985484Snate@binkert.org    IpPtr(const EthPacketPtr &ptr) : p(0) { set(ptr); }
1995484Snate@binkert.org    IpPtr(const EthPtr &ptr) : p(0) { set(ptr.p); }
2001114SN/A    IpPtr(const IpPtr &ptr) : p(ptr.p) { }
2011114SN/A
2025484Snate@binkert.org    IpHdr *get() { return (IpHdr *)(p->data + sizeof(eth_hdr)); }
2035484Snate@binkert.org    IpHdr *operator->() { return get(); }
2045484Snate@binkert.org    IpHdr &operator*() { return *get(); }
2051114SN/A
2065484Snate@binkert.org    const IpHdr *get() const
2075484Snate@binkert.org    { return (const IpHdr *)(p->data + sizeof(eth_hdr)); }
2085484Snate@binkert.org    const IpHdr *operator->() const { return get(); }
2095484Snate@binkert.org    const IpHdr &operator*() const { return *get(); }
2101114SN/A
2112566SN/A    const IpPtr &operator=(const EthPacketPtr &ptr) { set(ptr); return *this; }
2121114SN/A    const IpPtr &operator=(const EthPtr &ptr) { set(ptr.p); return *this; }
2131114SN/A    const IpPtr &operator=(const IpPtr &ptr) { p = ptr.p; return *this; }
2141114SN/A
2152566SN/A    const EthPacketPtr packet() const { return p; }
2162566SN/A    EthPacketPtr packet() { return p; }
2171114SN/A    bool operator!() const { return !p; }
2181114SN/A    operator bool() const { return p; }
2191114SN/A};
2201114SN/A
2211114SN/Auint16_t cksum(const IpPtr &ptr);
2221114SN/A
2231114SN/Astruct IpOpt : public ip_opt
2241114SN/A{
2251114SN/A    uint8_t type() const { return opt_type; }
2261114SN/A    uint8_t typeNumber() const { return IP_OPT_NUMBER(opt_type); }
2271114SN/A    uint8_t typeClass() const { return IP_OPT_CLASS(opt_type); }
2281114SN/A    uint8_t typeCopied() const { return IP_OPT_COPIED(opt_type); }
2291114SN/A    uint8_t len() const { return IP_OPT_TYPEONLY(type()) ? 1 : opt_len; }
2301114SN/A
2311114SN/A    bool isNumber(int num) const { return typeNumber() == IP_OPT_NUMBER(num); }
2321114SN/A    bool isClass(int cls) const { return typeClass() == IP_OPT_CLASS(cls); }
2331114SN/A    bool isCopied(int cpy) const { return typeCopied() == IP_OPT_COPIED(cpy); }
2341114SN/A
2351114SN/A    const uint8_t *data() const { return opt_data.data8; }
2361114SN/A    void sec(ip_opt_data_sec &sec) const;
2371114SN/A    void lsrr(ip_opt_data_rr &rr) const;
2381114SN/A    void ssrr(ip_opt_data_rr &rr) const;
2391114SN/A    void ts(ip_opt_data_ts &ts) const;
2401114SN/A    uint16_t satid() const { return ntohs(opt_data.satid); }
2411114SN/A    uint16_t mtup() const { return ntohs(opt_data.mtu); }
2421114SN/A    uint16_t mtur() const { return ntohs(opt_data.mtu); }
2431114SN/A    void tr(ip_opt_data_tr &tr) const;
2441114SN/A    const uint32_t *addext() const { return &opt_data.addext[0]; }
2451114SN/A    uint16_t rtralt() const { return ntohs(opt_data.rtralt); }
2461114SN/A    void sdb(std::vector<uint32_t> &vec) const;
2471114SN/A};
2481114SN/A
2491114SN/A/*
2501114SN/A * TCP Stuff
2511114SN/A */
2521114SN/Astruct TcpOpt;
2531114SN/Astruct TcpHdr : public tcp_hdr
2541078SN/A{
2551078SN/A    uint16_t sport() const { return ntohs(th_sport); }
2561078SN/A    uint16_t dport() const { return ntohs(th_dport); }
2571078SN/A    uint32_t seq() const { return ntohl(th_seq); }
2581078SN/A    uint32_t ack() const { return ntohl(th_ack); }
2591078SN/A    uint8_t  off() const { return th_off; }
2601078SN/A    uint8_t  flags() const { return th_flags & 0x3f; }
2611078SN/A    uint16_t win() const { return ntohs(th_win); }
2621092SN/A    uint16_t sum() const { return th_sum; }
2631078SN/A    uint16_t urp() const { return ntohs(th_urp); }
2641078SN/A
2651092SN/A    void sum(uint16_t sum) { th_sum = sum; }
2665761Ssaidi@eecs.umich.edu    void seq(uint32_t _seq) { th_seq = htonl(_seq); }
2675761Ssaidi@eecs.umich.edu    void flags(uint8_t _flags) { th_flags  = _flags; }
2681078SN/A
2691114SN/A    bool options(std::vector<const TcpOpt *> &vec) const;
2701114SN/A
2711079SN/A    int size() const { return off(); }
2721079SN/A    const uint8_t *bytes() const { return (const uint8_t *)this; }
2731079SN/A    const uint8_t *payload() const { return bytes() + size(); }
2741079SN/A    uint8_t *bytes() { return (uint8_t *)this; }
2751079SN/A    uint8_t *payload() { return bytes() + size(); }
2761078SN/A};
2771078SN/A
2781114SN/Aclass TcpPtr
2791114SN/A{
2801114SN/A  protected:
2812566SN/A    EthPacketPtr p;
2821114SN/A    int off;
2831114SN/A
2842566SN/A    void set(const EthPacketPtr &ptr, int offset) { p = ptr; off = offset; }
2851114SN/A    void set(const IpPtr &ptr)
2861114SN/A    {
2875484Snate@binkert.org        if (ptr && ptr->proto() == IP_PROTO_TCP)
2881114SN/A            set(ptr.p, sizeof(eth_hdr) + ptr->hlen());
2891114SN/A        else
2901114SN/A            set(0, 0);
2911114SN/A    }
2921114SN/A
2931114SN/A  public:
2945484Snate@binkert.org    TcpPtr() : p(0), off(0) {}
2955484Snate@binkert.org    TcpPtr(const IpPtr &ptr) : p(0), off(0) { set(ptr); }
2961114SN/A    TcpPtr(const TcpPtr &ptr) : p(ptr.p), off(ptr.off) {}
2971114SN/A
2985484Snate@binkert.org    TcpHdr *get() { return (TcpHdr *)(p->data + off); }
2995484Snate@binkert.org    TcpHdr *operator->() { return get(); }
3005484Snate@binkert.org    TcpHdr &operator*() { return *get(); }
3011114SN/A
3025484Snate@binkert.org    const TcpHdr *get() const { return (const TcpHdr *)(p->data + off); }
3035484Snate@binkert.org    const TcpHdr *operator->() const { return get(); }
3045484Snate@binkert.org    const TcpHdr &operator*() const { return *get(); }
3051114SN/A
3061114SN/A    const TcpPtr &operator=(const IpPtr &i) { set(i); return *this; }
3071114SN/A    const TcpPtr &operator=(const TcpPtr &t) { set(t.p, t.off); return *this; }
3081114SN/A
3092566SN/A    const EthPacketPtr packet() const { return p; }
3102566SN/A    EthPacketPtr packet() { return p; }
3111114SN/A    bool operator!() const { return !p; }
3121114SN/A    operator bool() const { return p; }
3131114SN/A};
3141114SN/A
3151114SN/Auint16_t cksum(const TcpPtr &ptr);
3161114SN/A
3171114SN/Atypedef Range<uint16_t> SackRange;
3181114SN/A
3191114SN/Astruct TcpOpt : public tcp_opt
3201114SN/A{
3211114SN/A    uint8_t type() const { return opt_type; }
3221114SN/A    uint8_t len() const { return TCP_OPT_TYPEONLY(type()) ? 1 : opt_len; }
3231114SN/A
3241114SN/A    bool isopt(int opt) const { return type() == opt; }
3251114SN/A
3261114SN/A    const uint8_t *data() const { return opt_data.data8; }
3271114SN/A
3281114SN/A    uint16_t mss() const { return ntohs(opt_data.mss); }
3291114SN/A    uint8_t wscale() const { return opt_data.wscale; }
3301114SN/A    bool sack(std::vector<SackRange> &vec) const;
3311114SN/A    uint32_t echo() const { return ntohl(opt_data.echo); }
3321114SN/A    uint32_t tsval() const { return ntohl(opt_data.timestamp[0]); }
3331114SN/A    uint32_t tsecr() const { return ntohl(opt_data.timestamp[1]); }
3341114SN/A    uint32_t cc() const { return ntohl(opt_data.cc); }
3351114SN/A    uint8_t cksum() const{ return opt_data.cksum; }
3361114SN/A    const uint8_t *md5() const { return opt_data.md5; }
3371114SN/A
3381114SN/A    int size() const { return len(); }
3391114SN/A    const uint8_t *bytes() const { return (const uint8_t *)this; }
3401114SN/A    const uint8_t *payload() const { return bytes() + size(); }
3411114SN/A    uint8_t *bytes() { return (uint8_t *)this; }
3421114SN/A    uint8_t *payload() { return bytes() + size(); }
3431114SN/A};
3441114SN/A
3451114SN/A/*
3461114SN/A * UDP Stuff
3471114SN/A */
3481114SN/Astruct UdpHdr : public udp_hdr
3491078SN/A{
3501078SN/A    uint16_t sport() const { return ntohs(uh_sport); }
3511078SN/A    uint16_t dport() const { return ntohs(uh_dport); }
3521078SN/A    uint16_t len() const { return ntohs(uh_ulen); }
3531171SN/A    uint16_t sum() const { return uh_sum; }
3541078SN/A
3551171SN/A    void sum(uint16_t sum) { uh_sum = sum; }
3565761Ssaidi@eecs.umich.edu    void len(uint16_t _len) { uh_ulen = htons(_len); }
3571078SN/A
3581114SN/A    int size() const { return sizeof(udp_hdr); }
3591079SN/A    const uint8_t *bytes() const { return (const uint8_t *)this; }
3601079SN/A    const uint8_t *payload() const { return bytes() + size(); }
3611079SN/A    uint8_t *bytes() { return (uint8_t *)this; }
3621079SN/A    uint8_t *payload() { return bytes() + size(); }
3631078SN/A};
3641078SN/A
3651114SN/Aclass UdpPtr
3661114SN/A{
3671114SN/A  protected:
3682566SN/A    EthPacketPtr p;
3691114SN/A    int off;
3701114SN/A
3712566SN/A    void set(const EthPacketPtr &ptr, int offset) { p = ptr; off = offset; }
3721114SN/A    void set(const IpPtr &ptr)
3731114SN/A    {
3745484Snate@binkert.org        if (ptr && ptr->proto() == IP_PROTO_UDP)
3751114SN/A            set(ptr.p, sizeof(eth_hdr) + ptr->hlen());
3761114SN/A        else
3771114SN/A            set(0, 0);
3781114SN/A    }
3791114SN/A
3801114SN/A  public:
3815484Snate@binkert.org    UdpPtr() : p(0), off(0) {}
3825484Snate@binkert.org    UdpPtr(const IpPtr &ptr) : p(0), off(0) { set(ptr); }
3831114SN/A    UdpPtr(const UdpPtr &ptr) : p(ptr.p), off(ptr.off) {}
3841114SN/A
3855484Snate@binkert.org    UdpHdr *get() { return (UdpHdr *)(p->data + off); }
3865484Snate@binkert.org    UdpHdr *operator->() { return get(); }
3875484Snate@binkert.org    UdpHdr &operator*() { return *get(); }
3881114SN/A
3895484Snate@binkert.org    const UdpHdr *get() const { return (const UdpHdr *)(p->data + off); }
3905484Snate@binkert.org    const UdpHdr *operator->() const { return get(); }
3915484Snate@binkert.org    const UdpHdr &operator*() const { return *get(); }
3921114SN/A
3931114SN/A    const UdpPtr &operator=(const IpPtr &i) { set(i); return *this; }
3941114SN/A    const UdpPtr &operator=(const UdpPtr &t) { set(t.p, t.off); return *this; }
3951114SN/A
3962566SN/A    const EthPacketPtr packet() const { return p; }
3972566SN/A    EthPacketPtr packet() { return p; }
3981114SN/A    bool operator!() const { return !p; }
3991114SN/A    operator bool() const { return p; }
4001114SN/A};
4011114SN/A
4021114SN/Auint16_t cksum(const UdpPtr &ptr);
4031114SN/A
4041114SN/A/* namespace Net */ }
4051114SN/A
4061078SN/A#endif // __BASE_INET_HH__
407