<div dir="ltr">Hi all,<div><br></div><div>Random SWE here. I've found a bug in the LinuxSocketOptions.c native implementation of getting/setting quickack on a socket. When running strace, the socket option that is set is actually changing the SO_PRIORITY.</div><div><br></div><div>This is because the syscall is incorrectly called with level=SO_SOCKET rather than level=SOL_TCP. You can see this in the openjdk implementation on line 92 and 105: </div><div><a href="https://github.com/openjdk/jdk/blob/a08c5cb3f1be7a20c8f955951d1605bb8b1c1aa4/src/jdk.net/linux/native/libextnet/LinuxSocketOptions.c#L92">https://github.com/openjdk/jdk/blob/a08c5cb3f1be7a20c8f955951d1605bb8b1c1aa4/src/jdk.net/linux/native/libextnet/LinuxSocketOptions.c#L92</a>. It has existed since the original implementation in JDK-8145635.<br></div><div><br></div><div>I believe the fix is to change both get/set syscalls like this:</div><div>setsockopt(fd, SOL_SOCKET, TCP_QUICKACK, &optval, sizeof (optval));<br></div><div>to</div><div>setsockopt(fd, SOL_TCP, TCP_QUICKACK, &optval, sizeof (optval));<br></div><div><br></div><div>The bug has existed since JDK 10 and I see it still exists in the most recent versions of Java. It was found and tested in JDK 11. </div><div><br></div><div><br></div><div>As a non-contributor, I don't know of a way of submitting a patch or directly reporting this bug. Can someone provide guidance on where to take it from here?</div><div><br></div><div>Thank you,</div><div>Bruno Da Silva</div></div>