The Spectrum of Firewall Statefulness

One of the first slides I created for the Virtual Firewalls webinar explained various categories of traffic filters, from stateless (and fast) packet filters to application-level firewalls.

As always, the real life is not black-and-white; I found a whole spectrum of products in the wild.

The well-known packet filters (or ACLs) are the bluntest of traffic filtering tools: they match (and pass or drop) individual packets based on their source and destination network addresses and transport layer port numbers. They keep no state (making them extremely fast and implementable in simple hardware) and thus cannot check validity of transport layer sessions or fragmented packets.

Some packet filters give you the option of permitting or dropping fragments based on network layer information (source and destination addresses), others either pass or drop all fragments (and sometimes the behavior is not even configurable).

Packet filters are easy to use in server-only environments. Life becomes interesting as soon as servers start establishing client sessions to other servers, and turns into hell in environments where clients establish ad-hoc sessions to random destination addresses.

Packet filters with automatic reverse rules (example: XenServer vSwitch Controller) are a syntactic sugar on top of vanilla packet filters. Whenever you configure a filtering rule (example: permit inbound TCP traffic to port 80), the ACL configuration software adds a reverse rule in the other direction (permit outbound TCP traffic from port 80).

ACLs that allow matches on established TCP sessions (typically matching TCP traffic with ACK or RST bit set) make your life a bit easier. In server-only environment you can use them to match inbound TCP traffic on specific port numbers and outbound traffic of established TCP sessions (to prevent simple attempts to establish outbound sessions from hijacked servers); in client-only environment you can use them to match return traffic.

Reflexive access lists (Cisco IOS terminology) are the simplest stateful tool in the filtering arsenal. Whenever a TCP or UDP session is permitted by an ACL, the filtering device adds a 5-tuple matching the return traffic of that session to the reverse ACL.

Reflexive ACLs generate one filtering entry per transport layer session. Not surprisingly, you won’t find them in platforms that do packet forwarding and filtering in hardware – they would quickly overload the TCAM (or whatever forwarding/filtering hardware the device is using), cause packet punting to the main CPU and reduce the forwarding performance by orders of magnitude.

Even though reflexive ACLs generate per-session entries (and thus block unwanted traffic that might have been permitted by other less-specific ACLs) they still work on individual packets and thus cannot reliably detect and drop malicious fragments or overlapping TCP segments.

Transport layer session inspection combines reflexive ACLs with fragment reassembly and transport-layer validation. It should detect dirty tricks targeting bugs in host TCP/IP stacks like overlapping fragments or TCP segments.

Application level gateways (ALG) add application awareness to reflexive ACLs. They’re usually used to deal with broken applications (FTP, SIP ...) that exchange transport session endpoints (IP addresses and port numbers) in application payload – an ALG would detect the requests to open additional data sessions and create additional transport-level filtering entries.

Web Application Firewalls (WAF) have to go way beyond ALGs. ALGs try to help applications get the desired connectivity and thus don’t focus on malicious obfuscations. WAFs have to stop the obfuscators; they have to parse application-layer requests like a real server would to detect injection attacks. Needless to say, you won’t find full-blown WAF functionality in reasonably-priced high-bandwidth firewalls.

Which tool should I use?

As always, the universal answer is It Depends; for more details, read the I Don’t Need no Stinking Firewall, To WAF or not to WAF? and WAF Musings blog posts (they are almost three years old, but still pretty relevant).

7 comments:

  1. Hi,

    Regarding any stateful firewall how does it keep track of UDP sessions?
    Except session timeout is there any other security mechanism dealing with UDP traffic on stateful firewalls?
    Replies
    1. Session timeout is the only thing one can do with UDP.
  2. What about so called next-gen firewalls like Palo Alto or Cisco ASA CX
    Replies
    1. At least Cisco ASA CX seems to be somewhere close to the WAF end of the spectrum - they can do deep application inspection for numerous applications.
  3. What about Dell Sonicwall? As far as I managed to test it, it seems to do a better job at what is generally known as deep packet inspection. Sadly, I didn't manage to get my hands on an ASA CX just yet to compare.
  4. Any idea where F5 ADF (application delivery firewall) would be situated?
    Replies
    1. Layer-7 (WAF) I'd presume.
Add comment
Sidebar