Example #1
0
        /// <summary>
        /// Gets NAT info from STUN server.
        /// </summary>
        /// <param name="host">STUN server name or IP.</param>
        /// <param name="port">STUN server port. Default port is 3478.</param>
        /// <param name="socket">UDP socket to use.</param>
        /// <returns>Returns UDP netwrok info.</returns>
        /// <exception cref="Exception">Throws exception if unexpected error happens.</exception>
        public static STUN_Result Query(string host, int port, Socket socket)
        {
            if (host == null)
            {
                throw new ArgumentNullException("host");
            }
            if (socket == null)
            {
                throw new ArgumentNullException("socket");
            }
            if (port < 1)
            {
                throw new ArgumentException("Port value must be >= 1 !");
            }
            if (socket.ProtocolType != ProtocolType.Udp)
            {
                throw new ArgumentException("Socket must be UDP socket !");
            }


            IPEndPoint remoteEndPoint = new IPEndPoint(Dns.GetHostAddresses(host)[0], port);

            socket.ReceiveTimeout = 3000;
            socket.SendTimeout    = 3000;

            /*
             *  In test I, the client sends a STUN Binding Request to a server, without any flags set in the
             *  CHANGE-REQUEST attribute, and without the RESPONSE-ADDRESS attribute. This causes the server
             *  to send the response back to the address and port that the request came from.
             *
             *  In test II, the client sends a Binding Request with both the "change IP" and "change port" flags
             *  from the CHANGE-REQUEST attribute set.
             *
             *  In test III, the client sends a Binding Request with only the "change port" flag set.
             *
             +--------+
             |  Test  |
             |   I    |
             +--------+
             |
             |
             |                           V
             |                          /\              /\
             |                       N /  \ Y          /  \ Y             +--------+
             |        UDP     <-------/Resp\--------->/ IP \------------->|  Test  |
             |        Blocked         \ ?  /          \Same/              |   II   |
             \  /            \? /               +--------+
             \/              \/                    |
             | N                  |
             |                    V
             |                                           V                    /\
             +--------+  Sym.      N /  \
             |  Test  |  UDP    <---/Resp\
             |   II   |  Firewall   \ ?  /
             +--------+              \  /
             |                    \/
             |                                           V                     |Y
             |                /\                         /\                    |
             | Symmetric  N  /  \       +--------+   N  /  \                   V
             |    NAT  <--- / IP \<-----|  Test  |<--- /Resp\               Open
             |              \Same/      |   I    |     \ ?  /               Internet
             \? /       +--------+      \  /
             \/                         \/
             |                           |Y
             |                           |
             |                           V
             |                           Full
             |                           Cone
             |                V              /\
             +--------+        /  \ Y
             |  Test  |------>/Resp\---->Restricted
             |   III  |       \ ?  /
             +--------+        \  /
             \/
             |N
             |       Port
             +------>Restricted
             |
             */

            // Test I
            STUN_Message test1 = new STUN_Message();

            test1.Type = STUN_MessageType.BindingRequest;
            STUN_Message test1response = DoTransaction(test1, socket, remoteEndPoint);

            // UDP blocked.
            if (test1response == null)
            {
                return(new STUN_Result(STUN_NetType.UdpBlocked, null));
            }
            else
            {
                // Test II
                STUN_Message test2 = new STUN_Message();
                test2.Type          = STUN_MessageType.BindingRequest;
                test2.ChangeRequest = new STUN_t_ChangeRequest(true, true);

                // No NAT.
                if (socket.LocalEndPoint.Equals(test1response.MappedAddress))
                {
                    STUN_Message test2Response = DoTransaction(test2, socket, remoteEndPoint);
                    // Open Internet.
                    if (test2Response != null)
                    {
                        return(new STUN_Result(STUN_NetType.OpenInternet, test1response.MappedAddress));
                    }
                    // Symmetric UDP firewall.
                    else
                    {
                        return(new STUN_Result(STUN_NetType.SymmetricUdpFirewall, test1response.MappedAddress));
                    }
                }
                // NAT
                else
                {
                    STUN_Message test2Response = DoTransaction(test2, socket, remoteEndPoint);
                    // Full cone NAT.
                    if (test2Response != null)
                    {
                        return(new STUN_Result(STUN_NetType.FullCone, test1response.MappedAddress));
                    }
                    else
                    {
                        /*
                         *  If no response is received, it performs test I again, but this time, does so to
                         *  the address and port from the CHANGED-ADDRESS attribute from the response to test I.
                         */

                        // Test I(II)
                        STUN_Message test12 = new STUN_Message();
                        test12.Type = STUN_MessageType.BindingRequest;

                        STUN_Message test12Response = DoTransaction(test12, socket, test1response.ChangedAddress);
                        if (test12Response == null)
                        {
                            throw new Exception("STUN Test I(II) dind't get resonse !");
                        }
                        else
                        {
                            // Symmetric NAT
                            if (!test12Response.MappedAddress.Equals(test1response.MappedAddress))
                            {
                                return(new STUN_Result(STUN_NetType.Symmetric, test1response.MappedAddress));
                            }
                            else
                            {
                                // Test III
                                STUN_Message test3 = new STUN_Message();
                                test3.Type          = STUN_MessageType.BindingRequest;
                                test3.ChangeRequest = new STUN_t_ChangeRequest(false, true);

                                STUN_Message test3Response = DoTransaction(test3, socket, test1response.ChangedAddress);
                                // Restricted
                                if (test3Response != null)
                                {
                                    return(new STUN_Result(STUN_NetType.RestrictedCone, test1response.MappedAddress));
                                }
                                // Port restricted
                                else
                                {
                                    return(new STUN_Result(STUN_NetType.PortRestrictedCone, test1response.MappedAddress));
                                }
                            }
                        }
                    }
                }
            }
        }