ip.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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 IP module.
  7.  *
  8.  * Version: @(#)ip.h 1.0.2 05/07/93
  9.  *
  10.  * Authors: Ross Biro, <bir7@leland.Stanford.Edu>
  11.  * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12.  * Alan Cox, <gw4pts@gw4pts.ampr.org>
  13.  *
  14.  * Changes:
  15.  * Mike McLagan    :       Routing by source
  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. #ifndef _IP_H
  23. #define _IP_H
  24. #include <linux/config.h>
  25. #include <linux/types.h>
  26. #include <linux/socket.h>
  27. #include <linux/ip.h>
  28. #include <linux/netdevice.h>
  29. #include <linux/inetdevice.h>
  30. #include <linux/in_route.h>
  31. #include <net/route.h>
  32. #include <net/arp.h>
  33. #ifndef _SNMP_H
  34. #include <net/snmp.h>
  35. #endif
  36. #include <net/sock.h> /* struct sock */
  37. struct inet_skb_parm
  38. {
  39. struct ip_options opt; /* Compiled IP options */
  40. unsigned char flags;
  41. #define IPSKB_MASQUERADED 1
  42. #define IPSKB_TRANSLATED 2
  43. #define IPSKB_FORWARDED 4
  44. };
  45. struct ipcm_cookie
  46. {
  47. u32 addr;
  48. int oif;
  49. struct ip_options *opt;
  50. };
  51. #define IPCB(skb) ((struct inet_skb_parm*)((skb)->cb))
  52. struct ip_ra_chain
  53. {
  54. struct ip_ra_chain *next;
  55. struct sock *sk;
  56. void (*destructor)(struct sock *);
  57. };
  58. extern struct ip_ra_chain *ip_ra_chain;
  59. extern rwlock_t ip_ra_lock;
  60. /* IP flags. */
  61. #define IP_CE 0x8000 /* Flag: "Congestion" */
  62. #define IP_DF 0x4000 /* Flag: "Don't Fragment" */
  63. #define IP_MF 0x2000 /* Flag: "More Fragments" */
  64. #define IP_OFFSET 0x1FFF /* "Fragment Offset" part */
  65. #define IP_FRAG_TIME (30 * HZ) /* fragment lifetime */
  66. extern void ip_mc_dropsocket(struct sock *);
  67. extern void ip_mc_dropdevice(struct net_device *dev);
  68. extern int ip_mc_procinfo(char *, char **, off_t, int);
  69. /*
  70.  * Functions provided by ip.c
  71.  */
  72. extern int ip_build_and_send_pkt(struct sk_buff *skb, struct sock *sk,
  73.       u32 saddr, u32 daddr,
  74.       struct ip_options *opt);
  75. extern int ip_rcv(struct sk_buff *skb, struct net_device *dev,
  76.        struct packet_type *pt);
  77. extern int ip_local_deliver(struct sk_buff *skb);
  78. extern int ip_mr_input(struct sk_buff *skb);
  79. extern int ip_output(struct sk_buff *skb);
  80. extern int ip_mc_output(struct sk_buff *skb);
  81. extern int ip_fragment(struct sk_buff *skb, int (*out)(struct sk_buff*));
  82. extern int ip_do_nat(struct sk_buff *skb);
  83. extern void ip_send_check(struct iphdr *ip);
  84. extern int ip_queue_xmit(struct sk_buff *skb);
  85. extern void ip_init(void);
  86. extern int ip_build_xmit(struct sock *sk,
  87.       int getfrag (const void *,
  88.    char *,
  89.    unsigned int,
  90.    unsigned int),
  91.       const void *frag,
  92.       unsigned length,
  93.       struct ipcm_cookie *ipc,
  94.       struct rtable *rt,
  95.       int flags);
  96. /*
  97.  * Map a multicast IP onto multicast MAC for type Token Ring.
  98.  *      This conforms to RFC1469 Option 2 Multicasting i.e.
  99.  *      using a functional address to transmit / receive 
  100.  *      multicast packets.
  101.  */
  102. static inline void ip_tr_mc_map(u32 addr, char *buf)
  103. {
  104. buf[0]=0xC0;
  105. buf[1]=0x00;
  106. buf[2]=0x00;
  107. buf[3]=0x04;
  108. buf[4]=0x00;
  109. buf[5]=0x00;
  110. }
  111. struct ip_reply_arg {
  112. struct iovec iov[2];   
  113. int          n_iov;    /* redundant */
  114. u32       csum; 
  115. int      csumoffset; /* u16 offset of csum in iov[0].iov_base */
  116.  /* -1 if not needed */ 
  117. }; 
  118. void ip_send_reply(struct sock *sk, struct sk_buff *skb, struct ip_reply_arg *arg,
  119.    unsigned int len); 
  120. extern __inline__ int ip_finish_output(struct sk_buff *skb);
  121. struct ipv4_config
  122. {
  123. int log_martians;
  124. int autoconfig;
  125. int no_pmtu_disc;
  126. };
  127. extern struct ipv4_config ipv4_config;
  128. extern struct ip_mib ip_statistics[NR_CPUS*2];
  129. #define IP_INC_STATS(field) SNMP_INC_STATS(ip_statistics, field)
  130. #define IP_INC_STATS_BH(field) SNMP_INC_STATS_BH(ip_statistics, field)
  131. #define IP_INC_STATS_USER(field)  SNMP_INC_STATS_USER(ip_statistics, field)
  132. extern struct linux_mib net_statistics[NR_CPUS*2];
  133. #define NET_INC_STATS(field) SNMP_INC_STATS(net_statistics, field)
  134. #define NET_INC_STATS_BH(field) SNMP_INC_STATS_BH(net_statistics, field)
  135. #define NET_INC_STATS_USER(field)  SNMP_INC_STATS_USER(net_statistics, field)
  136. extern int sysctl_local_port_range[2];
  137. extern int sysctl_ip_default_ttl;
  138. #ifdef CONFIG_INET
  139. static inline int ip_send(struct sk_buff *skb)
  140. {
  141. if (skb->len > skb->dst->pmtu)
  142. return ip_fragment(skb, ip_finish_output);
  143. else
  144. return ip_finish_output(skb);
  145. }
  146. /* The function in 2.2 was invalid, producing wrong result for
  147.  * check=0xFEFF. It was noticed by Arthur Skawina _year_ ago. --ANK(000625) */
  148. static inline
  149. int ip_decrease_ttl(struct iphdr *iph)
  150. {
  151. u32 check = iph->check;
  152. check += __constant_htons(0x0100);
  153. iph->check = check + (check>=0xFFFF);
  154. return --iph->ttl;
  155. }
  156. static inline
  157. int ip_dont_fragment(struct sock *sk, struct dst_entry *dst)
  158. {
  159. return (sk->protinfo.af_inet.pmtudisc == IP_PMTUDISC_DO ||
  160. (sk->protinfo.af_inet.pmtudisc == IP_PMTUDISC_WANT &&
  161.  !(dst->mxlock&(1<<RTAX_MTU))));
  162. }
  163. extern void __ip_select_ident(struct iphdr *iph, struct dst_entry *dst);
  164. static inline void ip_select_ident(struct iphdr *iph, struct dst_entry *dst, struct sock *sk)
  165. {
  166. if (iph->frag_off&__constant_htons(IP_DF)) {
  167. /* This is only to work around buggy Windows95/2000
  168.  * VJ compression implementations.  If the ID field
  169.  * does not change, they drop every other packet in
  170.  * a TCP stream using header compression.
  171.  */
  172. iph->id = ((sk && sk->daddr) ? htons(sk->protinfo.af_inet.id++) : 0);
  173. } else
  174. __ip_select_ident(iph, dst);
  175. }
  176. /*
  177.  * Map a multicast IP onto multicast MAC for type ethernet.
  178.  */
  179. static inline void ip_eth_mc_map(u32 addr, char *buf)
  180. {
  181. addr=ntohl(addr);
  182. buf[0]=0x01;
  183. buf[1]=0x00;
  184. buf[2]=0x5e;
  185. buf[5]=addr&0xFF;
  186. addr>>=8;
  187. buf[4]=addr&0xFF;
  188. addr>>=8;
  189. buf[3]=addr&0x7F;
  190. }
  191. #endif
  192. extern int ip_call_ra_chain(struct sk_buff *skb);
  193. /*
  194.  * Functions provided by ip_fragment.o
  195.  */
  196.  
  197. struct sk_buff *ip_defrag(struct sk_buff *skb);
  198. extern int ip_frag_nqueues;
  199. extern atomic_t ip_frag_mem;
  200. /*
  201.  * Functions provided by ip_forward.c
  202.  */
  203.  
  204. extern int ip_forward(struct sk_buff *skb);
  205. extern int ip_net_unreachable(struct sk_buff *skb);
  206.  
  207. /*
  208.  * Functions provided by ip_options.c
  209.  */
  210.  
  211. extern void ip_options_build(struct sk_buff *skb, struct ip_options *opt, u32 daddr, struct rtable *rt, int is_frag);
  212. extern int ip_options_echo(struct ip_options *dopt, struct sk_buff *skb);
  213. extern void ip_options_fragment(struct sk_buff *skb);
  214. extern int ip_options_compile(struct ip_options *opt, struct sk_buff *skb);
  215. extern int ip_options_get(struct ip_options **optp, unsigned char *data, int optlen, int user);
  216. extern void ip_options_undo(struct ip_options * opt);
  217. extern void ip_forward_options(struct sk_buff *skb);
  218. extern int ip_options_rcv_srr(struct sk_buff *skb);
  219. /*
  220.  * Functions provided by ip_sockglue.c
  221.  */
  222. extern void ip_cmsg_recv(struct msghdr *msg, struct sk_buff *skb);
  223. extern int ip_cmsg_send(struct msghdr *msg, struct ipcm_cookie *ipc);
  224. extern int ip_setsockopt(struct sock *sk, int level, int optname, char *optval, int optlen);
  225. extern int ip_getsockopt(struct sock *sk, int level, int optname, char *optval, int *optlen);
  226. extern int ip_ra_control(struct sock *sk, unsigned char on, void (*destructor)(struct sock *));
  227. extern int  ip_recv_error(struct sock *sk, struct msghdr *msg, int len);
  228. extern void ip_icmp_error(struct sock *sk, struct sk_buff *skb, int err, 
  229.       u16 port, u32 info, u8 *payload);
  230. extern void ip_local_error(struct sock *sk, int err, u32 daddr, u16 dport,
  231.        u32 info);
  232. #endif /* _IP_H */