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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
|
/*
* Copyright (c) 2016, 2017 Cloudbase Solutions Srl
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <config.h>
#include <errno.h>
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "openvswitch/poll-loop.h"
#include "dirs.h"
#include "fatal-signal.h"
#include "util.h"
#include "stream-provider.h"
#include "openvswitch/vlog.h"
VLOG_DEFINE_THIS_MODULE(stream_windows);
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(10, 25);
static void maybe_unlink_and_free(char *path);
/* Suggested buffer size at the creation of the named pipe for reading and
* and writing operations. */
#define BUFSIZE 65000
/* Default prefix of a local named pipe. */
#define LOCAL_PREFIX "\\\\.\\pipe\\"
/* Size of the allowed PSIDs for securing Named Pipe. */
#define ALLOWED_PSIDS_SIZE 3
/* This function has the purpose to remove all the slashes received in s. */
static char *
remove_slashes(char *s)
{
char *p1, *p2;
p1 = p2 = s;
while (*p1) {
if ((*p1) == '\\' || (*p1) == '/') {
p1++;
} else {
*p2 = *p1;
p2++;
p1++;
}
}
*p2 = '\0';
return s;
}
/* Active named pipe. */
struct windows_stream
{
struct stream stream;
HANDLE fd;
/* Overlapped operations used for reading/writing. */
OVERLAPPED read;
OVERLAPPED write;
/* Flag to check if a reading/writing operation is pending. */
bool read_pending;
bool write_pending;
/* Flag to check if fd is a server HANDLE. In the case of a server handle
* we have to issue a disconnect before closing the actual handle. */
bool server;
bool retry_connect;
char *pipe_path;
};
static struct windows_stream *
stream_windows_cast(struct stream *stream)
{
stream_assert_class(stream, &windows_stream_class);
return CONTAINER_OF(stream, struct windows_stream, stream);
}
static HANDLE
create_snpipe(char *path)
{
return CreateFile(path, GENERIC_READ | GENERIC_WRITE, 0, NULL,
OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL | FILE_FLAG_OVERLAPPED |
FILE_FLAG_NO_BUFFERING,
NULL);
}
/* Active named pipe open. */
static int
windows_open(const char *name, char *suffix, struct stream **streamp,
uint8_t dscp OVS_UNUSED)
{
char *connect_path;
HANDLE npipe;
DWORD mode = PIPE_READMODE_BYTE;
char *path;
FILE *file;
bool retry = false;
/* If the path does not contain a ':', assume it is relative to
* OVS_RUNDIR. */
if (!strchr(suffix, ':')) {
path = xasprintf("%s/%s", ovs_rundir(), suffix);
} else {
path = xstrdup(suffix);
}
/* In case of "unix:" argument, the assumption is that there is a file
* created in the path (name). */
file = fopen(path, "r");
if (!file) {
free(path);
VLOG_DBG_RL(&rl, "%s: could not open %s (%s)", name, suffix,
ovs_strerror(errno));
return ENOENT;
} else {
fclose(file);
}
/* Valid pipe names do not have slashes. The assumption is that the named
* pipe was created with the name "path", with slashes removed and the
* default prefix \\.\pipe\ appended.
* Strip the slashes from the parameter name and append the default prefix.
*/
connect_path = xasprintf("%s%s", LOCAL_PREFIX, remove_slashes(path));
free(path);
/* Try to connect to the named pipe. In case all pipe instances are
* busy we set the retry flag to true and retry again during the
* connect function. Use overlapped flag and file no buffering to ensure
* asynchronous operations. */
npipe = create_snpipe(connect_path);
if (npipe == INVALID_HANDLE_VALUE && GetLastError() == ERROR_PIPE_BUSY) {
retry = true;
}
if (!retry && npipe == INVALID_HANDLE_VALUE) {
VLOG_ERR_RL(&rl, "Could not connect to named pipe: %s",
ovs_lasterror_to_string());
free(connect_path);
return ENOENT;
}
if (!retry && !SetNamedPipeHandleState(npipe, &mode, NULL, NULL)) {
VLOG_ERR_RL(&rl, "Could not set named pipe options: %s",
ovs_lasterror_to_string());
free(connect_path);
CloseHandle(npipe);
return ENOENT;
}
struct windows_stream *s = xmalloc(sizeof *s);
stream_init(&s->stream, &windows_stream_class, 0, xstrdup(name));
s->pipe_path = connect_path;
s->fd = npipe;
/* This is an active stream. */
s->server = false;
/* Create events for reading and writing to be signaled later. */
memset(&s->read, 0, sizeof(s->read));
memset(&s->write, 0, sizeof(s->write));
s->read.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL);
s->write.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL);
/* Initial read and write operations are not pending. */
s->read_pending = false;
s->write_pending = false;
s->retry_connect = retry;
*streamp = &s->stream;
return 0;
}
/* Active named pipe close. */
static void
windows_close(struct stream *stream)
{
struct windows_stream *s = stream_windows_cast(stream);
/* Disconnect the named pipe in case it was created from a passive stream.
*/
if (s->server) {
/* Flush the pipe to allow the client to read the pipe's contents
* before disconnecting. */
FlushFileBuffers(s->fd);
DisconnectNamedPipe(s->fd);
}
CloseHandle(s->fd);
CloseHandle(s->read.hEvent);
CloseHandle(s->write.hEvent);
if (s->pipe_path) {
free(s->pipe_path);
}
free(s);
}
/* Active named pipe connect. */
static int
windows_connect(struct stream *stream)
{
struct windows_stream *s = stream_windows_cast(stream);
if (!s->retry_connect) {
return 0;
} else {
HANDLE npipe;
npipe = create_snpipe(s->pipe_path);
if (npipe == INVALID_HANDLE_VALUE) {
if (GetLastError() == ERROR_PIPE_BUSY) {
return EAGAIN;
} else {
s->retry_connect = false;
return ENOENT;
}
}
s->retry_connect = false;
s->fd = npipe;
return 0;
}
}
/* Active named pipe receive. */
static ssize_t
windows_recv(struct stream *stream, void *buffer, size_t n)
{
struct windows_stream *s = stream_windows_cast(stream);
ssize_t retval = 0;
boolean result = false;
DWORD last_error = 0;
LPOVERLAPPED ov = NULL;
ov = &s->read;
/* If the read operation was pending, we verify its result. */
if (s->read_pending) {
if (!GetOverlappedResult(s->fd, ov, &(DWORD)retval, FALSE)) {
last_error = GetLastError();
if (last_error == ERROR_IO_INCOMPLETE) {
/* If the operation is still pending, retry again. */
s->read_pending = true;
return -EAGAIN;
} else if (last_error == ERROR_PIPE_NOT_CONNECTED
|| last_error == ERROR_BAD_PIPE
|| last_error == ERROR_NO_DATA
|| last_error == ERROR_BROKEN_PIPE) {
/* If the pipe was disconnected, return 0. */
return 0;
} else {
VLOG_ERR_RL(&rl, "Could not receive data on named pipe. Last "
"error: %s", ovs_lasterror_to_string());
return -EINVAL;
}
}
s->read_pending = false;
return retval;
}
result = ReadFile(s->fd, buffer, n, &(DWORD)retval, ov);
if (!result && GetLastError() == ERROR_IO_PENDING) {
/* Mark the read operation as pending. */
s->read_pending = true;
return -EAGAIN;
} else if (!result) {
last_error = GetLastError();
if (last_error == ERROR_PIPE_NOT_CONNECTED
|| last_error == ERROR_BAD_PIPE
|| last_error == ERROR_NO_DATA
|| last_error == ERROR_BROKEN_PIPE) {
/* If the pipe was disconnected, return 0. */
return 0;
}
VLOG_ERR_RL(&rl, "Could not receive data synchronous on named pipe."
"Last error: %s", ovs_lasterror_to_string());
return -EINVAL;
}
return retval;
}
/* Active named pipe send. */
static ssize_t
windows_send(struct stream *stream, const void *buffer, size_t n)
{
struct windows_stream *s = stream_windows_cast(stream);
ssize_t retval = 0;
boolean result = false;
DWORD last_error = 0;
LPOVERLAPPED ov = NULL;
ov = &s->write;
/* If the send operation was pending, we verify the result. */
if (s->write_pending) {
if (!GetOverlappedResult(s->fd, ov, &(DWORD)retval, FALSE)) {
last_error = GetLastError();
if (last_error == ERROR_IO_INCOMPLETE) {
/* If the operation is still pending, retry again. */
s->write_pending = true;
return -EAGAIN;
} else if (last_error == ERROR_PIPE_NOT_CONNECTED
|| last_error == ERROR_BAD_PIPE
|| last_error == ERROR_NO_DATA
|| last_error == ERROR_BROKEN_PIPE) {
/* If the pipe was disconnected, return connection reset. */
return -EPIPE;
} else {
VLOG_ERR_RL(&rl, "Could not send data on named pipe. Last "
"error: %s", ovs_lasterror_to_string());
return -EINVAL;
}
}
s->write_pending = false;
return retval;
}
result = WriteFile(s->fd, buffer, n, &(DWORD)retval, ov);
last_error = GetLastError();
if (!result && last_error == ERROR_IO_PENDING) {
/* Mark the send operation as pending. */
s->write_pending = true;
return -EAGAIN;
} else if (!result && (last_error == ERROR_PIPE_NOT_CONNECTED
|| last_error == ERROR_BAD_PIPE
|| last_error == ERROR_NO_DATA
|| last_error == ERROR_BROKEN_PIPE)) {
/* If the pipe was disconnected, return connection reset. */
return -EPIPE;
} else if (!result) {
VLOG_ERR_RL(&rl, "Could not send data on synchronous named pipe. Last "
"error: %s", ovs_lasterror_to_string());
return -EINVAL;
}
return (retval > 0 ? retval : -EAGAIN);
}
/* Active named pipe wait. */
static void
windows_wait(struct stream *stream, enum stream_wait_type wait)
{
struct windows_stream *s = stream_windows_cast(stream);
switch (wait) {
case STREAM_SEND:
poll_wevent_wait(s->write.hEvent);
break;
case STREAM_CONNECT:
poll_immediate_wake();
break;
case STREAM_RECV:
poll_wevent_wait(s->read.hEvent);
break;
default:
OVS_NOT_REACHED();
}
}
/* Passive named pipe. */
const struct stream_class windows_stream_class = {
"unix", /* name */
false, /* needs_probes */
windows_open, /* open */
windows_close, /* close */
windows_connect, /* connect */
windows_recv, /* recv */
windows_send, /* send */
NULL, /* run */
NULL, /* run_wait */
windows_wait, /* wait */
};
struct pwindows_pstream
{
struct pstream pstream;
HANDLE fd;
/* Unlink path to be deleted during close. */
char *unlink_path;
/* Overlapped operation used for connect. */
OVERLAPPED connect;
/* Flag to check if an operation is pending. */
bool pending;
/* String used to create the named pipe. */
char *pipe_path;
};
const struct pstream_class pwindows_pstream_class;
static struct pwindows_pstream *
pwindows_pstream_cast(struct pstream *pstream)
{
pstream_assert_class(pstream, &pwindows_pstream_class);
return CONTAINER_OF(pstream, struct pwindows_pstream, pstream);
}
/* Create a named pipe with read/write access, overlapped, message mode for
* writing, byte mode for reading and with a maximum of 64 active instances. */
static HANDLE
create_pnpipe(char *name)
{
SECURITY_ATTRIBUTES sa;
SID_IDENTIFIER_AUTHORITY sia = SECURITY_NT_AUTHORITY;
DWORD aclSize;
PSID allowedPsid[ALLOWED_PSIDS_SIZE];
PSID remoteAccessSid;
PACL acl = NULL;
PSECURITY_DESCRIPTOR psd = NULL;
HANDLE npipe;
HANDLE hToken = NULL;
DWORD dwBufSize = 0;
PTOKEN_USER pTokenUsr = NULL;
/* Disable access over network. */
if (!AllocateAndInitializeSid(&sia, 1, SECURITY_NETWORK_RID,
0, 0, 0, 0, 0, 0, 0, &remoteAccessSid)) {
VLOG_ERR_RL(&rl, "Error creating Remote Access SID.");
goto handle_error;
}
aclSize = sizeof(ACL) + sizeof(ACCESS_DENIED_ACE) +
GetLengthSid(remoteAccessSid) - sizeof(DWORD);
/* Allow Windows Services to access the Named Pipe. */
if (!AllocateAndInitializeSid(&sia, 1, SECURITY_LOCAL_SYSTEM_RID,
0, 0, 0, 0, 0, 0, 0, &allowedPsid[0])) {
VLOG_ERR_RL(&rl, "Error creating Services SID.");
goto handle_error;
}
/* Allow Administrators to access the Named Pipe. */
if (!AllocateAndInitializeSid(&sia, 2, SECURITY_BUILTIN_DOMAIN_RID,
DOMAIN_ALIAS_RID_ADMINS, 0, 0, 0, 0, 0, 0,
&allowedPsid[1])) {
VLOG_ERR_RL(&rl, "Error creating Administrator SID.");
goto handle_error;
}
/* Open the access token of calling process */
if (!OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY, &hToken)) {
VLOG_ERR_RL(&rl, "Error opening access token of calling process.");
goto handle_error;
}
/* get the buffer size buffer needed for SID */
GetTokenInformation(hToken, TokenUser, NULL, 0, &dwBufSize);
pTokenUsr = xmalloc(dwBufSize);
memset(pTokenUsr, 0, dwBufSize);
/* Retrieve the token information in a TOKEN_USER structure. */
if (!GetTokenInformation(hToken, TokenUser, pTokenUsr, dwBufSize,
&dwBufSize)) {
VLOG_ERR_RL(&rl, "Error retrieving token information.");
goto handle_error;
}
CloseHandle(hToken);
if (!IsValidSid(pTokenUsr->User.Sid)) {
VLOG_ERR_RL(&rl, "Invalid SID.");
goto handle_error;
}
allowedPsid[2] = pTokenUsr->User.Sid;
for (int i = 0; i < ALLOWED_PSIDS_SIZE; i++) {
aclSize += sizeof(ACCESS_ALLOWED_ACE) +
GetLengthSid(allowedPsid[i]) -
sizeof(DWORD);
}
acl = xmalloc(aclSize);
if (!InitializeAcl(acl, aclSize, ACL_REVISION)) {
VLOG_ERR_RL(&rl, "Error initializing ACL.");
goto handle_error;
}
/* Add denied ACL. */
if (!AddAccessDeniedAce(acl, ACL_REVISION,
GENERIC_ALL, remoteAccessSid)) {
VLOG_ERR_RL(&rl, "Error adding remote access ACE.");
goto handle_error;
}
/* Add allowed ACLs. */
for (int i = 0; i < ALLOWED_PSIDS_SIZE; i++) {
if (!AddAccessAllowedAce(acl, ACL_REVISION,
GENERIC_ALL, allowedPsid[i])) {
VLOG_ERR_RL(&rl, "Error adding ACE.");
goto handle_error;
}
}
psd = xmalloc(SECURITY_DESCRIPTOR_MIN_LENGTH);
if (!InitializeSecurityDescriptor(psd, SECURITY_DESCRIPTOR_REVISION)) {
VLOG_ERR_RL(&rl, "Error initializing Security Descriptor.");
goto handle_error;
}
/* Set DACL. */
if (!SetSecurityDescriptorDacl(psd, TRUE, acl, FALSE)) {
VLOG_ERR_RL(&rl, "Error while setting DACL.");
goto handle_error;
}
sa.nLength = sizeof sa;
sa.bInheritHandle = TRUE;
sa.lpSecurityDescriptor = psd;
if (strlen(name) > 256) {
VLOG_ERR_RL(&rl, "Named pipe name too long.");
goto handle_error;
}
npipe = CreateNamedPipe(name, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
PIPE_TYPE_MESSAGE | PIPE_READMODE_BYTE | PIPE_WAIT,
64, BUFSIZE, BUFSIZE, 0, &sa);
free(pTokenUsr);
free(acl);
free(psd);
return npipe;
handle_error:
free(pTokenUsr);
free(acl);
free(psd);
return INVALID_HANDLE_VALUE;
}
/* Passive named pipe connect. This function creates a new named pipe and
* passes the old handle to the active stream. */
static int
pwindows_accept(struct pstream *pstream, struct stream **new_streamp)
{
struct pwindows_pstream *p = pwindows_pstream_cast(pstream);
DWORD last_error = 0;
DWORD cbRet;
HANDLE npipe;
/* If the connect operation was pending, verify the result. */
if (p->pending) {
if (!GetOverlappedResult(p->fd, &p->connect, &cbRet, FALSE)) {
last_error = GetLastError();
if (last_error == ERROR_IO_INCOMPLETE) {
/* If the operation is still pending, retry again. */
p->pending = true;
return EAGAIN;
} else {
VLOG_ERR_RL(&rl, "Could not connect named pipe. Last "
"error: %s", ovs_lasterror_to_string());
DisconnectNamedPipe(p->fd);
return EINVAL;
}
}
p->pending = false;
}
if (!p->pending && !ConnectNamedPipe(p->fd, &p->connect)) {
last_error = GetLastError();
if (last_error == ERROR_IO_PENDING) {
/* Mark the accept operation as pending. */
p->pending = true;
return EAGAIN;
} else if (last_error != ERROR_PIPE_CONNECTED) {
VLOG_ERR_RL(&rl, "Could not connect synchronous named pipe. Last "
"error: %s", ovs_lasterror_to_string());
DisconnectNamedPipe(p->fd);
return EINVAL;
} else {
/* If the pipe is connected, signal an event. */
SetEvent(&p->connect.hEvent);
}
}
npipe = create_pnpipe(p->pipe_path);
if (npipe == INVALID_HANDLE_VALUE) {
VLOG_ERR_RL(&rl, "Could not create a new named pipe after connect. ",
ovs_lasterror_to_string());
return ENOENT;
}
/* Give the handle p->fd to the new created active stream and specify it
* was created by an active stream. */
struct windows_stream *p_temp = xmalloc(sizeof *p_temp);
stream_init(&p_temp->stream, &windows_stream_class, 0, xstrdup("unix"));
p_temp->fd = p->fd;
/* Specify it was created by a passive stream. */
p_temp->server = true;
/* Create events for read/write operations. */
memset(&p_temp->read, 0, sizeof(p_temp->read));
memset(&p_temp->write, 0, sizeof(p_temp->write));
p_temp->read.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL);
p_temp->write.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL);
p_temp->read_pending = false;
p_temp->write_pending = false;
p_temp->retry_connect = false;
p_temp->pipe_path = NULL;
*new_streamp = &p_temp->stream;
/* The passive handle p->fd will be the new created handle. */
p->fd = npipe;
memset(&p->connect, 0, sizeof(p->connect));
p->connect.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL);
p->pending = false;
return 0;
}
/* Passive named pipe close. */
static void
pwindows_close(struct pstream *pstream)
{
struct pwindows_pstream *p = pwindows_pstream_cast(pstream);
DisconnectNamedPipe(p->fd);
CloseHandle(p->fd);
CloseHandle(p->connect.hEvent);
maybe_unlink_and_free(p->unlink_path);
free(p->pipe_path);
free(p);
}
/* Passive named pipe wait. */
static void
pwindows_wait(struct pstream *pstream)
{
struct pwindows_pstream *p = pwindows_pstream_cast(pstream);
poll_wevent_wait(p->connect.hEvent);
}
/* Passive named pipe. */
static int
pwindows_open(const char *name OVS_UNUSED, char *suffix,
struct pstream **pstreamp, uint8_t dscp OVS_UNUSED)
{
char *bind_path;
int error;
HANDLE npipe;
char *orig_path;
char *path;
if (!strchr(suffix, ':')) {
path = xasprintf("%s/%s", ovs_rundir(), suffix);
} else {
path = xstrdup(suffix);
}
/* Try to create a file under the path location. */
FILE *file = fopen(path, "w");
if (!file) {
free(path);
error = errno;
VLOG_DBG_RL(&rl, "could not open %s (%s)", path, ovs_strerror(error));
return error;
} else {
fclose(file);
}
orig_path = xstrdup(path);
/* Strip slashes from path and create a named pipe using that newly created
* string. */
bind_path = xasprintf("%s%s", LOCAL_PREFIX, remove_slashes(path));
free(path);
npipe = create_pnpipe(bind_path);
if (npipe == INVALID_HANDLE_VALUE) {
VLOG_ERR_RL(&rl, "Could not create named pipe. Last error: %s",
ovs_lasterror_to_string());
return ENOENT;
}
struct pwindows_pstream *p = xmalloc(sizeof *p);
pstream_init(&p->pstream, &pwindows_pstream_class, xstrdup(name));
p->fd = npipe;
p->unlink_path = orig_path;
memset(&p->connect, 0, sizeof(p->connect));
p->connect.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL);
p->pending = false;
p->pipe_path = bind_path;
*pstreamp = &p->pstream;
return 0;
}
const struct pstream_class pwindows_pstream_class = {
"punix",
false, /* probes */
pwindows_open, /* open */
pwindows_close, /* close */
pwindows_accept, /* accept */
pwindows_wait, /* wait */
};
/* Helper functions. */
static void
maybe_unlink_and_free(char *path)
{
if (path) {
fatal_signal_unlink_file_now(path);
free(path);
}
}
|