1*14866Ssam /* if.h 6.2 83/08/28 */ 24945Swnj 34945Swnj /* 45104Swnj * Structures defining a network interface, providing a packet 55104Swnj * transport mechanism (ala level 0 of the PUP protocols). 65104Swnj * 75104Swnj * Each interface accepts output datagrams of a specified maximum 85104Swnj * length, and provides higher level routines with input datagrams 95104Swnj * received from its medium. 105104Swnj * 115104Swnj * Output occurs when the routine if_output is called, with three parameters: 126333Ssam * (*ifp->if_output)(ifp, m, dst) 136333Ssam * Here m is the mbuf chain to be sent and dst is the destination address. 146333Ssam * The output routine encapsulates the supplied datagram if necessary, 156333Ssam * and then transmits it on its medium. 165104Swnj * 175104Swnj * On input, each interface unwraps the data received by it, and either 185104Swnj * places it on the input queue of a internetwork datagram routine 195104Swnj * and posts the associated software interrupt, or passes the datagram to a raw 205104Swnj * packet input routine. 215104Swnj * 226333Ssam * Routines exist for locating interfaces by their addresses 235104Swnj * or for locating a interface on a certain network, as well as more general 245104Swnj * routing and gateway routines maintaining information used to locate 256333Ssam * interfaces. These routines live in the files if.c and route.c 265083Swnj */ 275083Swnj 285083Swnj /* 295083Swnj * Structure defining a queue for a network interface. 304945Swnj * 314945Swnj * (Would like to call this struct ``if'', but C isn't PL/1.) 327161Ssam * 337161Ssam * EVENTUALLY PURGE if_net AND if_host FROM STRUCTURE 344945Swnj */ 354945Swnj struct ifnet { 365171Swnj char *if_name; /* name, e.g. ``en'' or ``lo'' */ 374945Swnj short if_unit; /* sub-unit for lower level driver */ 384945Swnj short if_mtu; /* maximum transmission unit */ 397161Ssam int if_net; /* network number of interface */ 406333Ssam short if_flags; /* up/down, broadcast, etc. */ 417264Ssam short if_timer; /* time 'til if_watchdog called */ 425083Swnj int if_host[2]; /* local net host number */ 436924Swnj struct sockaddr if_addr; /* address of interface */ 446924Swnj union { 456924Swnj struct sockaddr ifu_broadaddr; 466924Swnj struct sockaddr ifu_dstaddr; 476924Swnj } if_ifu; 486924Swnj #define if_broadaddr if_ifu.ifu_broadaddr /* broadcast address */ 496924Swnj #define if_dstaddr if_ifu.ifu_dstaddr /* other end of p-to-p link */ 505104Swnj struct ifqueue { 515104Swnj struct mbuf *ifq_head; 525104Swnj struct mbuf *ifq_tail; 536207Swnj int ifq_len; 546207Swnj int ifq_maxlen; 556207Swnj int ifq_drops; 565104Swnj } if_snd; /* output queue */ 575104Swnj /* procedure handles */ 585104Swnj int (*if_init)(); /* init routine */ 595083Swnj int (*if_output)(); /* output routine */ 6013049Ssam int (*if_ioctl)(); /* ioctl routine */ 618972Sroot int (*if_reset)(); /* bus reset routine */ 627264Ssam int (*if_watchdog)(); /* timer routine */ 635104Swnj /* generic interface statistics */ 645171Swnj int if_ipackets; /* packets received on interface */ 655171Swnj int if_ierrors; /* input errors on interface */ 665171Swnj int if_opackets; /* packets sent on interface */ 675171Swnj int if_oerrors; /* output errors on interface */ 685104Swnj int if_collisions; /* collisions on csma interfaces */ 695104Swnj /* end statistics */ 704951Swnj struct ifnet *if_next; 714945Swnj }; 724945Swnj 736333Ssam #define IFF_UP 0x1 /* interface is up */ 746333Ssam #define IFF_BROADCAST 0x2 /* broadcast address valid */ 756333Ssam #define IFF_DEBUG 0x4 /* turn on debugging */ 766924Swnj #define IFF_ROUTE 0x8 /* routing entry installed */ 776924Swnj #define IFF_POINTOPOINT 0x10 /* interface is point-to-point link */ 7813049Ssam #define IFF_NOTRAILERS 0x20 /* avoid use of trailers */ 7913053Ssam #define IFF_RUNNING 0x40 /* resources allocated */ 80*14866Ssam #define IFF_NOARP 0x80 /* no address resolution protocol */ 816333Ssam 825104Swnj /* 835104Swnj * Output queues (ifp->if_snd) and internetwork datagram level (pup level 1) 845104Swnj * input routines have queues of messages stored on ifqueue structures 855104Swnj * (defined above). Entries are added to and deleted from these structures 865104Swnj * by these macros, which should be called with ipl raised to splimp(). 875104Swnj */ 886207Swnj #define IF_QFULL(ifq) ((ifq)->ifq_len >= (ifq)->ifq_maxlen) 896207Swnj #define IF_DROP(ifq) ((ifq)->ifq_drops++) 905083Swnj #define IF_ENQUEUE(ifq, m) { \ 915083Swnj (m)->m_act = 0; \ 925083Swnj if ((ifq)->ifq_tail == 0) \ 935160Swnj (ifq)->ifq_head = m; \ 945083Swnj else \ 955083Swnj (ifq)->ifq_tail->m_act = m; \ 965160Swnj (ifq)->ifq_tail = m; \ 976207Swnj (ifq)->ifq_len++; \ 985083Swnj } 995613Swnj #define IF_PREPEND(ifq, m) { \ 1005613Swnj (m)->m_act = (ifq)->ifq_head; \ 1016087Sroot if ((ifq)->ifq_tail == 0) \ 1026087Sroot (ifq)->ifq_tail = (m); \ 1035613Swnj (ifq)->ifq_head = (m); \ 1046207Swnj (ifq)->ifq_len++; \ 1055613Swnj } 1065083Swnj #define IF_DEQUEUE(ifq, m) { \ 1075083Swnj (m) = (ifq)->ifq_head; \ 1085083Swnj if (m) { \ 1095083Swnj if (((ifq)->ifq_head = (m)->m_act) == 0) \ 1105083Swnj (ifq)->ifq_tail = 0; \ 1115083Swnj (m)->m_act = 0; \ 1126207Swnj (ifq)->ifq_len--; \ 1135083Swnj } \ 1145083Swnj } 1154945Swnj 1166207Swnj #define IFQ_MAXLEN 50 1177264Ssam #define IFNET_SLOWHZ 1 /* granularity is 1 second */ 1186207Swnj 11911576Ssam /* 12013049Ssam * Interface request structure used for socket 12113049Ssam * ioctl's. All interface ioctl's must have parameter 12213049Ssam * definitions which begin with ifr_name. The 12313049Ssam * remainder may be interface specific. 12411576Ssam */ 12511576Ssam struct ifreq { 12613049Ssam #define IFNAMSIZ 16 12713049Ssam char ifr_name[IFNAMSIZ]; /* if name, e.g. "en0" */ 12811576Ssam union { 12911576Ssam struct sockaddr ifru_addr; 13011576Ssam struct sockaddr ifru_dstaddr; 13111576Ssam short ifru_flags; 13213049Ssam caddr_t ifru_data; 13311576Ssam } ifr_ifru; 13411576Ssam #define ifr_addr ifr_ifru.ifru_addr /* address */ 13511576Ssam #define ifr_dstaddr ifr_ifru.ifru_dstaddr /* other end of p-to-p link */ 13611576Ssam #define ifr_flags ifr_ifru.ifru_flags /* flags */ 13713049Ssam #define ifr_data ifr_ifru.ifru_data /* for use by interface */ 13811576Ssam }; 13911576Ssam 14011576Ssam /* 14111576Ssam * Structure used in SIOCGIFCONF request. 14211576Ssam * Used to retrieve interface configuration 14311576Ssam * for machine (useful for programs which 14411576Ssam * must know all networks accessible). 14511576Ssam */ 14611576Ssam struct ifconf { 14711576Ssam int ifc_len; /* size of associated buffer */ 14811576Ssam union { 14911576Ssam caddr_t ifcu_buf; 15011576Ssam struct ifreq *ifcu_req; 15111576Ssam } ifc_ifcu; 15211576Ssam #define ifc_buf ifc_ifcu.ifcu_buf /* buffer address */ 15311576Ssam #define ifc_req ifc_ifcu.ifcu_req /* array of structures returned */ 15411576Ssam }; 15511576Ssam 1564945Swnj #ifdef KERNEL 1575083Swnj #ifdef INET 1585083Swnj struct ifqueue ipintrq; /* ip packet input queue */ 1595083Swnj #endif 1606333Ssam struct ifqueue rawintrq; /* raw packet input queue */ 1614945Swnj struct ifnet *ifnet; 1626333Ssam struct ifnet *if_ifwithaddr(), *if_ifwithnet(), *if_ifwithaf(); 1636333Ssam struct ifnet *if_ifonnetof(); 1645104Swnj struct in_addr if_makeaddr(); 1654945Swnj #endif 166