Issue #8817 - Registry corruption when packet retransmits fail. (tootai, patchy by oej)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@51659 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Olle Johansson 2007-01-23 15:36:01 +00:00
parent cd61f69a83
commit ef4db783c6

View file

@ -1632,11 +1632,21 @@ static void unref_user(struct sip_user *user)
ASTOBJ_UNREF(user, sip_destroy_user); ASTOBJ_UNREF(user, sip_destroy_user);
} }
static void unref_registry(struct sip_registry *reg) static void registry_unref(struct sip_registry *reg)
{ {
if (option_debug > 2)
ast_log(LOG_DEBUG, "SIP Registry %s: refcount now %d\n", reg->hostname, reg->refcount - 1);
ASTOBJ_UNREF(reg, sip_registry_destroy); ASTOBJ_UNREF(reg, sip_registry_destroy);
} }
/*! \brief Add object reference to SIP registry */
static struct sip_registry *registry_addref(struct sip_registry *reg)
{
if (option_debug > 2)
ast_log(LOG_DEBUG, "SIP Registry %s: refcount now %d\n", reg->hostname, reg->refcount + 1);
return ASTOBJ_REF(reg); /* Add pointer to registry in packet */
}
/*! \brief Interface structure with callbacks used to connect to UDPTL module*/ /*! \brief Interface structure with callbacks used to connect to UDPTL module*/
static struct ast_udptl_protocol sip_udptl = { static struct ast_udptl_protocol sip_udptl = {
type: "SIP", type: "SIP",
@ -1969,7 +1979,7 @@ static int retrans_pkt(void *data)
/* If no channel owner, destroy now */ /* If no channel owner, destroy now */
/* Let the peerpoke system expire packets when the timer expires for poke_noanswer */ /* Let the peerpoke system expire packets when the timer expires for poke_noanswer */
if (pkt->method != SIP_OPTIONS) if (pkt->method != SIP_OPTIONS && pkt->method != SIP_REGISTER)
ast_set_flag(&pkt->owner->flags[0], SIP_NEEDDESTROY); ast_set_flag(&pkt->owner->flags[0], SIP_NEEDDESTROY);
} }
} }
@ -3036,7 +3046,7 @@ static void __sip_destroy(struct sip_pvt *p, int lockowner, int lockdialoglist)
if (p->registry) { if (p->registry) {
if (p->registry->call == p) if (p->registry->call == p)
p->registry->call = NULL; p->registry->call = NULL;
unref_registry(p->registry); registry_unref(p->registry);
} }
/* Unlink us from the owner if we have one */ /* Unlink us from the owner if we have one */
@ -4607,7 +4617,7 @@ static int sip_register(char *value, int lineno)
reg->callid_valid = FALSE; reg->callid_valid = FALSE;
reg->ocseq = INITIAL_CSEQ; reg->ocseq = INITIAL_CSEQ;
ASTOBJ_CONTAINER_LINK(&regl, reg); /* Add the new registry entry to the list */ ASTOBJ_CONTAINER_LINK(&regl, reg); /* Add the new registry entry to the list */
unref_registry(reg); registry_unref(reg);
return 0; return 0;
} }
@ -7174,7 +7184,7 @@ static char *regstate2str(enum sipregistrystate regstate)
static int sip_reregister(void *data) static int sip_reregister(void *data)
{ {
/* if we are here, we know that we need to reregister. */ /* if we are here, we know that we need to reregister. */
struct sip_registry *r= ASTOBJ_REF((struct sip_registry *) data); struct sip_registry *r= registry_addref((struct sip_registry *) data);
/* if we couldn't get a reference to the registry object, punt */ /* if we couldn't get a reference to the registry object, punt */
if (!r) if (!r)
@ -7189,7 +7199,7 @@ static int sip_reregister(void *data)
r->expire = -1; r->expire = -1;
__sip_do_register(r); __sip_do_register(r);
unref_registry(r); registry_unref(r);
return 0; return 0;
} }
@ -7207,7 +7217,7 @@ static int sip_reg_timeout(void *data)
{ {
/* if we are here, our registration timed out, so we'll just do it over */ /* if we are here, our registration timed out, so we'll just do it over */
struct sip_registry *r = ASTOBJ_REF((struct sip_registry *) data); struct sip_registry *r = registry_addref((struct sip_registry *) data);
struct sip_pvt *p; struct sip_pvt *p;
int res; int res;
@ -7220,8 +7230,10 @@ static int sip_reg_timeout(void *data)
/* Unlink us, destroy old call. Locking is not relevant here because all this happens /* Unlink us, destroy old call. Locking is not relevant here because all this happens
in the single SIP manager thread. */ in the single SIP manager thread. */
p = r->call; p = r->call;
if (p->registry) if (p->registry) {
unref_registry(p->registry); registry_unref(p->registry);
p->registry = NULL;
}
r->call = NULL; r->call = NULL;
ast_set_flag(&p->flags[0], SIP_NEEDDESTROY); ast_set_flag(&p->flags[0], SIP_NEEDDESTROY);
/* Pretend to ACK anything just in case */ /* Pretend to ACK anything just in case */
@ -7240,7 +7252,7 @@ static int sip_reg_timeout(void *data)
res=transmit_register(r, SIP_REGISTER, NULL, NULL); res=transmit_register(r, SIP_REGISTER, NULL, NULL);
} }
manager_event(EVENT_FLAG_SYSTEM, "Registry", "ChannelDriver: SIP\r\nUsername: %s\r\nDomain: %s\r\nStatus: %s\r\n", r->username, r->hostname, regstate2str(r->regstate)); manager_event(EVENT_FLAG_SYSTEM, "Registry", "ChannelDriver: SIP\r\nUsername: %s\r\nDomain: %s\r\nStatus: %s\r\n", r->username, r->hostname, regstate2str(r->regstate));
unref_registry(r); registry_unref(r);
return 0; return 0;
} }
@ -7306,7 +7318,7 @@ static int transmit_register(struct sip_registry *r, int sipmethod, const char *
r->portno = ntohs(p->sa.sin_port); r->portno = ntohs(p->sa.sin_port);
ast_set_flag(&p->flags[0], SIP_OUTGOING); /* Registration is outgoing call */ ast_set_flag(&p->flags[0], SIP_OUTGOING); /* Registration is outgoing call */
r->call=p; /* Save pointer to SIP packet */ r->call=p; /* Save pointer to SIP packet */
p->registry = ASTOBJ_REF(r); /* Add pointer to registry in packet */ p->registry = registry_addref(r); /* Add pointer to registry in packet */
if (!ast_strlen_zero(r->secret)) /* Secret (password) */ if (!ast_strlen_zero(r->secret)) /* Secret (password) */
ast_string_field_set(p, peersecret, r->secret); ast_string_field_set(p, peersecret, r->secret);
if (!ast_strlen_zero(r->md5secret)) if (!ast_strlen_zero(r->md5secret))
@ -10409,9 +10421,8 @@ static int sip_show_registry(int fd, int argc, char *argv[])
if (iterator->regtime) { if (iterator->regtime) {
ast_localtime(&iterator->regtime, &tm, NULL); ast_localtime(&iterator->regtime, &tm, NULL);
strftime(tmpdat, sizeof(tmpdat), "%a, %d %b %Y %T", &tm); strftime(tmpdat, sizeof(tmpdat), "%a, %d %b %Y %T", &tm);
} else { } else
tmpdat[0] = 0; tmpdat[0] = '\0';
}
ast_cli(fd, FORMAT, host, iterator->username, iterator->refresh, regstate2str(iterator->regstate), tmpdat); ast_cli(fd, FORMAT, host, iterator->username, iterator->refresh, regstate2str(iterator->regstate), tmpdat);
ASTOBJ_UNLOCK(iterator); ASTOBJ_UNLOCK(iterator);
} while(0)); } while(0));
@ -12241,7 +12252,7 @@ static int handle_response_register(struct sip_pvt *p, int resp, char *rest, str
/* Schedule re-registration before we expire */ /* Schedule re-registration before we expire */
r->expire=ast_sched_add(sched, expires_ms, sip_reregister, r); r->expire=ast_sched_add(sched, expires_ms, sip_reregister, r);
unref_registry(r); registry_unref(r);
} }
return 1; return 1;
} }