How to duplicate socket for target process under different user - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T10:53:51Zhttp://stackoverflow.com/feeds/question/359891http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/359891/how-to-duplicate-socket-for-target-process-under-different-user1How to duplicate socket for target process under different userk...m2008-12-11T16:11:43Z2009-01-08T22:26:49Z
<p>I've hit upon a problem with WSADuplicateSocket, which I'm using to duplicate a socket for use by a different process. It works find when both processes are running under the same Windows user, but fails with error code 10022 (WSAEINVAL) when they are running under different users.</p>
<p>Specifically, the process calling WSADuplicateSocket is running under an admin user account and the target process is running under the System account.</p>
<p>Searching the web, I've found other references to the issue, but no solutions. Does anyone know of a way to resolve this?</p>
<p>Here's the current code:</p>
<pre><code>bool Duplicate(
SOCKET s,
WSAPROTOCOL_INFO* pSocketInfo,
int targetProcessID,
int& errorNum
)
{
memset(pSocketInfo, 0, sizeof(WSAPROTOCOL_INFO));
if (::WSADuplicateSocket(s, targetProcessID, pSocketInfo)
== SOCKET_ERROR)
{
errorNum = ::WSAGetLastError();
return false;
}
return true;
}
</code></pre>
http://stackoverflow.com/questions/359891/how-to-duplicate-socket-for-target-process-under-different-user/410063#4100631Answer by qbeuek for How to duplicate socket for target process under different userqbeuek2009-01-03T23:03:53Z2009-01-03T23:03:53Z<p>maybe the target user (system) does not have the privilege to access the network? i think that around windows xp a special service account has been created (network service) to separate services that need the access to the network. have you tested your code for another user, other than system?</p>
http://stackoverflow.com/questions/359891/how-to-duplicate-socket-for-target-process-under-different-user/426284#4262840Answer by qbeuek for How to duplicate socket for target process under different userqbeuek2009-01-08T22:26:49Z2009-01-08T22:26:49Z<p>The MSDN is a little bit unclear on the subject and I don't have time to test this myself, but maybe the socket handle, as a kernel object, has a security descriptor attached, that doesn't allow access to it by anyone else than the creator.</p>
<p>Try calling GetKernelObjectSecurity to examine ACLs attached to the handle and then try calling SetKernelObjectSecurity to allow other users access to the handle. Maybe then WSADuplicateSocket will work correctly?</p>