Click here to Skip to main content
15,880,427 members
Articles / Desktop Programming / MFC

Simple Packet - Filter Firewall

Rate me:
Please Sign up or sign in to vote.
4.42/5 (47 votes)
27 Sep 20043 min read 385.3K   21.6K   139   57
A simple packet filtering based open source Firewall. It uses Filter hook driver for its basic working.

Image 1

Introduction

It is very difficult to find free source code of a firewall. So I, with my friend Rajender, developed this firewall. It is a simple firewall based on packet filtering technology.

Background

I have used the driver as described in an article on Code Project - Code Project/Internet & Network - Developing Firewalls for Windows 2000/XP by Jesús O.

Using the Code

Working of the Filter

Working of the firewall is based on the following steps:

  • Extract the packet header.
  • Check the protocol associated.
  • Compare with the rules.
  • Check the source and destination, add if protocol is same.
  • Check out the port if protocol is TCP
  • Drop or pass the packet

Brief Description

After declaring structure variables, an integer type “countrule” is declared and initialized, It holds the value of the number the rule, it is incremented when new rule is required. Filterlist is initialized to first, its size increases as more and more rules are added. Now the packet header is extracted and is assigned to the variable ipp. Next, the protocol is checked.

If the protocol is numbered as 6, it means it is TCP. We accept all the packets if the connection is already established. Also, if we don't have the bit SYN activate, then we pass the packet by using return PF_FORWARD.

Otherwise, the packet is compared against the rules from the list until there is no member is in the list means till the condition while (aux! =NULL) persists. Now check if the protocol is the same. If it is, then look for the source and destination address and each time increment the countrule. Now if the protocol is TCP, check for the port.

Now the decision can be taken whether to drop or pass the packet according to the following statements:

C++
If (aux->ipf.drop) 
    return PF_DROP; //drop the packet 
else 
    return PF_FORWARD; //forward the packet 

The same procedure is done for the packets of the UDP protocols. For other packet, we don't look more and now we have decided what to do with the packet. After this, countrule is incremented. And we accept all the packets which are not registered.

Here is the description of various classes/source files:

  • DrvFltIp.H - This file contains the structure of the various headers that are being used in the TCP IP Protocol suite.
  • TDRIVER.H - This file contains the definition of the various method used to load, unload, read and write into the driver. It also contains code for adding rules into the firewall.
  • TDRIVER.CPP - This file contains various definition of the functions that are defined inside the TDriver class.
  • ADDRULEDLG.H - This file contains the definition of the various functions that are used for the checking whether the given IP address is in the valid format or not and is used for translating the user defined inputs into the driver readable format.
  • AddRuleDlg.cpp: implementation file. This is the file that will contain the definition of the class functions that were defined in the AddRuleDlg.h header file.
  • FIREVIEW.H - interface of the CFireView class
  • FIREVIEW.CPP - implementation of the CFireView class
  • Sockutil.h - This file contains the basic declarations of the functions that are used for the conversion of the network address into the internet address and for conversion of port numbers into comp readable format.
  • SockUtil.CPP - Implementation of Sockutil.cpp
  • PortScanDlg.cpp - Implementation of port scanner.
  • StarWarsCtrl.cpp - Implementation of about dialog box in animated view.
  • SystemTray.cpp - Class for sending the firewall to system tray. Taken from Code Project.

Points of Interest

I have written this program to share my knowledge with you. I want you to do further work on it and help me to make it a successful open source project by mailing me back modified code. You can find more articles and software projects with free source code on my web site:

History

  • 8th December, 2003: Initial post

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below. A list of licenses authors might use can be found here.


Written By
Web Developer
India India
I am a B.E in Information Technology form Lingaya's Institute of Managemant and Technology Faridabad, India.
I has worked on VC++, MFC, VB, Sql Server. Currently I am working on .net, C# and ASP.net
I keeps my free source code projects and articles at website http://programmerworld.net

Comments and Discussions

 
QuestionIs there has the source code of driver? Pin
hnwyllmm18-May-13 17:06
hnwyllmm18-May-13 17:06 
GeneralMy vote of 5 Pin
benrabeh28-Apr-11 1:27
benrabeh28-Apr-11 1:27 
GeneralIs phising possible through this? Pin
csanuragjain16-Apr-11 21:06
csanuragjain16-Apr-11 21:06 
General$ wine application.exe is giving to errors Pin
amit@iitg18-May-10 3:08
amit@iitg18-May-10 3:08 
Questionpacket filter driver Pin
manojqh12-Nov-09 18:41
manojqh12-Nov-09 18:41 
GeneralC#.Net 2005 Source code Pin
White Scropion15-Feb-09 23:00
White Scropion15-Feb-09 23:00 
GeneralRe: C#.Net 2005 Source code Pin
icl774-Apr-10 20:25
icl774-Apr-10 20:25 
Generalerror loading driver Pin
siddharth das1-Nov-08 18:20
siddharth das1-Nov-08 18:20 
Generalerror loading driver Pin
suren_hisxlnc15-Oct-09 1:14
suren_hisxlnc15-Oct-09 1:14 
Generalhttp://www.codeplex.com/netdefender Pin
Riz Thon12-Sep-08 2:21
Riz Thon12-Sep-08 2:21 
Generaldemo of netdefender Pin
chandrika211126-Jan-08 2:23
chandrika211126-Jan-08 2:23 
GeneralCopying Files across Firewall server Pin
Jan Palmer17-Apr-07 21:58
Jan Palmer17-Apr-07 21:58 
GeneralPacket contents Pin
bandh27-Jun-06 9:33
bandh27-Jun-06 9:33 
GeneralDRIVER_IRQL_NOT_LESS_OR_EQUAL error Pin
bandh9-Jun-06 20:40
bandh9-Jun-06 20:40 
GeneralRe: DRIVER_IRQL_NOT_LESS_OR_EQUAL error Pin
bandh11-Jun-06 20:33
bandh11-Jun-06 20:33 
QuestionWhat if we use Packet capture tools to build firewall [modified] Pin
bandh7-Jun-06 5:29
bandh7-Jun-06 5:29 
AnswerRe: What if we use Packet capture tools to build firewall Pin
spersyn21-Aug-06 11:22
spersyn21-Aug-06 11:22 
Generalunable to load or add rule Pin
Tim Zorn4-Apr-06 9:57
Tim Zorn4-Apr-06 9:57 
GeneralRe: unable to load or add rule Pin
Sudhir Mangla22-Jun-06 18:30
professionalSudhir Mangla22-Jun-06 18:30 
Generalpacket accessing before send to the client Pin
kkvel20-Feb-06 18:31
kkvel20-Feb-06 18:31 
GeneralPacket Redirect Pin
Anonymous8-Oct-05 1:58
Anonymous8-Oct-05 1:58 
Generalsetting rules on the fly Pin
watevaman11-Jun-05 0:33
watevaman11-Jun-05 0:33 
Generalcontent based filter Pin
liqundu17-Aug-04 15:57
liqundu17-Aug-04 15:57 
GeneralRe: content based filter Pin
1of330-Nov-04 11:58
1of330-Nov-04 11:58 
I'd be very interested in your Linux filter, and am working on such a Windows filter. Keep me posted... see me on eBay, user mjwiseman
GeneralHowto debug Pin
mumu_9922-Jun-04 0:20
mumu_9922-Jun-04 0:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.