GithubHelp home page GithubHelp logo

bad-socket's Introduction

Making network hang on macOS

Blocking writes to a socket seem to hang (on macOS) when another thread is trying to read from the same socket.

To demonstrate this we have a simple tcp proxy server that connects two instances of yes talking via nc.

Good

# shell 1
$ yes | nc -l localhost 6789
# shell 2
$ stack exec bad-socket
# shell 3
$ yes | nc localhost 9876

Output from proxy server:

...
("send[c->s]: wrote   ",1024)
("send[s->c]: writing ",1024)
("writev[s->c]: ",1024)
("send[s->c]: wrote   ",1024)
("send[c->s]: writing ",1024)
("writev[c->s]: ",1024)
("send[c->s]: wrote   ",1024)
("send[s->c]: writing ",1024)
("writev[s->c]: ",1024)
("send[s->c]: wrote   ",1024)
("send[c->s]: writing ",1024)
("writev[c->s]: ",1024)
("send[c->s]: wrote   ",1024)
...

Bad

# shell 1
$ nc -l localhost 6789
# shell 2
$ stack exec bad-socket
# shell 3
$ yes | nc localhost 9876

Output from proxy server:

...
("send[c->s]: writing ",4096)
("writev[c->s]: ",4096)
("send[c->s]: wrote   ",4096)
("send[c->s]: writing ",4096)
("writev[c->s]: ",4096)
("send[c->s]: wrote   ",4096)
("send[c->s]: writing ",4096)
("writev[c->s]: ",3448)
("send[c->s]: wrote   ",3448)
("send[c->s]: writing ",648)
("writev[c->s]: ",-1)
("errno[c->s]: ",35,writev: resource exhausted (Resource temporarily unavailable))

Eventually the outgoing buffer is filled up and the writev call blocks and never recovers.

I've tested this on macOS 10.13.2 with GHC 8.0.2 and 8.2.2. The hang does not occur on Linux as far as I can tell, nor when using the non-threaded runtime.

bad-socket's People

Contributors

gridaphobe avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

kazu-yamamoto

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.