blob: f6ddfff0ad9399696bc14750e2e422d7a383d319 [file] [log] [blame]
Nicolas "Pixel" Noble21f627a2015-02-04 01:31:14 +01001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
Nicolas "Pixel" Noble21f627a2015-02-04 01:31:14 +01004 * 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>
Nicolas "Pixel" Noble21f627a2015-02-04 01:31:14 +010035
36#ifdef GPR_WINSOCK_SOCKET
37
Nicolas "Pixel" Noble404fc6a2015-05-02 02:34:39 -070038#include <grpc/support/alloc.h>
39#include <grpc/support/log.h>
Nicolas "Pixel" Noblee503cd52015-07-14 02:27:23 +020040#include <grpc/support/string_util.h>
Nicolas "Pixel" Noble404fc6a2015-05-02 02:34:39 -070041
Nicolas Noble45e67a32015-02-09 16:20:49 -080042#include "src/core/iomgr/iocp_windows.h"
Nicolas "Pixel" Noble21f627a2015-02-04 01:31:14 +010043#include "src/core/iomgr/iomgr_internal.h"
Nicolas "Pixel" Noble21f627a2015-02-04 01:31:14 +010044#include "src/core/iomgr/pollset.h"
45#include "src/core/iomgr/pollset_windows.h"
Nicolas "Pixel" Noble0f981e92015-05-03 10:40:56 +020046#include "src/core/iomgr/socket_windows.h"
Nicolas "Pixel" Noble21f627a2015-02-04 01:31:14 +010047
Craig Tiller33da3322015-06-02 10:29:40 -070048grpc_winsocket *grpc_winsocket_create(SOCKET socket, const char *name) {
Jan Tattermusch7913dea2015-07-09 20:37:17 -070049 char *final_name;
Nicolas "Pixel" Noble21f627a2015-02-04 01:31:14 +010050 grpc_winsocket *r = gpr_malloc(sizeof(grpc_winsocket));
Nicolas "Pixel" Noble21f627a2015-02-04 01:31:14 +010051 memset(r, 0, sizeof(grpc_winsocket));
52 r->socket = socket;
53 gpr_mu_init(&r->state_mu);
Jan Tattermusch7913dea2015-07-09 20:37:17 -070054 gpr_asprintf(&final_name, "%s:socket=0x%p", name, r);
55 grpc_iomgr_register_object(&r->iomgr_object, final_name);
56 gpr_free(final_name);
Nicolas Noble45e67a32015-02-09 16:20:49 -080057 grpc_iocp_add_socket(r);
Nicolas "Pixel" Noble21f627a2015-02-04 01:31:14 +010058 return r;
59}
60
Nicolas "Pixel" Noble0f981e92015-05-03 10:40:56 +020061/* Schedule a shutdown of the socket operations. Will call the pending
62 operations to abort them. We need to do that this way because of the
63 various callsites of that function, which happens to be in various
64 mutex hold states, and that'd be unsafe to call them directly. */
Nicolas "Pixel" Noblee503cd52015-07-14 02:27:23 +020065int grpc_winsocket_shutdown(grpc_winsocket *winsocket) {
Nicolas Noblee1445362015-05-11 17:40:26 -070066 int callbacks_set = 0;
Nicolas "Pixel" Noblee503cd52015-07-14 02:27:23 +020067 SOCKET socket;
68 gpr_mu_lock(&winsocket->state_mu);
69 socket = winsocket->socket;
70 if (winsocket->read_info.cb) {
Nicolas Noblee1445362015-05-11 17:40:26 -070071 callbacks_set++;
Nicolas "Pixel" Noblee503cd52015-07-14 02:27:23 +020072 grpc_iomgr_closure_init(&winsocket->shutdown_closure,
73 winsocket->read_info.cb,
74 winsocket->read_info.opaque);
75 grpc_iomgr_add_delayed_callback(&winsocket->shutdown_closure, 0);
Nicolas "Pixel" Noble0f981e92015-05-03 10:40:56 +020076 }
Nicolas "Pixel" Noblee503cd52015-07-14 02:27:23 +020077 if (winsocket->write_info.cb) {
Nicolas Noblee1445362015-05-11 17:40:26 -070078 callbacks_set++;
Nicolas "Pixel" Noblee503cd52015-07-14 02:27:23 +020079 grpc_iomgr_closure_init(&winsocket->shutdown_closure,
80 winsocket->write_info.cb,
81 winsocket->write_info.opaque);
82 grpc_iomgr_add_delayed_callback(&winsocket->shutdown_closure, 0);
Nicolas "Pixel" Noble0f981e92015-05-03 10:40:56 +020083 }
Nicolas "Pixel" Noblee503cd52015-07-14 02:27:23 +020084 gpr_mu_unlock(&winsocket->state_mu);
85 closesocket(socket);
Nicolas Noblee1445362015-05-11 17:40:26 -070086 return callbacks_set;
Nicolas "Pixel" Noble21f627a2015-02-04 01:31:14 +010087}
88
Nicolas "Pixel" Noble0f981e92015-05-03 10:40:56 +020089/* Abandons a socket. Either we're going to queue it up for garbage collecting
90 from the IO Completion Port thread, or destroy it immediately. Note that this
91 mechanisms assumes that we're either always waiting for an operation, or we
Nicolas "Pixel" Noblee34a45a2015-05-07 18:41:07 +020092 explicitly know that we don't. If there is a future case where we can have
Nicolas "Pixel" Noble0f981e92015-05-03 10:40:56 +020093 an "idle" socket which is neither trying to read or write, we'd start leaking
94 both memory and sockets. */
Nicolas "Pixel" Noble404fc6a2015-05-02 02:34:39 -070095void grpc_winsocket_orphan(grpc_winsocket *winsocket) {
Jan Tattermuschc2e5be92015-06-04 13:54:27 -070096 grpc_iomgr_unregister_object(&winsocket->iomgr_object);
Nicolas "Pixel" Noblee34a45a2015-05-07 18:41:07 +020097 if (winsocket->read_info.outstanding || winsocket->write_info.outstanding) {
Nicolas "Pixel" Noble404fc6a2015-05-02 02:34:39 -070098 grpc_iocp_socket_orphan(winsocket);
Nicolas "Pixel" Noblee34a45a2015-05-07 18:41:07 +020099 } else {
Nicolas "Pixel" Noble404fc6a2015-05-02 02:34:39 -0700100 grpc_winsocket_destroy(winsocket);
101 }
Nicolas Noble8703f4d2015-03-23 13:52:18 -0700102}
103
Nicolas "Pixel" Noble404fc6a2015-05-02 02:34:39 -0700104void grpc_winsocket_destroy(grpc_winsocket *winsocket) {
105 gpr_mu_destroy(&winsocket->state_mu);
106 gpr_free(winsocket);
Nicolas "Pixel" Noble21f627a2015-02-04 01:31:14 +0100107}
108
Craig Tiller190d3602015-02-18 09:23:38 -0800109#endif /* GPR_WINSOCK_SOCKET */