CreateNamedPipe是否导致ERROR

CreateNamedPipe是否导致ERROR

我需要为客户端和服务器(在同一主机中)之间的通信创建一个命名管道,这是代码:

WCHAR wszPipeName[MAX_FILE_LENGTH];
swprintf_s(wszPipeName, MAX_FILE_LENGTH, L"\\\\.\\pipe\\TEST%d", uniqueID);
pipe = CreateNamedPipe(
           wszPipeName, // name of the pipe
           PIPE_ACCESS_DUPLEX,
       PIPE_TYPE_MESSAGE | PIPE_READMODE_MESSAGE | PIPE_NOWAIT,
       1,
           MAX_MSG_SIZE,
           MAX_MSG_SIZE , //inbound buffer
           MAX_READ_DATA_TIMEOUT,
           NULL // use default security attributes
       );

处理程序返回的错误始终为INVALID_HANDLE_VAULE,错误为ERROR_ACCESS_DENIED。

这里有什么问题吗?它在Windows 7/8上运行。

谢谢

最佳答案

这是Python代码,但这为本地用户设置了安全描述符,并拒绝远程用户:

dacl = ACL()

# Deny NT AUTHORITY\NETWORK SID
sid = CreateWellKnownSid(WinNetworkSid)
dacl.AddAccessDeniedAce(ACL_REVISION, GENERIC_ALL, sid)

# Allow current user SID
token = OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY)
sid = GetTokenInformation(token, TokenUser)[0]
dacl.AddAccessAllowedAce(ACL_REVISION, GENERIC_READ | GENERIC_WRITE, sid)

security_descriptor = SECURITY_DESCRIPTOR()
security_descriptor.SetSecurityDescriptorDacl(True, dacl, False)

security_attributes = SECURITY_ATTRIBUTES()
security_attributes.SECURITY_DESCRIPTOR = security_descriptor

pipe = CreateNamedPipe(
    <your other params here>
    security_attributes
)

关于c++ - CreateNamedPipe是否导致ERROR_ACCESS_DENIED?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14313036/

10-13 07:04