Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Re: Newbie: Keep TCP socket open

Reply
Thread Tools

Re: Newbie: Keep TCP socket open

 
 
s0suk3@gmail.com
Guest
Posts: n/a
 
      05-19-2008
On May 19, 10:25 am, "Alan Wright" <alan.wri...@volubill.com> wrote:
> 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(socket.AF_INET, socket.SOCK_STREAM)
> s.settimeout(10.0)
> s.connect(("10.1.1.69", 5000) # 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
 
Reply With Quote
 
 
 
 
Ghirai
Guest
Posts: n/a
 
      05-19-2008
On Mon, 19 May 2008 20:25:57 +0100
"Alan Wright" <> wrote:

> 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.
 
Reply With Quote
 
 
 
 
Ghirai
Guest
Posts: n/a
 
      05-19-2008
On Mon, 19 May 2008 23:50:50 +0100
"Alan Wright" <> wrote:

> 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.
 
Reply With Quote
 
Roy Smith
Guest
Posts: n/a
 
      05-20-2008
In article <>,
"Alan Wright" <> wrote:

> 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.
 
Reply With Quote
 
Roy Smith
Guest
Posts: n/a
 
      05-21-2008
In article <>,
"Alan Wright" <> wrote:

> 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.
 
Reply With Quote
 
Roy Smith
Guest
Posts: n/a
 
      05-21-2008
In article <>,
"Alan Wright" <> wrote:

> 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
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How keep python socket alive for ever by setting Keep alive flag. hisan Python 1 06-25-2012 05:30 PM
socket.unbind or socket.unlisten? - socket.error: (48, 'Addressalready in use') Laszlo Nagy Python 1 01-27-2009 05:05 PM
Re: socket.unbind or socket.unlisten? - socket.error: (48,'Address already in use') Jean-Paul Calderone Python 0 01-27-2009 01:41 PM
Re: Newbie: Keep TCP socket open Irmen de Jong Python 0 05-19-2008 06:29 PM
send tcp raw socket (bogus tcp header length) Tiger C Programming 5 05-01-2006 05:53 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57