OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * |
| 3 * Copyright 2015, Google Inc. |
| 4 * All rights reserved. |
| 5 * |
| 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions are |
| 8 * met: |
| 9 * |
| 10 * * Redistributions of source code must retain the above copyright |
| 11 * notice, this list of conditions and the following disclaimer. |
| 12 * * Redistributions in binary form must reproduce the above |
| 13 * copyright notice, this list of conditions and the following disclaimer |
| 14 * in the documentation and/or other materials provided with the |
| 15 * distribution. |
| 16 * * Neither the name of Google Inc. nor the names of its |
| 17 * contributors may be used to endorse or promote products derived from |
| 18 * this software without specific prior written permission. |
| 19 * |
| 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 * |
| 32 */ |
| 33 |
| 34 #include <grpc/support/port_platform.h> |
| 35 |
| 36 #ifdef GPR_WINSOCK_SOCKET |
| 37 |
| 38 #include <winsock2.h> |
| 39 #include <mswsock.h> |
| 40 |
| 41 #include <grpc/support/alloc.h> |
| 42 #include <grpc/support/log.h> |
| 43 #include <grpc/support/log_win32.h> |
| 44 #include <grpc/support/string_util.h> |
| 45 |
| 46 #include "src/core/iomgr/iocp_windows.h" |
| 47 #include "src/core/iomgr/iomgr_internal.h" |
| 48 #include "src/core/iomgr/pollset.h" |
| 49 #include "src/core/iomgr/pollset_windows.h" |
| 50 #include "src/core/iomgr/socket_windows.h" |
| 51 |
| 52 grpc_winsocket *grpc_winsocket_create(SOCKET socket, const char *name) { |
| 53 char *final_name; |
| 54 grpc_winsocket *r = gpr_malloc(sizeof(grpc_winsocket)); |
| 55 memset(r, 0, sizeof(grpc_winsocket)); |
| 56 r->socket = socket; |
| 57 gpr_mu_init(&r->state_mu); |
| 58 gpr_asprintf(&final_name, "%s:socket=0x%p", name, r); |
| 59 grpc_iomgr_register_object(&r->iomgr_object, final_name); |
| 60 gpr_free(final_name); |
| 61 grpc_iocp_add_socket(r); |
| 62 return r; |
| 63 } |
| 64 |
| 65 /* Schedule a shutdown of the socket operations. Will call the pending |
| 66 operations to abort them. We need to do that this way because of the |
| 67 various callsites of that function, which happens to be in various |
| 68 mutex hold states, and that'd be unsafe to call them directly. */ |
| 69 void grpc_winsocket_shutdown(grpc_winsocket *winsocket) { |
| 70 /* Grab the function pointer for DisconnectEx for that specific socket. |
| 71 It may change depending on the interface. */ |
| 72 int status; |
| 73 GUID guid = WSAID_DISCONNECTEX; |
| 74 LPFN_DISCONNECTEX DisconnectEx; |
| 75 DWORD ioctl_num_bytes; |
| 76 |
| 77 status = WSAIoctl(winsocket->socket, SIO_GET_EXTENSION_FUNCTION_POINTER, |
| 78 &guid, sizeof(guid), &DisconnectEx, sizeof(DisconnectEx), |
| 79 &ioctl_num_bytes, NULL, NULL); |
| 80 |
| 81 if (status == 0) { |
| 82 DisconnectEx(winsocket->socket, NULL, 0, 0); |
| 83 } else { |
| 84 char *utf8_message = gpr_format_message(WSAGetLastError()); |
| 85 gpr_log(GPR_ERROR, "Unable to retrieve DisconnectEx pointer : %s", |
| 86 utf8_message); |
| 87 gpr_free(utf8_message); |
| 88 } |
| 89 closesocket(winsocket->socket); |
| 90 } |
| 91 |
| 92 void grpc_winsocket_destroy(grpc_winsocket *winsocket) { |
| 93 grpc_iomgr_unregister_object(&winsocket->iomgr_object); |
| 94 gpr_mu_destroy(&winsocket->state_mu); |
| 95 gpr_free(winsocket); |
| 96 } |
| 97 |
| 98 #endif /* GPR_WINSOCK_SOCKET */ |
OLD | NEW |