blob: ac401bc4d351e0c0b9cf791f95bbfbb4c575c7ee [file] [log] [blame]
Craig Tillercd29c582015-06-24 09:15:15 -07001/*
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 "src/core/client_config/resolvers/dns_resolver.h"
35
Craig Tiller3bc8ebd2015-06-24 15:41:15 -070036#include <string.h>
37
38#include <grpc/support/alloc.h>
39#include <grpc/support/string_util.h>
40
Craig Tillereb3b12e2015-06-26 14:42:49 -070041#include "src/core/client_config/lb_policies/pick_first.h"
Craig Tiller3bc8ebd2015-06-24 15:41:15 -070042#include "src/core/iomgr/resolve_address.h"
43#include "src/core/support/string.h"
44
45typedef struct {
46 /** base class: must be first */
47 grpc_resolver base;
48 /** refcount */
49 gpr_refcount refs;
50 /** name to resolve */
51 char *name;
52 /** default port to use */
53 char *default_port;
54 /** subchannel factory */
55 grpc_subchannel_factory *subchannel_factory;
56 /** load balancing policy factory */
57 grpc_lb_policy *(*lb_policy_factory)(grpc_subchannel **subchannels,
58 size_t num_subchannels);
59
60 /** mutex guarding the rest of the state */
61 gpr_mu mu;
62 /** are we currently resolving? */
63 int resolving;
64 /** which version of resolved_config have we published? */
65 int published_version;
66 /** which version of resolved_config is current? */
67 int resolved_version;
68 /** pending next completion, or NULL */
69 grpc_iomgr_closure *next_completion;
70 /** target config address for next completion */
71 grpc_client_config **target_config;
72 /** current (fully resolved) config */
73 grpc_client_config *resolved_config;
74} dns_resolver;
75
Craig Tiller98465032015-06-29 14:36:42 -070076static void dns_destroy(grpc_resolver *r);
Craig Tiller3bc8ebd2015-06-24 15:41:15 -070077
78static void dns_start_resolving_locked(dns_resolver *r);
79static void dns_maybe_finish_next_locked(dns_resolver *r);
80
Craig Tiller3bc8ebd2015-06-24 15:41:15 -070081static void dns_shutdown(grpc_resolver *r);
82static void dns_channel_saw_error(grpc_resolver *r,
83 struct sockaddr *failing_address,
84 int failing_address_len);
85static void dns_next(grpc_resolver *r, grpc_client_config **target_config,
86 grpc_iomgr_closure *on_complete);
87
88static const grpc_resolver_vtable dns_resolver_vtable = {
Craig Tiller98465032015-06-29 14:36:42 -070089 dns_destroy, dns_shutdown, dns_channel_saw_error, dns_next};
Craig Tiller3bc8ebd2015-06-24 15:41:15 -070090
91static void dns_shutdown(grpc_resolver *resolver) {
92 dns_resolver *r = (dns_resolver *)resolver;
93 gpr_mu_lock(&r->mu);
94 if (r->next_completion != NULL) {
95 *r->target_config = NULL;
Craig Tiller3bc8ebd2015-06-24 15:41:15 -070096 grpc_iomgr_add_callback(r->next_completion);
97 r->next_completion = NULL;
98 }
99 gpr_mu_unlock(&r->mu);
100}
101
102static void dns_channel_saw_error(grpc_resolver *resolver, struct sockaddr *sa,
103 int len) {
104 dns_resolver *r = (dns_resolver *)resolver;
105 gpr_mu_lock(&r->mu);
106 if (!r->resolving) {
107 dns_start_resolving_locked(r);
108 }
109 gpr_mu_unlock(&r->mu);
110}
111
112static void dns_next(grpc_resolver *resolver,
113 grpc_client_config **target_config,
114 grpc_iomgr_closure *on_complete) {
115 dns_resolver *r = (dns_resolver *)resolver;
116 gpr_mu_lock(&r->mu);
117 GPR_ASSERT(!r->next_completion);
118 r->next_completion = on_complete;
119 r->target_config = target_config;
120 if (r->resolved_version == 0 && !r->resolving) {
121 dns_start_resolving_locked(r);
122 } else {
123 dns_maybe_finish_next_locked(r);
124 }
125 gpr_mu_unlock(&r->mu);
126}
127
128static void dns_on_resolved(void *arg, grpc_resolved_addresses *addresses) {
129 dns_resolver *r = arg;
130 grpc_client_config *config = NULL;
131 grpc_subchannel **subchannels;
132 grpc_subchannel_args args;
Craig Tillerd7b68e72015-06-28 11:41:09 -0700133 grpc_lb_policy *lb_policy;
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700134 size_t i;
135 if (addresses) {
136 config = grpc_client_config_create();
137 subchannels = gpr_malloc(sizeof(grpc_subchannel *) * addresses->naddrs);
138 for (i = 0; i < addresses->naddrs; i++) {
139 memset(&args, 0, sizeof(args));
140 args.addr = (struct sockaddr *)(addresses->addrs[i].addr);
141 args.addr_len = addresses->addrs[i].len;
142 subchannels[i] = grpc_subchannel_factory_create_subchannel(
143 r->subchannel_factory, &args);
144 }
Craig Tillerd7b68e72015-06-28 11:41:09 -0700145 lb_policy = r->lb_policy_factory(subchannels, addresses->naddrs);
146 grpc_client_config_set_lb_policy(config, lb_policy);
147 GRPC_LB_POLICY_UNREF(lb_policy, "construction");
Craig Tiller98465032015-06-29 14:36:42 -0700148 grpc_resolved_addresses_destroy(addresses);
149 gpr_free(subchannels);
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700150 }
151 gpr_mu_lock(&r->mu);
Craig Tiller98465032015-06-29 14:36:42 -0700152 GPR_ASSERT(r->resolving);
153 r->resolving = 0;
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700154 if (r->resolved_config) {
155 grpc_client_config_unref(r->resolved_config);
156 }
157 r->resolved_config = config;
158 r->resolved_version++;
159 dns_maybe_finish_next_locked(r);
160 gpr_mu_unlock(&r->mu);
Craig Tillerd7b68e72015-06-28 11:41:09 -0700161
Craig Tiller98465032015-06-29 14:36:42 -0700162 GRPC_RESOLVER_UNREF(&r->base, "dns-resolving");
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700163}
164
165static void dns_start_resolving_locked(dns_resolver *r) {
Craig Tiller98465032015-06-29 14:36:42 -0700166 GRPC_RESOLVER_REF(&r->base, "dns-resolving");
167 GPR_ASSERT(!r->resolving);
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700168 r->resolving = 1;
169 grpc_resolve_address(r->name, r->default_port, dns_on_resolved, r);
170}
171
172static void dns_maybe_finish_next_locked(dns_resolver *r) {
173 if (r->next_completion != NULL &&
174 r->resolved_version != r->published_version) {
Craig Tillereb3b12e2015-06-26 14:42:49 -0700175 *r->target_config = r->resolved_config;
Craig Tillerabf36382015-06-29 16:13:27 -0700176 if (r->resolved_config) {
177 grpc_client_config_ref(r->resolved_config);
178 }
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700179 grpc_iomgr_add_callback(r->next_completion);
180 r->next_completion = NULL;
181 r->published_version = r->resolved_version;
182 }
183}
184
Craig Tiller98465032015-06-29 14:36:42 -0700185static void dns_destroy(grpc_resolver *gr) {
186 dns_resolver *r = (dns_resolver *)gr;
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700187 gpr_mu_destroy(&r->mu);
Craig Tillerd7b68e72015-06-28 11:41:09 -0700188 if (r->resolved_config) {
189 grpc_client_config_unref(r->resolved_config);
190 }
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700191 grpc_subchannel_factory_unref(r->subchannel_factory);
192 gpr_free(r->name);
193 gpr_free(r->default_port);
194 gpr_free(r);
195}
196
Craig Tillereb3b12e2015-06-26 14:42:49 -0700197static grpc_resolver *dns_create(
198 grpc_uri *uri, const char *default_port,
199 grpc_lb_policy *(*lb_policy_factory)(grpc_subchannel **subchannels,
200 size_t num_subchannels),
201 grpc_subchannel_factory *subchannel_factory) {
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700202 dns_resolver *r;
203 const char *path = uri->path;
204
205 if (0 != strcmp(uri->authority, "")) {
206 gpr_log(GPR_ERROR, "authority based uri's not supported");
207 return NULL;
208 }
209
210 if (path[0] == '/') ++path;
211
212 r = gpr_malloc(sizeof(dns_resolver));
213 memset(r, 0, sizeof(*r));
214 gpr_ref_init(&r->refs, 1);
215 gpr_mu_init(&r->mu);
Craig Tiller98465032015-06-29 14:36:42 -0700216 grpc_resolver_init(&r->base, &dns_resolver_vtable);
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700217 r->name = gpr_strdup(path);
218 r->default_port = gpr_strdup(default_port);
219 r->subchannel_factory = subchannel_factory;
Craig Tillereb3b12e2015-06-26 14:42:49 -0700220 r->lb_policy_factory = lb_policy_factory;
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700221 grpc_subchannel_factory_ref(subchannel_factory);
222 return &r->base;
223}
224
225/*
226 * FACTORY
227 */
228
Craig Tillereb3b12e2015-06-26 14:42:49 -0700229static void dns_factory_ref(grpc_resolver_factory *factory) {}
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700230
Craig Tillereb3b12e2015-06-26 14:42:49 -0700231static void dns_factory_unref(grpc_resolver_factory *factory) {}
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700232
233static grpc_resolver *dns_factory_create_resolver(
234 grpc_resolver_factory *factory, grpc_uri *uri,
235 grpc_subchannel_factory *subchannel_factory) {
Craig Tillereb3b12e2015-06-26 14:42:49 -0700236 return dns_create(uri, "https", grpc_create_pick_first_lb_policy,
237 subchannel_factory);
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700238}
239
240static const grpc_resolver_factory_vtable dns_factory_vtable = {
241 dns_factory_ref, dns_factory_unref, dns_factory_create_resolver};
Craig Tillereb3b12e2015-06-26 14:42:49 -0700242static grpc_resolver_factory dns_resolver_factory = {&dns_factory_vtable};
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700243
Craig Tillereb3b12e2015-06-26 14:42:49 -0700244grpc_resolver_factory *grpc_dns_resolver_factory_create() {
245 return &dns_resolver_factory;
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700246}