简体   繁体   中英

Named pipe and "GetNamedPipeHandleState"

If I run pipe client for testing GetNamedPipeHandleState function, I get error Error 87: The parameter is incorrect .

Here my code, with client and server:

#include <iostream>
#include <stdio.h>
#include <conio.h>
#include "windows.h"

using namespace std;

void showError(const char *text) {
    char Buf[256];
    DWORD errNo = GetLastError();
    FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(), MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US), Buf,
                  sizeof(Buf), NULL);
    fprintf(stdout, "%s, error %d, %s\nPress any key to Exit", text, (int) errNo, Buf);
    _getch();
}

int client_GetNamedPipeHandleState() {

    DWORD dwState;
    DWORD dwCurInstances;
    DWORD dwMaxCollectionCount;
    DWORD dwCollectDataTimeout;
    TCHAR chUserName[255];

    char pipeName[] = "\\\\.\\pipe\\demo_pipe";
    HANDLE hNamedPipe;

    hNamedPipe = CreateFileA(pipeName, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL,
                             NULL);

    if (hNamedPipe == INVALID_HANDLE_VALUE) {
        showError("Create File failed");
        return 0;
    }

    if (!GetNamedPipeHandleState(
        hNamedPipe, &dwState, &dwCurInstances, &dwMaxCollectionCount,&dwCollectDataTimeout, chUserName, 255)) {
        //hNamedPipe, &dwState, &dwCurInstances, NULL, NULL, NULL, 0)) {
        CloseHandle(hNamedPipe);
        showError("get state failed");
        return 0;
    }

    cout << "State: " << dwState << ", ";
    switch (dwState) {
        case (PIPE_NOWAIT):
            cout << "PIPE_NOWAIT" << endl;
            break;
        case (PIPE_READMODE_MESSAGE):
            cout << "PIPE_READMODE_MESSAGE" << endl;
            break;
        case (PIPE_NOWAIT | PIPE_READMODE_MESSAGE):
            cout << "PIPE_NOWAIT and PIPE_READMODE_MESSAGE" << endl;
            break;
        default:
            cout << "Unknown state." << endl;
            break;
    }

    cout << "Current instances: " << dwCurInstances << endl
    << "Max collection count: " << dwMaxCollectionCount << endl
    << "Collection data timeout: " << dwCollectDataTimeout << endl
    << "User name: " << chUserName << endl;

    CloseHandle(hNamedPipe);
    cout << "Press any key to exit.";
    cin.get();
    return 0;
}

int server() {
    HANDLE hNamedPipe;
    DWORD dwBytesRead;
    DWORD dwBytesWrite;
    char pchMessage[80];
    DWORD nMessageLength;

    hNamedPipe = CreateNamedPipeA(
            "\\\\.\\pipe\\demo_pipe",
            PIPE_ACCESS_DUPLEX,
            PIPE_TYPE_MESSAGE | PIPE_WAIT,
            1,
            0,
            0,
            INFINITE,
            NULL
    );

    if (hNamedPipe == INVALID_HANDLE_VALUE) {
        showError("Create named pipe failed");
        return 0;
    }

    printf("Waiting client...\n");
    if (!ConnectNamedPipe(hNamedPipe, NULL)) {
        showError("Connect to name pipe failed");
        CloseHandle(hNamedPipe);
        return 0;
    }
    if (!ReadFile(hNamedPipe, pchMessage, sizeof(pchMessage), &dwBytesRead, NULL)) {
        CloseHandle(hNamedPipe);
        showError("Read pipe failed");
        return 0;
    }

    printf("The server received the message from client: %s\n", pchMessage);
    cout << "Input a string: ";
    cin.getline(pchMessage, 80);
    nMessageLength = strlen(pchMessage) + 1;

    //Answer to client
    if (!WriteFile(hNamedPipe, pchMessage, nMessageLength, &dwBytesWrite, NULL)) {
        CloseHandle(hNamedPipe);
        showError("Write file failed.");
        return 0;
    }
    printf("The Server send the message to the client: %s\n", pchMessage);
    CloseHandle(hNamedPipe);
    printf("Press any key to exit");
    cin.get();
    return 0;
}

int main(int argc, char *argv[]) {
    if (argc == 1) return 0;

    if (!strcmp(argv[1], "client")) {
        client_GetNamedPipeHandleState();
    }

    if (!strcmp(argv[1], "server")) {
        server();
    }

    return 0;
}

This is project which I make in Clion. Can be run as "app client" or "app server".

What is the reason of the error?

As documented :

lpMaxCollectionCount [out, optional]

[...] This parameter must be NULL [...] if client and server processes are on the same computer.

lpCollectDataTimeout [out, optional]

[...] This parameter must be NULL [...] if client and server processes are on the same computer.

lpUserName [out, optional]

[...] This parameter must be NULL if the specified pipe handle is to the client end of a named pipe.

Once all three of these parameters have been set to NULL, the call works.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM