![]() |
Reading packets from a tun device.
I'm trying to read packets from a tun device in Python, the code I used for this is the following: f = file( '/dev/tun0', 'r+' ) pkt = f.read( 1500 ) The problem is that the f.read() call doesn't return. When I used a small value in the f.read() call instead of the 1500, like 1 or 5, it did return the first bytes of the packet. I then went to the manuals and found that file() uses stdio's fopen, so I changed my code to make file() not do any buffering, like this: f = file( '/dev/tun0', 'r+', 0 ) pkt = f.read( 1500 ) But the behavior of the program is the same as the one above. What I'm looking for is a way to open a file in Python without using stdio, or a way to read from a tun device using it. I also tried google'ing for another Python program that uses a tun device, but couldn't find any yet, so if you know of a Python program that uses a tun device, that'd be enough for me to figure out what I'm doing wrong. Thank you for reading all this! |
Re: Reading packets from a tun device.
Andre <andre@netvision.com.br> wrote in message news:<mailman.1058041398.21541.python-list@python.org>...
> I'm trying to read packets from a tun device in Python, the code I used > for this is the following: > f = file( '/dev/tun0', 'r+' ) > pkt = f.read( 1500 ) > > The problem is that the f.read() call doesn't return. When I used a small > value in the f.read() call instead of the 1500, like 1 or 5, it did > return the first bytes of the packet. > I then went to the manuals and found that file() uses stdio's fopen, so I > changed my code to make file() not do any buffering, like this: > > f = file( '/dev/tun0', 'r+', 0 ) > pkt = f.read( 1500 ) > But the behavior of the program is the same as the one above. > What I'm looking for is a way to open a file in Python without using > stdio, or a way to read from a tun device using it. I'm not sure if this problem is due to buffering on your client side, but you can open plain file descriptors in Python. The buffering could also be on the server side of the tun device. What is connected to the other side of the tun? Is that code that you wrote too? If so then send a copy of that and I can understand better what is going on. The 'os' package supports raw file descriptor file IO which is below stdio. import os fd_tun = os.open ('/dev/tun0', os.O_RDWR) data = os.read (fd_tun, 1500) os.close (fd_tun) Let me know how this goes. Yours, Noah |
| All times are GMT. The time now is 07:43 PM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.