首页 > 开发 > 综合 > 正文

用C#开发网络防火墙技术分析

2024-07-21 02:26:19
字体:
来源:转载
供稿:网友

 n-byte网络守望者是一款单机版网络安全工具,简言之,就是一个用.net开发的个人版防火墙。在n-byte网络守望者1.0版的开发中,使用了ndis hook driver技术来实现网络封包过滤功能,这使n-byte网络守望者能够在网络层过滤网络封包,从而实现强大的功能。

  由于软件的主程序是用c#写的,c#中没有提供具有类似deviceiocontrol函数功能的驱动设备控制函数,而ndis hook driver技术下的驱动程序是用ddk下的c语言写的,为了能够实现主程序对驱动程序的控制和相互通信,采用了以下设计方案:

  在以上方案中,需要一个负责主程序与ndis hook driver驱动程序通信与控制的模块driverdll.dll,并用c#编写的一个封装驱动程序中封包信息的模块,可以发送这个驱动程序信息到主程序,主程序可识别并操作模块中的数据类型。

  在.net应用程序使用驱动程序的问题上,面临着两个问题:

  1.怎样实现.net应用程序控制驱动程序的功能?

  2.怎样从驱动程序向.net应用程序传递非托管的数据类型?

  以下是我们就这些问题的详细解决方法:

  怎样实现.net应用程序控制驱动程序的功能?

  使用托管c++编写的driverdll.dll来实现对驱动程序的直接控制,而主程序通过调用其中的方法来实现对驱动程序的间接控制。比如在nbyte.h文件中定义了start_ip_hook常数用来作为传给驱动程序用来开启驱动程序封包过滤功能的参数,下面在托管c++模块中定义了ioctrl托管类并定义了下面的向缓冲区写入参数的方法:

//向缓冲区写入数据。

dword writeio(dword code,pvoid buffer,dword count)

{

if(hdriverhandle == null)

return error_driver_handle;

dword bytesreturned;

bool returncode = deviceiocontrol(hdriverhandle,

code,

buffer,

count,

null,

0,

&bytesreturned,

null);

 

if(!returncode)

return error_io_ctrl;

return success;

}

  当然直接使用这个方法不太方便,所以定义一个公有函数,用来提供给主程序调用:

//开始进行封包过滤

bool startiphook()

{
 return (writeio(start_ip_hook, null, 0)==success);
}

  这样,只要在主程序中声明ioctrl的对象ic,就可以通过ic.startiphook()就可以实现对驱动程序过滤功能的开启,用同样的方法也可以实现对驱动程序进行其它操作,比如添加、修改封包过滤规则等。

  怎样从驱动程序向.net应用程序传递非托管的数据类型?

  为了能够输出安全日志,必须让主程序获得驱动程序中的封包信息。使用信号量机制可以很方便的实现驱动程序和非托管代码间的信息传递,那么对托管代码呢?这需要向.net应用程序传递非托管的数据类型access_info。在nbyte.h中,是这样定义这个access_info结构的:

typedef struct _access_info

{
 ushort protocol;
 ulong sourceip;
 ulong destinationip;
 ushort sourceport;
 ushort destinationport;
}access_info;

  显然,直接传递非托管数据类型是不可以的,需要转换一下。首先,在ioctrl类中定义了几个要传递的封包信息参数:

public __gc class ioctrl
{
 public:
  ushort protocol; //网际协议类型
  ulong sourceip; //源ip地址
  ulong destinationip; //目的ip地址
  ushort sourceport; //源端口
  ushort destinationport; //目的端口
  ………………
}

  然后,在getaccessinfo()函数中来给这些参数赋值:

void getaccessinfo()
{
 access_info ai;
 bool result=(readio(get_info,&ai,sizeof(ai))==success);
 this->protocol=ai.protocol;
 this->sourceip=ai.sourceip;
 this->destinationip=ai.destinationip;
 this->sourceport=ai.sourceport;
 this->destinationport=ai.destinationport;

  既然在ioctrl类中获得了这些信息,但是需要把它们封装成主程序容易处理的数据类型,这样,用c#实现了infoevent类用来封装这些信息:

//本类封装了数据包的详细信息,可以通过事件实现对它的模块间传递。

public class infoevent:eventargs
{
 string sinfo; //用来存放输出信息的私有成员
 public int plength; //commonfunction.sport数组的长度
 public ushort protocol; //网络通信协议类型
 public uint sourceip; //数据包的源ip
 public uint destinationip; //数据包的目的ip
 public ushort sourceport; //数据包的源端口
 public ushort destinationport; //数据包的目的端口
 ………………………………
}

  下面在用托管c++实现的infoprovider驱动程序信息提供者类中把个infoevent类的对象传递给主程序,需要使用一个委托生成一个事件:

//声明委托事件,用来向主程序传递数据。

__delegate void driverinfo(object* sender, infoevent* e);

//声明响应事件函数。

__event driverinfo* ondriverinfo;

  然后在infoprovider驱动程序信息提供者类中定义一个方法,在主程序中以线程的方式运行这个方法,在这个方法中使用了事件函数ondriverinfo:

//用来获得驱动程序信息的进程,在主程序中将开启该进程。

void getinfothreadproc()
{
 this->hevent=openevent(synchronize,false,"nbevent");
 if(!ic->getdriverhandle())
 {
  return;
 }

 while(true)
 {
  f(!hevent)
  exitthread(0);
  waitforsingleobject(this->hevent,infinite);
  npackets++;
  ic->getaccessinfo();
  ic->resetevent();
  //定义一个主程序可以识别的对象,通过ondriverinfo传给主程序。
  infoevent*ie=new infoevent(ic->protocol,ic->sourceip,ic->destinationip,ic->sourceport,ic->destinationport);

  ondriverinfo(this,ie);
 }

 ic->closedriverhandle();
 return;
}

  在主程序中,会开启这个进程并定义了ondriverinfo的处理函数dealwithinfo:

pinfo=new infoprovider();

//开启与驱动交换信息的进程

filterthread=new thread(new threadstart(pinfo.getinfothreadproc));
filterthread.isbackground=true;
filterthread.start();
pinfo.ondriverinfo+=new infoprovider.driverinfo(dealwithinfo); 

  这样主程序就可以在dealwithinfo函数中加入对infoevent对象的处理了。可见,通过中间模块ioctrl的转换,便实现了.net主程序对驱动程序中非托管数据类型的获取和处理。

 

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表