Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nemu3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
nemu3
Commits
84a3f136
Commit
84a3f136
authored
Oct 29, 2010
by
Martín Ferrari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle connection resets in X11_forwarder
parent
c6ac9222
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
25 deletions
+32
-25
src/netns/protocol.py
src/netns/protocol.py
+32
-25
No files found.
src/netns/protocol.py
View file @
84a3f136
...
@@ -816,6 +816,25 @@ def _spawn_x11_forwarder(server, xsock, xaddr):
...
@@ -816,6 +816,25 @@ def _spawn_x11_forwarder(server, xsock, xaddr):
os._exit(1)
os._exit(1)
def _x11_forwarder(server, xsock, xaddr):
def _x11_forwarder(server, xsock, xaddr):
def clean(idx, toread, fd):
# silently discards any buffer!
fd1 = fd
fd2 = idx[fd]["
wr
"]
try:
fd1.close()
except:
pass
try:
fd2.close()
except:
pass
del idx[fd1]
if fd1 in toread:
toread.remove(fd1)
del idx[fd2]
if fd2 in toread:
toread.remove(fd2)
toread = set([server])
toread = set([server])
idx = {}
idx = {}
while(True):
while(True):
...
@@ -847,11 +866,16 @@ def _x11_forwarder(server, xsock, xaddr):
...
@@ -847,11 +866,16 @@ def _x11_forwarder(server, xsock, xaddr):
try:
try:
s = os.read(fd.fileno(), 4096)
s = os.read(fd.fileno(), 4096)
except OSError, e:
except OSError, e:
if e.errno != errno.EINTR:
if e.errno == errno.ECONNRESET:
raise
clean(idx, toread, fd)
continue
elif e.errno == errno.EINTR:
continue
continue
else:
raise
if s == "":
if s == "":
# fd closed
# fd closed
for read
toread.remove(fd)
toread.remove(fd)
chan["
closed
"] = True
chan["
closed
"] = True
if not chan["
buf
"]:
if not chan["
buf
"]:
...
@@ -870,18 +894,10 @@ def _x11_forwarder(server, xsock, xaddr):
...
@@ -870,18 +894,10 @@ def _x11_forwarder(server, xsock, xaddr):
except OSError, e:
except OSError, e:
if e.errno == errno.EINTR:
if e.errno == errno.EINTR:
continue
continue
if e.errno != errno.EPIPE:
if e.errno == errno.EPIPE or e.errno == errno.ECONNRESET:
raise
clean(idx, toread, fd)
# broken pipe, discard output and close
try:
chan["
rd
"].shutdown(socket.SHUT_RD)
chan["
wr
"].shutdown(socket.SHUT_WR)
except:
pass
toread.remove(chan["
rd
"])
chan["
closed
"] = 1
chan["
buf
"] = None
continue
continue
raise
if x < len(chan["
buf
"][0]):
if x < len(chan["
buf
"][0]):
chan["
buf
"][0] = chan["
buf
"][x:]
chan["
buf
"][0] = chan["
buf
"][x:]
...
@@ -900,13 +916,4 @@ def _x11_forwarder(server, xsock, xaddr):
...
@@ -900,13 +916,4 @@ def _x11_forwarder(server, xsock, xaddr):
if not chan["
closed
"] or chan["
buf
"] or not twin["
closed
"]
\
if not chan["
closed
"] or chan["
buf
"] or not twin["
closed
"]
\
or twin["
buf
"]:
or twin["
buf
"]:
continue
continue
try:
clean(idx, toread, chan["
rd
"])
chan["
rd
"].close()
except:
pass
try:
chan["
wr
"].close()
except:
pass
del idx[chan["
rd
"]]
del idx[chan["
wr
"]]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment