Skip to content
Snippets Groups Projects
Commit 4b584054 authored by ncteisen's avatar ncteisen
Browse files

Add metadata, secendp, sec conn tracers

parent 0e3aee3d
No related branches found
No related tags found
No related merge requests found
...@@ -80,6 +80,9 @@ void grpc_client_channel_init(void) { ...@@ -80,6 +80,9 @@ void grpc_client_channel_init(void) {
GRPC_CLIENT_CHANNEL, GRPC_CHANNEL_INIT_BUILTIN_PRIORITY, append_filter, GRPC_CLIENT_CHANNEL, GRPC_CHANNEL_INIT_BUILTIN_PRIORITY, append_filter,
(void *)&grpc_client_channel_filter); (void *)&grpc_client_channel_filter);
grpc_http_connect_register_handshaker_factory(); grpc_http_connect_register_handshaker_factory();
#ifndef NDEBUG
grpc_register_tracer("resolver_refcount", &grpc_trace_resolver_refcount);
#endif
} }
void grpc_client_channel_shutdown(void) { void grpc_client_channel_shutdown(void) {
......
...@@ -1882,6 +1882,9 @@ static bool maybe_add_client_load_reporting_filter( ...@@ -1882,6 +1882,9 @@ static bool maybe_add_client_load_reporting_filter(
void grpc_lb_policy_grpclb_init() { void grpc_lb_policy_grpclb_init() {
grpc_register_lb_policy(grpc_glb_lb_factory_create()); grpc_register_lb_policy(grpc_glb_lb_factory_create());
grpc_register_tracer("glb", &grpc_lb_glb_trace); grpc_register_tracer("glb", &grpc_lb_glb_trace);
#ifndef NDEBUG
grpc_register_tracer("lb_policy_refcount", &grpc_trace_lb_policy_refcount);
#endif
grpc_channel_init_register_stage(GRPC_CLIENT_SUBCHANNEL, grpc_channel_init_register_stage(GRPC_CLIENT_SUBCHANNEL,
GRPC_CHANNEL_INIT_BUILTIN_PRIORITY, GRPC_CHANNEL_INIT_BUILTIN_PRIORITY,
maybe_add_client_load_reporting_filter, maybe_add_client_load_reporting_filter,
......
...@@ -28,6 +28,10 @@ ...@@ -28,6 +28,10 @@
#include <grpc/support/log.h> #include <grpc/support/log.h>
#include <grpc/support/string_util.h> #include <grpc/support/string_util.h>
#ifndef NDEBUG
grpc_tracer_flag grpc_trace_auth_context_refcount = GRPC_TRACER_INITIALIZER(false);
#endif
/* --- grpc_call --- */ /* --- grpc_call --- */
grpc_call_error grpc_call_set_credentials(grpc_call *call, grpc_call_error grpc_call_set_credentials(grpc_call *call,
...@@ -121,14 +125,17 @@ grpc_auth_context *grpc_auth_context_create(grpc_auth_context *chained) { ...@@ -121,14 +125,17 @@ grpc_auth_context *grpc_auth_context_create(grpc_auth_context *chained) {
return ctx; return ctx;
} }
#ifdef GRPC_AUTH_CONTEXT_REFCOUNT_DEBUG #ifndef NDEBUG
grpc_auth_context *grpc_auth_context_ref(grpc_auth_context *ctx, grpc_auth_context *grpc_auth_context_ref(grpc_auth_context *ctx,
const char *file, int line, const char *file, int line,
const char *reason) { const char *reason) {
if (ctx == NULL) return NULL; if (ctx == NULL) return NULL;
gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, if (GRPC_TRACER_ON(grpc_trace_auth_context_refcount)) {
"AUTH_CONTEXT:%p ref %d -> %d %s", ctx, (int)ctx->refcount.count, gpr_atm val = gpr_atm_no_barrier_load(&ctx->refcount.count);
(int)ctx->refcount.count + 1, reason); gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG,
"AUTH_CONTEXT:%p ref %" PRIdPTR " -> %" PRIdPTR " %s", ctx, val,
val + 1, reason);
}
#else #else
grpc_auth_context *grpc_auth_context_ref(grpc_auth_context *ctx) { grpc_auth_context *grpc_auth_context_ref(grpc_auth_context *ctx) {
if (ctx == NULL) return NULL; if (ctx == NULL) return NULL;
...@@ -137,13 +144,16 @@ grpc_auth_context *grpc_auth_context_ref(grpc_auth_context *ctx) { ...@@ -137,13 +144,16 @@ grpc_auth_context *grpc_auth_context_ref(grpc_auth_context *ctx) {
return ctx; return ctx;
} }
#ifdef GRPC_AUTH_CONTEXT_REFCOUNT_DEBUG #ifndef NDEBUG
void grpc_auth_context_unref(grpc_auth_context *ctx, const char *file, int line, void grpc_auth_context_unref(grpc_auth_context *ctx, const char *file, int line,
const char *reason) { const char *reason) {
if (ctx == NULL) return; if (ctx == NULL) return;
gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, if (GRPC_TRACER_ON(grpc_trace_auth_context_refcount)) {
"AUTH_CONTEXT:%p unref %d -> %d %s", ctx, (int)ctx->refcount.count, gpr_atm val = gpr_atm_no_barrier_load(&ctx->refcount.count);
(int)ctx->refcount.count - 1, reason); gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG,
"AUTH_CONTEXT:%p unref %" PRIdPTR " -> %" PRIdPTR " %s", ctx, val,
val - 1, reason);
}
#else #else
void grpc_auth_context_unref(grpc_auth_context *ctx) { void grpc_auth_context_unref(grpc_auth_context *ctx) {
if (ctx == NULL) return; if (ctx == NULL) return;
......
...@@ -22,6 +22,10 @@ ...@@ -22,6 +22,10 @@
#include "src/core/lib/iomgr/pollset.h" #include "src/core/lib/iomgr/pollset.h"
#include "src/core/lib/security/credentials/credentials.h" #include "src/core/lib/security/credentials/credentials.h"
#ifndef NDEBUG
extern grpc_tracer_flag grpc_trace_auth_context_refcount;
#endif
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
...@@ -50,7 +54,7 @@ struct grpc_auth_context { ...@@ -50,7 +54,7 @@ struct grpc_auth_context {
grpc_auth_context *grpc_auth_context_create(grpc_auth_context *chained); grpc_auth_context *grpc_auth_context_create(grpc_auth_context *chained);
/* Refcounting. */ /* Refcounting. */
#ifdef GRPC_AUTH_CONTEXT_REFCOUNT_DEBUG #ifndef NDEBUG
#define GRPC_AUTH_CONTEXT_REF(p, r) \ #define GRPC_AUTH_CONTEXT_REF(p, r) \
grpc_auth_context_ref((p), __FILE__, __LINE__, (r)) grpc_auth_context_ref((p), __FILE__, __LINE__, (r))
#define GRPC_AUTH_CONTEXT_UNREF(p, r) \ #define GRPC_AUTH_CONTEXT_UNREF(p, r) \
......
...@@ -75,18 +75,20 @@ static void destroy(grpc_exec_ctx *exec_ctx, secure_endpoint *secure_ep) { ...@@ -75,18 +75,20 @@ static void destroy(grpc_exec_ctx *exec_ctx, secure_endpoint *secure_ep) {
gpr_free(ep); gpr_free(ep);
} }
/*#define GRPC_SECURE_ENDPOINT_REFCOUNT_DEBUG*/ #ifndef NDEBUG
#ifdef GRPC_SECURE_ENDPOINT_REFCOUNT_DEBUG
#define SECURE_ENDPOINT_UNREF(exec_ctx, ep, reason) \ #define SECURE_ENDPOINT_UNREF(exec_ctx, ep, reason) \
secure_endpoint_unref((exec_ctx), (ep), (reason), __FILE__, __LINE__) secure_endpoint_unref((exec_ctx), (ep), (reason), __FILE__, __LINE__)
#define SECURE_ENDPOINT_REF(ep, reason) \ #define SECURE_ENDPOINT_REF(ep, reason) \
secure_endpoint_ref((ep), (reason), __FILE__, __LINE__) secure_endpoint_ref((ep), (reason), __FILE__, __LINE__)
static void secure_endpoint_unref(secure_endpoint *ep, static void secure_endpoint_unref(grpc_exec_ctx *exec_ctx,
grpc_closure_list *closure_list, secure_endpoint *ep,
const char *reason, const char *file, const char *reason, const char *file,
int line) { int line) {
gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, "SECENDP unref %p : %s %d -> %d", if (GRPC_TRACER_ON(grpc_trace_secure_endpoint)) {
ep, reason, ep->ref.count, ep->ref.count - 1); gpr_atm val = gpr_atm_no_barrier_load(&ep->ref.count);
gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, "SECENDP unref %p : %s %" PRIdPTR " -> %" PRIdPTR,
ep, reason, val, val - 1);
}
if (gpr_unref(&ep->ref)) { if (gpr_unref(&ep->ref)) {
destroy(exec_ctx, ep); destroy(exec_ctx, ep);
} }
...@@ -94,8 +96,11 @@ static void secure_endpoint_unref(secure_endpoint *ep, ...@@ -94,8 +96,11 @@ static void secure_endpoint_unref(secure_endpoint *ep,
static void secure_endpoint_ref(secure_endpoint *ep, const char *reason, static void secure_endpoint_ref(secure_endpoint *ep, const char *reason,
const char *file, int line) { const char *file, int line) {
gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, "SECENDP ref %p : %s %d -> %d", if (GRPC_TRACER_ON(grpc_trace_secure_endpoint)) {
ep, reason, ep->ref.count, ep->ref.count + 1); gpr_atm val = gpr_atm_no_barrier_load(&ep->ref.count);
gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, "SECENDP ref %p : %s %" PRIdPTR " -> %" PRIdPTR,
ep, reason, val, val + 1);
}
gpr_ref(&ep->ref); gpr_ref(&ep->ref);
} }
#else #else
......
...@@ -43,6 +43,10 @@ ...@@ -43,6 +43,10 @@
#include "src/core/tsi/ssl_transport_security.h" #include "src/core/tsi/ssl_transport_security.h"
#include "src/core/tsi/transport_security_adapter.h" #include "src/core/tsi/transport_security_adapter.h"
#ifndef NDEBUG
grpc_tracer_flag grpc_trace_security_connector_refcount = GRPC_TRACER_INITIALIZER(false);
#endif
/* -- Constants. -- */ /* -- Constants. -- */
#ifndef INSTALL_PREFIX #ifndef INSTALL_PREFIX
...@@ -142,14 +146,17 @@ void grpc_channel_security_connector_check_call_host( ...@@ -142,14 +146,17 @@ void grpc_channel_security_connector_check_call_host(
} }
} }
#ifdef GRPC_SECURITY_CONNECTOR_REFCOUNT_DEBUG #ifndef NDEBUG
grpc_security_connector *grpc_security_connector_ref( grpc_security_connector *grpc_security_connector_ref(
grpc_security_connector *sc, const char *file, int line, grpc_security_connector *sc, const char *file, int line,
const char *reason) { const char *reason) {
if (sc == NULL) return NULL; if (sc == NULL) return NULL;
gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, if (GRPC_TRACER_ON(grpc_trace_security_connector_refcount)) {
"SECURITY_CONNECTOR:%p ref %d -> %d %s", sc, gpr_atm val = gpr_atm_no_barrier_load(&sc->refcount.count);
(int)sc->refcount.count, (int)sc->refcount.count + 1, reason); gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG,
"SECURITY_CONNECTOR:%p ref %" PRIdPTR " -> %" PRIdPTR " %s", sc,
val, val + 1, reason);
}
#else #else
grpc_security_connector *grpc_security_connector_ref( grpc_security_connector *grpc_security_connector_ref(
grpc_security_connector *sc) { grpc_security_connector *sc) {
...@@ -159,15 +166,18 @@ grpc_security_connector *grpc_security_connector_ref( ...@@ -159,15 +166,18 @@ grpc_security_connector *grpc_security_connector_ref(
return sc; return sc;
} }
#ifdef GRPC_SECURITY_CONNECTOR_REFCOUNT_DEBUG #ifndef NDEBUG
void grpc_security_connector_unref(grpc_exec_ctx *exec_ctx, void grpc_security_connector_unref(grpc_exec_ctx *exec_ctx,
grpc_security_connector *sc, grpc_security_connector *sc,
const char *file, int line, const char *file, int line,
const char *reason) { const char *reason) {
if (sc == NULL) return; if (sc == NULL) return;
gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, if (GRPC_TRACER_ON(grpc_trace_security_connector_refcount)) {
"SECURITY_CONNECTOR:%p unref %d -> %d %s", sc, gpr_atm val = gpr_atm_no_barrier_load(&sc->refcount.count);
(int)sc->refcount.count, (int)sc->refcount.count - 1, reason); gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG,
"SECURITY_CONNECTOR:%p unref %" PRIdPTR " -> %" PRIdPTR " %s", sc,
val, val - 1, reason);
}
#else #else
void grpc_security_connector_unref(grpc_exec_ctx *exec_ctx, void grpc_security_connector_unref(grpc_exec_ctx *exec_ctx,
grpc_security_connector *sc) { grpc_security_connector *sc) {
......
...@@ -29,6 +29,10 @@ ...@@ -29,6 +29,10 @@
#include "src/core/tsi/ssl_transport_security.h" #include "src/core/tsi/ssl_transport_security.h"
#include "src/core/tsi/transport_security_interface.h" #include "src/core/tsi/transport_security_interface.h"
#ifndef NDEBUG
extern grpc_tracer_flag grpc_trace_security_connector_refcount;
#endif
/* --- status enum. --- */ /* --- status enum. --- */
typedef enum { GRPC_SECURITY_OK = 0, GRPC_SECURITY_ERROR } grpc_security_status; typedef enum { GRPC_SECURITY_OK = 0, GRPC_SECURITY_ERROR } grpc_security_status;
...@@ -66,7 +70,7 @@ struct grpc_security_connector { ...@@ -66,7 +70,7 @@ struct grpc_security_connector {
}; };
/* Refcounting. */ /* Refcounting. */
#ifdef GRPC_SECURITY_CONNECTOR_REFCOUNT_DEBUG #ifndef NDEBUG
#define GRPC_SECURITY_CONNECTOR_REF(p, r) \ #define GRPC_SECURITY_CONNECTOR_REF(p, r) \
grpc_security_connector_ref((p), __FILE__, __LINE__, (r)) grpc_security_connector_ref((p), __FILE__, __LINE__, (r))
#define GRPC_SECURITY_CONNECTOR_UNREF(exec_ctx, p, r) \ #define GRPC_SECURITY_CONNECTOR_UNREF(exec_ctx, p, r) \
......
...@@ -48,8 +48,8 @@ ...@@ -48,8 +48,8 @@
#include "src/core/lib/transport/transport_impl.h" #include "src/core/lib/transport/transport_impl.h"
#ifndef NDEBUG #ifndef NDEBUG
#include "src/core/ext/filters/client_channel/lb_policy.h" #include "src/core/lib/security/context/security_context.h"
#include "src/core/ext/filters/client_channel/resolver.h" #include "src/core/lib/security/transport/security_connector.h"
#endif #endif
/* (generated) built in registry of plugins */ /* (generated) built in registry of plugins */
...@@ -131,13 +131,11 @@ void grpc_init(void) { ...@@ -131,13 +131,11 @@ void grpc_init(void) {
grpc_register_tracer("channel_stack_builder", grpc_register_tracer("channel_stack_builder",
&grpc_trace_channel_stack_builder); &grpc_trace_channel_stack_builder);
grpc_register_tracer("http1", &grpc_http1_trace); grpc_register_tracer("http1", &grpc_http1_trace);
grpc_register_tracer("queue_pluck", &grpc_cq_pluck_trace); grpc_register_tracer("queue_pluck", &grpc_cq_pluck_trace); // default on
grpc_register_tracer("combiner", &grpc_combiner_trace); grpc_register_tracer("combiner", &grpc_combiner_trace);
grpc_register_tracer("server_channel", &grpc_server_channel_trace); grpc_register_tracer("server_channel", &grpc_server_channel_trace);
grpc_register_tracer("bdp_estimator", &grpc_bdp_estimator_trace); grpc_register_tracer("bdp_estimator", &grpc_bdp_estimator_trace);
// Default pluck trace to 1 grpc_register_tracer("queue_timeout", &grpc_cq_event_timeout_trace); // default on
grpc_register_tracer("queue_timeout", &grpc_cq_event_timeout_trace);
// Default timeout trace to 1
grpc_register_tracer("op_failure", &grpc_trace_operation_failures); grpc_register_tracer("op_failure", &grpc_trace_operation_failures);
grpc_register_tracer("resource_quota", &grpc_resource_quota_trace); grpc_register_tracer("resource_quota", &grpc_resource_quota_trace);
grpc_register_tracer("call_error", &grpc_call_error_trace); grpc_register_tracer("call_error", &grpc_call_error_trace);
...@@ -145,9 +143,11 @@ void grpc_init(void) { ...@@ -145,9 +143,11 @@ void grpc_init(void) {
grpc_register_tracer("pending_tags", &grpc_trace_pending_tags); grpc_register_tracer("pending_tags", &grpc_trace_pending_tags);
grpc_register_tracer("closure", &grpc_trace_closure); grpc_register_tracer("closure", &grpc_trace_closure);
grpc_register_tracer("error_refcount", &grpc_trace_error_refcount); grpc_register_tracer("error_refcount", &grpc_trace_error_refcount);
grpc_register_tracer("lb_policy_refcount", &grpc_trace_lb_policy_refcount);
grpc_register_tracer("resolver_refcount", &grpc_trace_resolver_refcount);
grpc_register_tracer("stream_refcount", &grpc_trace_stream_refcount); grpc_register_tracer("stream_refcount", &grpc_trace_stream_refcount);
// TODO(ncteisen): re-enable after rebasing
// grpc_register_tracer("auth_context_refcount", &grpc_trace_auth_context_refcount);
// grpc_register_tracer("security_connector_refcount", &grpc_trace_security_connector_refcount);
grpc_register_tracer("metadata", &grpc_trace_metadata);
#endif #endif
grpc_security_pre_init(); grpc_security_pre_init();
grpc_iomgr_init(&exec_ctx); grpc_iomgr_init(&exec_ctx);
......
...@@ -47,7 +47,8 @@ ...@@ -47,7 +47,8 @@
* used to determine which kind of element a pointer refers to. * used to determine which kind of element a pointer refers to.
*/ */
#ifdef GRPC_METADATA_REFCOUNT_DEBUG #ifndef NDEBUG
grpc_tracer_flag grpc_trace_metadata = GRPC_TRACER_INITIALIZER(false);
#define DEBUG_ARGS , const char *file, int line #define DEBUG_ARGS , const char *file, int line
#define FWD_DEBUG_ARGS , file, line #define FWD_DEBUG_ARGS , file, line
#define REF_MD_LOCKED(shard, s) ref_md_locked((shard), (s), __FILE__, __LINE__) #define REF_MD_LOCKED(shard, s) ref_md_locked((shard), (s), __FILE__, __LINE__)
...@@ -144,15 +145,17 @@ static int is_mdelem_static(grpc_mdelem e) { ...@@ -144,15 +145,17 @@ static int is_mdelem_static(grpc_mdelem e) {
static void ref_md_locked(mdtab_shard *shard, static void ref_md_locked(mdtab_shard *shard,
interned_metadata *md DEBUG_ARGS) { interned_metadata *md DEBUG_ARGS) {
#ifdef GRPC_METADATA_REFCOUNT_DEBUG #ifndef NDEBUG
char *key_str = grpc_slice_to_c_string(md->key); if (GRPC_TRACER_ON(grpc_trace_metadata)) {
char *value_str = grpc_slice_to_c_string(md->value); char *key_str = grpc_slice_to_c_string(md->key);
gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, char *value_str = grpc_slice_to_c_string(md->value);
"ELM REF:%p:%zu->%zu: '%s' = '%s'", (void *)md, gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG,
gpr_atm_no_barrier_load(&md->refcnt), "ELM REF:%p:%zu->%zu: '%s' = '%s'", (void *)md,
gpr_atm_no_barrier_load(&md->refcnt) + 1, key_str, value_str); gpr_atm_no_barrier_load(&md->refcnt),
gpr_free(key_str); gpr_atm_no_barrier_load(&md->refcnt) + 1, key_str, value_str);
gpr_free(value_str); gpr_free(key_str);
gpr_free(value_str);
}
#endif #endif
if (0 == gpr_atm_no_barrier_fetch_add(&md->refcnt, 1)) { if (0 == gpr_atm_no_barrier_fetch_add(&md->refcnt, 1)) {
gpr_atm_no_barrier_fetch_add(&shard->free_estimate, -1); gpr_atm_no_barrier_fetch_add(&shard->free_estimate, -1);
...@@ -243,13 +246,15 @@ grpc_mdelem grpc_mdelem_create( ...@@ -243,13 +246,15 @@ grpc_mdelem grpc_mdelem_create(
allocated->key = grpc_slice_ref_internal(key); allocated->key = grpc_slice_ref_internal(key);
allocated->value = grpc_slice_ref_internal(value); allocated->value = grpc_slice_ref_internal(value);
gpr_atm_rel_store(&allocated->refcnt, 1); gpr_atm_rel_store(&allocated->refcnt, 1);
#ifdef GRPC_METADATA_REFCOUNT_DEBUG #ifndef NDEBUG
char *key_str = grpc_slice_to_c_string(allocated->key); if (GRPC_TRACER_ON(grpc_trace_metadata)) {
char *value_str = grpc_slice_to_c_string(allocated->value); char *key_str = grpc_slice_to_c_string(allocated->key);
gpr_log(GPR_DEBUG, "ELM ALLOC:%p:%zu: '%s' = '%s'", (void *)allocated, char *value_str = grpc_slice_to_c_string(allocated->value);
gpr_atm_no_barrier_load(&allocated->refcnt), key_str, value_str); gpr_log(GPR_DEBUG, "ELM ALLOC:%p:%zu: '%s' = '%s'", (void *)allocated,
gpr_free(key_str); gpr_atm_no_barrier_load(&allocated->refcnt), key_str, value_str);
gpr_free(value_str); gpr_free(key_str);
gpr_free(value_str);
}
#endif #endif
return GRPC_MAKE_MDELEM(allocated, GRPC_MDELEM_STORAGE_ALLOCATED); return GRPC_MAKE_MDELEM(allocated, GRPC_MDELEM_STORAGE_ALLOCATED);
} }
...@@ -294,13 +299,15 @@ grpc_mdelem grpc_mdelem_create( ...@@ -294,13 +299,15 @@ grpc_mdelem grpc_mdelem_create(
md->bucket_next = shard->elems[idx]; md->bucket_next = shard->elems[idx];
shard->elems[idx] = md; shard->elems[idx] = md;
gpr_mu_init(&md->mu_user_data); gpr_mu_init(&md->mu_user_data);
#ifdef GRPC_METADATA_REFCOUNT_DEBUG #ifndef NDEBUG
char *key_str = grpc_slice_to_c_string(md->key); if (GRPC_TRACER_ON(grpc_trace_metadata)) {
char *value_str = grpc_slice_to_c_string(md->value); char *key_str = grpc_slice_to_c_string(md->key);
gpr_log(GPR_DEBUG, "ELM NEW:%p:%zu: '%s' = '%s'", (void *)md, char *value_str = grpc_slice_to_c_string(md->value);
gpr_atm_no_barrier_load(&md->refcnt), key_str, value_str); gpr_log(GPR_DEBUG, "ELM NEW:%p:%zu: '%s' = '%s'", (void *)md,
gpr_free(key_str); gpr_atm_no_barrier_load(&md->refcnt), key_str, value_str);
gpr_free(value_str); gpr_free(key_str);
gpr_free(value_str);
}
#endif #endif
shard->count++; shard->count++;
...@@ -356,15 +363,17 @@ grpc_mdelem grpc_mdelem_ref(grpc_mdelem gmd DEBUG_ARGS) { ...@@ -356,15 +363,17 @@ grpc_mdelem grpc_mdelem_ref(grpc_mdelem gmd DEBUG_ARGS) {
break; break;
case GRPC_MDELEM_STORAGE_INTERNED: { case GRPC_MDELEM_STORAGE_INTERNED: {
interned_metadata *md = (interned_metadata *)GRPC_MDELEM_DATA(gmd); interned_metadata *md = (interned_metadata *)GRPC_MDELEM_DATA(gmd);
#ifdef GRPC_METADATA_REFCOUNT_DEBUG #ifndef NDEBUG
char *key_str = grpc_slice_to_c_string(md->key); if (GRPC_TRACER_ON(grpc_trace_metadata)) {
char *value_str = grpc_slice_to_c_string(md->value); char *key_str = grpc_slice_to_c_string(md->key);
gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, char *value_str = grpc_slice_to_c_string(md->value);
"ELM REF:%p:%zu->%zu: '%s' = '%s'", (void *)md, gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG,
gpr_atm_no_barrier_load(&md->refcnt), "ELM REF:%p:%zu->%zu: '%s' = '%s'", (void *)md,
gpr_atm_no_barrier_load(&md->refcnt) + 1, key_str, value_str); gpr_atm_no_barrier_load(&md->refcnt),
gpr_free(key_str); gpr_atm_no_barrier_load(&md->refcnt) + 1, key_str, value_str);
gpr_free(value_str); gpr_free(key_str);
gpr_free(value_str);
}
#endif #endif
/* we can assume the ref count is >= 1 as the application is calling /* we can assume the ref count is >= 1 as the application is calling
this function - meaning that no adjustment to mdtab_free is necessary, this function - meaning that no adjustment to mdtab_free is necessary,
...@@ -376,15 +385,17 @@ grpc_mdelem grpc_mdelem_ref(grpc_mdelem gmd DEBUG_ARGS) { ...@@ -376,15 +385,17 @@ grpc_mdelem grpc_mdelem_ref(grpc_mdelem gmd DEBUG_ARGS) {
} }
case GRPC_MDELEM_STORAGE_ALLOCATED: { case GRPC_MDELEM_STORAGE_ALLOCATED: {
allocated_metadata *md = (allocated_metadata *)GRPC_MDELEM_DATA(gmd); allocated_metadata *md = (allocated_metadata *)GRPC_MDELEM_DATA(gmd);
#ifdef GRPC_METADATA_REFCOUNT_DEBUG #ifndef NDEBUG
char *key_str = grpc_slice_to_c_string(md->key); if (GRPC_TRACER_ON(grpc_trace_metadata)) {
char *value_str = grpc_slice_to_c_string(md->value); char *key_str = grpc_slice_to_c_string(md->key);
gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, char *value_str = grpc_slice_to_c_string(md->value);
"ELM REF:%p:%zu->%zu: '%s' = '%s'", (void *)md, gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG,
gpr_atm_no_barrier_load(&md->refcnt), "ELM REF:%p:%zu->%zu: '%s' = '%s'", (void *)md,
gpr_atm_no_barrier_load(&md->refcnt) + 1, key_str, value_str); gpr_atm_no_barrier_load(&md->refcnt),
gpr_free(key_str); gpr_atm_no_barrier_load(&md->refcnt) + 1, key_str, value_str);
gpr_free(value_str); gpr_free(key_str);
gpr_free(value_str);
}
#endif #endif
/* we can assume the ref count is >= 1 as the application is calling /* we can assume the ref count is >= 1 as the application is calling
this function - meaning that no adjustment to mdtab_free is necessary, this function - meaning that no adjustment to mdtab_free is necessary,
...@@ -404,15 +415,17 @@ void grpc_mdelem_unref(grpc_exec_ctx *exec_ctx, grpc_mdelem gmd DEBUG_ARGS) { ...@@ -404,15 +415,17 @@ void grpc_mdelem_unref(grpc_exec_ctx *exec_ctx, grpc_mdelem gmd DEBUG_ARGS) {
break; break;
case GRPC_MDELEM_STORAGE_INTERNED: { case GRPC_MDELEM_STORAGE_INTERNED: {
interned_metadata *md = (interned_metadata *)GRPC_MDELEM_DATA(gmd); interned_metadata *md = (interned_metadata *)GRPC_MDELEM_DATA(gmd);
#ifdef GRPC_METADATA_REFCOUNT_DEBUG #ifndef NDEBUG
char *key_str = grpc_slice_to_c_string(md->key); if (GRPC_TRACER_ON(grpc_trace_metadata)) {
char *value_str = grpc_slice_to_c_string(md->value); char *key_str = grpc_slice_to_c_string(md->key);
gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, char *value_str = grpc_slice_to_c_string(md->value);
"ELM UNREF:%p:%zu->%zu: '%s' = '%s'", (void *)md, gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG,
gpr_atm_no_barrier_load(&md->refcnt), "ELM UNREF:%p:%zu->%zu: '%s' = '%s'", (void *)md,
gpr_atm_no_barrier_load(&md->refcnt) - 1, key_str, value_str); gpr_atm_no_barrier_load(&md->refcnt),
gpr_free(key_str); gpr_atm_no_barrier_load(&md->refcnt) - 1, key_str, value_str);
gpr_free(value_str); gpr_free(key_str);
gpr_free(value_str);
}
#endif #endif
uint32_t hash = GRPC_MDSTR_KV_HASH(grpc_slice_hash(md->key), uint32_t hash = GRPC_MDSTR_KV_HASH(grpc_slice_hash(md->key),
grpc_slice_hash(md->value)); grpc_slice_hash(md->value));
...@@ -428,15 +441,17 @@ void grpc_mdelem_unref(grpc_exec_ctx *exec_ctx, grpc_mdelem gmd DEBUG_ARGS) { ...@@ -428,15 +441,17 @@ void grpc_mdelem_unref(grpc_exec_ctx *exec_ctx, grpc_mdelem gmd DEBUG_ARGS) {
} }
case GRPC_MDELEM_STORAGE_ALLOCATED: { case GRPC_MDELEM_STORAGE_ALLOCATED: {
allocated_metadata *md = (allocated_metadata *)GRPC_MDELEM_DATA(gmd); allocated_metadata *md = (allocated_metadata *)GRPC_MDELEM_DATA(gmd);
#ifdef GRPC_METADATA_REFCOUNT_DEBUG #ifndef NDEBUG
char *key_str = grpc_slice_to_c_string(md->key); if (GRPC_TRACER_ON(grpc_trace_metadata)) {
char *value_str = grpc_slice_to_c_string(md->value); char *key_str = grpc_slice_to_c_string(md->key);
gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, char *value_str = grpc_slice_to_c_string(md->value);
"ELM UNREF:%p:%zu->%zu: '%s' = '%s'", (void *)md, gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG,
gpr_atm_no_barrier_load(&md->refcnt), "ELM UNREF:%p:%zu->%zu: '%s' = '%s'", (void *)md,
gpr_atm_no_barrier_load(&md->refcnt) - 1, key_str, value_str); gpr_atm_no_barrier_load(&md->refcnt),
gpr_free(key_str); gpr_atm_no_barrier_load(&md->refcnt) - 1, key_str, value_str);
gpr_free(value_str); gpr_free(key_str);
gpr_free(value_str);
}
#endif #endif
const gpr_atm prev_refcount = gpr_atm_full_fetch_add(&md->refcnt, -1); const gpr_atm prev_refcount = gpr_atm_full_fetch_add(&md->refcnt, -1);
GPR_ASSERT(prev_refcount >= 1); GPR_ASSERT(prev_refcount >= 1);
......
...@@ -25,6 +25,10 @@ ...@@ -25,6 +25,10 @@
#include "src/core/lib/iomgr/exec_ctx.h" #include "src/core/lib/iomgr/exec_ctx.h"
#ifndef NDEBUG
extern grpc_tracer_flag grpc_trace_metadata;
#endif
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
...@@ -132,9 +136,7 @@ void *grpc_mdelem_get_user_data(grpc_mdelem md, ...@@ -132,9 +136,7 @@ void *grpc_mdelem_get_user_data(grpc_mdelem md,
void *grpc_mdelem_set_user_data(grpc_mdelem md, void (*destroy_func)(void *), void *grpc_mdelem_set_user_data(grpc_mdelem md, void (*destroy_func)(void *),
void *user_data); void *user_data);
/* Reference counting */ #ifndef NDEBUG
//#define GRPC_METADATA_REFCOUNT_DEBUG
#ifdef GRPC_METADATA_REFCOUNT_DEBUG
#define GRPC_MDELEM_REF(s) grpc_mdelem_ref((s), __FILE__, __LINE__) #define GRPC_MDELEM_REF(s) grpc_mdelem_ref((s), __FILE__, __LINE__)
#define GRPC_MDELEM_UNREF(exec_ctx, s) \ #define GRPC_MDELEM_UNREF(exec_ctx, s) \
grpc_mdelem_unref((exec_ctx), (s), __FILE__, __LINE__) grpc_mdelem_unref((exec_ctx), (s), __FILE__, __LINE__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment