[Asterisk-code-review] res_pjsip_outbound_registration.c: Use our own scheduler and other s... (asterisk[master])
George Joseph
asteriskteam at digium.com
Wed Nov 11 06:40:14 CST 2020
George Joseph has submitted this change. ( https://gerrit.asterisk.org/c/asterisk/+/15134 )
Change subject: res_pjsip_outbound_registration.c: Use our own scheduler and other stuff
......................................................................
res_pjsip_outbound_registration.c: Use our own scheduler and other stuff
* Instead of using the pjproject timer heap, we now use our own
pjsip_scheduler. This allows us to more easily debug and allows us to
see times in "pjsip show/list registrations" as well as being able to
see the registrations in "pjsip show scheduled_tasks".
* Added the last registration time, registration interval, and the next
registration time to the CLI output.
* Removed calls to pjsip_regc_info() except where absolutely necessary.
Most of the calls were just to get the server and client URIs for log
messages so we now just save them on the client_state object when we
create it.
* Added log messages where needed and updated most of the existong ones
to include the registration object name at the start of the message.
Change-Id: I4534a0fc78c7cb69f23b7b449dda9748c90daca2
---
M res/res_pjsip_outbound_registration.c
1 file changed, 165 insertions(+), 121 deletions(-)
Approvals:
Joshua Colp: Looks good to me, but someone else must approve
Benjamin Keith Ford: Looks good to me, but someone else must approve
George Joseph: Looks good to me, approved; Approved for Submit
diff --git a/res/res_pjsip_outbound_registration.c b/res/res_pjsip_outbound_registration.c
index 2c58986..5be38eb 100644
--- a/res/res_pjsip_outbound_registration.c
+++ b/res/res_pjsip_outbound_registration.c
@@ -359,7 +359,7 @@
*/
pjsip_tx_data *last_tdata;
/*! \brief Timer entry for retrying on temporal responses */
- pj_timer_entry timer;
+ struct ast_sip_sched_task *sched_task;
/*! \brief Optional line parameter placed into Contact */
char line[LINE_PARAMETER_SIZE];
/*! \brief Current number of retries */
@@ -392,6 +392,12 @@
char *transport_name;
/*! \brief The name of the registration sorcery object */
char *registration_name;
+ /*! \brief Server URI */
+ char *server_uri;
+ /*! \brief Client URI */
+ char *client_uri;
+ /*! \brief Contact URI */
+ char *contact_uri;
};
/*! \brief Outbound registration state information (persists for lifetime that registration should exist) */
@@ -530,8 +536,8 @@
return NULL;
}
- ast_debug(3, "Determined relationship to outbound registration '%s' based on line '%s', using configured endpoint '%s'\n",
- ast_sorcery_object_get_id(state->registration), state->client_state->line, state->registration->endpoint);
+ ast_debug(3, "%s: Line '%s', using configured endpoint '%s'\n",
+ state->client_state->registration_name, state->client_state->line, state->registration->endpoint);
return ast_sorcery_retrieve_by_id(ast_sip_get_sorcery(), "endpoint", state->registration->endpoint);
}
@@ -543,10 +549,10 @@
/*! \brief Helper function which cancels the timer on a client */
static void cancel_registration(struct sip_outbound_registration_client_state *client_state)
{
- if (pj_timer_heap_cancel_if_active(pjsip_endpt_get_timer_heap(ast_sip_get_pjsip_endpoint()),
- &client_state->timer, client_state->timer.id)) {
- /* The timer was successfully cancelled, drop the refcount of client_state */
- ao2_ref(client_state, -1);
+ if (client_state->sched_task) {
+ ast_sip_sched_task_cancel(client_state->sched_task);
+ ao2_cleanup(client_state->sched_task);
+ client_state->sched_task = NULL;
}
}
@@ -564,6 +570,8 @@
callback_invoked = ast_threadstorage_get(®ister_callback_invoked, sizeof(int));
if (!callback_invoked) {
pjsip_tx_data_dec_ref(tdata);
+ ast_log(LOG_ERROR, "%s: Failed to get threadstorage for registration to server '%s' from client '%s'\n",
+ client_state->registration_name, client_state->server_uri, client_state->client_uri);
return PJ_ENOMEM;
}
*callback_invoked = 0;
@@ -593,6 +601,8 @@
* drop the references we just added
*/
if ((status != PJ_SUCCESS) && !(*callback_invoked)) {
+ ast_log(LOG_ERROR, "%s: Failed send registration to server '%s' from client '%s'\n",
+ client_state->registration_name, client_state->server_uri, client_state->client_uri);
pjsip_tx_data_dec_ref(tdata);
ao2_ref(client_state, -1);
return status;
@@ -655,7 +665,7 @@
/*! \brief Callback function for registering */
static int handle_client_registration(void *data)
{
- RAII_VAR(struct sip_outbound_registration_client_state *, client_state, data, ao2_cleanup);
+ struct sip_outbound_registration_client_state *client_state = data;
pjsip_tx_data *tdata;
if (set_outbound_initial_authentication_credentials(client_state->client, &client_state->outbound_auths)) {
@@ -663,19 +673,14 @@
return -1;
}
- if (client_state->status == SIP_REGISTRATION_STOPPED
- || pjsip_regc_register(client_state->client, PJ_FALSE, &tdata) != PJ_SUCCESS) {
+ if (client_state->status == SIP_REGISTRATION_STOPPED) {
return 0;
}
- if (DEBUG_ATLEAST(1)) {
- pjsip_regc_info info;
-
- pjsip_regc_get_info(client_state->client, &info);
- ast_log(LOG_DEBUG, "Outbound REGISTER attempt %u to '%.*s' with client '%.*s'\n",
- client_state->retries + 1,
- (int) info.server_uri.slen, info.server_uri.ptr,
- (int) info.client_uri.slen, info.client_uri.ptr);
+ if (pjsip_regc_register(client_state->client, PJ_FALSE, &tdata) != PJ_SUCCESS) {
+ ast_log(LOG_ERROR, "%s: Failed to create registration to server '%s' from client '%s'\n",
+ client_state->registration_name, client_state->server_uri, client_state->client_uri);
+ return 0;
}
if (!add_configured_supported_headers(client_state, tdata)) {
@@ -688,44 +693,23 @@
return 0;
}
-/*! \brief Timer callback function, used just for registrations */
-static void sip_outbound_registration_timer_cb(pj_timer_heap_t *timer_heap, struct pj_timer_entry *entry)
-{
- struct sip_outbound_registration_client_state *client_state = entry->user_data;
-
- entry->id = 0;
-
- /*
- * Transfer client_state reference to serializer task so the
- * nominal path will not dec the client_state ref in this
- * pjproject callback thread.
- */
- if (ast_sip_push_task(client_state->serializer, handle_client_registration, client_state)) {
- ast_log(LOG_WARNING, "Scheduled outbound registration could not be executed.\n");
- ao2_ref(client_state, -1);
- }
-}
-
/*! \brief Helper function which sets up the timer to re-register in a specific amount of time */
-static void schedule_registration(struct sip_outbound_registration_client_state *client_state, unsigned int seconds)
+static void schedule_registration(struct sip_outbound_registration_client_state *client_state, unsigned int ms)
{
- pj_time_val delay = { .sec = seconds, };
- pjsip_regc_info info;
+
+ ast_debug(1, "%s: Scheduling outbound registration to server '%s' from client '%s' in %d ms\n",
+ client_state->registration_name, client_state->server_uri, client_state->client_uri, ms);
cancel_registration(client_state);
- pjsip_regc_get_info(client_state->client, &info);
- ast_debug(1, "Scheduling outbound registration to server '%.*s' from client '%.*s' in %d seconds\n",
- (int) info.server_uri.slen, info.server_uri.ptr,
- (int) info.client_uri.slen, info.client_uri.ptr,
- seconds);
+ client_state->sched_task = ast_sip_schedule_task(client_state->serializer,
+ ms, handle_client_registration, ast_taskprocessor_name(client_state->serializer),
+ client_state,
+ AST_SIP_SCHED_TASK_ONESHOT | AST_SIP_SCHED_TASK_DATA_AO2);
- ao2_ref(client_state, +1);
- if (pjsip_endpt_schedule_timer(ast_sip_get_pjsip_endpoint(), &client_state->timer, &delay) != PJ_SUCCESS) {
- ast_log(LOG_WARNING, "Failed to schedule registration to server '%.*s' from client '%.*s'\n",
- (int) info.server_uri.slen, info.server_uri.ptr,
- (int) info.client_uri.slen, info.client_uri.ptr);
- ao2_ref(client_state, -1);
+ if (!client_state->sched_task) {
+ ast_log(LOG_WARNING, "%s: Failed to schedule registration to server '%s' from client '%s'\n",
+ client_state->registration_name, client_state->server_uri, client_state->client_uri);
}
}
@@ -762,18 +746,18 @@
{
struct sip_outbound_registration_client_state *client_state = data;
- cancel_registration(client_state);
-
if (client_state->client) {
pjsip_regc_info info;
pjsip_tx_data *tdata;
+ /* We need to get the live state to test "is_busy" */
pjsip_regc_get_info(client_state->client, &info);
if (info.is_busy == PJ_TRUE) {
/* If a client transaction is in progress we defer until it is complete */
ast_debug(1,
- "Registration transaction is busy with server '%.*s' from client '%.*s'.\n",
+ "%s: Registration transaction is busy with server '%.*s' from client '%.*s'.\n",
+ client_state->registration_name,
(int) info.server_uri.slen, info.server_uri.ptr,
(int) info.client_uri.slen, info.client_uri.ptr);
client_state->destroy = 1;
@@ -786,10 +770,11 @@
break;
case SIP_REGISTRATION_REGISTERED:
ast_debug(1,
- "Trying to unregister with server '%.*s' from client '%.*s' before destruction.\n",
+ "%s: Trying to unregister with server '%.*s' from client '%.*s' before destruction.\n",
+ client_state->registration_name,
(int) info.server_uri.slen, info.server_uri.ptr,
(int) info.client_uri.slen, info.client_uri.ptr);
-
+ cancel_registration(client_state);
update_client_state_status(client_state, SIP_REGISTRATION_STOPPING);
client_state->destroy = 1;
if (pjsip_regc_unregister(client_state->client, &tdata) == PJ_SUCCESS
@@ -800,8 +785,10 @@
}
break;
case SIP_REGISTRATION_REJECTED_TEMPORARY:
- case SIP_REGISTRATION_REJECTED_PERMANENT:
case SIP_REGISTRATION_STOPPING:
+ cancel_registration(client_state);
+ break;
+ case SIP_REGISTRATION_REJECTED_PERMANENT:
case SIP_REGISTRATION_STOPPED:
break;
}
@@ -812,6 +799,7 @@
update_client_state_status(client_state, SIP_REGISTRATION_STOPPED);
ast_sip_auth_vector_destroy(&client_state->outbound_auths);
+
ao2_ref(client_state, -1);
return 0;
@@ -869,20 +857,21 @@
}
}
-static void schedule_retry(struct registration_response *response, unsigned int interval,
- const char *server_uri, const char *client_uri)
+static void schedule_retry(struct registration_response *response, unsigned int interval)
{
update_client_state_status(response->client_state, SIP_REGISTRATION_REJECTED_TEMPORARY);
- schedule_registration(response->client_state, interval);
+ schedule_registration(response->client_state, interval * 1000);
if (response->rdata) {
- ast_log(LOG_WARNING, "Temporal response '%d' received from '%s' on "
+ ast_log(LOG_WARNING, "%s: Temporal response '%d' received from '%s' on "
"registration attempt to '%s', retrying in '%u'\n",
- response->code, server_uri, client_uri, interval);
+ response->client_state->registration_name,
+ response->code, response->client_state->server_uri, response->client_state->client_uri, interval);
} else {
- ast_log(LOG_WARNING, "No response received from '%s' on "
+ ast_log(LOG_WARNING, "%s: No response received from '%s' on "
"registration attempt to '%s', retrying in '%u'\n",
- server_uri, client_uri, interval);
+ response->client_state->registration_name,
+ response->client_state->server_uri, response->client_state->client_uri, interval);
}
}
@@ -895,15 +884,9 @@
return 0;
}
- if (DEBUG_ATLEAST(1)) {
- pjsip_regc_info info;
-
- pjsip_regc_get_info(state->client_state->client, &info);
- ast_log(LOG_DEBUG,
- "Outbound registration transport to server '%.*s' from client '%.*s' shutdown\n",
- (int) info.server_uri.slen, info.server_uri.ptr,
- (int) info.client_uri.slen, info.client_uri.ptr);
- }
+ ast_debug(1,
+ "%s: Outbound registration transport to server '%s' from client '%s' shutdown\n",
+ state->client_state->registration_name, state->client_state->server_uri, state->client_state->client_uri);
cancel_registration(state->client_state);
@@ -1045,21 +1028,15 @@
static int handle_registration_response(void *data)
{
struct registration_response *response = data;
- pjsip_regc_info info;
- char server_uri[PJSIP_MAX_URL_SIZE];
- char client_uri[PJSIP_MAX_URL_SIZE];
if (response->client_state->status == SIP_REGISTRATION_STOPPED) {
ao2_ref(response, -1);
return 0;
}
- pjsip_regc_get_info(response->client_state->client, &info);
- ast_copy_pj_str(server_uri, &info.server_uri, sizeof(server_uri));
- ast_copy_pj_str(client_uri, &info.client_uri, sizeof(client_uri));
-
- ast_debug(1, "Processing REGISTER response %d from server '%s' for client '%s'\n",
- response->code, server_uri, client_uri);
+ ast_debug(1, "%s: Processing REGISTER response %d from server '%s' for client '%s' with expiration '%d'\n",
+ response->client_state->registration_name, response->code, response->client_state->server_uri,
+ response->client_state->client_uri, response->expiration);
if (response->code == 408 || response->code == 503) {
if ((ast_sip_failover_request(response->old_request))) {
@@ -1081,8 +1058,9 @@
if (!ast_sip_create_request_with_auth(&response->client_state->outbound_auths,
response->rdata, response->old_request, &tdata)) {
response->client_state->auth_attempted = 1;
- ast_debug(1, "Sending authenticated REGISTER to server '%s' from client '%s'\n",
- server_uri, client_uri);
+ ast_debug(1, "%s: Sending authenticated REGISTER to server '%s' from client '%s'\n",
+ response->client_state->registration_name, response->client_state->server_uri,
+ response->client_state->client_uri);
pjsip_tx_data_add_ref(tdata);
res = registration_client_send(response->client_state, tdata);
@@ -1096,8 +1074,9 @@
return 0;
}
} else {
- ast_log(LOG_WARNING, "Failed to create authenticated REGISTER request to server '%s' from client '%s'\n",
- server_uri, client_uri);
+ ast_log(LOG_WARNING, "%s: Failed to create authenticated REGISTER request to server '%s' from client '%s'\n",
+ response->client_state->registration_name, response->client_state->server_uri,
+ response->client_state->client_uri);
}
/* Otherwise, fall through so the failure is processed appropriately */
}
@@ -1110,13 +1089,15 @@
int next_registration_round;
/* If the registration went fine simply reschedule registration for the future */
- ast_debug(1, "Outbound registration to '%s' with client '%s' successful\n", server_uri, client_uri);
+ ast_debug(1, "%s: Outbound registration to '%s' with client '%s' successful\n",
+ response->client_state->registration_name, response->client_state->server_uri,
+ response->client_state->client_uri);
update_client_state_status(response->client_state, SIP_REGISTRATION_REGISTERED);
response->client_state->retries = 0;
- next_registration_round = response->expiration - REREGISTER_BUFFER_TIME;
+ next_registration_round = (response->expiration - REREGISTER_BUFFER_TIME) * 1000;
if (next_registration_round < 0) {
- /* Re-register immediately. */
- next_registration_round = 0;
+ /* Re-register no sooner than the buffer time. */
+ next_registration_round = REREGISTER_BUFFER_TIME * 1000;
}
schedule_registration(response->client_state, next_registration_round);
@@ -1124,7 +1105,9 @@
registration_transport_monitor_setup(response->rdata->tp_info.transport,
response->client_state->registration_name);
} else {
- ast_debug(1, "Outbound unregistration to '%s' with client '%s' successful\n", server_uri, client_uri);
+ ast_debug(1, "%s: Outbound unregistration to '%s' with client '%s' successful\n",
+ response->client_state->registration_name, response->client_state->server_uri,
+ response->client_state->client_uri);
update_client_state_status(response->client_state, SIP_REGISTRATION_UNREGISTERED);
ast_sip_transport_monitor_unregister(response->rdata->tp_info.transport,
registration_transport_shutdown_cb, response->client_state->registration_name,
@@ -1136,18 +1119,19 @@
/* We need to deal with the pending destruction instead. */
} else if (response->retry_after) {
/* If we have been instructed to retry after a period of time, schedule it as such */
- schedule_retry(response, response->retry_after, server_uri, client_uri);
+ schedule_retry(response, response->retry_after);
} else if (response->client_state->retry_interval
&& sip_outbound_registration_is_temporal(response->code, response->client_state)) {
if (response->client_state->retries == response->client_state->max_retries) {
/* If we received enough temporal responses to exceed our maximum give up permanently */
update_client_state_status(response->client_state, SIP_REGISTRATION_REJECTED_PERMANENT);
- ast_log(LOG_WARNING, "Maximum retries reached when attempting outbound registration to '%s' with client '%s', stopping registration attempt\n",
- server_uri, client_uri);
+ ast_log(LOG_WARNING, "%s: Maximum retries reached when attempting outbound registration to '%s' with client '%s', stopping registration attempt\n",
+ response->client_state->registration_name, response->client_state->server_uri,
+ response->client_state->client_uri);
} else {
/* On the other hand if we can still try some more do so */
response->client_state->retries++;
- schedule_retry(response, response->client_state->retry_interval, server_uri, client_uri);
+ schedule_retry(response, response->client_state->retry_interval);
}
} else {
if (response->code == 403
@@ -1156,30 +1140,34 @@
/* A forbidden response retry interval is configured and there are retries remaining */
update_client_state_status(response->client_state, SIP_REGISTRATION_REJECTED_TEMPORARY);
response->client_state->retries++;
- schedule_registration(response->client_state, response->client_state->forbidden_retry_interval);
- ast_log(LOG_WARNING, "403 Forbidden fatal response received from '%s' on registration attempt to '%s', retrying in '%u' seconds\n",
- server_uri, client_uri, response->client_state->forbidden_retry_interval);
+ schedule_registration(response->client_state, response->client_state->forbidden_retry_interval * 1000);
+ ast_log(LOG_WARNING, "%s: 403 Forbidden fatal response received from '%s' on registration attempt to '%s', retrying in '%u' seconds\n",
+ response->client_state->registration_name, response->client_state->server_uri,
+ response->client_state->client_uri, response->client_state->forbidden_retry_interval);
} else if (response->client_state->fatal_retry_interval
&& response->client_state->retries < response->client_state->max_retries) {
/* Some kind of fatal failure response received, so retry according to configured interval */
update_client_state_status(response->client_state, SIP_REGISTRATION_REJECTED_TEMPORARY);
response->client_state->retries++;
- schedule_registration(response->client_state, response->client_state->fatal_retry_interval);
- ast_log(LOG_WARNING, "'%d' fatal response received from '%s' on registration attempt to '%s', retrying in '%u' seconds\n",
- response->code, server_uri, client_uri, response->client_state->fatal_retry_interval);
+ schedule_registration(response->client_state, response->client_state->fatal_retry_interval * 1000);
+ ast_log(LOG_WARNING, "%s: '%d' fatal response received from '%s' on registration attempt to '%s', retrying in '%u' seconds\n",
+ response->client_state->registration_name, response->code, response->client_state->server_uri,
+ response->client_state->client_uri, response->client_state->fatal_retry_interval);
} else {
/* Finally if there's no hope of registering give up */
update_client_state_status(response->client_state, SIP_REGISTRATION_REJECTED_PERMANENT);
if (response->rdata) {
- ast_log(LOG_WARNING, "Fatal response '%d' received from '%s' on registration attempt to '%s', stopping outbound registration\n",
- response->code, server_uri, client_uri);
+ ast_log(LOG_WARNING, "%s: Fatal response '%d' received from '%s' on registration attempt to '%s', stopping outbound registration\n",
+ response->client_state->registration_name, response->code, response->client_state->server_uri,
+ response->client_state->client_uri);
} else {
- ast_log(LOG_WARNING, "Fatal registration attempt to '%s', stopping outbound registration\n", client_uri);
+ ast_log(LOG_WARNING, "%s: Fatal registration attempt to '%s', stopping outbound registration\n",
+ response->client_state->registration_name, response->client_state->client_uri);
}
}
}
- ast_system_publish_registry("PJSIP", client_uri, server_uri,
+ ast_system_publish_registry("PJSIP", response->client_state->client_uri, response->client_state->server_uri,
sip_outbound_registration_status_str(response->client_state->status), NULL);
if (response->client_state->destroy) {
@@ -1220,8 +1208,10 @@
*/
response->client_state = client_state;
- ast_debug(1, "Received REGISTER response %d(%.*s)\n",
- param->code, (int) param->reason.slen, param->reason.ptr);
+ ast_debug(1, "%s: Received REGISTER response %d(%.*s) from '%s': Expires: %d\n",
+ client_state->registration_name,
+ param->code, (int) param->reason.slen, param->reason.ptr,
+ client_state->server_uri, param->expiration);
if (param->rdata) {
struct pjsip_retry_after_hdr *retry_after;
@@ -1256,7 +1246,8 @@
* pjproject callback thread.
*/
if (ast_sip_push_task(client_state->serializer, handle_registration_response, response)) {
- ast_log(LOG_WARNING, "Failed to pass incoming registration response to threadpool\n");
+ ast_log(LOG_WARNING, "%s: Failed to pass incoming registration response to threadpool\n",
+ client_state->registration_name);
ao2_cleanup(response);
}
}
@@ -1266,7 +1257,8 @@
{
struct sip_outbound_registration_state *state = obj;
- ast_debug(3, "Destroying registration state for registration to server '%s' from client '%s'\n",
+ ast_debug(3, "%s: Destroying registration state for registration to server '%s' from client '%s'\n",
+ state->client_state->registration_name,
state->registration ? state->registration->server_uri : "",
state->registration ? state->registration->client_uri : "");
ao2_cleanup(state->registration);
@@ -1277,7 +1269,8 @@
ao2_ref(state->client_state, -1);
} else if (ast_sip_push_task(state->client_state->serializer,
handle_client_state_destruction, state->client_state)) {
- ast_log(LOG_WARNING, "Failed to pass outbound registration client destruction to threadpool\n");
+ ast_log(LOG_WARNING, "%s: Failed to pass outbound registration client destruction to threadpool\n",
+ state->client_state->registration_name);
ao2_ref(state->client_state, -1);
}
}
@@ -1287,6 +1280,9 @@
{
struct sip_outbound_registration_client_state *client_state = obj;
+ ast_debug(3, "%s: Destroying registration client state\n",
+ client_state->registration_name);
+
ast_statsd_log_string("PJSIP.registrations.count", AST_STATSD_GAUGE, "-1", 1.0);
ast_statsd_log_string_va("PJSIP.registrations.state.%s", AST_STATSD_GAUGE, "-1", 1.0,
sip_outbound_registration_status_str(client_state->status));
@@ -1294,6 +1290,9 @@
ast_taskprocessor_unreference(client_state->serializer);
ast_free(client_state->transport_name);
ast_free(client_state->registration_name);
+ ast_free(client_state->server_uri);
+ ast_free(client_state->client_uri);
+ ast_free(client_state->contact_uri);
if (client_state->last_tdata) {
pjsip_tx_data_dec_ref(client_state->last_tdata);
}
@@ -1317,8 +1316,6 @@
}
state->client_state->status = SIP_REGISTRATION_UNREGISTERED;
- pj_timer_entry_init(&state->client_state->timer, 0, state->client_state,
- sip_outbound_registration_timer_cb);
state->client_state->transport_name = ast_strdup(registration->transport);
state->client_state->registration_name =
ast_strdup(ast_sorcery_object_get_id(registration));
@@ -1674,6 +1671,7 @@
}
pj_cstr(&server_uri, registration->server_uri);
+ state->client_state->server_uri = ast_strdup(registration->server_uri);
if (sip_dialog_create_contact(pjsip_regc_get_pool(state->client_state->client),
&contact_uri, S_OR(registration->contact_user, "s"), &server_uri, &selector,
@@ -1681,15 +1679,19 @@
ast_sip_tpselector_unref(&selector);
return -1;
}
+ ast_copy_pj_str2(&state->client_state->contact_uri, &contact_uri);
ast_sip_tpselector_unref(&selector);
pj_cstr(&client_uri, registration->client_uri);
+ state->client_state->client_uri = ast_strdup(registration->client_uri);
+
if (pjsip_regc_init(state->client_state->client, &server_uri, &client_uri,
&client_uri, 1, &contact_uri, registration->expiration) != PJ_SUCCESS) {
return -1;
}
+
return 0;
}
@@ -1700,6 +1702,10 @@
struct sip_outbound_registration *registration = ao2_bump(state->registration);
size_t i;
+ ast_debug(1, "%s: Performing register to server '%s' from client '%s' Expiration: %d\n",
+ state->client_state->registration_name,
+ state->registration->server_uri, state->registration->client_uri, registration->expiration);
+
/* Just in case the client state is being reused for this registration, free the auth information */
ast_sip_auth_vector_destroy(&state->client_state->outbound_auths);
@@ -1722,7 +1728,7 @@
pjsip_regc_update_expires(state->client_state->client, registration->expiration);
- schedule_registration(state->client_state, (ast_random() % 10) + 1);
+ schedule_registration(state->client_state, ((ast_random() % 10) + 1) * 1000);
ao2_ref(registration, -1);
ao2_ref(state, -1);
@@ -1851,10 +1857,9 @@
struct sip_outbound_registration_state *state = obj;
struct pjsip_regc *client = state->client_state->client;
pjsip_tx_data *tdata;
- pjsip_regc_info info;
- pjsip_regc_get_info(client, &info);
- ast_debug(1, "Unregistering contacts with server '%s' from client '%s'\n",
+ ast_debug(1, "%s: Unregistering contacts with server '%s' from client '%s'\n",
+ state->client_state->registration_name,
state->registration->server_uri, state->registration->client_uri);
cancel_registration(state->client_state);
@@ -1882,6 +1887,11 @@
static int queue_register(struct sip_outbound_registration_state *state)
{
ao2_ref(state, +1);
+
+ ast_debug(1, "%s: Queueing register to server '%s' from client '%s'\n",
+ state->client_state->registration_name,
+ state->registration->server_uri, state->registration->client_uri);
+
if (ast_sip_push_task(state->client_state->serializer, sip_outbound_registration_perform, state)) {
ao2_ref(state, -1);
return -1;
@@ -2135,7 +2145,7 @@
ast_sip_sorcery_object_to_ami(ami->registration, &buf);
if ((state = get_state(ast_sorcery_object_get_id(ami->registration)))) {
- pjsip_regc_info info;
+ int next_reg = 0;
if (state->client_state->status == SIP_REGISTRATION_REGISTERED) {
++ami->registered;
@@ -2146,8 +2156,12 @@
ast_str_append(&buf, 0, "Status: %s\r\n",
sip_outbound_registration_status_str(state->client_state->status));
- pjsip_regc_get_info(state->client_state->client, &info);
- ast_str_append(&buf, 0, "NextReg: %d\r\n", info.next_reg);
+ if (state->client_state->status == SIP_REGISTRATION_REGISTERED && state->client_state->sched_task) {
+ ast_sip_sched_task_get_times2(state->client_state->sched_task, NULL, NULL, NULL, NULL,
+ &next_reg, NULL);
+ }
+
+ ast_str_append(&buf, 0, "NextReg: %d\r\n", next_reg / 1000);
ao2_ref(state, -1);
}
@@ -2252,22 +2266,46 @@
ast_assert(context->output_buffer != NULL);
ast_str_append(&context->output_buffer, 0,
- " <Registration/ServerURI..............................> <Auth..........> <Status.......>\n");
+ " <Registration/ServerURI..............................> <Auth..........> <Status.......>");
+ ast_str_append(&context->output_buffer, 0,
+ " <Last Reg..> <Intvl> <Next Start.....secs>\n"
+ "==============================================");
return 0;
}
+#define TIME_FORMAT "%a %T"
+
static int cli_print_body(void *obj, void *arg, int flags)
{
struct sip_outbound_registration *registration = obj;
struct ast_sip_cli_context *context = arg;
const char *id = ast_sorcery_object_get_id(registration);
struct sip_outbound_registration_state *state = get_state(id);
+ int next_run_ms = 0;
+ struct timeval next = { 0, 0 };
+ struct timeval last = { 0, 0 };
+ struct ast_tm tm;
+ char next_start[32] = "";
+ char last_start[32] = "";
+ int interval;
+
#define REGISTRATION_URI_FIELD_LEN 53
ast_assert(context->output_buffer != NULL);
- ast_str_append(&context->output_buffer, 0, " %-s/%-*.*s %-16s %-16s\n",
+ if (state->client_state->sched_task) {
+ ast_sip_sched_task_get_times2(state->client_state->sched_task, &last, NULL, NULL, &interval,
+ &next_run_ms, &next);
+
+ ast_localtime(&last, &tm, NULL);
+ ast_strftime(last_start, sizeof(last_start), TIME_FORMAT, &tm);
+
+ ast_localtime(&next, &tm, NULL);
+ ast_strftime(next_start, sizeof(next_start), TIME_FORMAT, &tm);
+ }
+
+ ast_str_append(&context->output_buffer, 0, " %-s/%-*.*s %-16s %-16s",
id,
(int) (REGISTRATION_URI_FIELD_LEN - strlen(id)),
(int) (REGISTRATION_URI_FIELD_LEN - strlen(id)),
@@ -2275,9 +2313,15 @@
AST_VECTOR_SIZE(®istration->outbound_auths)
? AST_VECTOR_GET(®istration->outbound_auths, 0)
: "n/a",
- (state ? sip_outbound_registration_status_str(state->client_state->status) : "Unregistered"));
+ (state ? sip_outbound_registration_status_str(state->client_state->status) : "Unregistered")
+ );
+
+ ast_str_append(&context->output_buffer, 0, " %-12s %7d %-12s %8d\n",
+ last_start, interval / 1000, next_start, next_run_ms / 1000);
+
ao2_cleanup(state);
+
if (context->show_details
|| (context->show_details_only_level_0 && context->indent_level == 0)) {
ast_str_append(&context->output_buffer, 0, "\n");
--
To view, visit https://gerrit.asterisk.org/c/asterisk/+/15134
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Change-Id: I4534a0fc78c7cb69f23b7b449dda9748c90daca2
Gerrit-Change-Number: 15134
Gerrit-PatchSet: 4
Gerrit-Owner: George Joseph <gjoseph at digium.com>
Gerrit-Reviewer: Benjamin Keith Ford <bford at digium.com>
Gerrit-Reviewer: Friendly Automation
Gerrit-Reviewer: George Joseph <gjoseph at digium.com>
Gerrit-Reviewer: Joshua Colp <jcolp at sangoma.com>
Gerrit-Reviewer: Kevin Harwell <kharwell at digium.com>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20201111/a3c8423d/attachment-0001.html>
More information about the asterisk-code-review
mailing list