Newbie: Keep TCP socket open

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Alan Wright

    Newbie: Keep TCP socket open

    Hi Folks,
    I am newbie to Python, but have successfully created a simple client and
    server setup, I have one issue though.

    I am trying to test a box by sending many TCP conns (WHILE loop) but not
    closing them with a FIN/RST. However, no matter what i do, i cannot get the
    loop to stop sending FIN from the client.

    Any clues?

    Here is my current script

    #!/usr/bin/python

    import socket,sys
    from numpy import *
    num1=0

    while (num1<=10) :

    s = socket.socket(s ocket.AF_INET, socket.SOCK_STR EAM)
    s.settimeout(10 .0)
    s.connect(("10. 1.1.69", 50008)) # SMTP
    print s.recv(1024) + '\n',
    num1=num1+1
    #s.close()


    sys.exit(1)


  • s0suk3@gmail.com

    #2
    Re: Newbie: Keep TCP socket open

    On May 19, 10:25 am, "Alan Wright" <alan.wri...@vo lubill.comwrote :
    Hi Folks,
    I am newbie to Python, but have successfully created a simple client and
    server setup, I have one issue though.
    >
    I am trying to test a box by sending many TCP conns (WHILE loop) but not
    closing them with a FIN/RST. However, no matter what i do, i cannot get the
    loop to stop sending FIN from the client.
    >
    Any clues?
    >
    Here is my current script
    >
    #!/usr/bin/python
    >
    import socket,sys
    from numpy import *
    num1=0
    >
    while (num1<=10) :
    >
    s = socket.socket(s ocket.AF_INET, socket.SOCK_STR EAM)
    s.settimeout(10 .0)
    s.connect(("10. 1.1.69", 50008)) # SMTP
    print s.recv(1024) + '\n',
    num1=num1+1
    #s.close()
    >
    sys.exit(1)
    socket.socket instances do an implicit close() on the socket when the
    object is destructed (in this case, it's destructed when it is garbage-
    collected). What's happening is that on each iteration, the variable
    "s", which references the socket.socket instance, is assigned to a new
    socket.socket instance, therefore the instance of the previous
    iteration is no longer referenced by "s", and since it's no longer
    referenced by anything, the instance is garbage-collected,
    automatically imposing an implicit close() on that instance. A simple
    solution could be to create a list and append the socket.socket
    instance of each iteration to that list, that way the instances would
    remain referenced in the list and not be garbage-collected; though you
    might be able to find a more elegant solution.

    Sebastian

    Comment

    • Irmen de Jong

      #3
      Re: Newbie: Keep TCP socket open


      Alan Wright wrote:
      while (num1<=10) :
      >
      s = socket.socket(s ocket.AF_INET, socket.SOCK_STR EAM)
      s.settimeout(10 .0)
      s.connect(("10. 1.1.69", 50008)) # SMTP
      print s.recv(1024) + '\n',
      num1=num1+1
      #s.close()
      >
      >
      sys.exit(1)
      I think the following is happening:
      Reusing the 's' object for every new socket will make Python to garbage
      collect the previous ones. Garbage collecting a socket will likely close() it.
      Also after creating all sockets your program exits. I guess either Python or the
      operating system itself will go close all the sockets.


      Try putting every new socket you make into a big list instead, so that Python can't
      garbage collect it. And put your program to sleep at the end.

      import time
      allsockets=[]

      while (...):
      s=socket.socket (...
      allsockets.appe nd(s)
      s.settimeout(.. .
      ...

      time.sleep(9999 9)



      --irmen

      Comment

      • Alan Wright

        #4
        Re: Newbie: Keep TCP socket open

        Thanks for the feedback.

        Using the socket in a list is great

        However, as i imagined, I now get a limit of around 1500 conns before the
        system crashes out, also i have noticed, that the ports loop back to 1025
        when they hit 5000.

        Any ideas on how to make the list/socket get to around 50K

        TIA

        Alan
        <s0suk3@gmail.c omwrote in message
        news:e8e610ae-dec8-4551-b769-28ce9254c2b1@c5 8g2000hsc.googl egroups.com...
        On May 19, 10:25 am, "Alan Wright" <alan.wri...@vo lubill.comwrote :
        >Hi Folks,
        >I am newbie to Python, but have successfully created a simple client and
        >server setup, I have one issue though.
        >>
        >I am trying to test a box by sending many TCP conns (WHILE loop) but not
        >closing them with a FIN/RST. However, no matter what i do, i cannot get
        >the
        >loop to stop sending FIN from the client.
        >>
        >Any clues?
        >>
        >Here is my current script
        >>
        >#!/usr/bin/python
        >>
        >import socket,sys
        >from numpy import *
        >num1=0
        >>
        >while (num1<=10) :
        >>
        > s = socket.socket(s ocket.AF_INET, socket.SOCK_STR EAM)
        > s.settimeout(10 .0)
        > s.connect(("10. 1.1.69", 50008)) # SMTP
        > print s.recv(1024) + '\n',
        > num1=num1+1
        > #s.close()
        >>
        >sys.exit(1)
        >
        socket.socket instances do an implicit close() on the socket when the
        object is destructed (in this case, it's destructed when it is garbage-
        collected). What's happening is that on each iteration, the variable
        "s", which references the socket.socket instance, is assigned to a new
        socket.socket instance, therefore the instance of the previous
        iteration is no longer referenced by "s", and since it's no longer
        referenced by anything, the instance is garbage-collected,
        automatically imposing an implicit close() on that instance. A simple
        solution could be to create a list and append the socket.socket
        instance of each iteration to that list, that way the instances would
        remain referenced in the list and not be garbage-collected; though you
        might be able to find a more elegant solution.
        >
        Sebastian

        Comment

        • Ghirai

          #5
          Re: Newbie: Keep TCP socket open

          On Mon, 19 May 2008 20:25:57 +0100
          "Alan Wright" <alan.wright@vo lubill.comwrote :
          Thanks for the feedback.
          >
          Using the socket in a list is great
          >
          However, as i imagined, I now get a limit of around 1500 conns before
          the system crashes out, also i have noticed, that the ports loop back
          to 1025 when they hit 5000.
          >
          Any ideas on how to make the list/socket get to around 50K
          >
          TIA
          >
          Try to use scapy to send raw empty packets with S flag set.
          Also use Linux/BSD if you're trying this on Windows.

          --
          Regards,
          Ghirai.

          Comment

          • Alan Wright

            #6
            Re: Newbie: Keep TCP socket open

            Ghirai,
            Scapy does the same, only it sends RST and not FIN, so still no help

            send(IP(dst="10 .1.1.2")/TCP(dport=50000 ,flags="S"))

            Only have windows at the moment sadly.

            Alan

            "Ghirai" <ghirai@ghirai. comwrote in message
            news:mailman.13 64.1211234091.1 2834.python-list@python.org ...
            On Mon, 19 May 2008 20:25:57 +0100
            "Alan Wright" <alan.wright@vo lubill.comwrote :
            >
            >Thanks for the feedback.
            >>
            >Using the socket in a list is great
            >>
            >However, as i imagined, I now get a limit of around 1500 conns before
            >the system crashes out, also i have noticed, that the ports loop back
            >to 1025 when they hit 5000.
            >>
            >Any ideas on how to make the list/socket get to around 50K
            >>
            >TIA
            >>
            >
            Try to use scapy to send raw empty packets with S flag set.
            Also use Linux/BSD if you're trying this on Windows.
            >
            --
            Regards,
            Ghirai.

            Comment

            • Ghirai

              #7
              Re: Newbie: Keep TCP socket open

              On Mon, 19 May 2008 23:50:50 +0100
              "Alan Wright" <alan.wright@vo lubill.comwrote :
              Ghirai,
              Scapy does the same, only it sends RST and not FIN, so still no help
              >
              send(IP(dst="10 .1.1.2")/TCP(dport=50000 ,flags="S"))
              >
              Only have windows at the moment sadly.
              >
              Alan
              >
              Are you sure there's no firewall or something else between you and the
              remote host?

              Because i just tried that command with scapy and it didn't send any other packets
              except what it was told (1 packet with SYN flag set).

              I haven't tried on windows though.

              --
              Regards,
              Ghirai.

              Comment

              • Roy Smith

                #8
                Re: Newbie: Keep TCP socket open

                In article <DK6dnSffU4LRSa zVnZ2dnUVZ8qqln Z2d@pipex.net>,
                "Alan Wright" <alan.wright@vo lubill.comwrote :
                Thanks for the feedback.
                >
                Using the socket in a list is great
                >
                However, as i imagined, I now get a limit of around 1500 conns before the
                system crashes out, also i have noticed, that the ports loop back to 1025
                when they hit 5000.
                >
                Any ideas on how to make the list/socket get to around 50K
                Yikes. Not on any box I know of. A given process is limited in how many
                descriptors it can have open at once. I don't know of any that will allow
                anywhere near 50k. Somewhere in the 1-2000 range would be more typical.
                The 1500 you report is not at all surprising.

                You might try creating a bunch of child processes with os.system() or
                something of that ilk. Create 50 processes and have each one open 1000
                sockets.

                The next thing you have to worry about is whether the OS can handle 50k
                file descriptors open per-system. Or 50k sockets, or TCP connections. I
                wouldn't be too surprised if many systems couldn't. The address space (TCP
                port numbers) is 16-bit (unsigned), or about 65k, but you may well run into
                some other system limit long before you exhaust the theoretically available
                ports.

                Something like Scapy, recommended by others, may indeed be able to generate
                all those SYN packets you want, but that doesn't mean you'll get all the
                open connections you seek. You send a SYN packet to the remote host, and
                it sends back a SYN/ACK. The local kernel now sees a SYN/ACK packet for a
                port it doesn't know about. I'm not sure what the RFCs say about that, but
                I wouldn't be surprised if the kernel ends up sending a RST or maybe a FIN
                or something like that. The kernel owns the ports; it's not nice to try
                and mess with them on your own.

                Comment

                • Alan Wright

                  #9
                  Re: Newbie: Keep TCP socket open

                  Thanks Roy

                  Any ideas how to code this child process stuff, as I said I am newbie and
                  not from a coding background

                  to be honest ideally yes, i'd get 50K, but if i can get above 30K that would
                  be OK

                  Alan

                  "Roy Smith" <roy@panix.comw rote in message
                  news:roy-27A881.20583919 052008@70-1-84-166.area1.spcsd ns.net...
                  In article <DK6dnSffU4LRSa zVnZ2dnUVZ8qqln Z2d@pipex.net>,
                  "Alan Wright" <alan.wright@vo lubill.comwrote :
                  >
                  >Thanks for the feedback.
                  >>
                  >Using the socket in a list is great
                  >>
                  >However, as i imagined, I now get a limit of around 1500 conns before the
                  >system crashes out, also i have noticed, that the ports loop back to 1025
                  >when they hit 5000.
                  >>
                  >Any ideas on how to make the list/socket get to around 50K
                  >
                  Yikes. Not on any box I know of. A given process is limited in how many
                  descriptors it can have open at once. I don't know of any that will allow
                  anywhere near 50k. Somewhere in the 1-2000 range would be more typical.
                  The 1500 you report is not at all surprising.
                  >
                  You might try creating a bunch of child processes with os.system() or
                  something of that ilk. Create 50 processes and have each one open 1000
                  sockets.
                  >
                  The next thing you have to worry about is whether the OS can handle 50k
                  file descriptors open per-system. Or 50k sockets, or TCP connections. I
                  wouldn't be too surprised if many systems couldn't. The address space
                  (TCP
                  port numbers) is 16-bit (unsigned), or about 65k, but you may well run
                  into
                  some other system limit long before you exhaust the theoretically
                  available
                  ports.
                  >
                  Something like Scapy, recommended by others, may indeed be able to
                  generate
                  all those SYN packets you want, but that doesn't mean you'll get all the
                  open connections you seek. You send a SYN packet to the remote host, and
                  it sends back a SYN/ACK. The local kernel now sees a SYN/ACK packet for a
                  port it doesn't know about. I'm not sure what the RFCs say about that,
                  but
                  I wouldn't be surprised if the kernel ends up sending a RST or maybe a FIN
                  or something like that. The kernel owns the ports; it's not nice to try
                  and mess with them on your own.

                  Comment

                  • Alan Wright

                    #10
                    Re: Newbie: Keep TCP socket open

                    Same on FC8, sends RST after it sees SYN/ACK

                    "Ghirai" <ghirai@ghirai. comwrote in message
                    news:mailman.13 67.1211240706.1 2834.python-list@python.org ...
                    On Mon, 19 May 2008 23:50:50 +0100
                    "Alan Wright" <alan.wright@vo lubill.comwrote :
                    >
                    >Ghirai,
                    >Scapy does the same, only it sends RST and not FIN, so still no help
                    >>
                    > send(IP(dst="10 .1.1.2")/TCP(dport=50000 ,flags="S"))
                    >>
                    >Only have windows at the moment sadly.
                    >>
                    >Alan
                    >>
                    >
                    Are you sure there's no firewall or something else between you and the
                    remote host?
                    >
                    Because i just tried that command with scapy and it didn't send any other
                    packets
                    except what it was told (1 packet with SYN flag set).
                    >
                    I haven't tried on windows though.
                    >
                    --
                    Regards,
                    Ghirai.

                    Comment

                    • Roy Smith

                      #11
                      Re: Newbie: Keep TCP socket open

                      In article <iaidnR_ZuNB9YK 7VnZ2dnUVZ8uedn Z2d@pipex.net>,
                      "Alan Wright" <alan.wright@vo lubill.comwrote :
                      Thanks Roy
                      >
                      Any ideas how to code this child process stuff, as I said I am newbie and
                      not from a coding background
                      The easiest thing would be to use os.system(). If you wanted to spawn 10
                      child processes, you could do:

                      import os
                      for i in range(10):
                      os.system ("./child.py &")

                      and then have child.py be a script that creates 1000 TCP connections.

                      Keep in mind that one man's stress test is another man's denial of service
                      attack. If there are any firewalls between you and your target, they may
                      restrict the number of connections you get to make (or the rate at which
                      they're created). You may also get a polite phone call from your local IT
                      people asking enquiring about your activities.

                      Comment

                      • Alan Wright

                        #12
                        Re: Newbie: Keep TCP socket open

                        You must have something in your IPtables

                        I needed to put a rule in to drop these unwanted RST from getting back out.

                        All fixed now

                        Thanks for the advice

                        Alan

                        "Alan Wright" <alan.wright@vo lubill.comwrote in message
                        news:iaidnRzZuN B9YK7VnZ2dnUVZ8 uednZ2d@pipex.n et...
                        Same on FC8, sends RST after it sees SYN/ACK
                        >
                        "Ghirai" <ghirai@ghirai. comwrote in message
                        news:mailman.13 67.1211240706.1 2834.python-list@python.org ...
                        >On Mon, 19 May 2008 23:50:50 +0100
                        >"Alan Wright" <alan.wright@vo lubill.comwrote :
                        >>
                        >>Ghirai,
                        >>Scapy does the same, only it sends RST and not FIN, so still no help
                        >>>
                        >> send(IP(dst="10 .1.1.2")/TCP(dport=50000 ,flags="S"))
                        >>>
                        >>Only have windows at the moment sadly.
                        >>>
                        >>Alan
                        >>>
                        >>
                        >Are you sure there's no firewall or something else between you and the
                        >remote host?
                        >>
                        >Because i just tried that command with scapy and it didn't send any other
                        >packets
                        >except what it was told (1 packet with SYN flag set).
                        >>
                        >I haven't tried on windows though.
                        >>
                        >--
                        >Regards,
                        >Ghirai.
                        >
                        >

                        Comment

                        • Alan Wright

                          #13
                          Re: Newbie: Keep TCP socket open

                          Thanks Roy, will give it a go.

                          infact there is no need for any IT phone calls, I am the owner of this
                          network

                          Very simple [bunch of clients]----[box under test]----[bunch of servers]

                          Now i should be able to hammer them ;)

                          Alan

                          "Roy Smith" <roy@panix.comw rote in message
                          news:roy-6BB9DC.08271421 052008@70-1-84-166.area1.spcsd ns.net...
                          In article <iaidnR_ZuNB9YK 7VnZ2dnUVZ8uedn Z2d@pipex.net>,
                          "Alan Wright" <alan.wright@vo lubill.comwrote :
                          >
                          >Thanks Roy
                          >>
                          >Any ideas how to code this child process stuff, as I said I am newbie and
                          >not from a coding background
                          >
                          The easiest thing would be to use os.system(). If you wanted to spawn 10
                          child processes, you could do:
                          >
                          import os
                          for i in range(10):
                          os.system ("./child.py &")
                          >
                          and then have child.py be a script that creates 1000 TCP connections.
                          >
                          Keep in mind that one man's stress test is another man's denial of service
                          attack. If there are any firewalls between you and your target, they may
                          restrict the number of connections you get to make (or the rate at which
                          they're created). You may also get a polite phone call from your local IT
                          people asking enquiring about your activities.

                          Comment

                          • Roy Smith

                            #14
                            Re: Newbie: Keep TCP socket open

                            In article <3KadnXuJQ5VA0q nVRVnyuAA@pipex .net>,
                            "Alan Wright" <alan.wright@vo lubill.comwrote :
                            infact there is no need for any IT phone calls, I am the owner of this
                            network
                            That's the best way to do it :-)

                            Comment

                            Working...