#ifndef _NET_DN_ROUTE_H1#define _NET_DN_ROUTE_H23/******************************************************************************4(c) 1995-1998 E.M. Serrat [email protected]56This program is free software; you can redistribute it and/or modify7it under the terms of the GNU General Public License as published by8the Free Software Foundation; either version 2 of the License, or9any later version.1011This program is distributed in the hope that it will be useful,12but WITHOUT ANY WARRANTY; without even the implied warranty of13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14GNU General Public License for more details.15*******************************************************************************/1617extern struct sk_buff *dn_alloc_skb(struct sock *sk, int size, gfp_t pri);18extern int dn_route_output_sock(struct dst_entry **pprt, struct flowidn *, struct sock *sk, int flags);19extern int dn_cache_dump(struct sk_buff *skb, struct netlink_callback *cb);20extern void dn_rt_cache_flush(int delay);2122/* Masks for flags field */23#define DN_RT_F_PID 0x07 /* Mask for packet type */24#define DN_RT_F_PF 0x80 /* Padding Follows */25#define DN_RT_F_VER 0x40 /* Version =0 discard packet if ==1 */26#define DN_RT_F_IE 0x20 /* Intra Ethernet, Reserved in short pkt */27#define DN_RT_F_RTS 0x10 /* Packet is being returned to sender */28#define DN_RT_F_RQR 0x08 /* Return packet to sender upon non-delivery */2930/* Mask for types of routing packets */31#define DN_RT_PKT_MSK 0x0632/* Types of routing packets */33#define DN_RT_PKT_SHORT 0x02 /* Short routing packet */34#define DN_RT_PKT_LONG 0x06 /* Long routing packet */3536/* Mask for control/routing selection */37#define DN_RT_PKT_CNTL 0x01 /* Set to 1 if a control packet */38/* Types of control packets */39#define DN_RT_CNTL_MSK 0x0f /* Mask for control packets */40#define DN_RT_PKT_INIT 0x01 /* Initialisation packet */41#define DN_RT_PKT_VERI 0x03 /* Verification Message */42#define DN_RT_PKT_HELO 0x05 /* Hello and Test Message */43#define DN_RT_PKT_L1RT 0x07 /* Level 1 Routing Message */44#define DN_RT_PKT_L2RT 0x09 /* Level 2 Routing Message */45#define DN_RT_PKT_ERTH 0x0b /* Ethernet Router Hello */46#define DN_RT_PKT_EEDH 0x0d /* Ethernet EndNode Hello */4748/* Values for info field in hello message */49#define DN_RT_INFO_TYPE 0x03 /* Type mask */50#define DN_RT_INFO_L1RT 0x02 /* L1 Router */51#define DN_RT_INFO_L2RT 0x01 /* L2 Router */52#define DN_RT_INFO_ENDN 0x03 /* EndNode */53#define DN_RT_INFO_VERI 0x04 /* Verification Reqd. */54#define DN_RT_INFO_RJCT 0x08 /* Reject Flag, Reserved */55#define DN_RT_INFO_VFLD 0x10 /* Verification Failed, Reserved */56#define DN_RT_INFO_NOML 0x20 /* No Multicast traffic accepted */57#define DN_RT_INFO_BLKR 0x40 /* Blocking Requested */5859/*60* The fl structure is what we used to look up the route.61* The rt_saddr & rt_daddr entries are the same as key.saddr & key.daddr62* except for local input routes, where the rt_saddr = fl.fld_dst and63* rt_daddr = fl.fld_src to allow the route to be used for returning64* packets to the originating host.65*/66struct dn_route {67struct dst_entry dst;6869struct flowidn fld;7071__le16 rt_saddr;72__le16 rt_daddr;73__le16 rt_gateway;74__le16 rt_local_src; /* Source used for forwarding packets */75__le16 rt_src_map;76__le16 rt_dst_map;7778unsigned rt_flags;79unsigned rt_type;80};8182static inline bool dn_is_input_route(struct dn_route *rt)83{84return rt->fld.flowidn_iif != 0;85}8687static inline bool dn_is_output_route(struct dn_route *rt)88{89return rt->fld.flowidn_iif == 0;90}9192extern void dn_route_init(void);93extern void dn_route_cleanup(void);9495#include <net/sock.h>96#include <linux/if_arp.h>9798static inline void dn_rt_send(struct sk_buff *skb)99{100dev_queue_xmit(skb);101}102103static inline void dn_rt_finish_output(struct sk_buff *skb, char *dst, char *src)104{105struct net_device *dev = skb->dev;106107if ((dev->type != ARPHRD_ETHER) && (dev->type != ARPHRD_LOOPBACK))108dst = NULL;109110if (dev_hard_header(skb, dev, ETH_P_DNA_RT, dst, src, skb->len) >= 0)111dn_rt_send(skb);112else113kfree_skb(skb);114}115116#endif /* _NET_DN_ROUTE_H */117118119