-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use plain socket objects instead of wrapper classes #3127
Draft
tilgovi
wants to merge
3
commits into
master
Choose a base branch
from
unwrapped-sockets
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,130 +14,56 @@ | |
from gunicorn import util | ||
|
||
|
||
class BaseSocket(object): | ||
|
||
def __init__(self, address, conf, log, fd=None): | ||
self.log = log | ||
self.conf = conf | ||
|
||
self.cfg_addr = address | ||
if fd is None: | ||
sock = socket.socket(self.FAMILY, socket.SOCK_STREAM) | ||
bound = False | ||
def _get_socket_family(addr): | ||
if isinstance(addr, tuple): | ||
if util.is_ipv6(addr[0]): | ||
return socket.AF_INET6 | ||
else: | ||
sock = socket.fromfd(fd, self.FAMILY, socket.SOCK_STREAM) | ||
os.close(fd) | ||
bound = True | ||
|
||
self.sock = self.set_options(sock, bound=bound) | ||
|
||
def __str__(self): | ||
return "<socket %d>" % self.sock.fileno() | ||
|
||
def __getattr__(self, name): | ||
return getattr(self.sock, name) | ||
|
||
def set_options(self, sock, bound=False): | ||
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) | ||
if (self.conf.reuse_port | ||
and hasattr(socket, 'SO_REUSEPORT')): # pragma: no cover | ||
try: | ||
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1) | ||
except socket.error as err: | ||
if err.errno not in (errno.ENOPROTOOPT, errno.EINVAL): | ||
raise | ||
if not bound: | ||
self.bind(sock) | ||
sock.setblocking(0) | ||
return socket.AF_INET | ||
|
||
# make sure that the socket can be inherited | ||
if hasattr(sock, "set_inheritable"): | ||
sock.set_inheritable(True) | ||
if isinstance(addr, (str, bytes)): | ||
return socket.AF_UNIX | ||
|
||
sock.listen(self.conf.backlog) | ||
return sock | ||
raise TypeError("Unable to determine socket family for: %r" % addr) | ||
|
||
def bind(self, sock): | ||
sock.bind(self.cfg_addr) | ||
|
||
def close(self): | ||
if self.sock is None: | ||
return | ||
def create_socket(conf, log, addr): | ||
family = _get_socket_family(addr) | ||
|
||
if family is socket.AF_UNIX: | ||
# remove any existing socket at the given path | ||
try: | ||
self.sock.close() | ||
except socket.error as e: | ||
self.log.info("Error while closing socket %s", str(e)) | ||
|
||
self.sock = None | ||
|
||
|
||
class TCPSocket(BaseSocket): | ||
|
||
FAMILY = socket.AF_INET | ||
|
||
def __str__(self): | ||
if self.conf.is_ssl: | ||
scheme = "https" | ||
st = os.stat(addr) | ||
except OSError as e: | ||
if e.args[0] != errno.ENOENT: | ||
raise | ||
else: | ||
scheme = "http" | ||
|
||
addr = self.sock.getsockname() | ||
return "%s://%s:%d" % (scheme, addr[0], addr[1]) | ||
|
||
def set_options(self, sock, bound=False): | ||
sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) | ||
return super().set_options(sock, bound=bound) | ||
|
||
|
||
class TCP6Socket(TCPSocket): | ||
|
||
FAMILY = socket.AF_INET6 | ||
|
||
def __str__(self): | ||
(host, port, _, _) = self.sock.getsockname() | ||
return "http://[%s]:%d" % (host, port) | ||
|
||
|
||
class UnixSocket(BaseSocket): | ||
|
||
FAMILY = socket.AF_UNIX | ||
|
||
def __init__(self, addr, conf, log, fd=None): | ||
if fd is None: | ||
try: | ||
st = os.stat(addr) | ||
except OSError as e: | ||
if e.args[0] != errno.ENOENT: | ||
raise | ||
if stat.S_ISSOCK(st.st_mode): | ||
os.remove(addr) | ||
else: | ||
if stat.S_ISSOCK(st.st_mode): | ||
os.remove(addr) | ||
else: | ||
raise ValueError("%r is not a socket" % addr) | ||
super().__init__(addr, conf, log, fd=fd) | ||
|
||
def __str__(self): | ||
return "unix:%s" % self.cfg_addr | ||
|
||
def bind(self, sock): | ||
old_umask = os.umask(self.conf.umask) | ||
sock.bind(self.cfg_addr) | ||
util.chown(self.cfg_addr, self.conf.uid, self.conf.gid) | ||
os.umask(old_umask) | ||
raise ValueError("%r is not a socket" % addr) | ||
|
||
for i in range(5): | ||
try: | ||
sock = socket.socket(family) | ||
sock.bind(addr) | ||
sock.listen(conf.backlog) | ||
if family is socket.AF_UNIX: | ||
util.chown(addr, conf.uid, conf.gid) | ||
return sock | ||
except socket.error as e: | ||
if e.args[0] == errno.EADDRINUSE: | ||
log.error("Connection in use: %s", str(addr)) | ||
if e.args[0] == errno.EADDRNOTAVAIL: | ||
log.error("Invalid address: %s", str(addr)) | ||
if i < 5: | ||
msg = "connection to {addr} failed: {error}" | ||
log.debug(msg.format(addr=str(addr), error=str(e))) | ||
log.error("Retrying in 1 second.") | ||
time.sleep(1) | ||
|
||
def _sock_type(addr): | ||
if isinstance(addr, tuple): | ||
if util.is_ipv6(addr[0]): | ||
sock_type = TCP6Socket | ||
else: | ||
sock_type = TCPSocket | ||
elif isinstance(addr, (str, bytes)): | ||
sock_type = UnixSocket | ||
else: | ||
raise TypeError("Unable to create socket from: %r" % addr) | ||
return sock_type | ||
log.error("Can't connect to %s", str(addr)) | ||
sys.exit(1) | ||
|
||
|
||
def create_sockets(conf, log, fds=None): | ||
|
@@ -150,67 +76,71 @@ def create_sockets(conf, log, fds=None): | |
""" | ||
listeners = [] | ||
|
||
# get it only once | ||
addr = conf.address | ||
fdaddr = [bind for bind in addr if isinstance(bind, int)] | ||
if fds: | ||
fdaddr += list(fds) | ||
laddr = [bind for bind in addr if not isinstance(bind, int)] | ||
|
||
# check ssl config early to raise the error on startup | ||
# only the certfile is needed since it can contains the keyfile | ||
if conf.certfile and not os.path.exists(conf.certfile): | ||
raise ValueError('certfile "%s" does not exist' % conf.certfile) | ||
|
||
if conf.keyfile and not os.path.exists(conf.keyfile): | ||
raise ValueError('keyfile "%s" does not exist' % conf.keyfile) | ||
|
||
# sockets are already bound | ||
if fdaddr: | ||
for fd in fdaddr: | ||
sock = socket.fromfd(fd, socket.AF_UNIX, socket.SOCK_STREAM) | ||
sock_name = sock.getsockname() | ||
sock_type = _sock_type(sock_name) | ||
listener = sock_type(sock_name, conf, log, fd=fd) | ||
listeners.append(listener) | ||
|
||
return listeners | ||
|
||
# no sockets is bound, first initialization of gunicorn in this env. | ||
for addr in laddr: | ||
sock_type = _sock_type(addr) | ||
sock = None | ||
for i in range(5): | ||
try: | ||
sock = sock_type(addr, conf, log) | ||
except socket.error as e: | ||
if e.args[0] == errno.EADDRINUSE: | ||
log.error("Connection in use: %s", str(addr)) | ||
if e.args[0] == errno.EADDRNOTAVAIL: | ||
log.error("Invalid address: %s", str(addr)) | ||
if i < 5: | ||
msg = "connection to {addr} failed: {error}" | ||
log.debug(msg.format(addr=str(addr), error=str(e))) | ||
log.error("Retrying in 1 second.") | ||
time.sleep(1) | ||
else: | ||
break | ||
|
||
if sock is None: | ||
log.error("Can't connect to %s", str(addr)) | ||
sys.exit(1) | ||
|
||
listeners.append(sock) | ||
# sockets are already bound | ||
listeners = [] | ||
for fd in list(fds) + [a for a in conf.address if isinstance(a, int)]: | ||
sock = socket.socket(fileno=fd) | ||
set_socket_options(conf, sock) | ||
listeners.append(sock) | ||
else: | ||
# first initialization of gunicorn | ||
old_umask = os.umask(conf.umask) | ||
try: | ||
for addr in [bind for bind in conf.address if not isinstance(bind, int)]: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you make this part more readable. I would create the bind list in a separate line there. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does my PR work for you? |
||
sock = create_socket(conf, log, addr) | ||
set_socket_options(conf, sock) | ||
listeners.append(sock) | ||
finally: | ||
os.umask(old_umask) | ||
|
||
return listeners | ||
|
||
|
||
def close_sockets(listeners, unlink=True): | ||
for sock in listeners: | ||
sock_name = sock.getsockname() | ||
sock.close() | ||
if unlink and _sock_type(sock_name) is UnixSocket: | ||
os.unlink(sock_name) | ||
try: | ||
if unlink and sock.family is socket.AF_UNIX: | ||
sock_name = sock.getsockname() | ||
os.unlink(sock_name) | ||
finally: | ||
sock.close() | ||
|
||
|
||
def get_uri(listener, is_ssl=False): | ||
addr = listener.getsockname() | ||
family = _get_socket_family(addr) | ||
scheme = "https" if is_ssl else "http" | ||
|
||
if family is socket.AF_INET: | ||
(host, port) = listener.getsockname() | ||
return f"{scheme}://{host}:{port}" | ||
|
||
if family is socket.AF_INET6: | ||
(host, port, _, _) = listener.getsockname() | ||
return f"{scheme}://[{host}]:{port}" | ||
|
||
if family is socket.AF_UNIX: | ||
path = listener.getsockname() | ||
return f"unix://{path}" | ||
|
||
|
||
def set_socket_options(conf, sock): | ||
sock.setblocking(False) | ||
|
||
# make sure that the socket can be inherited | ||
if hasattr(sock, "set_inheritable"): | ||
sock.set_inheritable(True) | ||
|
||
if sock.family in (socket.AF_INET, socket.AF_INET6): | ||
sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) | ||
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) | ||
if (conf.reuse_port and hasattr(socket, 'SO_REUSEPORT')): # pragma: no cover | ||
try: | ||
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1) | ||
except socket.error as err: | ||
if err.errno not in (errno.ENOPROTOOPT, errno.EINVAL): | ||
raise | ||
|
||
|
||
def ssl_context(conf): | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@pajod what's your idea there?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Swap severity. Make the error appear in error logs. Demote sleep interval to debug logs.
Submitted separately in #3191