diff options
author | Mitch Hayenga <mitch.hayenga+gem5@gmail.com> | 2014-01-28 18:00:51 -0600 |
---|---|---|
committer | Mitch Hayenga <mitch.hayenga+gem5@gmail.com> | 2014-01-28 18:00:51 -0600 |
commit | 55a4ff5f04badfbd458aee48618920f7fa243014 (patch) | |
tree | e8df9a71bd6cf64dea96d0c750822528935b47c6 /src/mem/cache/cache_impl.hh | |
parent | ffbdaa7cce32bfb18f0c97b9c5f19d1aa54da503 (diff) | |
download | gem5-55a4ff5f04badfbd458aee48618920f7fa243014.tar.xz |
base: Fix race condition in the socket listen function
gem5 makes the incorrect assumption that by binding a socket, it
effectively has allocated a port. Linux only allocates ports once you call
listen on the given socket, not when you call bind. So even if the port was
free when bind was called, another process (gem5 instance) could race in
between the bind & listen calls and steal the port. In the current code, if
the call to bind fails due to the port being in use (EADDRINUSE), gem5 retries
for a different port. However if listen fails, gem5 just panics. The fix is
testing the return value of listen and re-trying if it was due to EADDRINUSE.
Committed by: Nilay Vaish <nilay@cs.wisc.edu>
Diffstat (limited to 'src/mem/cache/cache_impl.hh')
0 files changed, 0 insertions, 0 deletions