ISA Server application filter Object Model

Source: Internet
Author: User

When the Microsoft firewall service starts, it exposes the ifwxfirewall interface, which provides access to Firewall service functions.

 

 

An application filter must include a COM object that implements the ifwxfilter interface. this object is called the filter object. when the Firewall service starts, it creates an instance of the filter object for each application filter that is installed on the ISA Server computer and enabled. the Firewall Service initializes each application filter by calling the application filter's implementation of the filterinit method on the ifwxfilter interface. the initialization process can include the creation and initialization of other COM objects that are used in the application filter.

 

The initial operation of an application filter is invoked by an event. the events for which the filter object representing an application filter will be registered are specified in an fwxfilterhookevents structure, which can be created and populated during creation of the filter object. the contents of this fwxfilterhookevents structure are returned to the Firewall Service by the call to the filterinit method.

 

When a client computer first connects to the ISA Server computer, the Firewall Service creates a session object with the standard ifwxsession interface for it. if the Firewall Service detects an event for which the application filter is registered when a new user session is opened, it callthe application filter's implementation of the ifwxfilter :: attachtosession method to inform the application filter that the event has occurred. during this call, the application filter creates an instance of an object that implements the ifwxsessionfilter interface. such an object is called a session filter object.

 

The session filter object refers to the session object, represented by the ifwxsession interface, for client and user information.

 

After the Firewall Service has called filter's implementation of the ifwxfilter: attachtosession method, the Firewall Service notifies the filter about the events specified in the output of this method by calling the ifwxsessionfilter :: firewalleventhandler method.

 

When the session filter object is notified by the Firewall Service that an event for which the filter is registered has occurred, its firewalleventhandler method can create an instance of a data filter object, which implements the ifwxdatafilter interface. alternatively, a data filter object can be created by using ifwxsession: setdatafilterfactory. the session filter object attaches the data filter object to the connection object related to the specific event.

 

The connection object provides the data filter with internal and external sockets by calling ifwxdatafilter: setsockets. each socket object implements the ifwxsocket interface. the data filter then performs the data pumping and filtering for the specific connection.

 

Application filters follow an active data-pumping programming model, where an application filter that registers itself on a connection takes full ownership of the connection and actively pipes the data through from one side to the other. this model is similar to I/O Completion Ports, where a filter dispatches I/O requests and ES configurations upon completion of the I/O operation. although the application Filter SDK hides the details of the worker-thread implementation, it is important to be aware of how this works and to realize that I/O completions for the same connection can be called in the context of different threads.

 

Application filters can be chained so that the same protocol is handled by more than one filter. this is achieved by using the virtual socket concept through the ifwxsocket interface. when an application filter pumps data through a socket interface, it can be a virtual socket that is actually connected to the next filter, or it can be a real network socket that actually writes and reads data from the network.

 

Data is already ed as buffers. to avoid the need to copy buffers, each buffer is created as an object that implements the ifwxiobuffer interface. because data is already ed asynchronously, the data filter must implement ifwxiocompletion, which is necessary for asynchronous (I/O) on the sockets. when an asynchronous I/O operation is completed, the Firewall Service uses ifwxiocompletion: completeasyncio to collect y the data filter that the buffer is available to it.

 

The data filter can then perform its filtering function on the data buffer.

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.