Merge branch 'master' of https://github.com/grpc/grpc into error-slice-optimization
commit
3d194ad7a3
163 changed files with 8972 additions and 1531 deletions
@ -0,0 +1,158 @@ |
|||||||
|
# Combiner Explanation |
||||||
|
## Talk by ctiller, notes by vjpai |
||||||
|
|
||||||
|
Typical way of doing critical section |
||||||
|
|
||||||
|
``` |
||||||
|
mu.lock() |
||||||
|
do_stuff() |
||||||
|
mu.unlock() |
||||||
|
``` |
||||||
|
|
||||||
|
An alternative way of doing it is |
||||||
|
|
||||||
|
``` |
||||||
|
class combiner { |
||||||
|
run(f) { |
||||||
|
mu.lock() |
||||||
|
f() |
||||||
|
mu.unlock() |
||||||
|
} |
||||||
|
mutex mu; |
||||||
|
} |
||||||
|
|
||||||
|
combiner.run(do_stuff) |
||||||
|
``` |
||||||
|
|
||||||
|
If you have two threads calling combiner, there will be some kind of |
||||||
|
queuing in place. It's called `combiner` because you can pass in more |
||||||
|
than one do_stuff at once and they will run under a common `mu`. |
||||||
|
|
||||||
|
The implementation described above has the issue that you're blocking a thread |
||||||
|
for a period of time, and this is considered harmful because it's an application thread that you're blocking. |
||||||
|
|
||||||
|
Instead, get a new property: |
||||||
|
* Keep things running in serial execution |
||||||
|
* Don't ever sleep the thread |
||||||
|
* But maybe allow things to end up running on a different thread from where they were started |
||||||
|
* This means that `do_stuff` doesn't necessarily run to completion when `combiner.run` is invoked |
||||||
|
|
||||||
|
``` |
||||||
|
class combiner { |
||||||
|
mpscq q; // multi-producer single-consumer queue can be made non-blocking |
||||||
|
state s; // is it empty or executing |
||||||
|
|
||||||
|
run(f) { |
||||||
|
if (q.push(f)) { |
||||||
|
// q.push returns true if it's the first thing |
||||||
|
while (q.pop(&f)) { // modulo some extra work to avoid races |
||||||
|
f(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
``` |
||||||
|
|
||||||
|
The basic idea is that the first one to push onto the combiner |
||||||
|
executes the work and then keeps executing functions from the queue |
||||||
|
until the combiner is drained. |
||||||
|
|
||||||
|
Our combiner does some additional work, with the motivation of write-batching. |
||||||
|
|
||||||
|
We have a second tier of `run` called `run_finally`. Anything queued |
||||||
|
onto `run_finally` runs after we have drained the queue. That means |
||||||
|
that there is essentially a finally-queue. This is not guaranteed to |
||||||
|
be final, but it's best-effort. In the process of running the finally |
||||||
|
item, we might put something onto the main combiner queue and so we'll |
||||||
|
need to re-enter. |
||||||
|
|
||||||
|
`chttp2` runs all ops in the run state except if it sees a write it puts that into a finally. That way anything else that gets put into the combiner can add to that write. |
||||||
|
|
||||||
|
``` |
||||||
|
class combiner { |
||||||
|
mpscq q; // multi-producer single-consumer queue can be made non-blocking |
||||||
|
state s; // is it empty or executing |
||||||
|
queue finally; // you can only do run_finally when you are already running something from the combiner |
||||||
|
|
||||||
|
run(f) { |
||||||
|
if (q.push(f)) { |
||||||
|
// q.push returns true if it's the first thing |
||||||
|
loop: |
||||||
|
while (q.pop(&f)) { // modulo some extra work to avoid races |
||||||
|
f(); |
||||||
|
} |
||||||
|
while (finally.pop(&f)) { |
||||||
|
f(); |
||||||
|
} |
||||||
|
goto loop; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
``` |
||||||
|
|
||||||
|
So that explains how combiners work in general. In gRPC, there is |
||||||
|
`start_batch(..., tag)` and then work only gets activated by somebody |
||||||
|
calling `cq::next` which returns a tag. This gives an API-level |
||||||
|
guarantee that there will be a thread doing polling to actually make |
||||||
|
work happen. However, some operations are not covered by a poller |
||||||
|
thread, such as cancellation that doesn't have a completion. Other |
||||||
|
callbacks that don't have a completion are the internal work that gets |
||||||
|
done before the batch gets completed. We need a condition called |
||||||
|
`covered_by_poller` that means that the item will definitely need some |
||||||
|
thread at some point to call `cq::next` . This includes those |
||||||
|
callbacks that directly cause a completion but also those that are |
||||||
|
indirectly required before getting a completion. If we can't tell for |
||||||
|
sure for a specific path, we have to assumed it is not covered by |
||||||
|
poller. |
||||||
|
|
||||||
|
The above combiner has the problem that it keeps draining for a |
||||||
|
potentially infinite amount of time and that can lead to a huge tail |
||||||
|
latency for some operations. So we can tweak it by returning to the application |
||||||
|
if we know that it is valid to do so: |
||||||
|
|
||||||
|
``` |
||||||
|
while (q.pop(&f)) { |
||||||
|
f(); |
||||||
|
if (control_can_be_returned && some_still_queued_thing_is_covered_by_poller) { |
||||||
|
offload_combiner_work_to_some_other_thread(); |
||||||
|
} |
||||||
|
} |
||||||
|
``` |
||||||
|
|
||||||
|
`offload` is more than `break`; it does `break` but also causes some |
||||||
|
other thread that is currently waiting on a poll to break out of its |
||||||
|
poll. This is done by setting up a per-polling-island work-queue |
||||||
|
(distributor) wakeup FD. The work-queue is the converse of the combiner; it |
||||||
|
tries to spray events onto as many threads as possible to get as much concurrency as possible. |
||||||
|
|
||||||
|
So `offload` really does: |
||||||
|
|
||||||
|
``` |
||||||
|
workqueue.run(continue_from_while_loop); |
||||||
|
break; |
||||||
|
``` |
||||||
|
|
||||||
|
This needs us to add another class variable for a `workqueue` |
||||||
|
(which is really conceptually a distributor). |
||||||
|
|
||||||
|
``` |
||||||
|
workqueue::run(f) { |
||||||
|
q.push(f) |
||||||
|
eventfd.wakeup() |
||||||
|
} |
||||||
|
|
||||||
|
workqueue::readable() { |
||||||
|
eventfd.consume(); |
||||||
|
q.pop(&f); |
||||||
|
f(); |
||||||
|
if (!q.empty()) { |
||||||
|
eventfd.wakeup(); // spray across as many threads as are waiting on this workqueue |
||||||
|
} |
||||||
|
} |
||||||
|
``` |
||||||
|
|
||||||
|
In principle, `run_finally` could get starved, but this hasn't |
||||||
|
happened in practice. If we were concerned about this, we could put a |
||||||
|
limit on how many things come off the regular `q` before the `finally` |
||||||
|
queue gets processed. |
||||||
|
|
@ -0,0 +1,160 @@ |
|||||||
|
# gRPC Error |
||||||
|
|
||||||
|
## Background |
||||||
|
|
||||||
|
`grpc_error` is the c-core's opaque representation of an error. It holds a |
||||||
|
collection of integers, strings, timestamps, and child errors that related to |
||||||
|
the final error. |
||||||
|
|
||||||
|
always present are: |
||||||
|
|
||||||
|
* GRPC_ERROR_STR_FILE and GRPC_ERROR_INT_FILE_LINE - the source location where |
||||||
|
the error was generated |
||||||
|
* GRPC_ERROR_STR_DESCRIPTION - a human readable description of the error |
||||||
|
* GRPC_ERROR_TIME_CREATED - a timestamp indicating when the error happened |
||||||
|
|
||||||
|
An error can also have children; these are other errors that are believed to |
||||||
|
have contributed to this one. By accumulating children, we can begin to root |
||||||
|
cause high level failures from low level failures, without having to derive |
||||||
|
execution paths from log lines. |
||||||
|
|
||||||
|
grpc_errors are refcounted objects, which means they need strict ownership |
||||||
|
semantics. An extra ref on an error can cause a memory leak, and a missing ref |
||||||
|
can cause a crash. |
||||||
|
|
||||||
|
This document serves as a detailed overview of grpc_error's ownership rules. It |
||||||
|
should help people use the errors, as well as help people debug refcount related |
||||||
|
errors. |
||||||
|
|
||||||
|
## Clarification of Ownership |
||||||
|
|
||||||
|
If a particular function is said to "own" an error, that means it has the |
||||||
|
responsibility of calling unref on the error. A function may have access to an |
||||||
|
error without ownership of it. |
||||||
|
|
||||||
|
This means the function may use the error, but must not call unref on it, since |
||||||
|
that will be done elsewhere in the code. A function that does not own an error |
||||||
|
may explicitly take ownership of it by manually calling GRPC_ERROR_REF. |
||||||
|
|
||||||
|
## Ownership Rules |
||||||
|
|
||||||
|
There are three rules of error ownership, which we will go over in detail. |
||||||
|
|
||||||
|
* If `grpc_error` is returned by a function, the caller owns a ref to that |
||||||
|
instance. |
||||||
|
* If a `grpc_error` is passed to a `grpc_closure` callback function, then that |
||||||
|
function does not own a ref to the error. |
||||||
|
* if a `grpc_error` is passed to *any other function*, then that function |
||||||
|
takes ownership of the error. |
||||||
|
|
||||||
|
### Rule 1 |
||||||
|
|
||||||
|
> If `grpc_error` is returned by a function, the caller owns a ref to that |
||||||
|
> instance.* |
||||||
|
|
||||||
|
For example, in the following code block, error1 and error2 are owned by the |
||||||
|
current function. |
||||||
|
|
||||||
|
```C |
||||||
|
grpc_error* error1 = GRPC_ERROR_CREATE_FROM_STATIC_STRING("Some error occured"); |
||||||
|
grpc_error* error2 = some_operation_that_might_fail(...); |
||||||
|
``` |
||||||
|
|
||||||
|
The current function would have to explicitly call GRPC_ERROR_UNREF on the |
||||||
|
errors, or pass them along to a function that would take over the ownership. |
||||||
|
|
||||||
|
### Rule 2 |
||||||
|
|
||||||
|
> If a `grpc_error` is passed to a `grpc_closure` callback function, then that |
||||||
|
> function does not own a ref to the error. |
||||||
|
|
||||||
|
A `grpc_closure` callback function is any function that has the signature: |
||||||
|
|
||||||
|
```C |
||||||
|
void (*cb)(grpc_exec_ctx *exec_ctx, void *arg, grpc_error *error); |
||||||
|
``` |
||||||
|
|
||||||
|
This means that the error ownership is NOT transferred when a functions calls: |
||||||
|
|
||||||
|
```C |
||||||
|
c->cb(exec_ctx, c->cb_arg, err); |
||||||
|
``` |
||||||
|
|
||||||
|
The caller is still responsible for unref-ing the error. |
||||||
|
|
||||||
|
However, the above line is currently being phased out! It is safer to invoke |
||||||
|
callbacks with `grpc_closure_run` and `grpc_closure_sched`. These functions are |
||||||
|
not callbacks, so they will take ownership of the error passed to them. |
||||||
|
|
||||||
|
```C |
||||||
|
grpc_error* error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("Some error occured"); |
||||||
|
grpc_closure_run(exec_ctx, cb, error); |
||||||
|
// current function no longer has ownership of the error |
||||||
|
``` |
||||||
|
|
||||||
|
If you schedule or run a closure, but still need ownership of the error, then |
||||||
|
you must explicitly take a reference. |
||||||
|
|
||||||
|
```C |
||||||
|
grpc_error* error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("Some error occured"); |
||||||
|
grpc_closure_run(exec_ctx, cb, GRPC_ERROR_REF(error)); |
||||||
|
// do some other things with the error |
||||||
|
GRPC_ERROR_UNREF(error); |
||||||
|
``` |
||||||
|
|
||||||
|
Rule 2 is more important to keep in mind when **implementing** `grpc_closure` |
||||||
|
callback functions. You must keep in mind that you do not own the error, and |
||||||
|
must not unref it. More importantly, you cannot pass it to any function that |
||||||
|
would take ownership of the error, without explicitly taking ownership yourself. |
||||||
|
For example: |
||||||
|
|
||||||
|
```C |
||||||
|
void on_some_action(grpc_exec_ctx *exec_ctx, void *arg, grpc_error *error) { |
||||||
|
// this would cause a crash, because some_function will unref the error, |
||||||
|
// and the caller of this callback will also unref it. |
||||||
|
some_function(error); |
||||||
|
|
||||||
|
// this callback function must take ownership, so it can give that |
||||||
|
// ownership to the function it is calling. |
||||||
|
some_function(GRPC_ERROR_REF(error)); |
||||||
|
} |
||||||
|
``` |
||||||
|
|
||||||
|
### Rule 3 |
||||||
|
|
||||||
|
> if a `grpc_error` is passed to *any other function*, then that function takes |
||||||
|
> ownership of the error. |
||||||
|
|
||||||
|
Take the following example: |
||||||
|
|
||||||
|
```C |
||||||
|
grpc_error* error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("Some error occured"); |
||||||
|
// do some things |
||||||
|
some_function(error); |
||||||
|
// can't use error anymore! might be gone. |
||||||
|
``` |
||||||
|
|
||||||
|
When some_function is called, it takes over the ownership of the error, and it |
||||||
|
will eventually unref it. So the caller can no longer safely use the error. |
||||||
|
|
||||||
|
If the caller needed to keep using the error (or passing it to other functions), |
||||||
|
if would have to take on a reference to it. This is a common pattern seen. |
||||||
|
|
||||||
|
```C |
||||||
|
void func() { |
||||||
|
grpc_error* error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("Some error"); |
||||||
|
some_function(GRPC_ERROR_REF(error)); |
||||||
|
// do things |
||||||
|
some_other_function(GRPC_ERROR_REF(error)); |
||||||
|
// do more things |
||||||
|
some_last_function(error); |
||||||
|
} |
||||||
|
``` |
||||||
|
|
||||||
|
The last call takes ownership and will eventually give the error its final |
||||||
|
unref. |
||||||
|
|
||||||
|
When **implementing** a function that takes an error (and is not a |
||||||
|
`grpc_closure` callback function), you must ensure the error is unref-ed either |
||||||
|
by doing it explicitly with GRPC_ERROR_UNREF, or by passing the error to a |
||||||
|
function that takes over the ownership. |
@ -1,7 +1,8 @@ |
|||||||
This is the static code generation variant of the Node examples. Code in these examples is pre-generated using protoc and the Node gRPC protoc plugin, and the generated code can be found in various `*_pb.js` files. The command line sequence for generating those files is as follows (assuming that `protoc` and `grpc_node_plugin` are present, and starting in the base directory of this package): |
This is the static code generation variant of the Node examples. Code in these examples is pre-generated using protoc and the Node gRPC protoc plugin, and the generated code can be found in various `*_pb.js` files. The command line sequence for generating those files is as follows (assuming that `protoc` and `grpc_node_plugin` are present, and starting in the directory which contains this README.md file): |
||||||
|
|
||||||
```sh |
```sh |
||||||
cd ../protos |
cd ../../protos |
||||||
protoc --js_out=import_style=commonjs,binary:../node/static_codegen/ --grpc_out=../node/static_codegen --plugin=protoc-gen-grpc=grpc_node_plugin helloworld.proto |
npm install -g grpc-tools |
||||||
protoc --js_out=import_style=commonjs,binary:../node/static_codegen/route_guide/ --grpc_out=../node/static_codegen/route_guide/ --plugin=protoc-gen-grpc=grpc_node_plugin route_guide.proto |
grpc_tools_node_protoc --js_out=import_style=commonjs,binary:../node/static_codegen/ --grpc_out=../node/static_codegen --plugin=protoc-gen-grpc=`which grpc_tools_node_protoc_plugin` helloworld.proto |
||||||
|
grpc_tools_node_protoc --js_out=import_style=commonjs,binary:../node/static_codegen/route_guide/ --grpc_out=../node/static_codegen/route_guide/ --plugin=protoc-gen-grpc=`which grpc_tools_node_protoc_plugin` route_guide.proto |
||||||
``` |
``` |
||||||
|
@ -0,0 +1,210 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* Copyright 2017, Google Inc. |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are |
||||||
|
* met: |
||||||
|
* |
||||||
|
* * Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* * Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following disclaimer |
||||||
|
* in the documentation and/or other materials provided with the |
||||||
|
* distribution. |
||||||
|
* * Neither the name of Google Inc. nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
#include "src/core/ext/client_channel/retry_throttle.h" |
||||||
|
|
||||||
|
#include <limits.h> |
||||||
|
#include <string.h> |
||||||
|
|
||||||
|
#include <grpc/support/alloc.h> |
||||||
|
#include <grpc/support/atm.h> |
||||||
|
#include <grpc/support/avl.h> |
||||||
|
#include <grpc/support/string_util.h> |
||||||
|
#include <grpc/support/sync.h> |
||||||
|
|
||||||
|
//
|
||||||
|
// server_retry_throttle_data
|
||||||
|
//
|
||||||
|
|
||||||
|
struct grpc_server_retry_throttle_data { |
||||||
|
gpr_refcount refs; |
||||||
|
int max_milli_tokens; |
||||||
|
int milli_token_ratio; |
||||||
|
gpr_atm milli_tokens; |
||||||
|
// A pointer to the replacement for this grpc_server_retry_throttle_data
|
||||||
|
// entry. If non-NULL, then this entry is stale and must not be used.
|
||||||
|
// We hold a reference to the replacement.
|
||||||
|
gpr_atm replacement; |
||||||
|
}; |
||||||
|
|
||||||
|
static void get_replacement_throttle_data_if_needed( |
||||||
|
grpc_server_retry_throttle_data** throttle_data) { |
||||||
|
while (true) { |
||||||
|
grpc_server_retry_throttle_data* new_throttle_data = |
||||||
|
(grpc_server_retry_throttle_data*)gpr_atm_acq_load( |
||||||
|
&(*throttle_data)->replacement); |
||||||
|
if (new_throttle_data == NULL) return; |
||||||
|
*throttle_data = new_throttle_data; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
bool grpc_server_retry_throttle_data_record_failure( |
||||||
|
grpc_server_retry_throttle_data* throttle_data) { |
||||||
|
// First, check if we are stale and need to be replaced.
|
||||||
|
get_replacement_throttle_data_if_needed(&throttle_data); |
||||||
|
// We decrement milli_tokens by 1000 (1 token) for each failure.
|
||||||
|
const int new_value = (int)gpr_atm_no_barrier_clamped_add( |
||||||
|
&throttle_data->milli_tokens, (gpr_atm)-1000, (gpr_atm)0, |
||||||
|
(gpr_atm)throttle_data->max_milli_tokens); |
||||||
|
// Retries are allowed as long as the new value is above the threshold
|
||||||
|
// (max_milli_tokens / 2).
|
||||||
|
return new_value > throttle_data->max_milli_tokens / 2; |
||||||
|
} |
||||||
|
|
||||||
|
void grpc_server_retry_throttle_data_record_success( |
||||||
|
grpc_server_retry_throttle_data* throttle_data) { |
||||||
|
// First, check if we are stale and need to be replaced.
|
||||||
|
get_replacement_throttle_data_if_needed(&throttle_data); |
||||||
|
// We increment milli_tokens by milli_token_ratio for each success.
|
||||||
|
gpr_atm_no_barrier_clamped_add( |
||||||
|
&throttle_data->milli_tokens, (gpr_atm)throttle_data->milli_token_ratio, |
||||||
|
(gpr_atm)0, (gpr_atm)throttle_data->max_milli_tokens); |
||||||
|
} |
||||||
|
|
||||||
|
grpc_server_retry_throttle_data* grpc_server_retry_throttle_data_ref( |
||||||
|
grpc_server_retry_throttle_data* throttle_data) { |
||||||
|
gpr_ref(&throttle_data->refs); |
||||||
|
return throttle_data; |
||||||
|
} |
||||||
|
|
||||||
|
void grpc_server_retry_throttle_data_unref( |
||||||
|
grpc_server_retry_throttle_data* throttle_data) { |
||||||
|
if (gpr_unref(&throttle_data->refs)) { |
||||||
|
grpc_server_retry_throttle_data* replacement = |
||||||
|
(grpc_server_retry_throttle_data*)gpr_atm_acq_load( |
||||||
|
&throttle_data->replacement); |
||||||
|
if (replacement != NULL) { |
||||||
|
grpc_server_retry_throttle_data_unref(replacement); |
||||||
|
} |
||||||
|
gpr_free(throttle_data); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
static grpc_server_retry_throttle_data* grpc_server_retry_throttle_data_create( |
||||||
|
int max_milli_tokens, int milli_token_ratio, |
||||||
|
grpc_server_retry_throttle_data* old_throttle_data) { |
||||||
|
grpc_server_retry_throttle_data* throttle_data = |
||||||
|
gpr_malloc(sizeof(*throttle_data)); |
||||||
|
memset(throttle_data, 0, sizeof(*throttle_data)); |
||||||
|
gpr_ref_init(&throttle_data->refs, 1); |
||||||
|
throttle_data->max_milli_tokens = max_milli_tokens; |
||||||
|
throttle_data->milli_token_ratio = milli_token_ratio; |
||||||
|
int initial_milli_tokens = max_milli_tokens; |
||||||
|
// If there was a pre-existing entry for this server name, initialize
|
||||||
|
// the token count by scaling proportionately to the old data. This
|
||||||
|
// ensures that if we're already throttling retries on the old scale,
|
||||||
|
// we will start out doing the same thing on the new one.
|
||||||
|
if (old_throttle_data != NULL) { |
||||||
|
double token_fraction = |
||||||
|
(int)gpr_atm_acq_load(&old_throttle_data->milli_tokens) / |
||||||
|
(double)old_throttle_data->max_milli_tokens; |
||||||
|
initial_milli_tokens = (int)(token_fraction * max_milli_tokens); |
||||||
|
} |
||||||
|
gpr_atm_rel_store(&throttle_data->milli_tokens, |
||||||
|
(gpr_atm)initial_milli_tokens); |
||||||
|
// If there was a pre-existing entry, mark it as stale and give it a
|
||||||
|
// pointer to the new entry, which is its replacement.
|
||||||
|
if (old_throttle_data != NULL) { |
||||||
|
grpc_server_retry_throttle_data_ref(throttle_data); |
||||||
|
gpr_atm_rel_store(&old_throttle_data->replacement, (gpr_atm)throttle_data); |
||||||
|
} |
||||||
|
return throttle_data; |
||||||
|
} |
||||||
|
|
||||||
|
//
|
||||||
|
// avl vtable for string -> server_retry_throttle_data map
|
||||||
|
//
|
||||||
|
|
||||||
|
static void* copy_server_name(void* key) { return gpr_strdup(key); } |
||||||
|
|
||||||
|
static long compare_server_name(void* key1, void* key2) { |
||||||
|
return strcmp(key1, key2); |
||||||
|
} |
||||||
|
|
||||||
|
static void destroy_server_retry_throttle_data(void* value) { |
||||||
|
grpc_server_retry_throttle_data* throttle_data = value; |
||||||
|
grpc_server_retry_throttle_data_unref(throttle_data); |
||||||
|
} |
||||||
|
|
||||||
|
static void* copy_server_retry_throttle_data(void* value) { |
||||||
|
grpc_server_retry_throttle_data* throttle_data = value; |
||||||
|
return grpc_server_retry_throttle_data_ref(throttle_data); |
||||||
|
} |
||||||
|
|
||||||
|
static const gpr_avl_vtable avl_vtable = { |
||||||
|
gpr_free /* destroy_key */, copy_server_name, compare_server_name, |
||||||
|
destroy_server_retry_throttle_data, copy_server_retry_throttle_data}; |
||||||
|
|
||||||
|
//
|
||||||
|
// server_retry_throttle_map
|
||||||
|
//
|
||||||
|
|
||||||
|
static gpr_mu g_mu; |
||||||
|
static gpr_avl g_avl; |
||||||
|
|
||||||
|
void grpc_retry_throttle_map_init() { |
||||||
|
gpr_mu_init(&g_mu); |
||||||
|
g_avl = gpr_avl_create(&avl_vtable); |
||||||
|
} |
||||||
|
|
||||||
|
void grpc_retry_throttle_map_shutdown() { |
||||||
|
gpr_mu_destroy(&g_mu); |
||||||
|
gpr_avl_unref(g_avl); |
||||||
|
} |
||||||
|
|
||||||
|
grpc_server_retry_throttle_data* grpc_retry_throttle_map_get_data_for_server( |
||||||
|
const char* server_name, int max_milli_tokens, int milli_token_ratio) { |
||||||
|
gpr_mu_lock(&g_mu); |
||||||
|
grpc_server_retry_throttle_data* throttle_data = |
||||||
|
gpr_avl_get(g_avl, (char*)server_name); |
||||||
|
if (throttle_data == NULL) { |
||||||
|
// Entry not found. Create a new one.
|
||||||
|
throttle_data = grpc_server_retry_throttle_data_create( |
||||||
|
max_milli_tokens, milli_token_ratio, NULL); |
||||||
|
g_avl = gpr_avl_add(g_avl, (char*)server_name, throttle_data); |
||||||
|
} else { |
||||||
|
if (throttle_data->max_milli_tokens != max_milli_tokens || |
||||||
|
throttle_data->milli_token_ratio != milli_token_ratio) { |
||||||
|
// Entry found but with old parameters. Create a new one based on
|
||||||
|
// the original one.
|
||||||
|
throttle_data = grpc_server_retry_throttle_data_create( |
||||||
|
max_milli_tokens, milli_token_ratio, throttle_data); |
||||||
|
g_avl = gpr_avl_add(g_avl, (char*)server_name, throttle_data); |
||||||
|
} else { |
||||||
|
// Entry found. Increase refcount.
|
||||||
|
grpc_server_retry_throttle_data_ref(throttle_data); |
||||||
|
} |
||||||
|
} |
||||||
|
gpr_mu_unlock(&g_mu); |
||||||
|
return throttle_data; |
||||||
|
} |
@ -0,0 +1,65 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* Copyright 2017, Google Inc. |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are |
||||||
|
* met: |
||||||
|
* |
||||||
|
* * Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* * Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following disclaimer |
||||||
|
* in the documentation and/or other materials provided with the |
||||||
|
* distribution. |
||||||
|
* * Neither the name of Google Inc. nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef GRPC_CORE_EXT_CLIENT_CHANNEL_RETRY_THROTTLE_H |
||||||
|
#define GRPC_CORE_EXT_CLIENT_CHANNEL_RETRY_THROTTLE_H |
||||||
|
|
||||||
|
#include <stdbool.h> |
||||||
|
|
||||||
|
/// Tracks retry throttling data for an individual server name.
|
||||||
|
typedef struct grpc_server_retry_throttle_data grpc_server_retry_throttle_data; |
||||||
|
|
||||||
|
/// Records a failure. Returns true if it's okay to send a retry.
|
||||||
|
bool grpc_server_retry_throttle_data_record_failure( |
||||||
|
grpc_server_retry_throttle_data* throttle_data); |
||||||
|
/// Records a success.
|
||||||
|
void grpc_server_retry_throttle_data_record_success( |
||||||
|
grpc_server_retry_throttle_data* throttle_data); |
||||||
|
|
||||||
|
grpc_server_retry_throttle_data* grpc_server_retry_throttle_data_ref( |
||||||
|
grpc_server_retry_throttle_data* throttle_data); |
||||||
|
void grpc_server_retry_throttle_data_unref( |
||||||
|
grpc_server_retry_throttle_data* throttle_data); |
||||||
|
|
||||||
|
/// Initializes global map of failure data for each server name.
|
||||||
|
void grpc_retry_throttle_map_init(); |
||||||
|
/// Shuts down global map of failure data for each server name.
|
||||||
|
void grpc_retry_throttle_map_shutdown(); |
||||||
|
|
||||||
|
/// Returns a reference to the failure data for \a server_name, creating
|
||||||
|
/// a new entry if needed.
|
||||||
|
/// Caller must eventually unref via \a grpc_server_retry_throttle_data_unref().
|
||||||
|
grpc_server_retry_throttle_data* grpc_retry_throttle_map_get_data_for_server( |
||||||
|
const char* server_name, int max_milli_tokens, int milli_token_ratio); |
||||||
|
|
||||||
|
#endif /* GRPC_CORE_EXT_CLIENT_CHANNEL_RETRY_THROTTLE_H */ |
@ -0,0 +1,134 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* Copyright 2017, Google Inc. |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are |
||||||
|
* met: |
||||||
|
* |
||||||
|
* * Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* * Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following disclaimer |
||||||
|
* in the documentation and/or other materials provided with the |
||||||
|
* distribution. |
||||||
|
* * Neither the name of Google Inc. nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef GRPC_CORE_LIB_IOMGR_TCP_SERVER_UTILS_POSIX_H |
||||||
|
#define GRPC_CORE_LIB_IOMGR_TCP_SERVER_UTILS_POSIX_H |
||||||
|
|
||||||
|
#include "src/core/lib/iomgr/ev_posix.h" |
||||||
|
#include "src/core/lib/iomgr/resolve_address.h" |
||||||
|
#include "src/core/lib/iomgr/socket_utils_posix.h" |
||||||
|
#include "src/core/lib/iomgr/tcp_server.h" |
||||||
|
|
||||||
|
/* one listening port */ |
||||||
|
typedef struct grpc_tcp_listener { |
||||||
|
int fd; |
||||||
|
grpc_fd *emfd; |
||||||
|
grpc_tcp_server *server; |
||||||
|
grpc_resolved_address addr; |
||||||
|
int port; |
||||||
|
unsigned port_index; |
||||||
|
unsigned fd_index; |
||||||
|
grpc_closure read_closure; |
||||||
|
grpc_closure destroyed_closure; |
||||||
|
struct grpc_tcp_listener *next; |
||||||
|
/* sibling is a linked list of all listeners for a given port. add_port and
|
||||||
|
clone_port place all new listeners in the same sibling list. A member of |
||||||
|
the 'sibling' list is also a member of the 'next' list. The head of each |
||||||
|
sibling list has is_sibling==0, and subsequent members of sibling lists |
||||||
|
have is_sibling==1. is_sibling allows separate sibling lists to be |
||||||
|
identified while iterating through 'next'. */ |
||||||
|
struct grpc_tcp_listener *sibling; |
||||||
|
int is_sibling; |
||||||
|
} grpc_tcp_listener; |
||||||
|
|
||||||
|
/* the overall server */ |
||||||
|
struct grpc_tcp_server { |
||||||
|
gpr_refcount refs; |
||||||
|
/* Called whenever accept() succeeds on a server port. */ |
||||||
|
grpc_tcp_server_cb on_accept_cb; |
||||||
|
void *on_accept_cb_arg; |
||||||
|
|
||||||
|
gpr_mu mu; |
||||||
|
|
||||||
|
/* active port count: how many ports are actually still listening */ |
||||||
|
size_t active_ports; |
||||||
|
/* destroyed port count: how many ports are completely destroyed */ |
||||||
|
size_t destroyed_ports; |
||||||
|
|
||||||
|
/* is this server shutting down? */ |
||||||
|
bool shutdown; |
||||||
|
/* have listeners been shutdown? */ |
||||||
|
bool shutdown_listeners; |
||||||
|
/* use SO_REUSEPORT */ |
||||||
|
bool so_reuseport; |
||||||
|
/* expand wildcard addresses to a list of all local addresses */ |
||||||
|
bool expand_wildcard_addrs; |
||||||
|
|
||||||
|
/* linked list of server ports */ |
||||||
|
grpc_tcp_listener *head; |
||||||
|
grpc_tcp_listener *tail; |
||||||
|
unsigned nports; |
||||||
|
|
||||||
|
/* List of closures passed to shutdown_starting_add(). */ |
||||||
|
grpc_closure_list shutdown_starting; |
||||||
|
|
||||||
|
/* shutdown callback */ |
||||||
|
grpc_closure *shutdown_complete; |
||||||
|
|
||||||
|
/* all pollsets interested in new connections */ |
||||||
|
grpc_pollset **pollsets; |
||||||
|
/* number of pollsets in the pollsets array */ |
||||||
|
size_t pollset_count; |
||||||
|
|
||||||
|
/* next pollset to assign a channel to */ |
||||||
|
gpr_atm next_pollset_to_assign; |
||||||
|
|
||||||
|
grpc_resource_quota *resource_quota; |
||||||
|
}; |
||||||
|
|
||||||
|
/* If successful, add a listener to \a s for \a addr, set \a dsmode for the
|
||||||
|
socket, and return the \a listener. */ |
||||||
|
grpc_error *grpc_tcp_server_add_addr(grpc_tcp_server *s, |
||||||
|
const grpc_resolved_address *addr, |
||||||
|
unsigned port_index, unsigned fd_index, |
||||||
|
grpc_dualstack_mode *dsmode, |
||||||
|
grpc_tcp_listener **listener); |
||||||
|
|
||||||
|
/* Get all addresses assigned to network interfaces on the machine and create a
|
||||||
|
listener for each. requested_port is the port to use for every listener, or 0 |
||||||
|
to select one random port that will be used for every listener. Set *out_port |
||||||
|
to the port selected. Return GRPC_ERROR_NONE only if all listeners were |
||||||
|
added. */ |
||||||
|
grpc_error *grpc_tcp_server_add_all_local_addrs(grpc_tcp_server *s, |
||||||
|
unsigned port_index, |
||||||
|
int requested_port, |
||||||
|
int *out_port); |
||||||
|
|
||||||
|
/* Prepare a recently-created socket for listening. */ |
||||||
|
grpc_error *grpc_tcp_server_prepare_socket(int fd, |
||||||
|
const grpc_resolved_address *addr, |
||||||
|
bool so_reuseport, int *port); |
||||||
|
/* Ruturn true if the platform supports ifaddrs */ |
||||||
|
bool grpc_tcp_server_have_ifaddrs(void); |
||||||
|
|
||||||
|
#endif /* GRPC_CORE_LIB_IOMGR_TCP_SERVER_UTILS_POSIX_H */ |
@ -0,0 +1,221 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* Copyright 2017, Google Inc. |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are |
||||||
|
* met: |
||||||
|
* |
||||||
|
* * Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* * Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following disclaimer |
||||||
|
* in the documentation and/or other materials provided with the |
||||||
|
* distribution. |
||||||
|
* * Neither the name of Google Inc. nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
#include "src/core/lib/iomgr/port.h" |
||||||
|
|
||||||
|
#ifdef GRPC_HAVE_IFADDRS |
||||||
|
|
||||||
|
#include "src/core/lib/iomgr/tcp_server_utils_posix.h" |
||||||
|
|
||||||
|
#include <errno.h> |
||||||
|
#include <limits.h> |
||||||
|
#include <stdio.h> |
||||||
|
#include <string.h> |
||||||
|
|
||||||
|
#include <grpc/support/alloc.h> |
||||||
|
#include <grpc/support/log.h> |
||||||
|
#include <grpc/support/string_util.h> |
||||||
|
#include <grpc/support/sync.h> |
||||||
|
|
||||||
|
#include "src/core/lib/iomgr/error.h" |
||||||
|
#include "src/core/lib/iomgr/sockaddr.h" |
||||||
|
#include "src/core/lib/iomgr/sockaddr_utils.h" |
||||||
|
#include "src/core/lib/iomgr/unix_sockets_posix.h" |
||||||
|
|
||||||
|
#define MIN_SAFE_ACCEPT_QUEUE_SIZE 100 |
||||||
|
|
||||||
|
static gpr_once s_init_max_accept_queue_size; |
||||||
|
static int s_max_accept_queue_size; |
||||||
|
|
||||||
|
/* get max listen queue size on linux */ |
||||||
|
static void init_max_accept_queue_size(void) { |
||||||
|
int n = SOMAXCONN; |
||||||
|
char buf[64]; |
||||||
|
FILE *fp = fopen("/proc/sys/net/core/somaxconn", "r"); |
||||||
|
if (fp == NULL) { |
||||||
|
/* 2.4 kernel. */ |
||||||
|
s_max_accept_queue_size = SOMAXCONN; |
||||||
|
return; |
||||||
|
} |
||||||
|
if (fgets(buf, sizeof buf, fp)) { |
||||||
|
char *end; |
||||||
|
long i = strtol(buf, &end, 10); |
||||||
|
if (i > 0 && i <= INT_MAX && end && *end == 0) { |
||||||
|
n = (int)i; |
||||||
|
} |
||||||
|
} |
||||||
|
fclose(fp); |
||||||
|
s_max_accept_queue_size = n; |
||||||
|
|
||||||
|
if (s_max_accept_queue_size < MIN_SAFE_ACCEPT_QUEUE_SIZE) { |
||||||
|
gpr_log(GPR_INFO, |
||||||
|
"Suspiciously small accept queue (%d) will probably lead to " |
||||||
|
"connection drops", |
||||||
|
s_max_accept_queue_size); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
static int get_max_accept_queue_size(void) { |
||||||
|
gpr_once_init(&s_init_max_accept_queue_size, init_max_accept_queue_size); |
||||||
|
return s_max_accept_queue_size; |
||||||
|
} |
||||||
|
|
||||||
|
static grpc_error *add_socket_to_server(grpc_tcp_server *s, int fd, |
||||||
|
const grpc_resolved_address *addr, |
||||||
|
unsigned port_index, unsigned fd_index, |
||||||
|
grpc_tcp_listener **listener) { |
||||||
|
grpc_tcp_listener *sp = NULL; |
||||||
|
int port = -1; |
||||||
|
char *addr_str; |
||||||
|
char *name; |
||||||
|
|
||||||
|
grpc_error *err = |
||||||
|
grpc_tcp_server_prepare_socket(fd, addr, s->so_reuseport, &port); |
||||||
|
if (err == GRPC_ERROR_NONE) { |
||||||
|
GPR_ASSERT(port > 0); |
||||||
|
grpc_sockaddr_to_string(&addr_str, addr, 1); |
||||||
|
gpr_asprintf(&name, "tcp-server-listener:%s", addr_str); |
||||||
|
gpr_mu_lock(&s->mu); |
||||||
|
s->nports++; |
||||||
|
GPR_ASSERT(!s->on_accept_cb && "must add ports before starting server"); |
||||||
|
sp = gpr_malloc(sizeof(grpc_tcp_listener)); |
||||||
|
sp->next = NULL; |
||||||
|
if (s->head == NULL) { |
||||||
|
s->head = sp; |
||||||
|
} else { |
||||||
|
s->tail->next = sp; |
||||||
|
} |
||||||
|
s->tail = sp; |
||||||
|
sp->server = s; |
||||||
|
sp->fd = fd; |
||||||
|
sp->emfd = grpc_fd_create(fd, name); |
||||||
|
memcpy(&sp->addr, addr, sizeof(grpc_resolved_address)); |
||||||
|
sp->port = port; |
||||||
|
sp->port_index = port_index; |
||||||
|
sp->fd_index = fd_index; |
||||||
|
sp->is_sibling = 0; |
||||||
|
sp->sibling = NULL; |
||||||
|
GPR_ASSERT(sp->emfd); |
||||||
|
gpr_mu_unlock(&s->mu); |
||||||
|
gpr_free(addr_str); |
||||||
|
gpr_free(name); |
||||||
|
} |
||||||
|
|
||||||
|
*listener = sp; |
||||||
|
return err; |
||||||
|
} |
||||||
|
|
||||||
|
/* If successful, add a listener to s for addr, set *dsmode for the socket, and
|
||||||
|
return the *listener. */ |
||||||
|
grpc_error *grpc_tcp_server_add_addr(grpc_tcp_server *s, |
||||||
|
const grpc_resolved_address *addr, |
||||||
|
unsigned port_index, unsigned fd_index, |
||||||
|
grpc_dualstack_mode *dsmode, |
||||||
|
grpc_tcp_listener **listener) { |
||||||
|
grpc_resolved_address addr4_copy; |
||||||
|
int fd; |
||||||
|
grpc_error *err = |
||||||
|
grpc_create_dualstack_socket(addr, SOCK_STREAM, 0, dsmode, &fd); |
||||||
|
if (err != GRPC_ERROR_NONE) { |
||||||
|
return err; |
||||||
|
} |
||||||
|
if (*dsmode == GRPC_DSMODE_IPV4 && |
||||||
|
grpc_sockaddr_is_v4mapped(addr, &addr4_copy)) { |
||||||
|
addr = &addr4_copy; |
||||||
|
} |
||||||
|
return add_socket_to_server(s, fd, addr, port_index, fd_index, listener); |
||||||
|
} |
||||||
|
|
||||||
|
/* Prepare a recently-created socket for listening. */ |
||||||
|
grpc_error *grpc_tcp_server_prepare_socket(int fd, |
||||||
|
const grpc_resolved_address *addr, |
||||||
|
bool so_reuseport, int *port) { |
||||||
|
grpc_resolved_address sockname_temp; |
||||||
|
grpc_error *err = GRPC_ERROR_NONE; |
||||||
|
|
||||||
|
GPR_ASSERT(fd >= 0); |
||||||
|
|
||||||
|
if (so_reuseport && !grpc_is_unix_socket(addr)) { |
||||||
|
err = grpc_set_socket_reuse_port(fd, 1); |
||||||
|
if (err != GRPC_ERROR_NONE) goto error; |
||||||
|
} |
||||||
|
|
||||||
|
err = grpc_set_socket_nonblocking(fd, 1); |
||||||
|
if (err != GRPC_ERROR_NONE) goto error; |
||||||
|
err = grpc_set_socket_cloexec(fd, 1); |
||||||
|
if (err != GRPC_ERROR_NONE) goto error; |
||||||
|
if (!grpc_is_unix_socket(addr)) { |
||||||
|
err = grpc_set_socket_low_latency(fd, 1); |
||||||
|
if (err != GRPC_ERROR_NONE) goto error; |
||||||
|
err = grpc_set_socket_reuse_addr(fd, 1); |
||||||
|
if (err != GRPC_ERROR_NONE) goto error; |
||||||
|
} |
||||||
|
err = grpc_set_socket_no_sigpipe_if_possible(fd); |
||||||
|
if (err != GRPC_ERROR_NONE) goto error; |
||||||
|
|
||||||
|
GPR_ASSERT(addr->len < ~(socklen_t)0); |
||||||
|
if (bind(fd, (struct sockaddr *)addr->addr, (socklen_t)addr->len) < 0) { |
||||||
|
err = GRPC_OS_ERROR(errno, "bind"); |
||||||
|
goto error; |
||||||
|
} |
||||||
|
|
||||||
|
if (listen(fd, get_max_accept_queue_size()) < 0) { |
||||||
|
err = GRPC_OS_ERROR(errno, "listen"); |
||||||
|
goto error; |
||||||
|
} |
||||||
|
|
||||||
|
sockname_temp.len = sizeof(struct sockaddr_storage); |
||||||
|
|
||||||
|
if (getsockname(fd, (struct sockaddr *)sockname_temp.addr, |
||||||
|
(socklen_t *)&sockname_temp.len) < 0) { |
||||||
|
err = GRPC_OS_ERROR(errno, "getsockname"); |
||||||
|
goto error; |
||||||
|
} |
||||||
|
|
||||||
|
*port = grpc_sockaddr_get_port(&sockname_temp); |
||||||
|
return GRPC_ERROR_NONE; |
||||||
|
|
||||||
|
error: |
||||||
|
GPR_ASSERT(err != GRPC_ERROR_NONE); |
||||||
|
if (fd >= 0) { |
||||||
|
close(fd); |
||||||
|
} |
||||||
|
grpc_error *ret = |
||||||
|
grpc_error_set_int(GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING( |
||||||
|
"Unable to configure socket", &err, 1), |
||||||
|
GRPC_ERROR_INT_FD, fd); |
||||||
|
GRPC_ERROR_UNREF(err); |
||||||
|
return ret; |
||||||
|
} |
||||||
|
|
||||||
|
#endif /* GRPC_HAVE_IFADDRS */ |
@ -0,0 +1,196 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* Copyright 2017, Google Inc. |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are |
||||||
|
* met: |
||||||
|
* |
||||||
|
* * Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* * Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following disclaimer |
||||||
|
* in the documentation and/or other materials provided with the |
||||||
|
* distribution. |
||||||
|
* * Neither the name of Google Inc. nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
#include "src/core/lib/iomgr/port.h" |
||||||
|
|
||||||
|
#ifdef GRPC_HAVE_IFADDRS |
||||||
|
|
||||||
|
#include "src/core/lib/iomgr/tcp_server_utils_posix.h" |
||||||
|
|
||||||
|
#include <errno.h> |
||||||
|
#include <ifaddrs.h> |
||||||
|
#include <stddef.h> |
||||||
|
#include <string.h> |
||||||
|
|
||||||
|
#include <grpc/support/alloc.h> |
||||||
|
#include <grpc/support/log.h> |
||||||
|
#include <grpc/support/string_util.h> |
||||||
|
|
||||||
|
#include "src/core/lib/iomgr/error.h" |
||||||
|
#include "src/core/lib/iomgr/sockaddr.h" |
||||||
|
#include "src/core/lib/iomgr/sockaddr_utils.h" |
||||||
|
|
||||||
|
/* Return the listener in s with address addr or NULL. */ |
||||||
|
static grpc_tcp_listener *find_listener_with_addr(grpc_tcp_server *s, |
||||||
|
grpc_resolved_address *addr) { |
||||||
|
grpc_tcp_listener *l; |
||||||
|
gpr_mu_lock(&s->mu); |
||||||
|
for (l = s->head; l != NULL; l = l->next) { |
||||||
|
if (l->addr.len != addr->len) { |
||||||
|
continue; |
||||||
|
} |
||||||
|
if (memcmp(l->addr.addr, addr->addr, addr->len) == 0) { |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
gpr_mu_unlock(&s->mu); |
||||||
|
return l; |
||||||
|
} |
||||||
|
|
||||||
|
/* Bind to "::" to get a port number not used by any address. */ |
||||||
|
static grpc_error *get_unused_port(int *port) { |
||||||
|
grpc_resolved_address wild; |
||||||
|
grpc_sockaddr_make_wildcard6(0, &wild); |
||||||
|
grpc_dualstack_mode dsmode; |
||||||
|
int fd; |
||||||
|
grpc_error *err = |
||||||
|
grpc_create_dualstack_socket(&wild, SOCK_STREAM, 0, &dsmode, &fd); |
||||||
|
if (err != GRPC_ERROR_NONE) { |
||||||
|
return err; |
||||||
|
} |
||||||
|
if (dsmode == GRPC_DSMODE_IPV4) { |
||||||
|
grpc_sockaddr_make_wildcard4(0, &wild); |
||||||
|
} |
||||||
|
if (bind(fd, (const struct sockaddr *)wild.addr, (socklen_t)wild.len) != 0) { |
||||||
|
err = GRPC_OS_ERROR(errno, "bind"); |
||||||
|
close(fd); |
||||||
|
return err; |
||||||
|
} |
||||||
|
if (getsockname(fd, (struct sockaddr *)wild.addr, (socklen_t *)&wild.len) != |
||||||
|
0) { |
||||||
|
err = GRPC_OS_ERROR(errno, "getsockname"); |
||||||
|
close(fd); |
||||||
|
return err; |
||||||
|
} |
||||||
|
close(fd); |
||||||
|
*port = grpc_sockaddr_get_port(&wild); |
||||||
|
return *port <= 0 ? GRPC_ERROR_CREATE_FROM_STATIC_STRING("Bad port") |
||||||
|
: GRPC_ERROR_NONE; |
||||||
|
} |
||||||
|
|
||||||
|
grpc_error *grpc_tcp_server_add_all_local_addrs(grpc_tcp_server *s, |
||||||
|
unsigned port_index, |
||||||
|
int requested_port, |
||||||
|
int *out_port) { |
||||||
|
struct ifaddrs *ifa = NULL; |
||||||
|
struct ifaddrs *ifa_it; |
||||||
|
unsigned fd_index = 0; |
||||||
|
grpc_tcp_listener *sp = NULL; |
||||||
|
grpc_error *err = GRPC_ERROR_NONE; |
||||||
|
if (requested_port == 0) { |
||||||
|
/* Note: There could be a race where some local addrs can listen on the
|
||||||
|
selected port and some can't. The sane way to handle this would be to |
||||||
|
retry by recreating the whole grpc_tcp_server. Backing out individual |
||||||
|
listeners and orphaning the FDs looks like too much trouble. */ |
||||||
|
if ((err = get_unused_port(&requested_port)) != GRPC_ERROR_NONE) { |
||||||
|
return err; |
||||||
|
} else if (requested_port <= 0) { |
||||||
|
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Bad get_unused_port()"); |
||||||
|
} |
||||||
|
gpr_log(GPR_DEBUG, "Picked unused port %d", requested_port); |
||||||
|
} |
||||||
|
if (getifaddrs(&ifa) != 0 || ifa == NULL) { |
||||||
|
return GRPC_OS_ERROR(errno, "getifaddrs"); |
||||||
|
} |
||||||
|
for (ifa_it = ifa; ifa_it != NULL; ifa_it = ifa_it->ifa_next) { |
||||||
|
grpc_resolved_address addr; |
||||||
|
char *addr_str = NULL; |
||||||
|
grpc_dualstack_mode dsmode; |
||||||
|
grpc_tcp_listener *new_sp = NULL; |
||||||
|
const char *ifa_name = (ifa_it->ifa_name ? ifa_it->ifa_name : "<unknown>"); |
||||||
|
if (ifa_it->ifa_addr == NULL) { |
||||||
|
continue; |
||||||
|
} else if (ifa_it->ifa_addr->sa_family == AF_INET) { |
||||||
|
addr.len = sizeof(struct sockaddr_in); |
||||||
|
} else if (ifa_it->ifa_addr->sa_family == AF_INET6) { |
||||||
|
addr.len = sizeof(struct sockaddr_in6); |
||||||
|
} else { |
||||||
|
continue; |
||||||
|
} |
||||||
|
memcpy(addr.addr, ifa_it->ifa_addr, addr.len); |
||||||
|
if (!grpc_sockaddr_set_port(&addr, requested_port)) { |
||||||
|
/* Should never happen, because we check sa_family above. */ |
||||||
|
err = GRPC_ERROR_CREATE_FROM_STATIC_STRING("Failed to set port"); |
||||||
|
break; |
||||||
|
} |
||||||
|
if (grpc_sockaddr_to_string(&addr_str, &addr, 0) < 0) { |
||||||
|
addr_str = gpr_strdup("<error>"); |
||||||
|
} |
||||||
|
gpr_log(GPR_DEBUG, |
||||||
|
"Adding local addr from interface %s flags 0x%x to server: %s", |
||||||
|
ifa_name, ifa_it->ifa_flags, addr_str); |
||||||
|
/* We could have multiple interfaces with the same address (e.g., bonding),
|
||||||
|
so look for duplicates. */ |
||||||
|
if (find_listener_with_addr(s, &addr) != NULL) { |
||||||
|
gpr_log(GPR_DEBUG, "Skipping duplicate addr %s on interface %s", addr_str, |
||||||
|
ifa_name); |
||||||
|
gpr_free(addr_str); |
||||||
|
continue; |
||||||
|
} |
||||||
|
if ((err = grpc_tcp_server_add_addr(s, &addr, port_index, fd_index, &dsmode, |
||||||
|
&new_sp)) != GRPC_ERROR_NONE) { |
||||||
|
char *err_str = NULL; |
||||||
|
grpc_error *root_err; |
||||||
|
if (gpr_asprintf(&err_str, "Failed to add listener: %s", addr_str) < 0) { |
||||||
|
err_str = gpr_strdup("Failed to add listener"); |
||||||
|
} |
||||||
|
root_err = GRPC_ERROR_CREATE_FROM_COPIED_STRING(err_str); |
||||||
|
gpr_free(err_str); |
||||||
|
gpr_free(addr_str); |
||||||
|
err = grpc_error_add_child(root_err, err); |
||||||
|
break; |
||||||
|
} else { |
||||||
|
GPR_ASSERT(requested_port == new_sp->port); |
||||||
|
++fd_index; |
||||||
|
if (sp != NULL) { |
||||||
|
new_sp->is_sibling = 1; |
||||||
|
sp->sibling = new_sp; |
||||||
|
} |
||||||
|
sp = new_sp; |
||||||
|
} |
||||||
|
gpr_free(addr_str); |
||||||
|
} |
||||||
|
freeifaddrs(ifa); |
||||||
|
if (err != GRPC_ERROR_NONE) { |
||||||
|
return err; |
||||||
|
} else if (sp == NULL) { |
||||||
|
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("No local addresses"); |
||||||
|
} else { |
||||||
|
*out_port = sp->port; |
||||||
|
return GRPC_ERROR_NONE; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
bool grpc_tcp_server_have_ifaddrs(void) { return true; } |
||||||
|
|
||||||
|
#endif /* GRPC_HAVE_IFADDRS */ |
@ -0,0 +1,98 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* Copyright 2017, Google Inc. |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are |
||||||
|
* met: |
||||||
|
* |
||||||
|
* * Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* * Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following disclaimer |
||||||
|
* in the documentation and/or other materials provided with the |
||||||
|
* distribution. |
||||||
|
* * Neither the name of Google Inc. nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
#include "src/core/lib/support/arena.h" |
||||||
|
#include <grpc/support/alloc.h> |
||||||
|
#include <grpc/support/atm.h> |
||||||
|
#include <grpc/support/log.h> |
||||||
|
#include <grpc/support/useful.h> |
||||||
|
|
||||||
|
#define ROUND_UP_TO_ALIGNMENT_SIZE(x) \ |
||||||
|
(((x) + GPR_MAX_ALIGNMENT - 1u) & ~(GPR_MAX_ALIGNMENT - 1u)) |
||||||
|
|
||||||
|
typedef struct zone { |
||||||
|
size_t size_begin; |
||||||
|
size_t size_end; |
||||||
|
gpr_atm next_atm; |
||||||
|
} zone; |
||||||
|
|
||||||
|
struct gpr_arena { |
||||||
|
gpr_atm size_so_far; |
||||||
|
zone initial_zone; |
||||||
|
}; |
||||||
|
|
||||||
|
gpr_arena *gpr_arena_create(size_t initial_size) { |
||||||
|
initial_size = ROUND_UP_TO_ALIGNMENT_SIZE(initial_size); |
||||||
|
gpr_arena *a = gpr_zalloc(sizeof(gpr_arena) + initial_size); |
||||||
|
a->initial_zone.size_end = initial_size; |
||||||
|
return a; |
||||||
|
} |
||||||
|
|
||||||
|
size_t gpr_arena_destroy(gpr_arena *arena) { |
||||||
|
gpr_atm size = gpr_atm_no_barrier_load(&arena->size_so_far); |
||||||
|
zone *z = (zone *)gpr_atm_no_barrier_load(&arena->initial_zone.next_atm); |
||||||
|
gpr_free(arena); |
||||||
|
while (z) { |
||||||
|
zone *next_z = (zone *)gpr_atm_no_barrier_load(&z->next_atm); |
||||||
|
gpr_free(z); |
||||||
|
z = next_z; |
||||||
|
} |
||||||
|
return (size_t)size; |
||||||
|
} |
||||||
|
|
||||||
|
void *gpr_arena_alloc(gpr_arena *arena, size_t size) { |
||||||
|
size = ROUND_UP_TO_ALIGNMENT_SIZE(size); |
||||||
|
size_t start = |
||||||
|
(size_t)gpr_atm_no_barrier_fetch_add(&arena->size_so_far, size); |
||||||
|
zone *z = &arena->initial_zone; |
||||||
|
while (start > z->size_end) { |
||||||
|
zone *next_z = (zone *)gpr_atm_acq_load(&z->next_atm); |
||||||
|
if (next_z == NULL) { |
||||||
|
size_t next_z_size = (size_t)gpr_atm_no_barrier_load(&arena->size_so_far); |
||||||
|
next_z = gpr_zalloc(sizeof(zone) + next_z_size); |
||||||
|
next_z->size_begin = z->size_end; |
||||||
|
next_z->size_end = z->size_end + next_z_size; |
||||||
|
if (!gpr_atm_rel_cas(&z->next_atm, (gpr_atm)NULL, (gpr_atm)next_z)) { |
||||||
|
gpr_free(next_z); |
||||||
|
next_z = (zone *)gpr_atm_acq_load(&z->next_atm); |
||||||
|
} |
||||||
|
} |
||||||
|
z = next_z; |
||||||
|
} |
||||||
|
if (start + size > z->size_end) { |
||||||
|
return gpr_arena_alloc(arena, size); |
||||||
|
} |
||||||
|
GPR_ASSERT(start >= z->size_begin); |
||||||
|
GPR_ASSERT(start + size <= z->size_end); |
||||||
|
return ((char *)(z + 1)) + start - z->size_begin; |
||||||
|
} |
@ -1,269 +0,0 @@ |
|||||||
/*
|
|
||||||
* |
|
||||||
* Copyright 2015, Google Inc. |
|
||||||
* All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are |
|
||||||
* met: |
|
||||||
* |
|
||||||
* * Redistributions of source code must retain the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer. |
|
||||||
* * Redistributions in binary form must reproduce the above |
|
||||||
* copyright notice, this list of conditions and the following disclaimer |
|
||||||
* in the documentation and/or other materials provided with the |
|
||||||
* distribution. |
|
||||||
* * Neither the name of Google Inc. nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* |
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
||||||
* |
|
||||||
*/ |
|
||||||
|
|
||||||
/* With the addition of a libuv endpoint, sockaddr.h now includes uv.h when
|
|
||||||
using that endpoint. Because of various transitive includes in uv.h, |
|
||||||
including windows.h on Windows, uv.h must be included before other system |
|
||||||
headers. Therefore, sockaddr.h must always be included first */ |
|
||||||
#include "src/core/lib/iomgr/sockaddr.h" |
|
||||||
|
|
||||||
#include <string.h> |
|
||||||
|
|
||||||
#include <grpc/grpc.h> |
|
||||||
#include <grpc/slice.h> |
|
||||||
#include <grpc/support/alloc.h> |
|
||||||
#include <grpc/support/host_port.h> |
|
||||||
#include <grpc/support/log.h> |
|
||||||
#include <grpc/support/thd.h> |
|
||||||
|
|
||||||
#include "src/core/ext/client_channel/initial_connect_string.h" |
|
||||||
#include "src/core/lib/iomgr/sockaddr.h" |
|
||||||
#include "src/core/lib/security/credentials/fake/fake_credentials.h" |
|
||||||
#include "src/core/lib/slice/slice_string_helpers.h" |
|
||||||
#include "src/core/lib/support/string.h" |
|
||||||
#include "test/core/util/port.h" |
|
||||||
#include "test/core/util/test_config.h" |
|
||||||
#include "test/core/util/test_tcp_server.h" |
|
||||||
|
|
||||||
struct rpc_state { |
|
||||||
char *target; |
|
||||||
grpc_channel_credentials *creds; |
|
||||||
grpc_completion_queue *cq; |
|
||||||
grpc_channel *channel; |
|
||||||
grpc_call *call; |
|
||||||
grpc_op op; |
|
||||||
grpc_slice_buffer incoming_buffer; |
|
||||||
grpc_slice_buffer temp_incoming_buffer; |
|
||||||
grpc_endpoint *tcp; |
|
||||||
gpr_atm done_atm; |
|
||||||
}; |
|
||||||
|
|
||||||
static const char *magic_connect_string = "magic initial string"; |
|
||||||
static int server_port; |
|
||||||
static struct rpc_state state; |
|
||||||
static grpc_closure on_read; |
|
||||||
|
|
||||||
static void handle_read(grpc_exec_ctx *exec_ctx, void *arg, grpc_error *error) { |
|
||||||
GPR_ASSERT(error == GRPC_ERROR_NONE); |
|
||||||
grpc_slice_buffer_move_into(&state.temp_incoming_buffer, |
|
||||||
&state.incoming_buffer); |
|
||||||
gpr_log(GPR_DEBUG, "got %" PRIuPTR " bytes, magic is %" PRIuPTR " bytes", |
|
||||||
state.incoming_buffer.length, strlen(magic_connect_string)); |
|
||||||
if (state.incoming_buffer.length > strlen(magic_connect_string)) { |
|
||||||
gpr_atm_rel_store(&state.done_atm, 1); |
|
||||||
grpc_endpoint_shutdown( |
|
||||||
exec_ctx, state.tcp, |
|
||||||
GRPC_ERROR_CREATE_FROM_STATIC_STRING( |
|
||||||
"Incoming buffer longer than magic_connect_string")); |
|
||||||
grpc_endpoint_destroy(exec_ctx, state.tcp); |
|
||||||
} else { |
|
||||||
grpc_endpoint_read(exec_ctx, state.tcp, &state.temp_incoming_buffer, |
|
||||||
&on_read); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
static void on_connect(grpc_exec_ctx *exec_ctx, void *arg, grpc_endpoint *tcp, |
|
||||||
grpc_pollset *accepting_pollset, |
|
||||||
grpc_tcp_server_acceptor *acceptor) { |
|
||||||
gpr_free(acceptor); |
|
||||||
test_tcp_server *server = arg; |
|
||||||
grpc_closure_init(&on_read, handle_read, NULL, grpc_schedule_on_exec_ctx); |
|
||||||
grpc_slice_buffer_init(&state.incoming_buffer); |
|
||||||
grpc_slice_buffer_init(&state.temp_incoming_buffer); |
|
||||||
state.tcp = tcp; |
|
||||||
grpc_endpoint_add_to_pollset(exec_ctx, tcp, server->pollset); |
|
||||||
grpc_endpoint_read(exec_ctx, tcp, &state.temp_incoming_buffer, &on_read); |
|
||||||
} |
|
||||||
|
|
||||||
static void set_magic_initial_string(grpc_resolved_address **addr, |
|
||||||
grpc_slice *connect_string) { |
|
||||||
GPR_ASSERT(addr); |
|
||||||
GPR_ASSERT((*addr)->len); |
|
||||||
*connect_string = grpc_slice_from_copied_string(magic_connect_string); |
|
||||||
} |
|
||||||
|
|
||||||
static void reset_addr_and_set_magic_string(grpc_resolved_address **addr, |
|
||||||
grpc_slice *connect_string) { |
|
||||||
struct sockaddr_in target; |
|
||||||
*connect_string = grpc_slice_from_copied_string(magic_connect_string); |
|
||||||
gpr_free(*addr); |
|
||||||
target.sin_family = AF_INET; |
|
||||||
target.sin_addr.s_addr = htonl(INADDR_LOOPBACK); |
|
||||||
target.sin_port = htons((uint16_t)server_port); |
|
||||||
*addr = (grpc_resolved_address *)gpr_malloc(sizeof(grpc_resolved_address)); |
|
||||||
(*addr)->len = sizeof(target); |
|
||||||
memcpy((*addr)->addr, &target, sizeof(target)); |
|
||||||
} |
|
||||||
|
|
||||||
static gpr_timespec n_sec_deadline(int seconds) { |
|
||||||
return gpr_time_add(gpr_now(GPR_CLOCK_REALTIME), |
|
||||||
gpr_time_from_seconds(seconds, GPR_TIMESPAN)); |
|
||||||
} |
|
||||||
|
|
||||||
static void start_rpc(int use_creds, int target_port) { |
|
||||||
state.cq = grpc_completion_queue_create(NULL); |
|
||||||
if (use_creds) { |
|
||||||
state.creds = grpc_fake_transport_security_credentials_create(); |
|
||||||
} else { |
|
||||||
state.creds = NULL; |
|
||||||
} |
|
||||||
gpr_join_host_port(&state.target, "127.0.0.1", target_port); |
|
||||||
if (use_creds) { |
|
||||||
state.channel = |
|
||||||
grpc_secure_channel_create(state.creds, state.target, NULL, NULL); |
|
||||||
} else { |
|
||||||
state.channel = grpc_insecure_channel_create(state.target, NULL, NULL); |
|
||||||
} |
|
||||||
grpc_slice host = grpc_slice_from_static_string("localhost"); |
|
||||||
state.call = grpc_channel_create_call( |
|
||||||
state.channel, NULL, GRPC_PROPAGATE_DEFAULTS, state.cq, |
|
||||||
grpc_slice_from_static_string("/Service/Method"), &host, |
|
||||||
gpr_inf_future(GPR_CLOCK_REALTIME), NULL); |
|
||||||
memset(&state.op, 0, sizeof(state.op)); |
|
||||||
state.op.op = GRPC_OP_SEND_INITIAL_METADATA; |
|
||||||
state.op.data.send_initial_metadata.count = 0; |
|
||||||
state.op.flags = 0; |
|
||||||
state.op.reserved = NULL; |
|
||||||
GPR_ASSERT(GRPC_CALL_OK == grpc_call_start_batch(state.call, &state.op, |
|
||||||
(size_t)(1), NULL, NULL)); |
|
||||||
grpc_completion_queue_next(state.cq, n_sec_deadline(5), NULL); |
|
||||||
} |
|
||||||
|
|
||||||
static void cleanup_rpc(void) { |
|
||||||
grpc_event ev; |
|
||||||
grpc_slice_buffer_destroy(&state.incoming_buffer); |
|
||||||
grpc_slice_buffer_destroy(&state.temp_incoming_buffer); |
|
||||||
grpc_channel_credentials_release(state.creds); |
|
||||||
grpc_call_destroy(state.call); |
|
||||||
grpc_completion_queue_shutdown(state.cq); |
|
||||||
do { |
|
||||||
ev = grpc_completion_queue_next(state.cq, n_sec_deadline(1), NULL); |
|
||||||
} while (ev.type != GRPC_QUEUE_SHUTDOWN); |
|
||||||
grpc_completion_queue_destroy(state.cq); |
|
||||||
grpc_channel_destroy(state.channel); |
|
||||||
gpr_free(state.target); |
|
||||||
} |
|
||||||
|
|
||||||
typedef struct { |
|
||||||
test_tcp_server *server; |
|
||||||
gpr_event *signal_when_done; |
|
||||||
} poll_args; |
|
||||||
|
|
||||||
static void actually_poll_server(void *arg) { |
|
||||||
poll_args *pa = arg; |
|
||||||
gpr_timespec deadline = n_sec_deadline(10); |
|
||||||
while (true) { |
|
||||||
bool done = gpr_atm_acq_load(&state.done_atm) != 0; |
|
||||||
gpr_timespec time_left = |
|
||||||
gpr_time_sub(deadline, gpr_now(GPR_CLOCK_REALTIME)); |
|
||||||
gpr_log(GPR_DEBUG, "done=%d, time_left=%" PRId64 ".%09" PRId32, done, |
|
||||||
time_left.tv_sec, time_left.tv_nsec); |
|
||||||
if (done || gpr_time_cmp(time_left, gpr_time_0(GPR_TIMESPAN)) < 0) { |
|
||||||
break; |
|
||||||
} |
|
||||||
test_tcp_server_poll(pa->server, 1); |
|
||||||
} |
|
||||||
gpr_event_set(pa->signal_when_done, (void *)1); |
|
||||||
gpr_free(pa); |
|
||||||
} |
|
||||||
|
|
||||||
static void poll_server_until_read_done(test_tcp_server *server, |
|
||||||
gpr_event *signal_when_done) { |
|
||||||
gpr_atm_rel_store(&state.done_atm, 0); |
|
||||||
gpr_thd_id id; |
|
||||||
poll_args *pa = gpr_malloc(sizeof(*pa)); |
|
||||||
pa->server = server; |
|
||||||
pa->signal_when_done = signal_when_done; |
|
||||||
gpr_thd_new(&id, actually_poll_server, pa, NULL); |
|
||||||
} |
|
||||||
|
|
||||||
static void match_initial_magic_string(grpc_slice_buffer *buffer) { |
|
||||||
size_t i, j, cmp_length; |
|
||||||
size_t magic_length = strlen(magic_connect_string); |
|
||||||
GPR_ASSERT(buffer->length >= magic_length); |
|
||||||
for (i = 0, j = 0; i < state.incoming_buffer.count && j < magic_length; i++) { |
|
||||||
char *dump = grpc_slice_to_c_string(state.incoming_buffer.slices[i]); |
|
||||||
cmp_length = GPR_MIN(strlen(dump), magic_length - j); |
|
||||||
GPR_ASSERT(strncmp(dump, magic_connect_string + j, cmp_length) == 0); |
|
||||||
j += cmp_length; |
|
||||||
gpr_free(dump); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
static void test_initial_string(test_tcp_server *server, int secure) { |
|
||||||
gpr_event ev; |
|
||||||
gpr_event_init(&ev); |
|
||||||
grpc_test_set_initial_connect_string_function(set_magic_initial_string); |
|
||||||
poll_server_until_read_done(server, &ev); |
|
||||||
start_rpc(secure, server_port); |
|
||||||
gpr_event_wait(&ev, gpr_inf_future(GPR_CLOCK_REALTIME)); |
|
||||||
match_initial_magic_string(&state.incoming_buffer); |
|
||||||
cleanup_rpc(); |
|
||||||
} |
|
||||||
|
|
||||||
static void test_initial_string_with_redirect(test_tcp_server *server, |
|
||||||
int secure) { |
|
||||||
gpr_event ev; |
|
||||||
gpr_event_init(&ev); |
|
||||||
int another_port = grpc_pick_unused_port_or_die(); |
|
||||||
grpc_test_set_initial_connect_string_function( |
|
||||||
reset_addr_and_set_magic_string); |
|
||||||
poll_server_until_read_done(server, &ev); |
|
||||||
start_rpc(secure, another_port); |
|
||||||
gpr_event_wait(&ev, gpr_inf_future(GPR_CLOCK_REALTIME)); |
|
||||||
match_initial_magic_string(&state.incoming_buffer); |
|
||||||
cleanup_rpc(); |
|
||||||
} |
|
||||||
|
|
||||||
static void run_test(void (*test)(test_tcp_server *server, int secure), |
|
||||||
int secure) { |
|
||||||
test_tcp_server test_server; |
|
||||||
server_port = grpc_pick_unused_port_or_die(); |
|
||||||
test_tcp_server_init(&test_server, on_connect, &test_server); |
|
||||||
test_tcp_server_start(&test_server, server_port); |
|
||||||
test(&test_server, secure); |
|
||||||
test_tcp_server_destroy(&test_server); |
|
||||||
} |
|
||||||
|
|
||||||
int main(int argc, char **argv) { |
|
||||||
grpc_test_init(argc, argv); |
|
||||||
grpc_init(); |
|
||||||
|
|
||||||
run_test(test_initial_string, 0); |
|
||||||
run_test(test_initial_string, 1); |
|
||||||
run_test(test_initial_string_with_redirect, 0); |
|
||||||
run_test(test_initial_string_with_redirect, 1); |
|
||||||
|
|
||||||
grpc_shutdown(); |
|
||||||
return 0; |
|
||||||
} |
|
Binary file not shown.
@ -0,0 +1,139 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* Copyright 2017, Google Inc. |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are |
||||||
|
* met: |
||||||
|
* |
||||||
|
* * Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* * Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following disclaimer |
||||||
|
* in the documentation and/or other materials provided with the |
||||||
|
* distribution. |
||||||
|
* * Neither the name of Google Inc. nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
#include "src/core/lib/support/arena.h" |
||||||
|
|
||||||
|
#include <grpc/support/alloc.h> |
||||||
|
#include <grpc/support/log.h> |
||||||
|
#include <grpc/support/string_util.h> |
||||||
|
#include <grpc/support/sync.h> |
||||||
|
#include <grpc/support/thd.h> |
||||||
|
#include <grpc/support/useful.h> |
||||||
|
#include <inttypes.h> |
||||||
|
#include <string.h> |
||||||
|
|
||||||
|
#include "src/core/lib/support/string.h" |
||||||
|
#include "test/core/util/test_config.h" |
||||||
|
|
||||||
|
static void test_noop(void) { gpr_arena_destroy(gpr_arena_create(1)); } |
||||||
|
|
||||||
|
static void test(const char *name, size_t init_size, const size_t *allocs, |
||||||
|
size_t nallocs) { |
||||||
|
gpr_strvec v; |
||||||
|
char *s; |
||||||
|
gpr_strvec_init(&v); |
||||||
|
gpr_asprintf(&s, "test '%s': %" PRIdPTR " <- {", name, init_size); |
||||||
|
gpr_strvec_add(&v, s); |
||||||
|
for (size_t i = 0; i < nallocs; i++) { |
||||||
|
gpr_asprintf(&s, "%" PRIdPTR ",", allocs[i]); |
||||||
|
gpr_strvec_add(&v, s); |
||||||
|
} |
||||||
|
gpr_strvec_add(&v, gpr_strdup("}")); |
||||||
|
s = gpr_strvec_flatten(&v, NULL); |
||||||
|
gpr_strvec_destroy(&v); |
||||||
|
gpr_log(GPR_INFO, "%s", s); |
||||||
|
gpr_free(s); |
||||||
|
|
||||||
|
gpr_arena *a = gpr_arena_create(init_size); |
||||||
|
void **ps = gpr_zalloc(sizeof(*ps) * nallocs); |
||||||
|
for (size_t i = 0; i < nallocs; i++) { |
||||||
|
ps[i] = gpr_arena_alloc(a, allocs[i]); |
||||||
|
// ensure no duplicate results
|
||||||
|
for (size_t j = 0; j < i; j++) { |
||||||
|
GPR_ASSERT(ps[i] != ps[j]); |
||||||
|
} |
||||||
|
// ensure writable
|
||||||
|
memset(ps[i], 1, allocs[i]); |
||||||
|
} |
||||||
|
gpr_arena_destroy(a); |
||||||
|
gpr_free(ps); |
||||||
|
} |
||||||
|
|
||||||
|
#define TEST(name, init_size, ...) \ |
||||||
|
static const size_t allocs_##name[] = {__VA_ARGS__}; \
|
||||||
|
test(#name, init_size, allocs_##name, GPR_ARRAY_SIZE(allocs_##name)) |
||||||
|
|
||||||
|
#define CONCURRENT_TEST_ITERATIONS 100000 |
||||||
|
#define CONCURRENT_TEST_THREADS 100 |
||||||
|
|
||||||
|
typedef struct { |
||||||
|
gpr_event ev_start; |
||||||
|
gpr_arena *arena; |
||||||
|
} concurrent_test_args; |
||||||
|
|
||||||
|
static void concurrent_test_body(void *arg) { |
||||||
|
concurrent_test_args *a = arg; |
||||||
|
gpr_event_wait(&a->ev_start, gpr_inf_future(GPR_CLOCK_REALTIME)); |
||||||
|
for (size_t i = 0; i < CONCURRENT_TEST_ITERATIONS; i++) { |
||||||
|
*(char *)gpr_arena_alloc(a->arena, 1) = (char)i; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
static void concurrent_test(void) { |
||||||
|
gpr_log(GPR_DEBUG, "concurrent_test"); |
||||||
|
|
||||||
|
concurrent_test_args args; |
||||||
|
gpr_event_init(&args.ev_start); |
||||||
|
args.arena = gpr_arena_create(1024); |
||||||
|
|
||||||
|
gpr_thd_id thds[CONCURRENT_TEST_THREADS]; |
||||||
|
|
||||||
|
for (int i = 0; i < CONCURRENT_TEST_THREADS; i++) { |
||||||
|
gpr_thd_options opt = gpr_thd_options_default(); |
||||||
|
gpr_thd_options_set_joinable(&opt); |
||||||
|
gpr_thd_new(&thds[i], concurrent_test_body, &args, &opt); |
||||||
|
} |
||||||
|
|
||||||
|
gpr_event_set(&args.ev_start, (void *)1); |
||||||
|
|
||||||
|
for (int i = 0; i < CONCURRENT_TEST_THREADS; i++) { |
||||||
|
gpr_thd_join(thds[i]); |
||||||
|
} |
||||||
|
|
||||||
|
gpr_arena_destroy(args.arena); |
||||||
|
} |
||||||
|
|
||||||
|
int main(int argc, char *argv[]) { |
||||||
|
grpc_test_init(argc, argv); |
||||||
|
|
||||||
|
test_noop(); |
||||||
|
TEST(0_1, 0, 1); |
||||||
|
TEST(1_1, 1, 1); |
||||||
|
TEST(1_2, 1, 2); |
||||||
|
TEST(1_3, 1, 3); |
||||||
|
TEST(1_inc, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11); |
||||||
|
TEST(6_123, 6, 1, 2, 3); |
||||||
|
concurrent_test(); |
||||||
|
|
||||||
|
return 0; |
||||||
|
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue