Vadim Smirnov

Forum Replies Created

Viewing 15 posts - 811 through 825 (of 1,486 total)
  • Author
    Posts
  • in reply to: Please, help to make DLL in Visual C with NDISAPI #6853
    Vadim Smirnov
    Keymaster

      Looks like linker is unable to find or to take proper version of ndisapi.lib. Try to set path to ndisapi.lib in project setting instead of pragma.

      in reply to: Задача с использованием VirtNet #6851
      Vadim Smirnov
      Keymaster

        Для этого существует NDIS MUX Intermediate Drivers (NDIS 5.1)

        The number of virtual miniports exposed by a MUX intermediate driver can be different than the number of lower physical adapters that are bound to the driver. A MUX intermediate driver exposes virtual miniports in a one-to-n, n-to-one, or even an m-to-n relationship with underlying adapters. This results in complicated internal bindings and data paths.

        in reply to: TDI-фильтр и ClientEventChainedReceive(Expedited) #6850
        Vadim Smirnov
        Keymaster

          В общем да…

          in reply to: TDI-фильтр и ClientEventChainedReceive(Expedited) #6847
          Vadim Smirnov
          Keymaster

            В данном случае STATUS_PENDING означает, что TDI клиент обработает полученные из сети данные позже и затем вернет переданный ему буфер. Данные из Tsdu лучше забрать до вызова оригинального обработчика, так как если это сделать позже, то можно получить race condition.

            in reply to: trouble after install the winpkfilter 3.0.7 in VPS #6845
            Vadim Smirnov
            Keymaster

              First, Windows VPS, an example Virtuozzo based ones, do not allow you to install custom drivers on them. The set of third party drivers which are allowed to load is defined by VPS vendor. I don’t know what VPS software is used at GoDaddy, but probably this is similar situation.

              Second, any Windows will disconnect the remote session during NDIS IM drivers installation because the network stack is rebound and existing connections are dropped.

              And third, even NDIS IM driver installation may require system reboot if stack can’t reinitialize dynamically.

              in reply to: trouble modifying passthru sample #6840
              Vadim Smirnov
              Keymaster

                SendPacketToAdapter can send any packet on the network even if it is not in correct format. I think you just don’t form the correct INTERMEDIATE_BUFFER. I’m not sure I fully understand what you are doing in your C# code as I’m not really experienced in C#, but to my limited knowledge the code is incorrect.

                byte[] newPacket = new byte[sizeof(ETHER_HEADER) + sizeof(IPHeader) + sizeof(UdpHeader) +
                sizeof(PlatformHeader) + dataLength + sizeof(GPSHeader)];

                ...

                IntPtr outgoingPacket = Marshal.AllocHGlobal((IntPtr)(newPacket.Length));
                Marshal.Copy(newPacket, 0, outgoingPacket, newPacket.Length);

                ETH_REQUEST outgoingRequest = new ETH_REQUEST();
                outgoingRequest.hAdapterHandle = Request.hAdapterHandle;
                outgoingRequest.EthPacket.Buffer = outgoingPacket;

                In your code above you use newPacket as managed INTERMEDIATE_BUFFER and outgoingPacket as unmanaged INTERMEDIATE_BUFFER. However, the size for allocation for newPacket must be sizeof(INTERMEDIATE_BUFFER), not the size you have used above. As well when you copy managed INTERMEDIATE_BUFFER into unmanaged memory once again you should copy sizeof(INTERMEDIATE_BUFFER).

                Note that you have to initialize INTERMEDIATE_BUFFER fields (you can copy values from the original structure and adjust m_Length).

                Also note that the resulted packet must fit into MAX_ETHER_FRAME (more exactly it should not exceed network interface MTU value).

                in reply to: TDI Filter, hook ClientEventsReceive #6830
                Vadim Smirnov
                Keymaster

                  I think you can just return STATUS_DATA_NOT_ACCEPTED

                  in reply to: A BSOD problem of tdifw. #6833
                  Vadim Smirnov
                  Keymaster

                    It looks like ctx->old_handler = NULL. You can inspect the code to check how could it happen, may be this is a sort of race condition.

                    in reply to: VirtNet VLAN support ? #6828
                    Vadim Smirnov
                    Keymaster

                      I think it is doable, but I can’t say how hard it could be 😉 You never know before you try…

                      in reply to: Using WinpkFilter to make UDP DPI proxy… #6749
                      Vadim Smirnov
                      Keymaster

                        1) According to the above scenario, can I use your WinpkFilter 3.x product to do it?

                        Sure you can.

                        2) Can I set a specific device adapter filter so that ONLY UDP packets going to a specific port are grabbed via a ReadPacket() call?

                        Yes, you can use built-in WinpkFilter filters for this.

                        3) Can I use the “listen” mode to grab the packets, and signal to DROP bad packets but let the good ones pass through? I really don’t want to have to re-send the good packets to the loopback address or use tunneling mode. I’d like to just drop the bad packets and let things be as normal for the good packets.

                        No, if you suppose to drop packets you should be filtering in tunnel mode. Listen mode only gives you a copy of the packet while passing the original one.

                        4) Can I open up multiple device adapter handles and set different filters for them so that simultaneous ReadPacket() calls return different packets based on the different filters?

                        Yes, you can open multiply adapters and set adapter specific filters.

                        5) Is there a way to not have to keep calling the ReadPacket() method inside of a loop? Like, set the adapter to execute a callback function when a new packet is on the buffer? This would support an event driven model which is much more efficient on the CPU.

                        Driver code can’t callback user mode code. If to be precise, you can execute a code in user mode part of the memory, but it can’t be safe (as packets arrive from the network at IRQL_DISPATCH_LEVEL but user mode memory can be paged out) and it also would be a security hole (as user mode code is executed with kernel mode privilege).

                        6) After reviewing your product documentation, I noticed there is no structure documentation for the Adapter structure that is used commonly throughout your product as an Integer Pointer Handle. You have all the other structures documented, why not this very important one? I figured it must be a common structure in NDIS, but after some research, I’m finding that driver developers start adding their custom fields to it. What is the WinpkFilter structure associated with individual Adapter handles, i.e “_ETH_REQUEST.hAdapterHandle” ?

                        This is internal WinpkFilter structure and it is not accessible from user mode (it is allocated from kernel memory).Thats why it is opaque.

                        in reply to: Capturing double copies in VirtNet Adapter #6608
                        Vadim Smirnov
                        Keymaster

                          VirtNet has hardcoded MAC address in driver, however you can easily changed it through the network card properties. Driver tries to read MAC address from the registry during driver start.

                          in reply to: Filter packets comming in/out #6837
                          Vadim Smirnov
                          Keymaster

                            You can use WinpkFilter built-in filters to intercept only packets destined to port 80. For the intercepted packet you can get a pointer to packet data and search for the “explorer” string. If you modify the packet you have to recalculate packets TCP and IP checksums. Also, if you modify packet length you also have to affect TCP header.

                            in reply to: trouble modifying passthru sample #6838
                            Vadim Smirnov
                            Keymaster

                              I’m not experienced in C# well enough to inspect your code for possible errors. However, I would recommend you to install network sniffer like Network Monitor or Wireshark and intercept your handcrafted packets from the network. Network sniffer will show if anything is wrong with checksum.

                              Also, I can’t see in the code fragment where do you check if you are working with UDP packet. Or do you treat every outgoing packet as UDP one?

                              in reply to: PPP & Dial-up Issue #6832
                              Vadim Smirnov
                              Keymaster

                                Try to run passthru sample on the same network interface for which you run wireshark and I think you will be able to get exactly the same capture.

                                in reply to: WinpkFilter news/updates. #5511
                                Vadim Smirnov
                                Keymaster

                                  WinpkFilter 3.0.7 released. This service release includes the bugfix for WinpkFilter NDIS IM driver on power state changes.

                                  If you are eligible for a free update, please send the following details to support@ntkernel.com tо receive an update instruction:

                                  1) Your order ID.
                                  2) An approximate date of purchasing.

                                Viewing 15 posts - 811 through 825 (of 1,486 total)