1 /* 2 * INET An implementation of the TCP/IP protocol suite for the LINUX 3 * operating system. INET is implemented using the BSD Socket 4 * interface as the means of communication with the user level. 5 * 6 * Definitions for the Interfaces handler. 7 * 8 * Version: @(#)dev.h 1.0.10 08/12/93 9 * 10 * Authors: Ross Biro, <bir7@leland.Stanford.Edu> 11 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> 12 * Corey Minyard <wf-rch!minyard@relay.EU.net> 13 * Donald J. Becker, <becker@super.org> 14 * Alan Cox, <A.Cox@swansea.ac.uk> 15 * Bjorn Ekwall. <bj0rn@blox.se> 16 * 17 * This program is free software; you can redistribute it and/or 18 * modify it under the terms of the GNU General Public License 19 * as published by the Free Software Foundation; either version 20 * 2 of the License, or (at your option) any later version. 21 * 22 * Moved to /usr/include/linux for NET3 23 */ 24 #ifndef_LINUX_NETDEVICE_H 25 #define_LINUX_NETDEVICE_H 26
27 #include <linux/if.h>
28 #include <linux/if_ether.h>
29 #include <linux/skbuff.h>
30
31 /* for future expansion when we will have different priorities. */ 32 #defineDEV_NUMBUFFS 3
33 #defineMAX_ADDR_LEN 7
34 #defineMAX_HEADER 18
35
36 #defineIS_MYADDR 1 /* address is (one of) our own */ 37 #define IS_LOOPBACK 2 /* address is for LOOPBACK */ 38 #defineIS_BROADCAST 3 /* address is a valid broadcast */ 39 #define IS_INVBCAST 4 /* Wrong netmask bcast not for us (unused)*/ 40
41 /* 42 * The DEVICE structure. 43 * Actually, this whole structure is a big mistake. It mixes I/O 44 * data with strictly "high-level" data, and it has to know about 45 * almost every data structure used in the INET module. 46 */ 47 structdevice 48 { 49
50 /* 51 * This is the first field of the "visible" part of this structure 52 * (i.e. as seen by users in the "Space.c" file). It is the name 53 * the interface. 54 */ 55 char *name;
56
57 /* I/O specific fields - FIXME: Merge these and struct ifmap into one */ 58 unsignedlongrmem_end; /* shmem "recv" end */ 59 unsignedlongrmem_start; /* shmem "recv" start */ 60 unsignedlongmem_end; /* sahared mem end */ 61 unsignedlongmem_start; /* shared mem start */ 62 unsignedshortbase_addr; /* device I/O address */ 63 unsignedcharirq; /* device IRQ number */ 64
65 /* Low-level status flags. */ 66 volatileunsignedcharstart, /* start an operation */ 67 tbusy, /* transmitter busy */ 68 interrupt; /* interrupt arrived */ 69
70 structdevice *next;
71
72 /* The device initialization function. Called only once. */ 73 int (*init)(structdevice *dev);
74
75 /* Some hardware also needs these fields, but they are not part of the 76 usual set specified in Space.c. */ 77 unsignedcharif_port; /* Selectable AUI, TP,..*/ 78 unsignedchardma; /* DMA channel */ 79
80 structenet_statistics* (*get_stats)(structdevice *dev);
81
82 /* 83 * This marks the end of the "visible" part of the structure. All 84 * fields hereafter are internal to the system, and may change at 85 * will (read: may be cleaned up at will). 86 */ 87
88 /* These may be needed for future network-power-down code. */ 89 unsignedlongtrans_start; /* Time (in jiffies) of last Tx */ 90 unsignedlonglast_rx; /* Time of last Rx */ 91
92 unsignedshortflags; /* interface flags (a la BSD) */ 93 unsignedshortfamily; /* address family ID (AF_INET) */ 94 unsignedshortmetric; /* routing metric (not used) */ 95 unsignedshortmtu; /* interface MTU value */ 96 unsignedshorttype; /* interface hardware type */ 97 unsignedshorthard_header_len; /* hardware hdr length */ 98 void *priv; /* pointer to private data */ 99
100 /* Interface address info. */ 101 unsignedcharbroadcast[MAX_ADDR_LEN]; /* hw bcast add */ 102 unsignedchardev_addr[MAX_ADDR_LEN]; /* hw address */ 103 unsignedcharaddr_len; /* hardware address length */ 104 unsignedlongpa_addr; /* protocol address */ 105 unsignedlongpa_brdaddr; /* protocol broadcast addr */ 106 unsignedlongpa_dstaddr; /* protocol P-P other side addr */ 107 unsignedlongpa_mask; /* protocol netmask */ 108 unsignedshortpa_alen; /* protocol address length */ 109
110 /* For load balancing driver pair support */ 111
112 unsignedlongpkt_queue; /* Packets queued */ 113 structdevice *slave; /* Slave device */ 114
115
116 /* Pointer to the interface buffers. */ 117 structsk_buff_headbuffs[DEV_NUMBUFFS];
118
119 /* Pointers to interface service routines. */ 120 int (*open)(structdevice *dev);
121 int (*stop)(structdevice *dev);
122 int (*hard_start_xmit) (structsk_buff *skb,
123 structdevice *dev);
124 int (*hard_header) (unsignedchar *buff,
125 structdevice *dev,
126 unsignedshorttype,
127 void *daddr,
128 void *saddr,
129 unsignedlen,
130 structsk_buff *skb);
131 int (*rebuild_header)(void *eth, structdevice *dev,
132 unsignedlongraddr, structsk_buff *skb);
133 unsignedshort (*type_trans) (structsk_buff *skb,
134 structdevice *dev);
135 #defineHAVE_MULTICAST 136 void (*set_multicast_list)(structdevice *dev,
137 intnum_addrs, void *addrs);
138 #defineHAVE_SET_MAC_ADDR 139 int (*set_mac_address)(structdevice *dev, void *addr);
140 #define HAVE_PRIVATE_IOCTL
141 int (*do_ioctl)(structdevice *dev, structifreq *ifr);
142 #define HAVE_SET_CONFIG
143 int (*set_config)(structdevice *dev, structifmap *map);
144
145 };
146
147
148 structpacket_type{ 149 unsignedshorttype; /* This is really htons(ether_type). */ 150 unsignedshortcopy:1;
151 int (*func) (structsk_buff *, structdevice *,
152 structpacket_type *);
153 void *data;
154 structpacket_type *next;
155 };
156
157
158 #ifdef__KERNEL__ 159
160 /* Used by dev_rint */ 161 #defineIN_SKBUFF 1
162
163 externvolatilecharin_bh;
164
165 externstructdevice *dev_base;
166 externstructpacket_type *ptype_base;
167
168
169 externintip_addr_match(unsignedlong addr1, unsignedlong addr2);
170 externintip_chk_addr(unsignedlongaddr);
171 externstructdevice *ip_dev_check(unsignedlongdaddr);
172 externunsignedlongip_my_addr(void);
173 externunsignedlongip_get_mask(unsignedlongaddr);
174
175 externvoiddev_add_pack(structpacket_type *pt);
176 externvoiddev_remove_pack(structpacket_type *pt);
177 externstructdevice *dev_get(char *name);
178 externintdev_open(structdevice *dev);
179 externintdev_close(structdevice *dev);
180 externvoiddev_queue_xmit(structsk_buff *skb, structdevice *dev,
181 intpri);
182 #defineHAVE_NETIF_RX 1
183 externvoidnetif_rx(structsk_buff *skb);
184 /* The old interface to netif_rx(). */ 185 externintdev_rint(unsignedchar *buff, longlen, intflags,
186 structdevice * dev);
187 externvoiddev_transmit(void);
188 externintin_net_bh(void);
189 externvoidnet_bh(void *tmp);
190 externvoiddev_tint(structdevice *dev);
191 externintdev_get_info(char *buffer, char **start, off_toffset, intlength);
192 externintdev_ioctl(unsignedintcmd, void *);
193
194 externvoiddev_init(void);
195
196 /* These functions live elsewhere (drivers/net/net_init.c, but related) */ 197
198 externvoidether_setup(structdevice *dev);
199 externintether_config(structdevice *dev, structifmap *map);
200 /* Support for loadable net-drivers */ 201 externintregister_netdev(structdevice *dev);
202 externvoidunregister_netdev(structdevice *dev);
203
204 #endif/* __KERNEL__ */ 205
206 #endif/* _LINUX_DEV_H */