1 /* 2 * Copyright (C) 1995-2001 by Darren Reed. 3 * 4 * See the IPFILTER.LICENCE file for details on licencing. 5 * 6 * @(#)ip_state.h 1.3 1/12/96 (C) 1995 Darren Reed 7 * $Id: ip_state.h,v 2.68.2.5 2005/08/11 19:58:04 darrenr Exp $ 8 * 9 * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 10 * Use is subject to license terms. 11 */ 12 13 #pragma ident "%Z%%M% %I% %E% SMI" 14 15 #ifndef __IP_STATE_H__ 16 #define __IP_STATE_H__ 17 18 #if defined(__STDC__) || defined(__GNUC__) || defined(_AIX51) 19 # define SIOCDELST _IOW('r', 61, struct ipfobj) 20 #else 21 # define SIOCDELST _IOW(r, 61, struct ipfobj) 22 #endif 23 24 struct ipscan; 25 26 #ifndef IPSTATE_SIZE 27 # define IPSTATE_SIZE 5737 28 #endif 29 #ifndef IPSTATE_MAX 30 # define IPSTATE_MAX 4013 /* Maximum number of states held */ 31 #endif 32 33 #define PAIRS(s1,d1,s2,d2) ((((s1) == (s2)) && ((d1) == (d2))) ||\ 34 (((s1) == (d2)) && ((d1) == (s2)))) 35 #define IPPAIR(s1,d1,s2,d2) PAIRS((s1).s_addr, (d1).s_addr, \ 36 (s2).s_addr, (d2).s_addr) 37 38 39 typedef struct ipstate { 40 ipfmutex_t is_lock; 41 struct ipstate *is_next; 42 struct ipstate **is_pnext; 43 struct ipstate *is_hnext; 44 struct ipstate **is_phnext; 45 struct ipstate **is_me; 46 void *is_ifp[4]; 47 void *is_sync; 48 struct nat *is_nat[2]; 49 frentry_t *is_rule; 50 struct ipftq *is_tqehead[2]; 51 struct ipscan *is_isc; 52 U_QUAD_T is_pkts[4]; 53 U_QUAD_T is_bytes[4]; 54 U_QUAD_T is_icmppkts[4]; 55 struct ipftqent is_sti; 56 u_int is_frage[2]; 57 int is_ref; /* reference count */ 58 int is_isninc[2]; 59 u_short is_sumd[2]; 60 i6addr_t is_src; 61 i6addr_t is_dst; 62 u_int is_pass; 63 u_char is_p; /* Protocol */ 64 u_char is_v; 65 u_32_t is_hv; 66 u_32_t is_tag; 67 u_32_t is_opt[2]; /* packet options set */ 68 /* in both directions */ 69 u_32_t is_optmsk[2]; /* " " mask */ 70 /* in both directions */ 71 u_short is_sec; /* security options set */ 72 u_short is_secmsk; /* " " mask */ 73 u_short is_auth; /* authentication options set */ 74 u_short is_authmsk; /* " " mask */ 75 union { 76 icmpinfo_t is_ics; 77 tcpinfo_t is_ts; 78 udpinfo_t is_us; 79 greinfo_t is_ug; 80 } is_ps; 81 u_32_t is_flags; 82 int is_flx[2][2]; 83 u_32_t is_rulen; /* rule number when created */ 84 u_32_t is_s0[2]; 85 u_short is_smsk[2]; 86 char is_group[FR_GROUPLEN]; 87 char is_sbuf[2][16]; 88 char is_ifname[4][LIFNAMSIZ]; 89 } ipstate_t; 90 91 #define is_die is_sti.tqe_die 92 #define is_state is_sti.tqe_state 93 #define is_touched is_sti.tqe_touched 94 #define is_saddr is_src.in4.s_addr 95 #define is_daddr is_dst.in4.s_addr 96 #define is_icmp is_ps.is_ics 97 #define is_type is_icmp.ici_type 98 #define is_code is_icmp.ici_code 99 #define is_tcp is_ps.is_ts 100 #define is_udp is_ps.is_us 101 #define is_send is_tcp.ts_data[0].td_end 102 #define is_dend is_tcp.ts_data[1].td_end 103 #define is_maxswin is_tcp.ts_data[0].td_maxwin 104 #define is_maxdwin is_tcp.ts_data[1].td_maxwin 105 #define is_maxsend is_tcp.ts_data[0].td_maxend 106 #define is_maxdend is_tcp.ts_data[1].td_maxend 107 #define is_swinscale is_tcp.ts_data[0].td_winscale 108 #define is_dwinscale is_tcp.ts_data[1].td_winscale 109 #define is_swinflags is_tcp.ts_data[0].td_winflags 110 #define is_dwinflags is_tcp.ts_data[1].td_winflags 111 #define is_sport is_tcp.ts_sport 112 #define is_dport is_tcp.ts_dport 113 #define is_ifpin is_ifp[0] 114 #define is_ifpout is_ifp[2] 115 #define is_gre is_ps.is_ug 116 #define is_call is_gre.gs_call 117 118 #define IS_WSPORT SI_W_SPORT /* 0x00100 */ 119 #define IS_WDPORT SI_W_DPORT /* 0x00200 */ 120 #define IS_WSADDR SI_W_SADDR /* 0x00400 */ 121 #define IS_WDADDR SI_W_DADDR /* 0x00800 */ 122 #define IS_NEWFR SI_NEWFR /* 0x01000 */ 123 #define IS_CLONE SI_CLONE /* 0x02000 */ 124 #define IS_CLONED SI_CLONED /* 0x04000 */ 125 #define IS_TCPFSM 0x10000 126 #define IS_STRICT 0x20000 127 #define IS_ISNSYN 0x40000 128 #define IS_ISNACK 0x80000 129 #define IS_STATESYNC 0x100000 130 /* 131 * IS_SC flags are for scan-operations that need to be recognised in state. 132 */ 133 #define IS_SC_CLIENT 0x10000000 134 #define IS_SC_SERVER 0x20000000 135 #define IS_SC_MATCHC 0x40000000 136 #define IS_SC_MATCHS 0x80000000 137 #define IS_SC_MATCHALL (IS_SC_MATCHC|IS_SC_MATCHC) 138 #define IS_SC_ALL (IS_SC_MATCHC|IS_SC_MATCHC|IS_SC_CLIENT|IS_SC_SERVER) 139 140 /* 141 * Flags that can be passed into fr_addstate 142 */ 143 #define IS_INHERITED 0x0fffff00 144 145 #define TH_OPENING (TH_SYN|TH_ACK) 146 /* 147 * is_flags: 148 * Bits 0 - 3 are use as a mask with the current packet's bits to check for 149 * whether it is short, tcp/udp, a fragment or the presence of IP options. 150 * Bits 4 - 7 are set from the initial packet and contain what the packet 151 * anded with bits 0-3 must match. 152 * Bits 8,9 are used to indicate wildcard source/destination port matching. 153 * Bits 10,11 are reserved for other wildcard flag compatibility. 154 * Bits 12,13 are for scaning. 155 */ 156 157 typedef struct ipstate_save { 158 void *ips_next; 159 struct ipstate ips_is; 160 struct frentry ips_fr; 161 } ipstate_save_t; 162 163 #define ips_rule ips_is.is_rule 164 165 166 typedef struct ipslog { 167 U_QUAD_T isl_pkts[4]; 168 U_QUAD_T isl_bytes[4]; 169 i6addr_t isl_src; 170 i6addr_t isl_dst; 171 u_32_t isl_tag; 172 u_short isl_type; 173 union { 174 u_short isl_filler[2]; 175 u_short isl_ports[2]; 176 u_short isl_icmp; 177 } isl_ps; 178 u_char isl_v; 179 u_char isl_p; 180 u_char isl_flags; 181 u_char isl_state[2]; 182 u_32_t isl_rulen; 183 char isl_group[FR_GROUPLEN]; 184 } ipslog_t; 185 186 #define isl_sport isl_ps.isl_ports[0] 187 #define isl_dport isl_ps.isl_ports[1] 188 #define isl_itype isl_ps.isl_icmp 189 190 #define ISL_NEW 0 191 #define ISL_CLONE 1 192 #define ISL_EXPIRE 0xffff 193 #define ISL_FLUSH 0xfffe 194 #define ISL_REMOVE 0xfffd 195 #define ISL_INTERMEDIATE 0xfffc 196 #define ISL_KILLED 0xfffb 197 #define ISL_ORPHAN 0xfffa 198 199 200 typedef struct ips_stat { 201 u_long iss_hits; 202 u_long iss_miss; 203 u_long iss_max; 204 u_long iss_maxref; 205 u_long iss_tcp; 206 u_long iss_udp; 207 u_long iss_icmp; 208 u_long iss_nomem; 209 u_long iss_expire; 210 u_long iss_fin; 211 u_long iss_active; 212 u_long iss_logged; 213 u_long iss_logfail; 214 u_long iss_inuse; 215 u_long iss_wild; 216 u_long iss_killed; 217 u_long iss_ticks; 218 u_long iss_bucketfull; 219 int iss_statesize; 220 int iss_statemax; 221 ipstate_t **iss_table; 222 ipstate_t *iss_list; 223 u_long *iss_bucketlen; 224 } ips_stat_t; 225 226 typedef struct port_pair { 227 uint16_t pp_sport; 228 uint16_t pp_dport; 229 } port_pair_t; 230 231 extern int fr_stateinit __P((ipf_stack_t *)); 232 extern ipstate_t *fr_addstate __P((fr_info_t *, ipstate_t **, u_int)); 233 extern frentry_t *fr_checkstate __P((struct fr_info *, u_32_t *)); 234 extern ipstate_t *fr_stlookup __P((fr_info_t *, tcphdr_t *, ipftq_t **)); 235 extern void fr_statesync __P((int, int, void *, char *, ipf_stack_t *)); 236 extern void fr_timeoutstate __P((ipf_stack_t *)); 237 extern int fr_tcp_age __P((struct ipftqent *, struct fr_info *, 238 struct ipftq *, int)); 239 extern int fr_tcpinwindow __P((struct fr_info *, struct tcpdata *, 240 struct tcpdata *, tcphdr_t *, int)); 241 extern void fr_stateunload __P((ipf_stack_t *)); 242 extern void ipstate_log __P((struct ipstate *, u_int, ipf_stack_t *)); 243 extern int fr_state_ioctl __P((caddr_t, ioctlcmd_t, int, int, void *, ipf_stack_t *)); 244 extern void fr_stinsert __P((struct ipstate *, int, ipf_stack_t *)); 245 extern void fr_sttab_init __P((struct ipftq *, ipf_stack_t *)); 246 extern void fr_sttab_destroy __P((struct ipftq *)); 247 extern void fr_updatestate __P((fr_info_t *, ipstate_t *, ipftq_t *)); 248 extern void fr_statederef __P((ipstate_t **, ipf_stack_t *)); 249 extern void fr_setstatequeue __P((ipstate_t *, int, ipf_stack_t *)); 250 251 #endif /* __IP_STATE_H__ */ 252