2009-04-22 15:48:07 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
|
|
|
$Id$
|
|
|
|
|
2010-10-14 18:41:14 +04:00
|
|
|
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2009-04-22 15:48:07 +04:00
|
|
|
"""
|
|
|
|
|
|
|
|
import errno
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
|
2009-06-11 19:01:48 +04:00
|
|
|
from lib.core.settings import IS_WIN
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2010-01-02 05:02:12 +03:00
|
|
|
if not IS_WIN:
|
2009-06-11 19:01:48 +04:00
|
|
|
import fcntl
|
|
|
|
|
|
|
|
if (sys.hexversion >> 16) >= 0x202:
|
|
|
|
FCNTL = fcntl
|
|
|
|
else:
|
|
|
|
import FCNTL
|
2009-04-22 15:48:07 +04:00
|
|
|
|
|
|
|
def blockingReadFromFD(fd):
|
|
|
|
# Quick twist around original Twisted function
|
|
|
|
# Blocking read from a non-blocking file descriptor
|
|
|
|
output = ""
|
|
|
|
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
output += os.read(fd, 8192)
|
|
|
|
except (OSError, IOError), ioe:
|
|
|
|
if ioe.args[0] in (errno.EAGAIN, errno.EINTR):
|
|
|
|
# Uncomment the following line if the process seems to
|
|
|
|
# take a huge amount of cpu time
|
|
|
|
# time.sleep(0.01)
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
raise
|
|
|
|
break
|
|
|
|
|
|
|
|
if not output:
|
|
|
|
raise EOFError, "fd %s has been closed." % fd
|
|
|
|
|
2010-01-02 05:02:12 +03:00
|
|
|
return output
|
2009-04-22 15:48:07 +04:00
|
|
|
|
|
|
|
def blockingWriteToFD(fd, data):
|
|
|
|
# Another quick twist
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
data_length = len(data)
|
|
|
|
wrote_data = os.write(fd, data)
|
|
|
|
except (OSError, IOError), io:
|
|
|
|
if io.errno in (errno.EAGAIN, errno.EINTR):
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
raise
|
|
|
|
|
|
|
|
if wrote_data < data_length:
|
|
|
|
blockingWriteToFD(fd, data[wrote_data:])
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
def setNonBlocking(fd):
|
|
|
|
"""
|
|
|
|
Make a file descriptor non-blocking
|
|
|
|
"""
|
|
|
|
|
2009-06-11 19:01:48 +04:00
|
|
|
if IS_WIN is not True:
|
|
|
|
flags = fcntl.fcntl(fd, FCNTL.F_GETFL)
|
|
|
|
flags = flags | os.O_NONBLOCK
|
|
|
|
fcntl.fcntl(fd, FCNTL.F_SETFL, flags)
|